        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
              scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
        }

        :root {
            --accent: #ffb200;
            --dark: #0f0f1a;
            --muted: #666;
        }

        :root {
            --primary-bg: #1A1421;
            --secondary-bg: #FFAA17;
            --btn-bg: #FFAA17;
            --btn-hover-bg: #222429;
            --text-accent-color: #FFAA17;
        }
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}



/* Hide default cursor */
/* body {
            overflow-x: hidden;
            color: #fff;
} */

/* Hide default cursor */
body {
  cursor: none;
  overflow-x: hidden;
            color: #fff;
}

/* Main cursor (filled) */
#cursor {
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999999999999999999999999999999999;
}

/* Animated outer ring */
#cursor-ring {
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: cursorPulse 1.6s infinite ease-out;
  z-index: 99999999999999999999999999999999999;
}

/* Pulse animation */
@keyframes cursorPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}



        .header-container {
            /* width: 90%; */
            /* max-width: 1400px; */
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-inline: 40px;
        }

        /* ================== NAVBAR ================== */
        .default-header {
            width: 100%;
            padding: 18px 0;
            background: #fff;
            border-radius: 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 18px;
            z-index: 9999;
            max-width: 1400px;
            transition: opacity 0.3s ease;
            /* smooth fade */
        }

        .default-header .header-container {
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #111;
        }

        .logo img {
            width: 150px;
            height: 42px;
            object-fit: contain;
        }

        .logo span {
            font-size: 24px;
            font-weight: 700;
            color: #111;
        }

        .nav ul {
            display: flex;
            list-style: none;
            gap: 34px;
            align-items: center;
        }

        .nav ul li {
            position: relative;
            padding: 6px 0;
        }

        .nav ul li a {
            text-decoration: none;
            color: #222;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: .2px;
            transition: color .18s ease;
        }

        .nav ul li a:hover {
            color: var(--accent);
        }

        .dropdown {
            position: absolute;
            top: calc(100% + 0px);
            left: -200px;
            background: #fff;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            border-radius: 6px;
            padding: 8px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
            opacity: 0;
            transform: translateY(6px);
            pointer-events: none;
            transition: opacity .22s ease, transform .22s ease;
            z-index: 50;
            gap: 12px !important;
        }

        .dropdown li {
            padding: 12px 18px;
            white-space: nowrap;
            width: 100%;
            text-align: left ;
            padding-left: 15px !important;
            border-bottom: 1px solid var(--accent);
        }

        .dropdown li a {
            color: #333;
            font-weight: 500;
        }

        @media (min-width: 992px) {
            .dropdown-parent:hover>.dropdown {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }
        }

        .call-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--accent);
            padding: 10px 18px;
            border-radius: 50px;
            margin-left: 12px;
        }

        .call-box .icon {
            background: #111;
            color: #fff;
            padding: 8px 12px;
            border-radius: 50%;
        }

        .call-box .text {
            line-height: 1;
        }

        .call-box .text span {
            display: block;
            font-size: 12px;
            color: #333;
            font-weight: 500;
            opacity: .9;
            margin-bottom: 5px;
        }

        .call-box .text strong {
            display: block;
            font-size: 16px;
            color: #111;
        }

        .hamburger {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: transparent;
            border: none;
            font-size: 22px;
            cursor: pointer;
            margin-left: 12px;
            color: black;
        }

        /* ================== SIDEBAR ================== */
        .sidebar {
            position: fixed;
            top: 0;
            right: -420px;
            width: 380px;
            height: 100%;
            background: #fff;
            z-index: 99999;
            padding: 28px;
            transition: right .42s cubic-bezier(.2, .9, .2, 1);
            box-shadow: -18px 0 60px rgba(0, 0, 0, .18);
            overflow-y: auto;
        }

        .sidebar.open {
            right: 0;
        }

        .close-sidebar {
            font-size: 22px;
            background: none;
            border: none;
            cursor: pointer;
            float: right;
            color: #444;
        }

        .sidebar-logo {
            width: 160px;
            display: block;
            margin: 22px 0;
        }

        .sidebar h3 {
            color: #111;
            margin-top: 14px;
            margin-bottom: 8px;
            font-size: 18px;
        }

        .sidebar p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .quote-btn {
            display: inline-block;
            background: var(--accent);
            padding: 12px 20px;
            border-radius: 40px;
            color: #111;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
        }

        /* ================== MOBILE MENU ================== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: #fff;
            padding: 26px;
            transition: right .38s cubic-bezier(.2, .9, .2, 1);
            z-index: 100000;
            overflow-y: auto;
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-logo {
            width: 140px;
            margin-bottom: 12px;
        }

        .close-mobile {
            font-size: 22px;
            background: none;
            border: none;
            float: right;
            cursor: pointer;
            color: #222;
        }

        .search-input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 50px;
            border: 1px solid #eee;
            margin: 18px 0;
        }

        .mobile-links,
        .mobile-links ul {
            list-style: none;
            padding-left: 0;
        }

        .mobile-links>li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 8px;
            border-bottom: 1px solid #f0f0f0;
            color: #111;
            font-weight: 600;
        }

        .mobile-links>li button.toggle-sub {
            background: #111;
            color: #fff;
            border-radius: 8px;
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height .32s ease, padding .32s ease;
            background: #fff;
        }

        .mobile-submenu.open {
            padding: 8px 16px;
        }

        .mobile-submenu a {
            display: block;
            padding: 10px 0;
            color: #333;
            text-decoration: none;
            border-bottom: 1px dashed #f3f3f3;
        }

        /* ================== HERO / BANNER ================== */
        .hero {
            position: relative;
            overflow: hidden;
            width: 101%;
            /* padding-top: 140px;
            padding-bottom: 120px; */
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            /* background: rgba(0, 0, 0, 0.5); */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding-block: 120px;
            padding-inline: 85px;
        }

        .hero-left {
            width: 56%;
            padding-right: 20px;
            padding-top: 40px;
            text-align: left;
        }

        .hero-left h5 {
            color: #ffb84d;
            font-weight: 700;
            letter-spacing: .6px;
            font-size: 20px;
        }

        .hero-left h1 {
            font-size: 78px;
            line-height: 1.02;
            margin: 18px 0;
            color: #fff;
            font-weight: 800;
            text-align: left;
        }

        .hero-left h1 span {
            font-weight: 500;
            color: #fff;
            opacity: .95;
        }

        .hero-left h4 {
            color: #ddd;
            font-weight: 700;
            letter-spacing: .2px;
            font-size: 26px;
        }

        .hero-left p {
            width: 76%;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.75;
            font-size: 15px;
        }

        .stats {
            margin-top: 26px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .stat img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .stat h2 {
            font-size: 28px;
            margin-left: 6px;
            color: #fff;
        }

        .stat span {
            color: #cfcfcf;
            font-size: 14px;
            margin-left: 8px;
        }

        .hero-right {
            width: 40%;
            position: relative;
            display: flex;
            justify-content: flex-end;
            margin-top: 50px;
        }

        .banner-img {
            width: 78%;
            border-radius: 12px;
            box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
            display: block;
        }




        .hero-left-horizontal-line {
            width: 120px;
            height: 1px;
            border: 1px solid white;
        }

        .hero-left-horizontal {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .hero-left-icon-box {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            margin-top: 30px;
        }

        .floating-box {
            position: absolute;
            bottom: 80px;
            right: 60%;
            background: #fff;
            color: #111;
            padding: 20px 34px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
            transform: translateY(6px);
            animation: float 4s ease-in-out infinite;
        }

        .floating-box h2 {
            font-size: 32px;
            margin-bottom: 6px;
            font-weight: 800;
        }

        .floating-box p {
            font-size: 18px;
            color: #666;
            margin: 0;
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 1199px) {
            .hero-left h1 {
                font-size: 56px;
            }
        }

        @media (max-width: 991px) {

            /* .mobile-menu, .default-header{
                position: static;
            } */

            .header-container{
                flex-direction: row;
            }
            .nav,
            .call-box {
                display: none;
            }

            .default-header {
                padding: 12px 0;
                border-radius: 30px;
                left: 0;
                transform: none;
                width: 100%;
                max-width: none;
            }
            .hero-content{
                    padding-block: 40px;
    padding-inline: 35px;
            }
            .hero-left-icon-box span{
                display: none;
            }
            .hero-left p{
                width: 100%;
            }
            .hero-left-horizontal {
                align-items: start;
            }
            .floating-box{
                display: none;
            }
            /* .header-container {
                width: 92%;
            } */

            .hero {
                padding-top: 0px;
                padding-bottom: 0px;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-left,
            .hero-right {
                width: 100%;
                padding: 0;
                margin-top: 20px;
            }

            .banner-img {
                width: 100%;
            }

            .floating-box {
                right: 18%;
                bottom: 8%;
            }
        }

        @media (max-width: 480px) {
            .banner-img {
                width: 100%;
            }

            .hero-left h1 {
                font-size: 36px;
                line-height: 1.05;
            }

            .mobile-links>li {
                font-size: 16px;
                padding: 12px 6px;
            }

            .hero-left-horizontal {
                display: flex;
                flex-direction: column;
            }

            .hero-left-icon-box {
                flex-direction: column;
            }

            .hero-left-icon-box img {
                width: 50px;
            }

            .hero-right {
                display: flex;
                justify-content: center;
            }
        }


        .secondary-header {
            width: 100%;
            padding: 18px 0;
            background: white;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 99999999;
            max-width: 1530px;
            transform: translateY(-100%);
            transition: transform 0.4s ease;

        }

        .navbar {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }


           .visible {
            transform: translateY(0);
        }

        .hide {
            opacity: 0;
            /* fade out */
            pointer-events: none;
            /* prevent clicks */
        }







        /* whatsapa and call butoon style  */
        .floating-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999999;
}

/* Common Button Style */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.float-btn.whatsapp {
  background-color: #25d366;
}

/* Call Button */
.float-btn.call {
  background-color: #0a58ca;
}

/* Hover Effects */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.float-btn span i{
  font-size: 32px;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 15px;
    left: 15px;
  }
}



/* popup style  */
#popup{
    z-index:999999999;
}
.popup-logo{
    width: 300px;
    background-color: white;
    border-radius: 25px;
    margin-bottom: 40px;
}

@media screen and (max-width: 500px) {
  .popup-left-sec{
    display: none;
  }
}