*{
  font-family: cabin;
}

/* ============================================
   TOP STRIP
   ============================================ */
.top-strip {
  background: black;
  color: #fff;
  font-weight: 500;
}

/* ============================================
   NAVBAR BASE STYLES
   ============================================ */
.newnavbar {
  position: relative;
  background: transparent;
  padding: 30px;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Navbar background fill animation */
.newnavbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: white;
  transition: height 0.4s ease;
  z-index: -1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newnavbar:hover::before {
  height: 100%;
}

/* ============================================
   LEFT NAVIGATION
   ============================================ */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
  overflow: hidden;
}

.nav-left a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #d4af37;
  transition: left 0.6s ease;
}

.nav-left a:hover {
  color: #d4af37;
}

.nav-left a:hover::after {
  animation: slideThrough 1.2s ease forwards;
}

@keyframes slideThrough {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  51% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

/* ============================================
   DROPDOWN STYLES
   ============================================ */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-menu,
.dropdown-menu-learn {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu-learn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a,
.dropdown-menu-learn a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu-learn a:hover {
  background: #f8f8f8;
  color: #d4af37;
}

/* ============================================
   CENTER LOGO
   ============================================ */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-center img:hover {
  transform: scale(1.05);
}

/* ============================================
   RIGHT ICONS
   ============================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right img {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-right img:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

.search-icon {
  cursor: pointer;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 5px;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.search-bar.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 5px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

.close-search {
  cursor: pointer;
  font-size: 20px;
  color: #999;
  transition: color 0.3s ease;
}

.close-search:hover {
  color: #333;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  padding: 5px;
  z-index: 1002;
}

.mobile-nav {
  padding: 60px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: #d4af37;
  padding-left: 10px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   MOBILE DROPDOWN STYLES
   ============================================ */
.mobile-dropdown {
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-btn .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active .arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-dropdown-content.active {
  max-height: 500px;
}

.mobile-dropdown-content a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: none;
}

.mobile-dropdown-content a:hover {
  padding-left: 15px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 900px) {
  .nav-left {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* === Policy Page Styles === */
.rte {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Main Heading */
.rte h1 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/* Section Headings */
.rte h2 {
  font-size: 24px;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Sub Headings */
.rte h3 {
  font-size: 20px;
  color: #222;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraphs */
.rte p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Lists */
.rte ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.rte ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* HR Style */
.rte hr {
  border: none;
  height: 1px;
  background: #d4af37;
  margin: 40px 0;
  opacity: 0.5;
}

/* Email Links */
.rte a {
  color: #000000;
  text-decoration: none;
}

.rte a:hover {
  text-decoration: underline;
}



/* ============================================
FOOTER
   ============================================ */

   
        .footer {
            background: transparent;
            padding: 60px;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 50px;
            background: transparent;
            clip-path: ellipse(100% 100% at 50% 100%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1.2fr 1.5fr;
            gap: 10px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

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

        .footer-column ul li {
            margin-bottom: 12px;
            font-size: 18px;
        }

        .footer-column ul li a {
            color: #000000;
            text-decoration: none;
            font-size: 18px;
          
        }

        .footer-column ul li a:hover {
            opacity: 0.7;
        }

        .footer-column p {
            color: #1a1a1a;
            line-height: 1.6;
            font-size: 18px;
        }

        .contact-info p {
            margin-bottom: 16px;
        }

        .logo-disclaimer {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 3px;
            color: #1a1a1a;
        }

        .disclaimer {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
            color: #1a1a1a;
        }

        .footer-bottom {
            padding-top: 30px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }

        .footer-bottom-left {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .currency-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            font-size: 18px;
            color: #1a1a1a;
            cursor: pointer;
            padding: 5px;
            font-weight: 600;
        }

        .currency-selector:hover {
            opacity: 0.7;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #1a1a1a;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        .social-links svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .copyright {
            font-size: 14px;
            color: #1a1a1a;
            position: absolute;
            right: 80px;
            bottom: 30px;
        }
        .payment{
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 10px;
          margin-top: 20px;
        }


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile: 300px - 600px */
@media (max-width: 600px) {
  .newnavbar {
    padding: 10px 15px;
  }

  .nav-left,
  .nav-center {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-right {
    gap: 15px;
    margin-left: auto;
  }

  .nav-center {
    position: static;
    transform: none;
    display: block;
    margin-right: auto;
  }

  .nav-center img {
    height: 40px;
  }

  .mobile-menu {
    width: 280px;
  }
   .rte h1 {
    font-size: 26px;
  }

  .rte h2 {
    font-size: 22px;
  }

  .rte h3 {
    font-size: 18px;
  }

  .rte {
    margin: 50px auto;
    padding: 0 15px;
  }

    .footer {
      padding: 40px 20px;
  
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;

  }

  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }

}

/* Tablet: 601px - 900px */
@media (min-width: 601px) and (max-width: 900px) {
  .newnavbar {
    padding: 12px 20px;
  }

  .nav-left {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-center img {
    height: 50px;
  }

  .nav-right {
    gap: 18px;
  }

    .nav-wrapper {

    justify-content: flex-end;
}
.footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

}

/* Laptop: 901px and above */
@media (min-width: 901px) {
  .hamburger,
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }

  .nav-left {
    display: flex;
  }

  .nav-center {
    display: block;
  }


}