/* Base Styles */
:root {
    --primary-color: #6C4DF6;       /* Vibrant purple - main brand color */
    --secondary-color: #1A1A2E;     /* Deep navy - for dark sections */
    --accent-color: #FF6B6B;        /* Coral accent - for highlights */
    --gradient-color: #A162E8;      /* Gradient purple */
    --light-color: #F5F7FA;         /* Light background */
    --dark-color: #16213E;          /* Dark text/sections */
    --text-color: #2D3748;          /* Main text color */
    --text-light: #FFFFFF;          /* Light text */
    --bg-light: #F5F7FA;            /* Light background */
    --bg-dark: #16213E;             /* Dark background */
    --bg-lighter: #FFFFFF;          /* Lighter background */
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.cta.primary {
    background: linear-gradient(90deg, var(--primary-color), var(--gradient-color));
    color: var(--text-light);
}

.cta.primary:hover {
    background: linear-gradient(90deg, #5B3DDE, #8C4BFF);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.cta.secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

.cta.secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(45, 55, 72, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 247, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--light-color) 0%, #E2E8F0 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(45, 55, 72, 0.8);
}

.cta-buttons {
    display: flex;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Stats Section */
.stats {
    background-color: white;
    padding: 50px 0;
    box-shadow: var(--box-shadow);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(45, 55, 72, 0.8);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature p {
    font-size: 0.9rem;
    color: rgba(45, 55, 72, 0.7);
}

/* Services Section */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-lighter);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(108, 77, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.service-card ul li {
    margin-bottom: 8px;
    position: relative;
    font-size: 0.9rem;
    color: rgba(45, 55, 72, 0.8);
}

.service-card ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -15px;
}

/* Clients Section */
.clients {
    background-color: var(--bg-light); /* Changed to light background */
    color: var(--text-color); /* Dark text for light background */
    padding: 80px 0;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.client-logo {
    background-color: white; /* White background for logos */
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-width: 160px;
    min-height: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

.client-logo img {
    max-height: 80px;
    max-width: 120px;
    margin-bottom: 15px;
    /* Removed all filters to show original colors */
    transition: var(--transition);
}

.client-logo span {
    font-weight: 600;
    text-align: center;
    color: var(--text-color); /* Dark text */
}

/* Remove all hover filters */
.client-logo:hover img {
    filter: none !important;
}
/* Brand Highlight */
.brand-highlight {
    color: #6C4DF6; /* Primary purple from your logo */
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.brand-highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6C4DF6, #A162E8); /* Gradient matching your logo */
    z-index: -1;
    opacity: 0.3;
    border-radius: 2px;
}

/* Testimonial Card */
.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-content i {
    color: #6C4DF6; /* Logo color */
    opacity: 0.2;
    font-size: 2.5rem;
    position: absolute;
    top: -15px;
    left: -5px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.author-info h4 {
    color: #212529;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}
/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.8rem;
    color: rgba(45, 55, 72, 0.7);
    margin-bottom: 0;
}

/* Contact Section */
/* Contact Section - Specific White Text */
.contact .section-subtitle {
    color: white !important;
    opacity: 1 !important;
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.contact {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-light);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact-form {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 77, 246, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}



/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-light);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dark Section Modifier */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Gradient Text Class */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--gradient-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats .container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta.secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    section {
        padding: 60px 0;
    }
}
/* Add this to your existing CSS file */

/* Results Section */
.results {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.results-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.result-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(108, 77, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.result-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.result-card p {
    color: rgba(45, 55, 72, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa; /* Light background */
    padding: 80px 0;
}

.testimonials .section-header h2 {
    color: #212529; /* Dark text */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.testimonials .section-subtitle {
    color: #6c757d; /* Subdued text */
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: #6C4DF6; /* Primary color */
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    color: #495057; /* Dark gray text */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: normal; /* Removed italic */
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.author-name {
    color: #212529; /* Dark text */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    color: #6c757d; /* Subdued text */
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}