 :root {
            --primary: #D32F2F;
            --secondary: #004E89;
            --accent: #D32F2F;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --text: #2C3E50;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --blue-gradient: linear-gradient(135deg, #00b4d8, #0077b6);
            --shadow: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-lg: 0 25px 80px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: var(--text);
            overflow-x: hidden;
        }


    /* ===== MODERN NAVIGATION ===== */
        .modern-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 0;
        }

        .modern-nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow);
            padding: 0.3rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-image {
            height: 55px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.4rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .brand-tagline {
            font-size: 0.7rem;
            color: var(--text);
            opacity: 0.8;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .modern-nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
        }

        .modern-nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modern-nav-links a:hover {
            color: var(--primary);
            background: rgba(255, 107, 53, 0.1);
        }

        .modern-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .modern-nav-links a:hover::after {
            width: 80%;
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .contact-info a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--primary);
        }

        .btn {
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-support {
            background: var(--blue-gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
        }

        .btn-support:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
            padding: 0.5rem;
        }

 @media (max-width: 968px) {
            .modern-nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow);
                gap: 1rem;
            }

            .modern-nav-links.show {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }
 }
        

  /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }


          /* Portfolio Grid - Enhanced */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .portfolio-item {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        background-image: 
        
        linear-gradient(
            rgba(0, 0, 0, 0.6), /* Start of overlay (adjust 0.6 for darkness: 0.1 is light, 0.9 is very dark) */
            rgba(0, 0, 0, 0.6)  /* End of overlay */
        ),
        url('home.jpg');
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .portfolio-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FFD0A0, #FFA07A);
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover .portfolio-bg {
            transform: scale(1.1);
        }

        .portfolio-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            color: white;
            z-index: 2;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover .portfolio-info {
            transform: translateY(0);
        }

        .portfolio-tag {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .portfolio-info h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            
        }
        

          /* Why Choose Us Section */
        .why-choose-us {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--light-blue) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.1;
            transform: translate(150px, -150px);
        }
        
        .why-choose-us::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, transparent 0%, var(--deep-blue) 100%);
            border-radius: 50%;
            opacity: 0.05;
            transform: translate(-200px, 200px);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .section-label {
            display: inline-block;
            background: var(--accent-red);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 2.8rem;
            color: var(--darker-blue);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-red), var(--light-blue));
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-red), var(--deep-blue));
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-card p {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }
        
        .feature-list {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }
        
        .feature-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: var(--dark-gray);
        }
        
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-red);
            font-weight: bold;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--deep-blue) 100%);
            border-radius: 15px;
            padding: 50px 40px;
            color: var(--white);
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(65, 118, 180, 0.2);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cta-content {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h3 {
            font-size: 2rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .cta-content p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--accent-red);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--darker-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--darker-blue);
            border: 2px solid var(--darker-blue);
        }
        
        .btn-secondary:hover {
            background: var(--darker-blue);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .why-choose-us {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
    

           /* Section Header */
        .section-label {
            display: inline-block;
            background: var(--accent-red);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 2rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .muted {
            color: var(--muted);
            font-size: 1.1rem;
        }
        
        /* Process Section */
        .process {
            margin-top: 60px;
            position: relative;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
        }
        
        /* Connecting Line for Desktop */
        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--light-blue), var(--deep-blue));
            z-index: 0;
        }
        
        .step {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }
        
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border-top: 4px solid var(--accent-red);
        }
        
        .num {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(65, 118, 180, 0.3);
        }
        
        .step:hover .num {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--accent-red), var(--darker-blue));
        }
        
        .step h4 {
            font-size: 1.3rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .step .muted {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Process Icons */
        .step-icon {
            font-size: 1.8rem;
            color: var(--light-blue);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .step:hover .step-icon {
            color: var(--accent-red);
            transform: scale(1.1);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .steps::before {
                display: none;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .step {
                padding: 25px 20px;
            }
            
            .step::before {
                content: '';
                position: absolute;
                top: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 30px;
                height: 30px;
                background: var(--light-blue);
                border-radius: 50%;
                z-index: -1;
            }
            
            .step:nth-child(even) {
                margin-left: 20px;
            }
            
            .step:nth-child(odd) {
                margin-right: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 20px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .step {
                padding: 20px 15px;
            }
            
            .num {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .step {
            animation: fadeInUp 0.5s ease-out;
        }
        
        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }
        .step:nth-child(5) { animation-delay: 0.5s; }
        .step:nth-child(6) { animation-delay: 0.6s; }
   


         
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 0;
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 60px;
        }
        
        .section-label {
            display: inline-block;
            background: var(--accent-red);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Partners Section */
        .partners-section {
            background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
            border-radius: 20px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--light-blue) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.1;
            transform: translate(100px, -100px);
        }
        
        .partners-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, transparent 0%, var(--deep-blue) 100%);
            border-radius: 50%;
            opacity: 0.05;
            transform: translate(-75px, 75px);
        }
        
        /* Partners Grid */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .partner-card {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .partner-logo {
            width: 120px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light);
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .partner-card:hover .partner-logo {
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            transform: scale(1.05);
        }
        
        .partner-logo i {
            font-size: 2.5rem;
            color: var(--deep-blue);
            transition: all 0.3s ease;
        }
        
        .partner-card:hover .partner-logo i {
            color: var(--white);
        }
        
        .partner-name {
            font-size: 1.2rem;
            color: var(--darker-blue);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .partner-type {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 15px;
            display: block;
        }
        
        .partner-desc {
            font-size: 0.85rem;
            color: var(--dark-gray);
            line-height: 1.5;
        }
        
        /* Partner Categories */
        .partner-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            background: var(--white);
            border: 2px solid var(--medium-gray);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            color: var(--dark-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--deep-blue);
            border-color: var(--deep-blue);
            color: var(--white);
        }
        
        /* Testimonials */
        .partner-testimonials {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            z-index: 1;
        }
        
        .testimonial-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .testimonial-header h3 {
            font-size: 1.8rem;
            color: var(--darker-blue);
            margin-bottom: 10px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-red);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
        }
        
        .author-info h4 {
            color: var(--darker-blue);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--muted);
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .partners-cta {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .partners-cta h3 {
            font-size: 1.8rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
        }
        
        .partners-cta p {
            color: var(--muted);
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--accent-red);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--darker-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .partner-card {
                padding: 20px 15px;
            }
            
            .partner-logo {
                width: 100px;
                height: 70px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 40px 0;
            }
            
            .partners-section {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .partner-categories {
                flex-direction: column;
                align-items: center;
            }
            
            .category-btn {
                width: 200px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .partner-card {
            animation: fadeIn 0.5s ease-out;
        }



        /* Floating Buttons & Chat System Styles */
:root {
    --deep-blue: #4176B4;
    --light-blue: #3B9EC5;
    --medium-blue: #3A97C3;
    --darker-blue: #426AAA;
    --accent-red: #D32F2F;
    --white: #ffffff;
    --light: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    animation: pulse 2s infinite;
}

.support-btn {
    background: linear-gradient(135deg, var(--accent-red), #b71c1c);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation-delay: 1s;
}



/* Add all the other CSS styles from the previous code here */
/* [Include the complete CSS from the chat system] */
.demo-content {
            text-align: center;
            max-width: 600px;
            margin-bottom: 100px;
        }
        
        .demo-content h1 {
            color: var(--darker-blue);
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .demo-content p {
            color: var(--dark-gray);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Floating Buttons Container */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* Main Button */
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            position: relative;
            border: none;
            animation: pulse 2s infinite;
        }
        
        .support-btn {
            background: linear-gradient(135deg, var(--accent-red), #b71c1c);
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Button Labels */
        .btn-label {
            position: absolute;
            right: 70px;
            background: var(--white);
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--darker-blue);
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .btn-label::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid var(--white);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }
        
        .floating-btn:hover .btn-label {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            }
            50% {
                box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
            }
            100% {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            }
        }
        
        .whatsapp-btn {
            animation-delay: 1s;
        }
        
        /* Chat Modal */
        .chat-modal {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 380px;
            height: 500px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            display: none;
            flex-direction: column;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .chat-modal.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }
        
        .chat-header {
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            color: var(--white);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .chat-header-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .chat-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .chat-header-text h3 {
            font-size: 1.1rem;
            margin-bottom: 3px;
        }
        
        .chat-header-text p {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        .chat-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        
        .chat-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .chat-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: var(--light);
        }
        
        .chat-message {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .bot-message {
            background: var(--white);
            border-bottom-left-radius: 5px;
            align-self: flex-start;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: var(--dark-gray);
        }
        
        .user-message {
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            color: var(--white);
            border-bottom-right-radius: 5px;
            align-self: flex-end;
        }
        
        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .quick-reply {
            background: var(--white);
            border: 1px solid var(--medium-gray);
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .quick-reply:hover {
            background: var(--light-blue);
            color: var(--white);
            border-color: var(--light-blue);
        }
        
        .knowledge-base {
            background: var(--white);
            border-radius: 10px;
            padding: 15px;
            margin-top: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .kb-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--darker-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .kb-item {
            padding: 10px;
            border-bottom: 1px solid var(--medium-gray);
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 0.85rem;
        }
        
        .kb-item:last-child {
            border-bottom: none;
        }
        
        .kb-item:hover {
            background: var(--light);
        }
        
        .chat-footer {
            padding: 15px;
            border-top: 1px solid var(--medium-gray);
            display: flex;
            gap: 10px;
        }
        
        .chat-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 25px;
            font-size: 0.9rem;
            outline: none;
            transition: border 0.3s ease;
        }
        
        .chat-input:focus {
            border-color: var(--light-blue);
        }
        
        .send-btn {
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            color: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .send-btn:hover {
            transform: scale(1.05);
        }
        
        .human-support {
            text-align: center;
            padding: 15px;
            border-top: 1px solid var(--medium-gray);
        }
        
        .human-support-btn {
            background: linear-gradient(135deg, var(--accent-red), #b71c1c);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 auto;
        }
        
        .human-support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .btn-label {
                font-size: 0.8rem;
                padding: 6px 12px;
                right: 65px;
            }
            
            .chat-modal {
                width: 350px;
                height: 450px;
                right: 20px;
                bottom: 90px;
            }
        }
        
        @media (max-width: 480px) {
            .floating-buttons {
                bottom: 15px;
                right: 15px;
            }
            
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .btn-label {
                display: none;
            }
            
            .chat-modal {
                width: calc(100vw - 30px);
                right: 15px;
            }
        }
        
        /* FirstChoice Branding */
        .firstchoice-brand {
            position: fixed;
            top: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--darker-blue);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .brand-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
        }
        
        
        /*blog section*/
           .blog-section {
            padding: 80px 0;
            background: var(--light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-label {
            display: inline-block;
            background: var(--accent-red);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Blog Categories */
        .blog-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            background: var(--white);
            border: 2px solid var(--medium-gray);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            color: var(--dark-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--deep-blue);
            border-color: var(--deep-blue);
            color: var(--white);
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .blog-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-red);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
            font-size: 0.85rem;
            color: var(--dark-gray);
        }
        
        .blog-meta i {
            color: var(--light-blue);
            margin-right: 5px;
        }
        
        .blog-title {
            font-size: 1.3rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-red);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--darker-blue);
            transform: translateX(5px);
        }
        
        /* Featured Post */
        .featured-post {
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 50px;
            color: var(--white);
        }
        
        .featured-content {
            padding: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .featured-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .featured-text p {
            margin-bottom: 25px;
            opacity: 0.9;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .featured-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--accent-red);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--white);
            color: var(--accent-red);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--deep-blue);
        }
        
        /* Newsletter */
        .newsletter {
            background: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        
        .newsletter h3 {
            font-size: 1.8rem;
            color: var(--darker-blue);
            margin-bottom: 15px;
        }
        
        .newsletter p {
            color: var(--dark-gray);
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
            gap: 10px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--medium-gray);
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        
        .newsletter-input:focus {
            border-color: var(--light-blue);
        }
        
        /* Blog Stats */
        .blog-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        
        .stat-item {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .featured-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .featured-text {
                order: 2;
            }
            
            .featured-image {
                order: 1;
            }
        }
        
        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-content {
                padding: 40px 30px;
            }
            
            .featured-text h2 {
                font-size: 1.8rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .blog-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .blog-categories {
                flex-direction: column;
                align-items: center;
            }
            
            .category-btn {
                width: 200px;
            }
            
            .featured-content {
                padding: 30px 20px;
            }
            
            .newsletter {
                padding: 40px 25px;
            }
            
            .blog-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
          /* map section */
          
           
        /* CTA Section */
        .about-ctaa {
            background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            border-radius: 30px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-ctaa::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: cover;
        }
        
        .ctaa-content {
            position: relative;
            z-index: 2;
        }
        
        .ctaa-content h2 {
            font-size: 3rem;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .ctaa-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        .btn-primary {
            background: var(--accent-red);
            color: var(--white);
            box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--white);
            color: var(--accent-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 3px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--deep-blue);
            transform: translateY(-5px);
        }
          
          