*{
  font-family: cabin;
}

/* ============================================
   NAVBAR BASE STYLES
   ============================================ */
.newnavbar {
  background: transparent;
  padding: 18px 30px;
  z-index: 99;
  width: 100%;
  position: absolute;
}

/* Change all links to white when navbar is hovered */

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

/* Change all links to white when navbar is hovered */
.newnavbar:hover .dropdown-menu a,
.newnavbar:hover .dropdown-menu-learn a {
  color: rgb(255, 255, 255);
}

/* Change icons to white filter when navbar is hovered */
.newnavbar:hover .nav-right img {
  filter: brightness(1) invert(0);
}

/* Change hamburger to white when navbar is hovered */

.newnavbar .hamburger {
  color: #d7d0d0;
}

.newnavbar:hover .hamburger {
  color: rgb(0, 0, 0);
}

/* Make icons white by default */
.nav-right img {
  filter: brightness(0) invert(1);
}

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

}

/* 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;
}

.nav-left a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 1.1vw;
  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: #000000;
  transition: left 0.6s ease;
  color: rgb(0, 0, 0);
} */

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

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



@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: 70%;
  display: none;
  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);
  display: block;
}

.dropdown-menu a,
.dropdown-menu-learn a {
  display: block;
  padding: 12px 20px;
  color: #000000;
  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: #000000;
}

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

.nav-center img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 130px;
  
}

.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: #000000;
  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;
}

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


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

.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: center;
}

.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;
  flex-wrap: wrap;
}

.footer {
  background: transparent;
  position: relative;
  padding-top: 60px; /* extra space for wave */
  margin-top: 100px;
}

.footer-wave {
position: absolute;
top:-40px; /* wave at the top of footer */
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
height: 50px; /* adjust as needed */
}

.footer-wave svg {
display: block;
width: 100%;
height: 100%;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

  .nav-left {
    display: none;
  }

  .hamburger {
    display: block;
  }



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


   @media only screen and (min-width: 300px) and (max-width:600px) {
    
  .footer-content{
      display: flex;
      flex-direction: column;
  }

  .logo-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
  }

}

@media (max-width: 901px) {

    .footer-content{
      display: flex;
      flex-direction: column;
  }

  .logo-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
  }
    
  }