
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-orange: #f82622;
            --primary-red: #B80200;
            --white: #ffffff;
            --black: #000000;
            --whatsapp-green: #25D366;
        }
        body { font-family: 'Arial', sans-serif; }

        /* Service Carousel - Now at Top */
        .header-carousel-wrapper {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            display: grid;
            grid-template-columns: 1fr auto auto;
            align-items: center;
            gap: 20px;
            padding-right: 30px;
        }
        
        .header-carousel-section {
            overflow: hidden;
            position: relative;
        }
        
        .header-carousel-track {
            display: flex;
            animation: scroll 40s linear infinite;
            width: max-content;
        }
        
        .header-carousel-item {
            padding: 0 30px;
            color: var(--white);
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
            position: relative;
        }
        
        .header-carousel-item:after {
            content: '★';
            position: absolute;
            right: 10px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Contact Buttons Container */
        .header-contact-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        /* Phone Number with Pulse */
        .header-phone-pulse {
            flex-shrink: 0;
        }
        
        .header-phone-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: phonePulse 300ms ease-in-out infinite;
        }
        
        @keyframes phonePulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 20px rgba(248, 169, 34, 0.5);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 30px rgba(248, 169, 34, 0.8);
                transform: scale(1.05);
            }
        }
        
        .header-phone-link svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
            animation: phoneRing 1.2s ease-in-out infinite;
        }
        
        @keyframes phoneRing {
            0%, 100% { transform: rotate(0deg); }
            10%, 30%, 50%, 70%, 90% { transform: rotate(-15deg); }
            20%, 40%, 60%, 80% { transform: rotate(15deg); }
        }
        
        .header-phone-link:hover {
            animation: none;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 30px rgba(248, 169, 34, 1);
            transform: scale(1.1);
        }
        
        .header-phone-link:hover svg {
            animation: none;
            transform: scale(1.2);
        }

        /* WhatsApp Button with Pulse */
        .header-whatsapp-pulse {
            flex-shrink: 0;
        }
        
        .header-whatsapp-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            padding: 12px 25px;
            background:  #00861B;
            border: 2px solid rgba(37, 211, 102, 0.5);
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: whatsappPulse 2.5s ease-in-out infinite;
        }
        
        @keyframes whatsappPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.5);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 0 30px rgba(37, 211, 102, 0.8);
                transform: scale(1.05);
            }
        }
        
        .header-whatsapp-link svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
            animation: whatsappBounce 1s ease-in-out infinite;
        }
        
        @keyframes whatsappBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .header-whatsapp-link:hover {
            animation: none;
            background: rgba(37, 211, 102, 0.4);
            box-shadow: 0 0 30px rgba(37, 211, 102, 1);
            transform: scale(1.1);
        }
        
        .header-whatsapp-link:hover svg {
            animation: none;
            transform: scale(1.2);
        }

        /* Main Header */
        .header-main {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 80px;
        }
        
        .header-logo img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }
        
        .header-menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-red);
            padding: 5px;
            background: none;
            border: none;
        }
        
        .header-mobile-overlay {
            display: none;
        }
        
        .header-close-menu {
            display: none;
        }
        
        .header-navbar {
            display: flex;
            align-items: center;
        }
        
        .header-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .header-menu li a {
            display: block;
            padding: 12px 18px;
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        
        .header-menu > li > a:hover {
            color: var(--primary-red);
            background: rgba(248, 169, 34, 0.1);
        }

        /* Dropdown toggle buttons - HIDDEN ON DESKTOP */
        .header-dropdown-toggle {
            display: none;
        }

        /* Dropdown Styles */
        .header-dropdown {
            position: relative;
        }
        
        .header-submenu, .header-nested-submenu {
            list-style: none;
            display: none;
        }
        
        .header-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 250px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: visible;
            z-index: 2000;
        }
        
        .header-submenu li {
            position: relative;
        }
        
        .header-submenu li a {
            padding: 12px 20px;
            color: var(--black);
            font-size: 14px;
            border-left: 3px solid transparent;
            white-space: nowrap;
        }
        
        .header-submenu li a:hover {
            background: linear-gradient(90deg, rgba(248, 169, 34, 0.1) 0%, transparent 100%);
            border-left-color: var(--primary-orange);
            color: var(--primary-red);
            padding-left: 25px;
        }

        /* Nested Dropdown */
        .header-nested-dropdown {
            position: relative;
        }
        
        .header-nested-dropdown > a::after {
            content: '›';
            float: right;
            font-size: 18px;
            margin-left: 15px;
        }
        
        .header-nested-submenu {
            position: absolute;
            top: 0;
            right: 100%;
            background: var(--white);
            min-width: 220px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
            margin-left: 0;
            z-index: 3000;
        }
        
        .header-nested-submenu li a {
            padding: 12px 20px;
            color: var(--black);
            font-size: 14px;
            border-left: 3px solid transparent;
            white-space: nowrap;
        }
        
        .header-nested-submenu li a:hover {
            background: linear-gradient(90deg, rgba(248, 169, 34, 0.1) 0%, transparent 100%);
            border-left-color: var(--primary-orange);
            color: var(--primary-red);
            padding-left: 25px;
        }

        /* DESKTOP HOVER STYLES - ABOVE 768PX */
        @media (min-width: 769px) {
            .header-dropdown:hover > .header-submenu {
                display: block !important;
            }
            .header-nested-dropdown:hover > .header-nested-submenu {
                display: block !important;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Hide carousel and WhatsApp on mobile */
            .header-carousel-section {
                display: none;
            }
            
            .header-whatsapp-pulse {
                display: none;
            }
            
            .header-carousel-wrapper {
                padding: 15px 20px;
                display: flex;
                justify-content: center;
                grid-template-columns: none;
            }
            
            .header-contact-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .header-phone-link {
                font-size: 18px;
                padding: 15px 35px;
                background: var(--white);
                color: var(--primary-red);
                border: 3px solid rgba(156, 20, 20, 0.3);
            }
            
            .header-phone-link svg {
                fill: var(--primary-red);
                width: 26px;
                height: 26px;
            }
            
            @keyframes phonePulse {
                0%, 100% {
                    box-shadow: 0 0 0 0 rgba(156, 20, 20, 0.7), 0 4px 20px rgba(0, 0, 0, 0.2);
                    transform: scale(1);
                }
                50% {
                    box-shadow: 0 0 0 12px rgba(156, 20, 20, 0), 0 8px 30px rgba(248, 169, 34, 0.5);
                    transform: scale(1.05);
                }
            }
            
            .header-logo img {
                height: 70px;
            }
            
            .header-nav-container {
                min-height: 70px;
                padding: 0 15px;
            }
            
            .header-menu-toggle {
                display: block;
            }
            
            .header-mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.6);
                z-index: 9999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .header-mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .header-navbar {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                transition: right 0.3s ease;
                overflow-y: auto;
                z-index: 10000;
                flex-direction: column;
            }
            
            .header-navbar.active {
                right: 0;
            }
            
            .header-close-menu {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 18px 20px;
                position: sticky;
                top: 0;
                z-index: 100;
                cursor: pointer;
            }
            
            .header-close-menu-text {
                color: var(--white);
                font-size: 20px;
                font-weight: bold;
            }
            
            .header-close-menu-icon {
                color: var(--primary-red);
                font-size: 40px;
                line-height: 1;
            }
            
            .header-menu {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            
            .header-menu > li {
                border-bottom: 1px solid #e5e5e5;
            }
            
            .header-menu li a {
                padding: 16px 20px;
                font-size: 15px;
                border-radius: 0;
            }

            .header-dropdown-toggle {
                display: flex;
                position: absolute;
                right: 0;
                top: 0;
                width: 50px;
                height: 100%;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                color: var(--primary-red);
                cursor: pointer;
                background: transparent;
                border: none;
                z-index: 1;
            }
            
            .header-dropdown > a, .header-nested-dropdown > a {
                position: relative;
                padding-right: 50px;
            }

            .header-dropdown.active > .header-submenu,
            .header-nested-dropdown.active > .header-nested-submenu {
                display: block !important;
            }
            
            .header-submenu, .header-nested-submenu {
                position: static;
                box-shadow: none;
                border-radius: 0;
                background: #f9f9f9;
                min-width: auto;
                margin-left: 0;
            }
            
            .header-dropdown.active > a {
                background: rgba(248, 169, 34, 0.1);
                color: var(--primary-red);
            }
            
            .header-submenu li {
                border-bottom: 1px solid #ececec;
            }
            
            .header-submenu li:last-child {
                border-bottom: none;
            }
            
            .header-submenu li a {
                padding: 14px 20px 14px 35px;
                font-size: 14px;
                white-space: normal;
                border-left: none;
                background: var(--white);
            }
            
            .header-submenu li a:hover {
                padding-left: 35px;
            }
            
            .header-nested-dropdown.active > a {
                background: rgba(156, 20, 20, 0.1);
                color: var(--primary-red);
            }
            
            .header-nested-submenu {
                background: #f5f5f5;
            }
            
            .header-nested-submenu li {
                border-bottom: 1px solid #e8e8e8;
            }
            
            .header-nested-submenu li:last-child {
                border-bottom: none;
            }
            
            .header-nested-submenu li a {
                padding: 13px 20px 13px 45px;
                font-size: 13px;
                border-left: none;
            }
            
            .header-nested-submenu li a:hover {
                padding-left: 45px;
            }

            .header-nested-dropdown > a::after {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .header-navbar {
                width: 90%;
            }
        }
   

         /* Fixed Button Container */
    .fix-btn-container {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* Base Button Style */
    .fix-btn {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: white;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .fix-btn:hover {
      transform: scale(1.1);
    }

    /* WhatsApp Button */
    .fix-btn-whatsapp {
      background: #25D366;
      animation: fix-btn-pulse 2s infinite;
    }

    /* Call Button */
    .fix-btn-call {
      background: #007bff;
    }

    /* Pulse Animation */
    @keyframes fix-btn-pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 600px) {
      .fix-btn-container {
        right: 12px;
        bottom: 12px;
        gap: 12px;
      }

      .fix-btn {
        width: 58px;
        height: 58px;
        font-size: 26px;
      }
    }

    /* EXTRA SMALL MOBILE */
    @media (max-width: 380px) {
      .fix-btn-container {
        right: 10px;
        bottom: 10px;
        gap: 10px;
      }

      .fix-btn {
        width: 54px;
        height: 54px;
        font-size: 24px;
      }
    }




            

        /* Footer Section Styles */
        .footer-section {
            /* background: linear-gradient(135deg, #5d0b0b 0%, #7a0f0f 100%); */
            background: linear-gradient(135deg, #000000 0%, #B80200 100%);
            color: #fff;
            padding: 60px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F8A922 0%, #9C1414 50%, #F8A922 100%);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-logo {
            margin-bottom: 20px;
            max-width: 180px;
        }

        .footer-logo img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
        }

        .footer-about {
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-heading {
            position: relative;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 12px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #F8A922, #ffc107);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #F8A922;
        }

        .footer-links a::before {
            content: '›';
            margin-right: 10px;
            font-size: 22px;
            color: #F8A922;
            font-weight: bold;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 10px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .footer-contact-item:hover {
            background: rgba(248, 169, 34, 0.1);
        }

        .footer-contact-icon {
            color: #F8A922;
            margin-right: 15px;
            margin-top: 2px;
            min-width: 20px;
            text-align: center;
        }

        .footer-contact-icon svg {
            width: 18px;
            height: 18px;
        }

        .footer-contact-info {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .footer-contact-info a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-info a:hover {
            color: #F8A922;
        }

        .footer-social {
            margin-top: 20px;
        }

        .footer-social-heading {
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
            color: #F8A922;
        }

        .footer-social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .footer-social-icon svg {
            color: #9C1414;
            width: 18px;
            height: 18px;
        }

        .footer-social-icon:hover {
            background: linear-gradient(135deg, #F8A922, #ffc107);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(248, 169, 34, 0.4);
        }

        .footer-social-icon:hover svg {
            color: white;
        }

        .footer-copyright {
            text-align: center;
            padding: 25px 20px;
            margin-top: 40px;
            background-color: rgba(0, 0, 0, 0.3);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            border-top: 1px solid rgba(248, 169, 34, 0.3);
        }

        .footer-copyright a {
            color: #F8A922;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 0;
            }

            .footer-container {
                gap: 35px;
            }

            .footer-heading {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-column {
                text-align: left;
            }

            .footer-social-icons {
                justify-content: flex-start;
            }

            .footer-about {
                font-size: 14px;
            }

            .footer-copyright {
                font-size: 13px;
                padding: 20px 15px;
            }
        }

        @media (max-width: 380px) {
            .footer-section {
                padding: 30px 0 0;
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-heading {
                font-size: 17px;
            }

            .footer-links a,
            .footer-about,
            .footer-contact-info {
                font-size: 13px;
            }
        }