* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5faff;
    color: #333;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #4a90e2;
}

.logo-img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 10px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 6px 12px;
    border: 1px solid #d9e8ff;
    border-radius: 8px;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
    border-color: #4a90e2;
    background: #6aa8e8;
}

/* Section Heading Style */
.section-heading {
    font-size: 32px;
    color: #fff;
    background: #2a6496;
    border: 2px solid #4a90e2;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Main Slider */
.slider-wrapper {
    background: #e6f0fa;
    border: 1px solid #4a90e2;
    margin: 70px 10px 20px;
    border-radius: 8px;
}

.slider {
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 100%;
    height: 75vh;
}

.slide {
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn:hover {
    background: #4a90e2;
}

/* Services */
.services-wrapper {
    background: #ffffff;
    border: 1px solid #d9e8ff;
    outline: 2px solid #4a90e2;
    margin: 20px 10px;
    border-radius: 8px;
}

.services {
    padding: 50px;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #f5faff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card-headline {
    font-size: 20px;
    color: #fff;
    background: #357abd;
    border: 1px solid #4a90e2;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.learn-more {
    background: #4a90e2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.learn-more:hover {
    background: #6aa8e8;
}

/* Improve Security */
.improve-security-wrapper {
    background: #d9e8ff;
    border: 1px solid #4a90e2;
    margin: 20px 10px;
    border-radius: 8px;
}

.improve-security {
    padding: 50px;
    text-align: center;
}

.improve-security p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.improve-security button {
    background: #4a90e2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.improve-security button:hover {
    background: #357abd;
}

/* About */
.about-wrapper {
    background: #ffffff;
    border: 1px solid #d9e8ff;
    margin: 20px 10px;
    border-radius: 8px;
}

.about {
    padding: 50px;
    text-align: center;
}

.about p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Explore Cybersecurity */
.explore-wrapper {
    background: #e6f0fa;
    border: 1px solid #d9e8ff;
    margin: 20px 10px;
    border-radius: 8px;
}

.explore {
    padding: 50px;
    text-align: center;
}

.explore-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.explore-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.explore-item img {
    width: 250px;
    border-radius: 10px;
    border: 2px solid #4a90e2;
}

.explore-text {
    flex: 1;
    text-align: left;
}

.explore-text h3 {
    font-size: 20px;
    color: #4a90e2;
    margin-bottom: 10px;
}

.explore-text p {
    font-size: 16px;
    color: #666;
}

/* Blog */
.blog-wrapper {
    background: #ffffff;
    border: 1px solid #4a90e2;
    margin: 20px 10px;
    border-radius: 8px;
}

.blog {
    padding: 50px;
    text-align: center;
}

.blog-posts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post {
    background: #f5faff;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post h3 {
    font-size: 20px;
    color: #4a90e2;
    margin-bottom: 10px;
}

.post p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.post button {
    background: #4a90e2;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.post button:hover {
    background: #357abd;
}

/* Clients */
.clients-wrapper {
    background: #d9e8ff;
    border: 1px solid #d9e8ff;
    margin: 20px 10px;
    border-radius: 8px;
    overflow: hidden;
}

.clients {
    padding: 40px;
    text-align: center;
}

.client-logos-slider {
    overflow: hidden;
    white-space: nowrap;
}

.client-logos {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.client-logos span {
    margin: 0 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
}

.client-logos img {
    height: 30px;
    margin-right: 30px;
    vertical-align: middle;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact */
.contact-wrapper {
    background: #ffffff;
    border: 1px solid #4a90e2;
    margin: 20px 10px;
    border-radius: 8px;
}

.contact {
    padding: 50px;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact textarea {
    height: 100px;
}

.contact button {
    background: #4a90e2;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact button:hover {
    background: #357abd;
}

/* Testimonials */
.testimonials-wrapper {
    background: #e6f0fa;
    border: 1px solid #d9e8ff;
    margin: 20px 10px;
    border-radius: 8px;
}

.testimonials {
    padding: 50px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
    color: #666;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #4a90e2;
}