

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 28px;
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #20b958;
            transform: scale(1.1);
        }

        /* Floating Call Button */
        .call-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            left: 20px;
            background-color: #ff6c00;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 28px;
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .call-float:hover {
            background-color: #0056b3;
            transform: scale(1.1);
        }

        :root {
            --primary-blue: #2563eb;
            --bright-blue: #3b82f6;
            --light-blue: #60a5fa;
            --vibrant-orange: #f97316;
            --bright-orange: #fb923c;
            --light-orange: #fdba74;
            --dark: #1e293b;
            --light: #f8fafc;
            --text: #334155;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--dark);
        }

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--vibrant-orange);
            color: white;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: 0 0 4px 4px;
            z-index: 10000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Navigation */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue);
        }

        .logo {
            width: auto;
            height: 50px;
        }

        .navbar-brand span {
            color: var(--vibrant-orange);
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark);
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-blue);
        }

        .btn-primary {
            background-color: var(--primary-blue);
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background-color: var(--bright-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-orange {
            background-color: var(--vibrant-orange);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-orange:hover {
            background-color: var(--bright-orange);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(90deg, rgba(59, 130, 246, 1) 3%, rgba(37, 99, 235, 1) 12%, rgba(2, 0, 36, 1) 76%);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            color: white;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -50px;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--vibrant-orange);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--text);
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            border-top: 4px solid var(--primary-blue);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-top-color: var(--vibrant-orange);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-blue);
            font-size: 2rem;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: rgba(249, 115, 22, 0.1);
            color: var(--vibrant-orange);
        }

        .service-card h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-card p {
            color: var(--text);
        }

        /* About Section */
        .about {
            padding: 100px 0;
        }

        .about-img {
            border-radius: 12px;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
            width: 100%;
            height: auto;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
            padding: 80px 0;
            color: white;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
            border-left: 4px solid var(--vibrant-orange);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(252, 135, 0, 1) 86%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .cta h2 {
            color: white;
            margin-bottom: 20px;
        }

        .cta p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* Contact Form */
        .contact-form {
            padding: 80px 0;
        }

        .form-control,
        .form-select {
            padding: 12px 15px;
            border: 1px solid #0d50a7;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        /* Footer */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }

        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--vibrant-orange);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 80px;
                text-align: center;
            }

            .section-title {
                margin-bottom: 40px;
            }

            .services,
            .about,
            .testimonials {
                padding: 60px 0;
            }

            .stats {
                padding: 60px 0;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }