
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===============================
   TOP OFFER BAR (2 ROW LAYOUT)
================================ */

/* OUTER WRAPPER â€” controls centering */
/* ===============================
   TOP OFFER BAR (2 ROW LAYOUT)
================================ */

/* OUTER WRAPPER â€” controls centering */
.top-offer-wrap {
  display: flex;
  justify-content: center;
}

/* INNER BAR â€” visual size */
.top-offer-bar {
  width: 100%;
  max-width: 75%;
  /* SAME as header & hero */
  padding: 20px 28px;
  /* slightly bigger = premium look */
    font-family: "Instrument Sans", sans-serif !important;
  background: #ffffff;
}


/* ROWS */
.offer-row {
  display: flex;
  align-items: center;
}

.top-row {
  justify-content: space-between;
  gap: 20px;
}

/* TIMER ROW â€“ FIXED */
.timer-row {
  margin-top: 10px;
  font-size: 14px;
  color: #000000;

  justify-content: flex-start;
  /* ðŸ”¥ KEY FIX */
  gap: 5px;
  flex-wrap: wrap;
  /* mobile safe */
}

@media (max-width: 768px) {
  .top-offer-wrap {
    display: none;
  }
}

/* INNER BAR â€” visual size */
.footer-container {

  max-width: 95%;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  color:#fff !important;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}

.coupon {
  color: #2563eb;
  font-weight: 700;
}

.discount {
  color: #dc2626;
  font-weight: 700;
}

/* ===============================
   RIGHT SECTION
================================ */

.offer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.buy-btn {
  background: #ffd54f;
  color: #1f2937;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* ===============================
   TIMER
================================ */

.time {
  font-weight: 700;
  font-size: 20px;
}

.red {
  color: #dc2626;
}

/* ===============================
   CLOSE RADIO TOGGLE
================================ */

.close-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.close-toggle input {
  display: none;
}

.close-toggle span {
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
}

.close-toggle input:checked+span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
}


/* ===============================
   HEADER BACKGROUND
================================ */
.header-wrap {
  /* parent bg as seen earlier */
  padding: 24px 0;
    font-family: "Instrument Sans", sans-serif !important;
  border-radius: 20px 20px 0px 0px;
}

@media (max-width: 768px) {
  .header-wrap {
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .header-wrap {
    padding: 12px 0;
  }
}

/* ===============================
   HEADER PILL
================================ */
.header-pill {
  max-width: 95%;
  margin: 0 auto;

  background: #ffffff;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header-pill {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .header-pill {
    padding: 12px 16px;
  }
}

/* ===============================
   LOGO
================================ */
.logo-wrap img {
  width: 170px;
  height: auto;
  padding-left:20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-wrap img {
    width: 110px;
    padding-left:5px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .logo-wrap img {
    width: 90px;
    height: 28px;
  }
}

/* ===============================
   MENU WRAP
================================ */
.menu-wrap {
  max-width: 798px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 1024px) {
  .menu-wrap {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .menu-wrap {
    display: none;
  }
}

/* ===============================
   MENU ITEM
================================ */
.menu-item {
  height: 24px;
  padding: 0 2px;
  /* micro breathing space */
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;

  color: #555;
  text-decoration: none;
  white-space: nowrap;
}

.menu-item.active {
  font-weight: 600;
}

.dropdown-new > a {
  color: #555;
  text-decoration:none;
}

/* ===============================
   MOBILE MENU TOGGLE
================================ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #3E4095;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Header actions wrapper to align cart + toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}



.right-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  text-decoration: none;
  margin: 10px 14px;
  background: #3E4095;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
}

.right-btn > a {
    text-decoration:none;
    color: #fff;
    display: contents;
}

.right-btn > a:hover {
    text-decoration:none;
    color: #fff !important;
    display: contents;
}


.right-btn .user-icon {
  display: block;
}

.right-btn .right-text {
  display: inline-block;
  white-space: nowrap;
  line-height: 1; 
}

@media (max-width: 768px) {
  .right-btn {
    font-size: 14px;
    padding: 8px 14px;

    background: #ffffff;
    color: #000000;
  }
}

@media (max-width: 480px) {
  .right-btn {
    font-size: 12px;
    padding: 6px 10px;
    background: #ffffff;
    color: #000000;
  }
}

  .cart-icon {
    position: relative;
    display: inline-block;
}
  /* Blue count circle */
#CartCount1 {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 5px;
    z-index: 5;
}

/* Hide if zero */
#CartCount1:empty,
#CartCount1[data-count="0"] {
    display: none;
}

@media (max-width: 768px) {

  /* On mobile: show cart icon, hide login text and user icon, keep toggle to the right */
  .right-btn .cart-icon {
    display: inline-block !important;
    font-size: 20px;
  }


  .right-btn .user-icon,
  .right-btn .right-text {
    display: none !important;
  }

  /* Ensure header-actions align to the right side */
  .header-pill .header-actions {
    margin-left: auto;
  }
  .header-actions{
      gap : 2px;
  }
}

/* ===============================
   MOBILE MENU
================================ */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-item {
  padding: 12px 28px;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.mobile-menu-item:hover {
  background: #f5f5f5;
}



/* ===============================
   USER ICON
================================ */
.user-icon {
  width: 44px;
  height: 44px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  color: #000000;

  font-size: 22px;
}



/* ===============================
   MASTER HERO GRADIENT
================================ */
.hero-gradient {
  background: linear-gradient(180deg, #b8b8ec 0%, #ffffff 100%);
}
/* =========================================================
   DESKTOP FIRST (DEFAULT â‰¥ 992px)
========================================================= */

/* Hide mobile menu on desktop */
.mobile-menu {
    display: none;
}


/* Desktop dropdown */
.menu-wrap .dropdown-new {
    position: relative;
}

.menu-wrap .dropdown-menu-new {
    position: absolute;
    top: 220%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
}

.menu-wrap .dropdown-menu-new a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.menu-wrap .dropdown-menu-new a:hover {
    background: #f4f6ff;
}

/* Show desktop dropdown on hover */
.menu-wrap .dropdown-new:hover .dropdown-menu-new {
    display: block;
}
.dropdown-toggle:hover {
    text-decoration: none !important;
}

.menu-item:hover {
    text-decoration: none !important;
}

.mobile-menu-item > a {
    text-decoration:none;
    color:#000;
}

.dropdown-toggle::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -15px;
  bottom: -40px;
  left: -15px;
}

.dropdown-new:hover .caret-icon {
  transform: rotate(180deg);
}

/* =========================================================
   MOBILE ONLY (â‰¤ 991px)
========================================================= */
@media (max-width: 991px) {

    /* Hide desktop menu */
    .menu-wrap {
        display: none;
    }

    /* Mobile dropdown wrapper */
    .dropdown-mobile-new {
        width: 100%;
    }

    /* Mobile dropdown container */
    .mobile-dropdown-new {
        display: none;          /* closed by default */
        padding-left: 16px;
        margin-top: 6px;
    }

    /* Mobile dropdown links */
    .mobile-dropdown-new a {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 14px;
        color: #000;
        text-decoration: none;
        white-space: normal;
    }

    .mobile-dropdown-new a:hover {
        color: #4c4fb8;
    }

    /* Disable desktop dropdown styles on mobile */
    .menu-wrap .dropdown-menu-new {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }
}




/* ===============================
   FOOTER
================================ */

.site-footer {
  background: linear-gradient(180deg, #3E4095 0%, #5357FF 100%);
position: relative;
  color:#fff !important;
  font-family: "Instrument Sans", sans-serif !important;
  padding-top: 80px;
  overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;

    background-image: url("/assets/images/Vector-16.png");
    background-repeat: no-repeat;
    background-size: 985px 281.7367px;

    width: 985px;
    height: 281.7367px;

    border-radius: 12px;

    /* Proper positioning */
    bottom: 0;
    left: 70%;
    transform: translateX(-50%);

    pointer-events: none;
    z-index: 0;
}


@media (max-width: 768px) {
  .site-footer {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 40px;
  }
}

.footer-container {
  max-width: 95%;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    /* padding: 0 16px; */
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    gap: 24px !important;
  }

  .footer-col:not(.footer-brand) {
    text-align: left !important;
  }

  .footer-col:not(.footer-brand) h4 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .footer-col:not(.footer-brand) ul li {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    text-align: left !important;
  }

  /* Create 2-column layout for the 4 footer-col divs */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4),
  .footer-col:nth-child(5) {
    display: inline-block !important;
    width: calc(50% - 12px) !important;
    vertical-align: top !important;
    margin-right: 24px !important;
  }

  .footer-col:nth-child(3),
  .footer-col:nth-child(5) {
    margin-right: 0 !important;
  }

  .footer-desc {
    font-size: 14px !important;
    margin-bottom: 16px !important;
    text-align: left !important;
  }

  .footer-logo {
    width: 100px !important;
    margin-bottom: 12px !important;
  }

  .footer-social {
    margin-bottom: 16px !important;
  }

  .footer-bottom {
    font-size: 12px !important;
    margin-top: 40px !important;
    padding: 16px 16px !important;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
    /* left column 60% and right column 40% */
    grid-template-columns: 0.6fr 0.4fr !important;
    gap: 16px !important;
  }

  /* Brand spans full width above the two-column links */
  .footer-col.footer-brand {
    grid-column: 1 / -1 !important;
  }

  /* Ensure .footer-link items behave as grid items (override older inline-block rules) */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4),
  .footer-col:nth-child(5) {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    vertical-align: top !important;
  }

  /* Keep simple helper for any footer-link selector too */
  .footer-col.footer-link {
    padding: 0 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }
}

/* BRAND */

.footer-logo {
  width: 140px;
  margin-bottom: 16px;
}

.footer-desc {
  opacity: 0.9;
  margin-bottom: 20px;
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 350;
  font-style: Regular;
  font-size: 18px;
  color:#fff !important;
  letter-spacing: 0%;

}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
  color: #4b4bb5;
}

/* APPS */

.footer-apps {
  display: flex;
  gap: 12px;
}

.footer-apps img {
  height: 40px;
  cursor: pointer;
}

/* COLUMNS */

.footer-col h4 {
  margin-bottom: 16px;
    font-family: "Instrument Sans", sans-serif !important;
  font-weight: 450;
  color:#fff !important;
  font-style: Medium;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
    font-family: "Instrument Sans", sans-serif !important;
  font-weight: 450;
  font-style: Medium;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff !important;
}

.footer-col ul li a {
  color: #ffffff !important;
  opacity: 0.9;
  text-decoration: none;
}

.footer-col ul li a:hover {
  opacity: 1;
  text-decoration: none;
  color: #000 !important;
}

/* CONTACT */

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-contact i {
  opacity: 0.8;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 60px;
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-family: "Instrument Sans", sans-serif !important;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;

}

.footer-bottom p {
  text-align: center !important;
  color:#fff !important;
}



/* Mobile tweaks: ensure headings and list text fit two-column layout */
@media (max-width: 480px) {
  .footer-col h4 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
    line-height: 1.05 !important;
  }

  .footer-col ul li {
    font-size: 15px !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
  }

  /* Add horizontal padding inside each column so text doesn't hug the gutter */
  .footer-col {
    padding: 0 8px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  /* Slightly increase container gap so columns breathe */
  .footer-container {
    gap: 20px !important;
  }
}


/* RESPONSIVE */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.fixed-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 200px;\
  padding: 12px;\
  border-radius: 10px;
  display: none; /* hidden initially */
  z-index: 9999;
}

/* buttons */
.fixed-cta a {
  display: block;
  padding: 10px;
  margin-bottom: 8px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.buy-btn {
  background: #3e4094;
  color: white;
  border: 1px solid #fff;
}

.register-btn {
  color: #3e4094;
  background: #fff;
  border: 2px solid #3e4094;
}

/* toggle button */
.cta-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #;
  color: #3e4094;
  border: none;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10000;
}

 .topbar-wrap {
    background: #3e4095;
    width: 100%;
    box-sizing: border-box;
  }
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 36px;
    gap: 0;
  }
 
  /* Each group: Enquiry | Support */
  .topbar-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-left: 1px solid rgba(255,255,255,0.15);
    height: 100%;
    box-sizing: border-box;
  }
  .topbar-group:last-child {
    padding-right: 0;
  }
 
  /* Group heading label e.g. "ENQUIRY" */
  .topbar-group-label {
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: inherit;
    white-space: nowrap;
    margin-right: 2px;
  }
 
 
  .topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .topbar-icon svg {
    width: 12px;
    height: 12px;
    fill: #a0b4d8;
  }
 
  .topbar-value {
    color: #ffffff;
    font-weight: 500;
    font-size: 12.5px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none !important;
    font-family: inherit;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: normal !important;
    box-shadow: none !important;
  }
  .topbar-value:hover {
    color: #7eb8ff !important;
    text-decoration: none !important;
    background: none !important;
  }
 
  /* Tablet */
  @media (max-width: 960px) and (min-width: 601px) {
    .topbar-inner {
      justify-content: center;
    }
    .topbar-group:first-child {
      border-left: none;
    }
  }
 
  /* Mobile — 2 rows only */
  @media (max-width: 600px) {
    .topbar-inner {
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      height: auto;
      padding: 4px 12px;
    }
    .topbar-group {
      padding: 6px 8px;
      height: auto;
      border-left: none !important;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .topbar-group:last-child {
      border-bottom: none;
      padding-right: 8px;
    }
  }