        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            /* line-height: 1.6; */
            color: #333;
            overflow-x: hidden;
        }
        a{
            color: white;
            text-decoration: none !important;
        }

        /* Announcement Bar */
        .announcement-bar {
         background: linear-gradient(135deg,#111111, #111111, #76777c,#111111,#111111);
            color: white;
            padding: 10px 0;
            font-size: 18px;
            position: relative;
            z-index: 100;
        }

        .announcement-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .announcement-left {
            display: flex;
            gap: 10px;
        }

        .announcement-right {
            display: flex;
            gap: 15px;
        }

        .social-icon i{
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .social-icon i:hover {
            transform: translateY(-2px);
            color: #ffd700 !important;
        }

        .social-icon::after {
            content: attr(data-name);
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 8px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .social-icon:hover::after {
            opacity: 1;
        }
/* ==================================================================================== */
/* ================================
   Header Base Styles
================================ */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


.nav-link.dropdown-toggle.nav-active {
    color: white;
    background-color: #333;
}



.dropdown-item.active {
    background-color: #333;
    color: white;
}

.dropdown-item:hover {
    background-color: #555;
    color: white;
}

/* ================================
   Logo Styles
================================ */
.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
}

.logo::before {
    content: "🏆";
    font-size: 24px;
    animation: bounce 2s infinite;
}

/* Logo bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ================================
   Navigation Styles
================================ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* Active and hover state for nav links */
/* .nav-link.active
 {
    color: rgb(0, 0, 0);
    /* background: linear-gradient(135deg, #111111, #76777c); */
/* }  */

.nav-link.active {
  color: white;
  background-color: #333;
}
.nav-link:hover {
    color: white;
    background-color: #333;
}
.nav-link.active:not(.dropdown-toggle) {
    color: white;
    background-color: #333;
}

/* ================================
   Search Box Styles
================================ */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.search-icon {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #128C7E;
}

#searchInput {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    padding: 5px 10px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    background: white;
}

/* Expand search input when open */
#searchContainer.open #searchInput {
    width: 150px;
    opacity: 1;
}

/* ================================
   No Results Message
================================ */
.no-results-message {
    display: none;
    text-align: center;
    color: red;
    font-weight: bold;
    font-size: 18px;
    margin: 30px auto;
}

/* ================================
   Responsive Logo
================================ */
.responsive-logo {
    max-width: 80px;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .responsive-logo { max-width: 60px; }
}

@media (max-width: 576px) {
    .responsive-logo { max-width: 50px; }
}

/* ================================
   Dropdown Menu Styles
================================ */
.dropdown {
    position: relative;
}

.nav-link.dropdown-toggle:hover {
    color: white;
    background-color: #333;
}

.nav-link.dropdown-toggle.active {
    /* Remove any conflicting background/color rules */
    background: none;
    color: #333;
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    padding: 0 !important;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
    transition: all 0.2s ease;
}

/* .dropdown-menu.show,
.dropdown:hover .dropdown-menu,
.hover-dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
} */

.dropdown-menu.show {
    display: block;
}


.dropdown.open .dropdown-menu {
    display: block;
}
/* Hover pe show karo */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.open .dropdown-toggle::after,
.dropdown-toggle.active::after {
    transform: rotate(180deg);
}
.dropdown:hover .dropdown-toggle,
.dropdown.open .dropdown-toggle,
.dropdown-toggle:hover {
    color: white;
    background-color: #333;
}


.dropdown-item {
    background: #c9cbd3;
    display: block;
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #111111, #76777c);
    color: #fff;
}

.dropdown.open .dropdown-toggle,
.dropdown-toggle:hover {
    color: white;
    background-color: #333;
}

/* ================================
   Mobile Menu Styles
================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0; 
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* ================================
   Mobile and Tablet Responsive Styles
================================ */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0;
        margin: 0;
        border-top: 1px solid #ddd;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    /* Smooth scrolling for navigation menu */
    .nav-menu::-webkit-scrollbar {
        width: 8px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 4px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        min-width: 100%;
        margin: 0;
        padding: 0;
        display: none;
        max-height: 250px;
        overflow-y: auto;
        overflow-x: hidden;
        /* Custom scrollbar styling */
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
    }

    /* Webkit scrollbar styling for mobile dropdown */
    .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .dropdown.open .dropdown-menu,
    .dropdown-menu.show,
    .dropdown:hover .dropdown-menu {
        display: block;
        border-top: 1px solid #ddd;
    }

    .dropdown-item {
        background: #f8f9fa;
        padding: 12px 30px;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        flex-shrink: 0;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: linear-gradient(135deg, #111111, #76777c);
        color: #fff;
    }

    .dropdown-toggle {
        cursor: pointer;
        width: 100%;
        text-align: left;
        position: relative;
    }

 /* Arrow animation */
.dropdown-toggle::after {
    content: '▼';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle::after,
.dropdown-toggle.active::after {
    transform: rotate(180deg);
}

    /* Header content adjustments for mobile */
    .header-content {
        position: relative;
        flex-wrap: wrap;
    }

    .header-right {
        order: 2;
        gap: 10px;
    }

    .search-container {
        margin-right: 0;
    }

    #searchContainer.open #searchInput {
        width: 120px;
    }
}

/* ================================
   Extra Small Devices (Phones)
================================ */
@media (max-width: 576px) {
    .header-content {
        padding: 5px 10px;
    }

    .logo {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .logo::before {
        font-size: 20px;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .dropdown-item {
        padding: 10px 25px;
        font-size: 13px;
    }

    .dropdown-menu {
        max-height: 200px;
    }

    .nav-menu {
        max-height: calc(100vh - 70px);
    }

    #searchContainer.open #searchInput {
        width: 100px;
    }

    .search-icon {
        font-size: 18px;
    }
}

/* ======================================================================================== */
/* Newsletter Styles */
.newsletter-section {
  background-color: #ffffff;
  /* padding:30px; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
}

.newsletter-container {
  max-width: 1000px;
  margin: auto;
  margin: 20px;
  text-align: center;
}

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.newsletter-input {
  padding: 12px 18px;
  width: 300px;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: #473391;
  outline: none;
}

.newsletter-button {
  background-color: #473391;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color: #2f2569;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 30px;
}

.newsletter-benefit-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.newsletter-benefit-card:hover {
  transform: translateY(-5px);
}

.newsletter-benefit-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #473391;
}

.newsletter-benefit-card p {
  font-size: 0.95rem;
  color: #666;
}
/* Mobile (up to 575px) */
@media (max-width: 480px) {
  .newsletter-title {
    font-size: 1.5rem;
    margin-top: 20px
  }

  .newsletter-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .newsletter-input {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .newsletter-button {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .newsletter-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .newsletter-benefit-card h5 {
    font-size: 1rem;
  }

  .newsletter-benefit-card p {
    font-size: 0.9rem;
  }
}

/* Tablet (576px to 991px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .newsletter-title {
    font-size: 2rem;
    margin-top: 20px;
  }
  .newsletter-form {
  display: flex;
  justify-content: center;


}

  .newsletter-subtitle {
    font-size: 1.05rem;
  }

  .newsletter-input {
    width: 280px;
    font-size: 1rem;
  }

  .newsletter-button {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .newsletter-benefits {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 15px;
  }
}

/* Laptop (992px and above) */
@media (min-width: 1024px) {
  .newsletter-title {
    font-size: 2.5rem;
      margin-top: 20px
  }

  .newsletter-subtitle {
    font-size: 1.1rem;
  }

  .newsletter-input {
    width: 300px;
  }

  .newsletter-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================================================================================= */
        /* Footer */
        .footer {
            background: black;
            color: white;
           
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
      

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            /* gap: 40px; */
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            color: rgb(197, 197, 164);
            margin-bottom: 20px;
            font-weight: 900;
            font-size: 1.5rem;
        }

.footer-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* 👇 Responsive centering for tablet & mobile */
@media (max-width: 991.98px) {
  .footer-logo {
    margin: 0 auto 20px auto;
  }
}


        .footer-description {
            margin-bottom: 20px;
            line-height: 1.6;
            color:white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color:orange;
        }

        .contact-info {
            color: white;
            margin-bottom: 10px;
          
        }

        .contact-info strong {
            color: orange;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-social-icon:hover {
            background: linear-gradient(135deg, #ff6b35, #ffd700);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
        }

        .footer-social-icon::after {
            content: attr(data-name);
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 8px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .footer-social-icon:hover::after {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #fff;
            color: white;
            margin-top: 10px;
            position: relative;
           
        }

        /* Floating Trophy Animation */
        .floating-trophy {
            position: absolute;
            font-size: 20px;
            color: rgba(255, 215, 0, 0.1);
            animation: floatTrophy 15s infinite linear;
            pointer-events: none;
        }

        @keyframes floatTrophy {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
       @media (min-width: 1024px) and (max-width: 1440px){
            .footer{
                display: grid;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
           
            .header-right {
                gap: 10px;
            }

            .hero-title {
                font-size: 2.5rem;
                min-height: 80px;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .newsletter h3 {
                font-size: 2rem;
            }

            .newsletter-form {
                /* flex-direction: column; */
                align-items: center;
            }

            .newsletter-features {
                flex-direction: column;
                gap: 15px;
            }

            .announcement-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .announcement-left {
                justify-content: center;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 20px;
                /* gap: 10px; */
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;

            }
            ol, ul {
             padding-left: 0rem !important;
            }


            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .search-box {
                width: 170px;
                font-size: 12px;
            }

            .hero-title {
                font-size: 2rem;
                min-height: 60px;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .newsletter h3 {
                font-size: 1.5rem;
            }

            .newsletter p {
                font-size: 1rem;
            }

            .announcement-bar {
                font-size: 12px;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 10px;
            }

            .header-right {
                order: 3;
                
                justify-content: center;
            }
                .announcement-left {
        display: grid;
        justify-content: center;
    }
        }


/* ================================================ */


.social-icon i {
    font-size: 20px;
    color: white;
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icon i:hover {
    color: #007bff; /* Hover color */
}
.footer-logo-img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 60px;
    margin: 0 auto; /* Center horizontally */
    object-fit: contain;
}
/* ===================================================================================================== */
        /* call ,whatsapp and top scroller  */
         .content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .content h1 {
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .content p {
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        /* Left Bottom Buttons Container */
        .left-buttons {
            position: fixed;
            left: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        /* Call Button */
        .call-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
        }

        .call-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
        }

        .call-btn:active {
            transform: translateY(-1px);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-btn:active {
            transform: translateY(-1px);
        }


        /* Icons */
        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .left-buttons {
                left: 15px;
                bottom: 15px;
                gap: 12px;
            }
            
            .call-btn, .whatsapp-btn{
                width: 50px;
                height: 50px;
            }
            

            
            .icon {
                width: 20px;
                height: 20px;
            }
            
            .content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .left-buttons {
                left: 10px;
                bottom: 10px;
                gap: 10px;
            }
            
            .call-btn, .whatsapp-btn {
                width: 45px;
                height: 45px;
            }
            

            
            .icon {
                width: 18px;
                height: 18px;
            }
        }

        /* Tablet specific */
        @media (min-width: 769px) and (max-width: 1024px) {
            .left-buttons {
                left: 25px;
                bottom: 25px;
            }
            
        }

        /* Animation for buttons */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .call-btn:hover, .whatsapp-btn:hover {
            animation: pulse 1s infinite;
        }
/* =========================================================== */
/* topscroller */

  #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #000;
    color: #fff;
    border: none;
    outline: none;
   height: 45px;
   width: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none; /* Hidden by default */
    transition: background-color 0.3s, transform 0.3s;
  }

  #scrollToTopBtn:hover {
    background-color: #333;
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    #scrollToTopBtn {
      bottom: 15px;
      right: 15px;
      padding: 10px 12px;
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    #scrollToTopBtn {
      bottom: 12px;
      right: 12px;
      padding: 8px 10px;
      font-size: 14px;
    }
  } 
  /* contact buttons  */
 .sideaction-wrapper {
      position: fixed;
      top: 60%;
      right: 0;
      transform: translateY(-50%);
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-end;
    }

    .sideaction-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 12px;
      background-color: #555;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 8px;
      writing-mode: vertical-rl;
      text-align: center;
      border-radius: 5px 0 0 5px;
      transition: background 0.3s ease, transform 0.3s ease;
      height: 105px;
      width: 30px;
    }

    .sideaction-button:hover {
      transform: scale(1.05);
      background-color: #800080;
    }

    .sideaction-whatsapp {
      background-color: #25D366;
      width: 40px;
      height: 40px;
      border-radius: 8px 0 0 8px;
      background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 20px 20px;
    }

    .sideaction-pay {
      background-color: red;
    }

    .sideaction-callback {
      background-color: #0033A0;
    }

    /* Responsive for mobile */
    @media (max-width: 600px) {
      .sideaction-button {
        height: 100px;
        width: 25px;
        font-size: 7px;
      }

      .sideaction-whatsapp {
        width: 36px;
        height: 36px;
        background-size: 16px 16px;
      }
    }
/* ================================================================== */
/* call back pop up  */
.callback-toggle-button {
  position: fixed;
  top: 50%;
  right: 0;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  writing-mode: vertical-rl;
  padding: 12px 8px;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  z-index: 10000;
  transition: background 0.3s ease;
}

.callback-toggle-button:hover {
  background-color: #800080;
}

.callback-form-box {
  position: fixed;
  top: 50%;
  right: -280px;
  transform: translateY(-50%);
  width: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callback-form-box.active {
  right: 45px; /* Same width as trigger button */
}

.callback-form-box input {
  padding: 8px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-code {
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 4px;
  font-family: monospace;
  font-size: 15px;
}

.refresh-captcha {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.submit-callback {
  background: #000;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-callback:hover {
  background-color: #800000;
}

/* Mobile-only close button inside form */
.mobile-close-button {
  display: none;
}

/* Show close button only on mobile */
@media (max-width: 600px) {
  .mobile-close-button {
    display: block;
    margin-top: 10px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }
}       
/* ===================================================================== */
/* Enquiry  */
/* Enquiry Button */
.enquiry-btn {
background: linear-gradient(to right, #a56f48, #e0a96f);
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.enquiry-btn:hover {
background: linear-gradient(to right,#e0a96f, #a56f48);
  transform: scale(1.05);
}

/* Popup Overlay - fixed center */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 15px;
  overflow: hidden;
}

/* Popup Box - smaller + centered */
.popup-box {
  background: rgba(32, 32, 32, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px 25px;
  max-width: 400px;
  width: 100%;
  color: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Form Styling */
.popup-box h2 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.popup-box form input,
.popup-box form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.popup-box form input::placeholder,
.popup-box form textarea::placeholder {
  color: #eee;
}

.submit-btn {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
 background: linear-gradient(135deg, #8f94fb, #4e54c8);
}

/* Responsive */
@media (max-width: 768px) {
  .popup-box {
    max-width: 50%;
    padding: 20px;
  }

  .popup-box h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .popup-box {
    padding: 15px;
    max-width: 90%;
  }

  .popup-box h2 {
    font-size: 1.3rem;
  }

  .submit-btn {
    font-size: 0.95rem;
  }
}
/* ================================================= */
/* Hide dropdown by default in mobile */
@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
  }

  #productDropdown.open .dropdown-menu {
    display: block;
  }
}
/* ================================================================== */
/* nav product dropdown  */