:root {
            --primary-blue: #0B63E5;
            --primary-blue-dark: #06409B;
            --accent-red: #E63946;
            --accent-red-hover: #C5222F;
            --bg-light-gray: #F4F6F9;
            --bg-ice-gray: #EAEFF5;
            --bg-dark-navy: #0A1128;
            --text-dark: #0D1B2A;
            --text-body: #415A77;
            --text-muted: #778DA9;
            --white: #FFFFFF;
            --border-color: #E2E8F0;
            --shadow-soft: 0 10px 30px rgba(11, 99, 229, 0.08);
            --shadow-hover: 0 20px 40px rgba(11, 99, 229, 0.18);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color: var(--text-body);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Header Navigation --- */
        /* Base Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0B63E5;
}

.btn-primary {
    background: #E63946;
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d62839;
}

/* Hide Mobile Toggle Button on Desktop */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-cta {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: #0B63E5; /* Client Sync Primary Blue */
}

/* =========================================
   MOBILE RESPONSIVE STYLES (Screen <= 768px)
   ========================================= */
@media (max-width: 768px) {
    /* Show Hamburger Button on Mobile */
    .nav-toggle {
        display: flex;
    }

    .desktop-cta {
        display: none; /* Hide Desktop CTA button on mobile header */
    }

    /* Mobile Menu Overlay/Dropdown */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        
        /* Hidden Animation Settings */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    /* Active State (When Hamburger is clicked) */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-cta {
        display: block;
        margin-top: 0.5rem;
    }

    /* Hamburger Animation (Cross / 'X' Icon on active) */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(135deg, #FFFFFF 0%, #9dcaff 100%);
            padding: 5rem 8% 6rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }

        .badge-tag {
            background: rgba(11, 99, 229, 0.1);
            color: var(--primary-blue);
            border: 1px solid rgba(11, 99, 229, 0.2);
            padding: 0.4rem 1.1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -1.5px;
            color: var(--text-dark);
            margin-bottom: 1.25rem;
            line-height: 1.15;
        }

        .text-blue { color: var(--primary-blue); }
        .text-red { color: var(--accent-red); }

        .hero-section p {
            font-size: 1.15rem;
            color: var(--text-body);
            margin-bottom: 2.2rem;
            line-height: 1.7;
        }

        .hero-img-box {
            position: relative;
        }

        .hero-img-box img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-hover);
            border: 4px solid var(--white);
        }

        .floating-card {
            position: absolute;
            bottom: -25px;
            left: -25px;
            background: var(--white);
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 1.2rem;
            border-left: 5px solid var(--accent-red);
        }

        .floating-card i {
            font-size: 2.2rem;
            color: var(--accent-red);
        }

        /* --- Section Titles --- */
        section { padding: 6rem 8%; }

        .section-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* --- SECTION 1: ABOUT US (Light Gray Background) --- */
		
		
		
        .about-section {
            background-color: var(--bg-light-gray);
            border-bottom: 1px solid var(--border-color);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            border: 4px solid var(--white);
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .about-text p {
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            color: var(--text-body);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-color);
            border-top: 4px solid var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .stat-card:nth-child(even) {
            border-top-color: var(--accent-red);
        }

        .stat-card:hover { transform: translateY(-5px); }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            color: var(--primary-blue);
        }

        .stat-card:nth-child(even) .stat-icon {
            color: var(--accent-red);
        }

        .stat-number {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 700;
        }

        /* --- SECTION 2: OUR SOLUTIONS (All Light Colored Cards) --- */
        .solutions-section {
            background-color: var(--white);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .card {
            border-radius: 18px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid transparent;
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-8px);
        }

        /* Solution Cards Light Colors */
        .card-blue {
            background: #EBF3FF;
            border-color: #BCD7FF;
            color: var(--text-dark);
        }
        .card-blue .card-icon { background: var(--primary-blue); color: var(--white); }

        .card-red {
            background: #FFEBF0;
            border-color: #FFC2CE;
            color: var(--text-dark);
        }
        .card-red .card-icon { background: var(--accent-red); color: var(--white); }

        /* HRMS Software (Now Light Purple Theme) */
        .card-navy {
            background: #F3F0FF;
            border-color: #DDD6FE;
            color: var(--text-dark);
        }
        .card-navy h3 { color: var(--text-dark); }
        .card-navy p { color: var(--text-body); }
        .card-navy .card-icon { background: #7C3AED; color: var(--white); }

        .card-gray {
            background: var(--bg-light-gray);
            border-color: var(--border-color);
            color: var(--text-dark);
        }
        .card-gray .card-icon { background: var(--text-dark); color: var(--white); }

        .card-ice {
            background: var(--bg-ice-gray);
            border-color: #CBD5E1;
            color: var(--text-dark);
        }
        .card-ice .card-icon { background: #0284C7; color: var(--white); }

        /* Custom Software Solutions (Now Light Rose/Pink Theme) */
        .card-dark-red {
            background: #FFF1F2;
            border-color: #FECDD3;
            color: var(--text-dark);
        }
        .card-dark-red h3 { color: var(--text-dark); }
        .card-dark-red p { color: var(--text-body); }
        .card-dark-red .card-icon { background: #E11D48; color: var(--white); }

        .card-icon {
            width: 65px;
            height: 65px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .card h3 {
            font-size: 1.35rem;
            margin-bottom: 0.8rem;
            font-weight: 800;
        }

        .card p {
            font-size: 0.98rem;
        }

        /* --- CTA BANNER --- */
        .cta-wrapper {
            padding: 0 8%;
            margin: 2rem 0;
        }

        .cta-banner {
            background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 60%, var(--accent-red) 100%);
            border-radius: 24px;
            padding: 5rem 3rem;
            text-align: center;
            color: var(--white);
            box-shadow: var(--shadow-hover);
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary-blue-dark);
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            background: var(--bg-light-gray);
            color: var(--accent-red);
            transform: translateY(-2px);
        }

        /* --- SECTION 3: WHY CHOOSE US (6 Boxes Grid) --- */
        .why-us-section {
            background-color: var(--bg-ice-gray);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .why-card {
            background: var(--white);
            padding: 2.25rem;
            border-radius: 16px;
            box-shadow: var(--shadow-soft);
            border-top: 5px solid var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .why-card:hover { transform: translateY(-5px); }

        .why-card:nth-child(even) { border-top-color: none; }

        .why-card-icon {
            font-size: 2.25rem;
            margin-bottom: 1.25rem;
            color: var(--primary-blue);
        }

        .why-card:nth-child(even) .why-card-icon { color: var(--accent-red); }

        .why-card h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            font-weight: 800;
        }

        .why-card p { color: var(--text-body); font-size: 0.95rem; }

        /* --- TESTIMONIAL CAROUSEL SECTION --- */
        .testimonial-section {
            background-color: var(--bg-light-gray);
            border-bottom: 1px solid var(--border-color);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 18px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-color);
            position: relative;
        }

        .testimonial-card i.quote-icon {
            font-size: 2.5rem;
            color: rgba(11, 99, 229, 0.15);
            position: absolute;
            top: 20px;
            right: 25px;
        }

        .stars {
            color: #FFB800;
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            font-size: 1rem;
            color: var(--text-body);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
        }

        .client-details h5 {
            color: var(--text-dark);
            font-size: 1.05rem;
            font-weight: 800;
        }

        .client-details span {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* --- SECTION 4: 50% FAQ + 50% ENQUIRY FORM SECTION --- */
        .faq-contact-section {
            background-color: var(--white);
        }

        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .faq-side h3, .form-side h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .faq-item {
            background: var(--bg-light-gray);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item[open] {
            border-color: var(--primary-blue);
            background: var(--white);
            box-shadow: var(--shadow-soft);
        }

        summary {
            padding: 1.25rem 1.5rem;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-dark);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::-webkit-details-marker { display: none; }

        summary i {
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary i { transform: rotate(180deg); color: var(--accent-red); }

        .faq-answer {
            padding: 0 1.5rem 1.25rem 1.5rem;
            color: var(--text-body);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Form Side */
        .enquiry-form-card {
            background: var(--bg-light-gray);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-soft);
        }

        .enquiry-form-card form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .enquiry-form-card input, .enquiry-form-card select, .enquiry-form-card textarea {
            padding: 0.95rem 1.1rem;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            font-size: 0.95rem;
            color: var(--text-dark);
            outline: none;
            transition: border-color 0.2s ease;
        }

        .enquiry-form-card input:focus, .enquiry-form-card select:focus, .enquiry-form-card textarea:focus {
            border-color: var(--primary-blue);
        }

        /* --- CORPORATE FOOTER SECTION --- */
        footer {
            background: var(--bg-dark-navy);
            color: var(--white);
            padding: 5rem 8% 2rem;
            border-top: 4px solid var(--primary-blue);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-col-about img {
            height: 48px;
            margin-bottom: 1.5rem;
            filter: brightness(0) invert(1);
        }

        .footer-col-about p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-red);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 3px;
            background: var(--accent-red);
            border-radius: 2px;
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links-list a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links-list a:hover {
            color: var(--white);
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-info-item i {
            color: var(--accent-red);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .copyright-bar {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        @media (max-width: 992px) {
            .hero-section, .about-grid, .split-grid, .footer-grid { 
                grid-template-columns: 1fr; 
                gap: 3rem; 
            }
            .hero-section h1 { font-size: 2.5rem; }
            nav { display: none; }
            section { padding: 4rem 5%; }
            .cta-wrapper { padding: 0 5%; }
            footer { padding: 4rem 5% 2rem; }
        }
		
		.btn-blue {
            background: var(--primary-blue);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 6px 20px rgba(11, 99, 229, 0.3);
            transition: all 0.3s ease;
        }
		
		.btn-red {
            background: var(--accent-red);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
		
		
/* About Us CSS */

/* --- Hero Section --- */
.about-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    color: #FFFFFF;
    
    /* Premium High-Tech Office Background Image with Dark Blue Overlay */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(11, 99, 229, 0.75) 100%), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
    color: #E2E8F0;
    line-height: 1.6;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile responsive padding */
@media (max-width: 768px) {
    .about-hero {
        padding: 70px 15px 50px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero p {
        font-size: 0.98rem;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Story Section --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--light);
    padding: 4rem 5%;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}

.stat-card p {
    color: var(--gray);
    font-weight: 600;
    margin: 0;
}

/* --- Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(11, 99, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.8rem 0;
    font-weight: 700;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
}

/* Our Solutions CSS */

/* --- Solutions Hero Section --- */
/* --- Our Solutions Hero Section --- */
.solutions-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    color: #FFFFFF;
    
    /* High-Tech Network/Cloud Enterprise Background with Blue-Dark Gradient */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(11, 99, 229, 0.80) 100%), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.solutions-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: #E2E8F0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solutions-hero {
        padding: 70px 15px 50px;
    }
    .solutions-hero h1 {
        font-size: 2rem;
    }
    .solutions-hero p {
        font-size: 0.98rem;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 3rem;
}

/* --- Solutions Grid --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 99, 229, 0.12);
    border-color: var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.blue-glow {
    background: rgba(11, 99, 229, 0.1);
}

.red-glow {
    background: rgba(230, 57, 70, 0.1);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
}

.solution-card p {
    color: var(--gray);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Card Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #F1F5F9;
    padding-top: 1.2rem;
}

.feature-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--primary);
    font-weight: 800;
}

/* --- Process Section --- */
.process-section {
    background-color: var(--light);
    padding: 1rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid #E2E8F0;
}

.step-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(11, 99, 229, 0.2);
    margin-bottom: 0.5rem;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* --- Mini CTA Box --- */
.solutions-cta {
    background: linear-gradient(135deg, #0B63E5 0%, #06409B 100%);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(11, 99, 229, 0.2);
}

.solutions-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.solutions-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.btn-cta {
    background: var(--white);
    color: #000;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-cta:hover {
    transform: translateY(-3px);
    background: #F8FAFC;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 768px) {
    .solutions-hero h1 {
        font-size: 2.2rem;
    }
    .solutions-cta h2 {
        font-size: 1.8rem;
    }
}

/* --- Solution Cards: Different Background Colors --- */
.solutions-grid .solution-card:nth-child(1) {
    background-color: #EFF6FF; /* Soft Blue */
    border-color: #BFDBFE;
}

.solutions-grid .solution-card:nth-child(2) {
    background-color: #FEF2F2; /* Soft Red/Pink */
    border-color: #FECACA;
}

.solutions-grid .solution-card:nth-child(3) {
    background-color: #ECFDF5; /* Soft Green */
    border-color: #A7F3D0;
}

.solutions-grid .solution-card:nth-child(4) {
    background-color: #FFFBEB; /* Soft Yellow/Amber */
    border-color: #FDE68A;
}

.solutions-grid .solution-card:nth-child(5) {
    background-color: #F5F3FF; /* Soft Purple */
    border-color: #DDD6FE;
}

.solutions-grid .solution-card:nth-child(6) {
    background-color: #FFEDD5; /* Soft Orange */
    border-color: #FED7AA;
}

/* --- Process Steps: Different Background Colors --- */
.process-grid .process-step:nth-child(1) {
    background-color: #EEF2FF; /* Indigo Tint */
    border-color: #C7D2FE;
}

.process-grid .process-step:nth-child(2) {
    background-color: #F0FDF4; /* Mint Tint */
    border-color: #BBF7D0;
}

.process-grid .process-step:nth-child(3) {
    background-color: #FFF7ED; /* Warm Peach Tint */
    border-color: #FFEDD5;
}

.process-grid .process-step:nth-child(4) {
    background-color: #FAF5FF; /* Lavender Tint */
    border-color: #E9D5FF;
}


/* Why Us CSS */

/* --- Hero Section --- */
/* --- Why Choose Us Hero Section --- */
.whyus-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    color: #FFFFFF;
    
    /* Strategic Corporate Analytics & Growth Background with Navy Overlay */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(11, 99, 229, 0.78) 100%), 
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whyus-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.whyus-hero p {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto;
    color: #E2E8F0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whyus-hero {
        padding: 70px 15px 50px;
    }
    .whyus-hero h1 {
        font-size: 2rem;
    }
    .whyus-hero p {
        font-size: 0.98rem;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 3rem;
}

/* --- Why Grid & Different Background Cards --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.why-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.why-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Individual Card Colors */
.card-blue {
    background-color: #EFF6FF;
    border-color: #BFDBFE;
}
.card-blue .why-icon { color: #2563EB; }

.card-green {
    background-color: #ECFDF5;
    border-color: #A7F3D0;
}
.card-green .why-icon { color: #059669; }

.card-purple {
    background-color: #F5F3FF;
    border-color: #DDD6FE;
}
.card-purple .why-icon { color: #7C3AED; }

.card-amber {
    background-color: #FFFBEB;
    border-color: #FDE68A;
}
.card-amber .why-icon { color: #D97706; }

.card-red {
    background-color: #FEF2F2;
    border-color: #FECACA;
}
.card-red .why-icon { color: #DC2626; }

.card-orange {
    background-color: #FFEDD5;
    border-color: #FED7AA;
}
.card-orange .why-icon { color: #EA580C; }


/* --- Comparison Table --- */
.comparison-section {
    background-color: var(--light);
    padding: 0rem 0;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table th, 
.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.98rem;
}

.comparison-table th {
    background: #0F172A;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
    background: rgba(11, 99, 229, 0.05);
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background: #0B63E5;
    color: var(--white);
}

.check-yes {
    color: #10B981;
    margin-right: 0.5rem;
}

.check-no {
    color: #EF4444;
    margin-right: 0.5rem;
}


/* --- Why CTA Card --- */
.why-cta-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.cta-text p {
    color: #94A3B8;
    font-size: 1.05rem;
    margin: 0;
}

.btn-why-cta {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-why-cta:hover {
    background: #06409B;
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-hero h1 {
        font-size: 2.2rem;
    }
    .comparison-table th, 
    .comparison-table td {
        padding: 0.8rem 1rem;
        font-size: 0.88rem;
    }
}

/* Contact us page  */


  .contact-section {
    padding: 60px 20px;
    background-color: #f8fafc;
  }

  .contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #0f172a;
    color: #ffffff;
    padding: 40px;
  }

  .contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .contact-info p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .info-item {
    margin-bottom: 24px;
  }

  .info-item strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b63e5;
    margin-bottom: 4px;
  }

  .info-item p {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 15px;
  }

  .contact-form {
    flex: 1.2;
    min-width: 300px;
    padding: 40px;
  }

  .contact-form h2 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #0b63e5;
    box-shadow: 0 0 0 3px rgba(11, 99, 229, 0.1);
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #0b63e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .submit-btn:hover {
    background-color: #06409b;
  }

  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }

    .contact-info, .contact-form {
      padding: 30px 20px;
    }
  }
  
 /* FAQ CSS */
 
 .faq-section {
    padding: 80px 20px;
    background-color: #f8fafc;
  }

  .faq-container {
    max-width: 850px;
    margin: 0 auto;
  }

  .text-center {
    text-align: center;
  }

  .mb-4 {
    margin-bottom: 2.5rem;
  }

  .badge {
    background: rgba(11, 99, 229, 0.1);
    color: #0b63e5;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
  }

  .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
  }

  .section-desc {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Accordion Design */
  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
	padding-bottom: 20px;
  }

  .faq-item.active {
    border-color: #0b63e5;
    box-shadow: 0 10px 20px rgba(11, 99, 229, 0.06);
  }

  .faq-question {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    gap: 1rem;
    transition: color 0.3s ease;
  }

  .faq-item.active .faq-question {
    color: #0b63e5;
  }

  .faq-icon {
    font-size: 0.9rem;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #0b63e5;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background: #ffffff;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
  }

  .faq-answer p {
    padding: 0 1.5rem 1.4rem 1.5rem;
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.98rem;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.8rem;
    }
    .faq-question {
      font-size: 0.98rem;
      padding: 1.1rem 1.2rem;
    }
    .faq-answer p {
      padding: 0 1.2rem 1.2rem 1.2rem;
    }
  } 
 
  
  /* popup quick enqquiry */
  
  /* --- Mobile Button Fixes --- */
@media (max-width: 768px) {
    /* ??? ????? ?? ??? ??????????? ???????? */
    .btn-primary, 
    .btn-cta, 
    .btn-why-cta, 
    .submit-btn, 
    .btn-modal-submit {
        width: 100% !important; /* ?????? ?? ??? ????? */
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: normal !important; /* ??????? ??? ???? ?? ?? ????? ????? ?? ?????? ?? */
        padding: 0.85rem 1.2rem !important; /* ?????? ?? ????? ?? ??? ?????? */
        font-size: 0.95rem !important;
    }

    /* ????/???????? ?????? ?? ???? ?? CTA ??? */
    .mobile-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .mobile-cta .btn-primary {
        display: block !important;
        width: 100% !important;
    }

    /* ???? ????? ?? ???? ????? ????? */
    .modal-box {
        width: 92% !important;
        padding: 1.5rem 1.2rem !important;
        margin: 0 auto;
    }

    .modal-form .form-row {
        grid-template-columns: 1fr !important; /* ?????? ?? 1 ???? */
    }
}
  
  
  /* --- Mobile Logo Resizing --- */
@media (max-width: 768px) {
    .logo img {
        max-height: 45px !important; /* ???? ????? ?? 30px ?? 40px ?? ?? ???? ??? */
        width: auto !important;
        object-fit: contain;
    }
}
  
  /* --- Modal Overlay & Container --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Modal Card Box --- */
.modal-box {
    background: #FFFFFF;
    width: 100%;
    max-width: 580px;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

/* --- Close Button --- */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}

/* --- Modal Content Styling --- */
.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0.5rem 0;
}

.modal-header p {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-form .form-group {
    margin-bottom: 1.2rem;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-form label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: #334155;
    margin-bottom: 0.4rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: #0B63E5;
    box-shadow: 0 0 0 3px rgba(11, 99, 229, 0.1);
}

.btn-modal-submit {
    width: 100%;
    background: #0B63E5;
    color: #FFFFFF;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.2s ease;
}

.btn-modal-submit:hover {
    background: #06409B;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .modal-box {
        padding: 1.8rem 1.2rem;
    }
    .modal-form .form-row {
        grid-template-columns: 1fr;
    }
}
