 /* Custom CSS for Firefly Global Solutions */

        /* Color Variables */
        :root {
            --navy: #001f4d;
            --royal-blue: #003366;
            --deep-orange: #ff5722;
            --crimson: #dc143c;
            --gold: #ffd700;
            --orange: #ff9800;
            --charcoal: #333333;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            color: var(--charcoal);
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--navy);
        }

        /* Navigation */
        .navbar {
            /*background: var(--navy) !important;*/
            /*background: #F7F2E9 !important;*/
            background: #FBF4EA !important;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            /*padding: 1rem 0;*/
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1030; /* Ensure navbar stays on top */
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold) !important;
            text-decoration: none;
        }

        .navbar-brand i {
            color: var(--deep-orange);
        }

        .nav-link {
            /*color: var(--white) !important;*/
            color: #003366 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #003366;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .dropdown-menu {
            background: var(--navy);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .dropdown-item {
            color: var(--white);
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--gold);
            color: var(--navy);
        }

        /* Hero Carousel - FIXED POSITIONING */
        .hero-carousel {
            height: 100vh;
            overflow: hidden;
            position: relative;
            z-index: 1; /* Lower z-index than navbar */
        }

        .hero-slide {
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
        }

        .slide-1 {
            background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
        }

        .slide-2 {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
        }

        .slide-3 {
           background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 31, 77, 0.3);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-buttons {
            margin-top: 2rem;
        }

        .carousel-indicators {
            bottom: 30px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            background: transparent;
        }

        .carousel-indicators .active {
            background: var(--gold);
        }

        /* About Section - FIXED POSITIONING AFTER SLIDER */
        .about-home {
            background: var(--white);
            position: relative;
            z-index: 2; /* Higher than hero carousel */
        }

        /* Buttons */
        .btn-primary-cta {
            background: var(--deep-orange);
            border: 2px solid var(--deep-orange);
            color: var(--white);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-cta:hover {
            background: var(--crimson);
            border-color: var(--crimson);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
        }

        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: var(--white);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--navy);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .btn-outline-primary {
            border: 2px solid var(--deep-orange);
            color: var(--deep-orange);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: var(--deep-orange);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Section Styling */
        .section-padding {
            padding: 60px 0;
        }

        .section-label {
            color: var(--deep-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--navy);
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .text-gold {
            color: var(--gold) !important;
        }

        .text-white-75 {
            color: rgba(255, 255, 255, 0.75) !important;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
        }

        .experience-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--deep-orange);
            color: var(--white);
            padding: 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
        }

        .badge-number {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
        }

        .badge-text {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content {
            padding-left: 2rem;
        }

        .about-features {
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .feature-item i {
            font-size: 2.5rem;
            margin-right: 1.5rem;
            margin-top: 0.5rem;
        }

        .feature-item h5 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }

        .feature-item p {
            color: var(--dark-gray);
            margin: 0;
        }

        /* Services Section */
        .services-home {
            background: var(--light-gray);
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 40px rgba(255, 87, 34, 0.4);
        }

        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--navy);
        }

        .service-card p {
            color: var(--dark-gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .service-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            color: var(--charcoal);
            font-weight: 500;
        }

        .service-features i {
            margin-right: 1rem;
            font-size: 1rem;
        }

        /* Why Choose Us Section */
        .why-choose-home {
            background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
            color: var(--white);
            position: relative;
        }

        .why-choose-home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
        }

        .why-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem 2rem;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        .why-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--orange));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 2rem;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }

        .why-card:hover .why-icon {
            transform: scale(1.1);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
        }

        .why-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .why-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        /* Contact CTA Section */
        .contact-cta {
            background: var(--light-gray);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--navy);
        }

        .cta-description {
            font-size: 1.2rem;
            color: var(--dark-gray);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            margin-bottom: 3rem;
        }

        .cta-stats {
            border-top: 1px solid #e9ecef;
            padding-top: 3rem;
        }

        .stat-item {
            margin-bottom: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--deep-orange);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--dark-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .footer-logo i {
            color: var(--deep-orange);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .contact-info .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-info .contact-item i {
            margin-right: 1rem;
            font-size: 1.1rem;
        }

        /*.footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }*/

        .copyright,
        .tagline {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Floating Elements */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            color: var(--white);
            transform: scale(1.1);
        }

        .sticky-contact {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
        }

        .sticky-contact-btn {
            background: var(--deep-orange);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
            transition: all 0.3s ease;
        }

        .sticky-contact-btn:hover {
            background: var(--crimson);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
        }

        /* Animations */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 3rem;
            }
            
            .experience-badge {
                position: relative;
                top: auto;
                right: auto;
                margin: 2rem auto;
                display: block;
                width: fit-content;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .service-card,
            .why-card {
                margin-bottom: 2rem;
            }
            
            .whatsapp-float,
            .sticky-contact {
                bottom: 20px;
            }
            
            .whatsapp-float {
                right: 20px;
            }
            
            .sticky-contact {
                left: 20px;
            }
            
            .sticky-contact-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons .btn {
                display: block;
                margin-bottom: 1rem;
                width: 100%;
            }
            
            .cta-buttons .btn {
                display: block;
                margin-bottom: 1rem;
                width: 100%;
            }
            
            .service-icon,
            .why-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }

        /* AOS Animation Fixes */
        [data-aos] {
            pointer-events: none;
        }

        [data-aos].aos-animate {
            pointer-events: auto;
        }

        /* Fix for elements appearing before animation */
        [data-aos="fade-up"] {
            opacity: 0;
            transform: translateY(30px);
            transition-property: opacity, transform;
        }

        [data-aos="fade-right"] {
            opacity: 0;
            transform: translateX(-30px);
            transition-property: opacity, transform;
        }

        [data-aos="fade-left"] {
            opacity: 0;
            transform: translateX(30px);
            transition-property: opacity, transform;
        }

        [data-aos="zoom-in"] {
            opacity: 0;
            transform: scale(0.8);
            transition-property: opacity, transform;
        }

        /* Animated state */
        [data-aos="fade-up"].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        [data-aos="fade-right"].aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        [data-aos="fade-left"].aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        [data-aos="zoom-in"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }

        /* About section specific fixes */
        .about-home [data-aos] {
            transition-duration: 0.8s;
            transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Loading state to prevent flash */
        body:not(.loaded) .about-home [data-aos] {
            opacity: 0;
            transform: translateY(50px);
        }

        /* Override for loaded state */
        body.loaded .about-home [data-aos]:not(.aos-animate) {
            opacity: 0;
        }

        body.loaded .about-home [data-aos].aos-animate {
            opacity: 1;
        }

        /* FIX FOR ABOUT SECTION POSITIONING */
        /* Ensure proper z-index hierarchy */
        .hero-carousel {
            position: relative;
            z-index: 1;
        }
        
        .about-home {
            position: relative;
            z-index: 2;
        }
        
        /* Prevent any transform issues that might affect positioning */
        .about-home {
            transform: none !important;
        }
         .logo-h{
            height: 90px;
        }
        .navbar-toggler{
            background-color: #ffc107 !important;
        }