/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: var(--primary-color);
}

:root {
    --primary-color: #091650;
    --primary-light: #132a7a;
    --primary-dark: #060e30;
    --secondary-color: #1a3ac2;
    --box-shadow: 0 5px 15px rgba(9, 22, 80, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 58, 194, 0.3);
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 58, 194, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Partners Carousel */
.partners-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.partner-item {
    min-width: 100%;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.partner-item.active {
    opacity: 1;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.carousel-prev, .carousel-next {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--accent-color);
    padding: 0 20px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-color);
}

/* Header Styles */
header {
    background-color: rgba(6, 14, 48, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
    margin-left: 5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(9, 22, 80, 0.9), rgba(9, 22, 80, 0.7)), url('../images/cybersecurity-theme.jpg'); /* Updated background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background-blend-mode: overlay;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Cyber Particles */
.cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    75% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    background: var(--primary-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tech-pattern.svg');
    opacity: 0.05;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(9, 22, 80, 0.7);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon i {
    font-size: 30px;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.service-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 0 0 15px 15px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.service-card:hover .service-hover {
    transform: translateY(0);
    opacity: 1;
}

.service-hover ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.service-hover ul li {
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-hover ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
    color: #fff;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: #fff;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: #fff;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin: 0 20px;
    min-width: 350px;
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 18px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(to bottom, var(--primary-light), var(--primary-color));
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.contact-form form .form-group input,
.contact-form form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #000;
}

.contact-form form .form-group input:focus,
.contact-form form .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
    background-color: #fff;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: #ccc;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

/* Security Features Section */
.security-features {
    padding: 100px 0;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-item:hover:before {
    transform: scale(2.5);
}

.feature-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Styles */
/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateY {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 50px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        transition: left 0.3s ease;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .partners-grid,
    .pricing-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners Section */
.partners {
    background-color: var(--primary-light);
    padding: 80px 0;
    color: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    /* Placeholder styling */
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 15px;
}

.partner-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.partner-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); */
    background: linear-gradient(135deg, #1a2a6c, #132A79, #1a2a6c);
    color: #fff;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card.featured {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff6b6b;
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 24px;
    vertical-align: top;
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 16px;
    margin-left: 5px;
    opacity: 0.7;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    font-size: 14px;
}

.pricing-features .fa-check {
    color: #4cd137;
}

.pricing-features .fa-times {
    color: #ff6b6b;
}

.pricing-features li.disabled {
    opacity: 0.6;
}

.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-footer .btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #fff;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* Placeholder styling */
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #0056b3;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.member-info .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-info .bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}
.logo{
    height: 70px;
}