
        :root {
            --primary: #1F2937;
            --accent: #3B82F6;
            --muted: #9CA3AF;
            --light-bg: #F9FAFB;
            --white: #FFFFFF;
            --border-color: #E5E7EB;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary);
            background-color: var(--white);
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* 2026 Design Trend: Ultra-clean shadows and soft borders */
        .card-2026 {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-2026:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
            border-color: var(--accent);
        }

        /* Navbar */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--accent);
            font-size: 1.8rem;
        }

        .nav-link {
            color: var(--primary) !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 16px !important;
            border-radius: 50px;
        }

        .nav-link:hover {
            background-color: var(--light-bg);
            color: var(--accent) !important;
        }

        .btn-nav-cta {
            background-color: var(--accent);
            color: var(--white) !important;
            padding: 10px 28px !important;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--accent);
        }

        .btn-nav-cta:hover {
            background-color: var(--primary) !important;
            border-color: var(--primary);
            color: var(--white) !important;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.92), rgba(31, 41, 55, 0.85)), 
                        url('https://t4.ftcdn.net/jpg/02/63/30/09/360_F_263300983_KOFKRqJYtAgiorlePsm6FBnXaL0dLdfW.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .btn-hero {
            background-color: var(--accent);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            border: 2px solid var(--accent);
        }

        .btn-hero:hover {
            background-color: transparent;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        /* Section Styling */
        .section-heading {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-subtext {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .badge-2026 {
            background-color: var(--light-bg);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* About Section */
        .about-img-wrapper {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .about-img-wrapper img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .btn-dark-custom {
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            border: 2px solid var(--primary);
        }

        .btn-dark-custom:hover {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--white);
        }

        /* Counter */
        .counter-section {
            background-color: var(--primary);
            color: var(--white);
            padding: 80px 0;
        }

        .counter-item h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 5px;
        }

        .counter-item p {
            color: var(--muted);
            font-weight: 500;
            margin: 0;
        }

        /* Vision & Mission */
        .vm-card {
            background: var(--white);
            padding: 40px;
            border-radius: 24px;
            height: 100%;
            border: 1px solid var(--border-color);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-bg);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 24px;
        }

        /* Why Choose Us */
        .feature-item {
            padding: 30px;
            background: var(--white);
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.08);
        }

        .feature-icon-lg {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
        }

        /* Work Process - Creative Horizontal Style */
        .process-container {
            position: relative;
            padding: 40px 0;
        }

        .process-line {
            position: absolute;
            top: 90px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: var(--border-color);
            z-index: 0;
        }

        .process-step {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .process-circle {
            width: 60px;
            height: 60px;
            background-color: var(--accent);
            color: var(--white);
            border: 4px solid var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 24px;
            box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
        }

        /* Service Cards */
        .service-card-custom {
            background-color: var(--light-bg);
            border-radius: 24px;
            padding: 40px 30px;
            height: 100%;
            border: 1px solid transparent;
            text-align: center;
            transition: all 0.4s ease;
        }

        .service-card-custom:hover {
            background-color: var(--white);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
            transform: translateY(-10px);
        }

        .service-icon-box {
            width: 80px;
            height: 80px;
            background-color: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent);
            margin: 0 auto 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .service-card-custom:hover .service-icon-box {
            background-color: var(--accent);
            color: var(--white);
        }

        /* Forms */
        .form-wrapper {
            background-color: var(--light-bg);
            border-radius: 24px;
            padding: 50px;
            border: 1px solid var(--border-color);
        }

        .form-control-custom {
            border: 2px solid var(--border-color);
            border-radius: 14px;
            padding: 14px 20px;
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            transition: border-color 0.3s;
        }

        .form-control-custom:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
        }

        .btn-submit-custom {
            background-color: var(--accent);
            color: var(--white);
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--accent);
            width: 100%;
            font-size: 1.05rem;
        }

        .btn-submit-custom:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .custom-success-msg {
            display: none;
            background-color: #ECFDF5;
            color: #065F46;
            padding: 16px 24px;
            border-radius: 14px;
            border: 1px solid #A7F3D0;
            margin-top: 20px;
            font-weight: 500;
        }

        .custom-success-msg.show {
            display: flex;
            align-items: center;
            animation: fadeInUp 0.4s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Reviews */
        .review-card {
            background: var(--white);
            padding: 35px;
            border-radius: 24px;
            height: 100%;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .review-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 15px; }

        /* FAQ */
        .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: 16px !important;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .accordion-button {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--primary);
            background-color: var(--white);
            box-shadow: none;
            border-radius: 16px !important;
            padding: 20px 24px;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--light-bg);
            color: var(--accent);
        }

        .accordion-body { color: #4B5563; padding: 0 24px 24px; }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent), #2563EB);
            color: var(--white);
            padding: 100px 0;
        }

        .cta-section h2 { color: var(--white); }

        .btn-cta-white {
            background-color: var(--white);
            color: var(--accent);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            border: 2px solid var(--white);
        }

        .btn-cta-white:hover {
            background-color: transparent;
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Contact */
        .contact-info-icon {
            width: 55px;
            height: 55px;
            background-color: var(--light-bg);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--accent);
            margin-right: 20px;
            flex-shrink: 0;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 80px 0 30px;
        }

        footer h5 { font-weight: 700; margin-bottom: 24px; color: var(--white); }
        
        footer ul { list-style: none; padding: 0; }
        footer ul li { margin-bottom: 12px; }
        footer ul li a { color: var(--muted); font-weight: 400; }
        footer ul li a:hover { color: var(--accent); padding-left: 5px; }

        .footer-subscribe-form input {
            background-color: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: var(--white);
            padding: 14px 20px;
            border-radius: 50px;
            width: 100%;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
        }

        .footer-subscribe-form input::placeholder { color: var(--muted); }
        .footer-subscribe-form input:focus { outline: none; border-color: var(--accent); }

        .footer-subscribe-form button {
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            font-family: 'Poppins', sans-serif;
            transition: background 0.3s;
        }

        .footer-subscribe-form button:hover { background-color: #2563EB; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 50px;
            color: var(--muted);
            font-size: 0.9rem;
        }

        .footer-bottom a { color: var(--muted); }
        .footer-bottom a:hover { color: var(--white); }

        @media (max-width: 991px) {
            .hero-content h1 { font-size: 2.8rem; }
            .section-heading { font-size: 2.2rem; }
            .process-line { display: none; }
        }
        @media (max-width: 767px) {
            .hero-content h1 { font-size: 2.2rem; }
            .hero-section { min-height: 80vh; }
        }
