@font-face {
  font-family: 'Dream Avenue';
  src: url('fonts/DreamAvenue.woff') format('woff2'),
       url('fonts/DreamAvenue.woff2') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: auto !important; /* Disable native smooth scroll */
  overflow-y: scroll;
}

html.visited .loading-page {
  display: none !important;
}


/* Initial body state */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #8a9381;
}

/* When fading out */
body.fade-out {
  opacity: 0;
}


@media (max-width: 468px){
  body, html{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  }


  h1, h2 {
    margin: 0;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}


.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);

  /* ⬇️ Start zoomed in */
  transform: scale(1.15);
  animation: zoomOutSmooth 3s ease-out forwards;
}

/* Smooth and slow zoom-out */
@keyframes zoomOutSmooth {
  0%   { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Show/hide based on screen size */
.desktop-only { display: block; }
.mobile-only  { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; }
}






#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  font-family: 'Poppins', sans-serif;
  width: 100% !important;
  background-color: transparent !important; /* start transparent */
  z-index: 1000 !important;
  transition: background-color 0.6s ease, box-shadow 0.6s ease;

  transform: translateY(-100%);
  opacity: 0;
  animation: navbarSlideDown 2.5s ease-out forwards;
}


@keyframes navbarSlideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #navbar {
    animation: none;
    transform: translateY(0);
    opacity: 1;
  }
}



#navbar.sticky {
  /* Glassy background */
  background-color: rgba(0, 0, 0, 0.4);           /* semi-transparent */
                 /* blur behind */
  -webkit-backdrop-filter: blur(10px);    
    backdrop-filter: blur(10px);         /* Safari support */

  /* Smooth transitions */
  transition: background-color 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}


.navbar .logo img {
  height: 60px;
  border-radius: 10px;
  margin: 0;
  width: auto;
  transition: transform 0.5s ease-in-out;
  filter: invert(1); /* Invert normally */
}

#navbar.sticky .logo img {
  filter: invert(0); /* Normal color on sticky */
}


.navbar .logo img:hover {
  transform: rotate(360deg);
}


.navbar-links {
  display: flex;
  gap: 45px;
  font-weight: 20;
}

.navbar-links .nav-link {
  color: #fff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.navbar.sticky .navbar-links .nav-link {
  color: black;
}

.navbar-links .nav-link:hover {
  color: white;
  transform: translateY(-1px);
  border-bottom: 2px solid black;
}

.auth-menu {
  display: flex;
  align-items: center;
}

.dropbtn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 20;
  padding:10px 7px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
}

.navbar.sticky .dropbtn {
  color: black;
}

.dropbtn:hover {
  color: white;          /* A calm olive green tone */
  transform: translateY(-2px);  /* Slight upward movement */
  font-size: 17.5px;       /* Slightly increase font size */
  cursor: pointer;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  z-index: 1000;
}


.menu-toggle:focus {
  outline: none;
}

.hamburger {
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s linear;
}

.navbar.sticky .hamburger {
  background-color: black;
}

/* Mobile menu - fullscreen with blur background */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px; /* or 80vw if you want wider */
  background: rgba(0, 0, 0, 0.5);

  -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(10px);
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  flex-direction: column;
  padding: 60px 20px 20px 20px;
  z-index: 1050;
  border-radius: 0 0 0 10px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 40px;
  margin-bottom: 15px;
  color: #ae866a;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-close:hover {
  color: black; /* Soft red or any highlight color */
  transform: rotate(180deg);
}

/* Show menu */
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 15px 0px;
   font-family: 'poppins', sans-serif;
  font-weight: 20;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu a:hover {
  color: #f1f1f1;
  border-bottom: 2px solid white;
}



/* Responsive */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
  .mobile-menu {
    width: 175px;
  }
}

@media (max-width: 468px){
  .navbar .logo img {
    height: 40px;
  }
  .navbar-links{
    gap: 0px;
  }
  .dropbtn {
    font-size: 14px;
  }
  .menu-toggle {
    height: 17px;
  }
}

.hero-text {
  font-family: 'Dream Avenue', sans-serif;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ae866a;
  font-size: clamp(5rem, 20vw, 300px);
  font-weight: 400;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 0 1rem;
  z-index: 2;
  transition: all 0.5s ease;
  pointer-events: none;
}


/* Large devices: make shrink relative and push content */
@media (min-width: 1024px) {
  .hero-text {
    position: relative; /* key: change from fixed to relative */
    top: 50%;
    left: auto;
    transform: none;
    margin: 0 auto 1rem auto; /* center with margin bottom for spacing */
    max-width: 800px; /* optional max width */
    pointer-events: auto;
  }
}

/* Optional: Small screens keep fixed */
@media (max-width: 468px) {
    .hero-text {
    font-size: clamp(7rem, 30vw, 350px);
    top: 70%;
  }
}
@media (max-width: 768px) {
      .hero-text {
    font-size: clamp(7rem, 30vw, 350px);
  }
}



.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 200px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);

  -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(10px);
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;

  /* Hide scrollbar for Chrome, Safari, and Edge */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.side-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


.side-menu.show {
  left: 0;
}

.menu-title {
  font-size: 30px;
  font-weight: 400;
  color: white;
  margin-bottom: 5px;
    font-family: 'Dream Avenue', sans-serif;
}

.menu-desc {
  font-size: 14px;
  color: white;
  margin-bottom: 15px;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}

.close-btn:hover{
    transform: rotate(180deg);
}
.dropdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.dropdown-card img {
  width: 100%;
  margin-bottom: 8px;
}

.dropdown-card p {
  margin-bottom: 0px;
}

.dropdown-card button {
  padding: 6px 12px;
  color: white;
  border: none;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown-card button:hover {
  border-bottom: 2px solid white;
}


  /* Photo Galleries */
  .photo-gallery {
    position: absolute;
    display: flex;
    gap: 20px;
    z-index: 1;
    border: #8A9381;
  }
  
  .photo-gallery.left {
    left: 5%;
    animation: move-left 3s infinite alternate ease-in-out;
  }
  
  .photo-gallery.right {
    right: 5%;
    animation: move-right 3s infinite alternate ease-in-out;
  }
  
  .photo {
    position: relative;
    border-radius: 20px ;
    width: 220px;
    height: 170px;
    border: #8A9381;
    border-style: dotted;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  
  .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .hero-content h1{
        font-size: 6rem;
      }
      .hero-content p{
        font-size: 3rem;
      }
      .photo{
        height: 150px;
        width: 150px;
      }
    }
    @media (max-width: 468px){
      .hero-content h1{
        font-size: 3.3rem;
        margin-bottom: 10px;
      }
      .hero-content p{
        font-size: 2rem;
      }
    }
  
  
  /* Animations */
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes move-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(50vw);
    }
  }
  
  @keyframes move-right {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50vw);
    }
  }
/* Static Hero Text Section */
#hero-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background-color: transparent; /* Adjust if needed */
  text-align: center;
}

.hero-text-content h2 {
  font-size: 5rem;
  font-family: 'Dream Avenue', sans-serif;
  font-weight: 400;
  color: black; /* Adjust color as needed */
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-text-content h2 {
    font-size: 3.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-text-content h2 {
    font-size: 2rem;
  }
  #hero-text{
      padding: 15px 5px;
  }
}


 /* Product Grid */
  .product-grid {
    display: grid; 
    gap: 10px;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 10px;
  }
  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

.product-card {
  border: transparent;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

/* Make all image containers the same size */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 550px; /* set desired consistent height */
  overflow: hidden;
}

.product-card:hover{
  cursor: pointer;
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease-in-out; /* Smooth fade */
}

/* First image visible initially */
.image-wrapper img:first-of-type {
  opacity: 1;
  z-index: 1;
}


/* Tablets and medium devices */
@media (max-width: 991px) {
  .image-wrapper {
    height: 520px; /* smaller height on tablets */
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .image-wrapper {
    height: 320px; /* even smaller height on phones */
  }
}
  
  .product-name {
    margin-top: 5px;
    font-size: 1rem;
    color: black;
  }
  
  .product-price {
    font-size: 0.9rem;
    color: black;
  }
  
  .product-price .old-price {
    text-decoration: line-through;
    color: gray;
    margin-right: 5px;
  }


  .hidden-buttons {
  display: none; /* Hidden by default */
  margin-top: 10px;
  border-radius: 10px;
  padding: 10px;
}

.hidden-buttons button {
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border: 10px solid #ccc;
  background-color: #f9f9f9;
  transition: background-color 0.3s;
}

.hidden-buttons button:hover {
  background-color: #ddd;
}


.color-buttons{
  padding: 10px;
  gap: 5px;
  border-radius: 10px;
}
.color-btn{
  padding: 10px;
  margin: 10px;
  border-radius: 10px;

}


/* Keep It Neat */
#moving-text-2 {
  width: 100%;
  font-family: 'Dream Avenue', sans-serif;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px;
  background-color: transparent;
  text-align: center;
}

.moving-text-content-2 {
  font-family: 'Dream Avenue', sans-serif;
  color: black;
  font-weight: 100;
}

.moving-text-content-2 h2 {
  font-size: 6rem;
  margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .moving-text-content-2 h2 {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .moving-text-content-2 h2 {
    font-size: 2.5rem;
  }

  #moving-text-2 {
    padding: 0px 5px;
  }
}
  
/* NEAT Promo Section */
#neat-promo {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 10%;
  color: black;
  overflow: hidden;
}

/* Background Animation Layer */
.promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('mains/utility3.jpg') no-repeat center center/cover;
  transform: scale(1.2);
  transition: transform 1.2s ease;
  z-index: 0;
}

.promo-bg.in-view {
  transform: scale(1);
}


/* Dark Overlay */
.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Promo Content */
.promo-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.promo-content h1 {
  font-size: 6rem;
  font-family: 'Dream Avenue', sans-serif;
  margin-bottom: 20px;
  color: #ae866a;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.promo-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: white;
}

.shop-btn {
  padding: 15px 30px;
  background-color: transparent;
  color: white;
  border-bottom: 2px solid white;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.shop-btn:hover {
  background-color: transparent;
  font-size: 1.5rem;
  transform: scale(1.08);
}

  /* 📱 Mobile Version: Override background image */
@media (max-width: 767px) {
  .promo-bg {
    background: url('mains/utility\ 10.jpg') no-repeat center center/cover;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #neat-promo {
    padding: 40px 5%;
    text-align: center;
    justify-content: center;
  }

  .promo-content {
    max-width: 100%;
  }

  .promo-content h1 {
    font-size: 8rem;
  }

  .promo-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .promo-content h1 {
    font-size: 5rem;
  }

  .promo-content p {
    font-size: 0.95rem;
  }

  .shop-btn {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}



#neat-promo2 {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 10%;
  color: black;
  overflow: hidden;
  justify-content: center;
  text-align: center;
}

/* Background Image with Zoom Effect */
.promo-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('items/background.jpg') no-repeat center center/cover;
  transform: scale(1.2);
  transition: transform 1.2s ease;
  z-index: 0;
}

.promo-bg2.in-view {
  transform: scale(1);
}

/* Overlay */
.promo-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Content */
.promo-content2 {
  max-width: 600px;
  z-index: 1;
  text-align: center;
}

.promo-content2 h1 {
  font-size: 6rem;
  font-family: 'Dream Avenue', sans-serif;
  margin-bottom: 20px;
  color: #8a9381;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.promo-content2 p {
  font-size: 1.7rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: white;
}

.shop-btn2 {
  padding: 15px 30px;
  background-color: transparent;
  color: white;
  border-bottom: 2px solid white;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.shop-btn2:hover {
  background-color: transparent;
  font-size: 1.5rem;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  #neat-promo2 {
    padding: 40px 5%;
    justify-content: center;
  }

  .promo-content2 {
    max-width: 100%;
  }

  .promo-content2 h1 {
    font-size: 8rem;
  }

  .promo-content2 p {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .promo-content2 h1 {
    font-size: 5rem;
  }

  .promo-content2 p {
    font-size: 1.5rem;
  }

  .shop-btn2 {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}


@media (max-width: 767px) {
  .promo-bg2 {
    background: url('mains/gunna3.jpg') no-repeat center center/cover;
  }
}


  
  footer {
    background: linear-gradient(to bottom, #ae866a, #8A9381);
    color: #000;
    padding: 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li a {
    color: #555;
    text-decoration: none;
  }

  .footer-links ul li a:hover{
    color: #f0f0f0;
    text-decoration: underline;
  }
  
  .footer-mission h3, .footer-subscribe h3, .footer-social h3, .footer-payment h3 {
    margin-top: 0;
  }

  
  .social-icons i,
  .payment-icons i {
    font-size: 24px;
    margin-right: 10px;
    color: #000;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
  }
  
   /* Responsive */
   @media (max-width: 768px) {
    .footer-container {
      justify-content: left;
      align-items: left;
    }
    .footer-subscribe h3{
      font-size: 15px;
      align-items: center;
      justify-content: center;
      text-align: left;
    }
  }
  @media (max-width: 468px){
    .footer-subscribe h3{
      font-size: 12px;
    }
      
  .footer-links ul {
    padding: 0;
    justify-content: left;
    align-items: left;
  }
  }
  

  .footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a i {
  font-size: 30px;
  color: black;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social .social-icons a:hover i {
  transform: scale(1.1);
  opacity: 0.8;
}


.social-svg-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-svg-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

 
  .kenya-flag img {
    width: 20px;  /* Adjust the size of the flag as needed */
    margin-right: 3px; /* Space between the flag and text */
    vertical-align: middle; /* Align the flag with the text */
}


  
/* From Uiverse.io by Satwinder04 */ 
.input-container {
  position: relative;
  width: 600px;
}

.input-container input[type="text"] {
  font-size: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  background-color: transparent;
  outline: none;
}

.input-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: #ccc;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-container input[type="text"]:focus ~ .label,
.input-container input[type="text"]:valid ~ .label {
  top: -20px;
  font-size: 16px;
  color: #333;
}

.input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #333;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.input-container input[type="text"]:focus ~ .underline,
.input-container input[type="text"]:valid ~ .underline {
  transform: scaleX(1);
}
@media (max-width: 768px){
  .input-container{
    max-width: 45%;
    justify-content: left;
    align-items: left;
    text-align: left;
  }
}




/* Country/Region Section */
.footer-country {
  color: rgb(0, 0, 0);
  border-radius: 10px;
  text-align: center;
  font-size: 0.5rem;
  animation: fadeIn 1.2s ease-in-out;
  text-align: left;
}

.footer-country h3 {
  font-size: 1rem;
  font-weight: bold;
}

.footer-country p {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 5px;
}


.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 0;

}

.footer-logo h1 {
  font-family: 'Dream Avenue', sans-serif;
  font-size: calc(100vw / 6.5); /* Adjust '8' based on character count */
  font-weight: 100;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.5vw;
  width: 100vw;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}



/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    justify-content: left;
    align-items: left;
  }

  .footer-logo {
    font-size: 5rem;
  }
  .footer-logo{
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .country{
    width: 100%;
  }

}

@media (max-width: 480px) {
  .footer-logo{
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .footer-country {
    font-size: 1rem;
  }
}



/* Looping Text Section */
.looping-text-section {
  width: 100%;
  background-color: transparent;
  font-weight: lighter;
  padding: 0px 0;
  height: 25px;
  font-size: 15px;
  border-radius: 10px 0px 0px 0px;
  justify-content: right;
  display: flex;
}

/* Text Container */
.text-container {
  display: flex;
  align-items: right;
  justify-content: right;
  width: 100%;
  text-align: center;
  padding: 8px 15px;
  border-radius: 5px;
}

.countdown-timer {
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  background: transparent;
  padding: 2px 0px;
  border-radius: 6px;
  margin-right: 10px;
  margin-left: 0px;
}

/* Looping Text */
.looping-text {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  color: rgb(255, 255, 255);
  transition: color 0.3s ease;
  margin-right: 20px;
}

.looping-text:hover {
  color: #ae866a;
}


/* Responsive Design */
@media screen and (max-width: 768px) { /* Phones */
  .text-container {
      width: 1000%;
      font-size: 1em;
  }
  .looping-text {
      font-size: 0.9em;
  }
  .countdown-timer{
    font-size: 1em;
  }
}

@media screen and (max-width: 1024px) { /* Tablets */
  .text-container {
      width: 100%;
      font-size: 1.1em;
  }
}




/* Hamburger Menu Icon */
.menu-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: right;
  gap: 4px;
}

.menu-icon span {
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Side Menu Styling */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  width: 300px;
  backdrop-filter: blur(8px);
  background: rgba(17, 17, 17, 0.8);  
  color: #ae866a;
  transition: right 0.4s ease;
  padding: 40px 20px;
  z-index: 1000;
  box-shadow: -3px 0 15px rgba(0,0,0,0.3);
}

.side-menu.active {
  right: 0px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  text-align: right;
  margin-bottom: 30px;
}

.close-btn:hover{
  color: #8a9381;
}
/* Navigation links */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;   
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #ae866a;
  transform: translateX(10px);
}


/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* dark transparent background */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


@media(max-width: 480px){
  .side-menu {
    position: fixed;
    top: 0;
    right: -200px;
    height: 100vh;
    width: 180px;
  }
  .close-btn {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    text-align: right;
    margin-bottom: 0px;
    margin-top: 30px;
  }
}

/* ───────── Subscription Popup ───────── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);

  /* start invisible & slightly upward */
  opacity: 0;
  transform: translateY(-24px);
  visibility: hidden;
  pointer-events: none;

  /* smooth fade + slide, GPU friendly */
  transition:
    opacity   0.45s ease,
    transform 0.45s cubic-bezier(.25,.8,.25,1);

  will-change: opacity, transform;
}

/* JS will add .show to trigger the transition */
.overlay.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* ───────── Logo ───────── */
.popup-logo {
  width: 100px;
  height: auto;
  margin: -1rem 0 1rem;
  /* optional subtle logo entrance */
  animation: fadeInDown 0.5s ease forwards;
}

/* Logo keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────── Popup card ───────── */
.popup-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

  padding: 2rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #ccc;

  /* card enters with a tiny scale‑&‑fade */
  animation: popIn 0.4s ease forwards;
}

/* NEW: card pop‑in keyframes */
@keyframes popIn {
  0%   { opacity: 0; transform: scale(.95) translateY(10px); }
  100% { opacity: 1; transform: scale(1)   translateY(0);   }
}

/* ───────── Headings & input group ───────── */
.popup-card h2 {
  font-family: 'Dream Avenue', sans-serif;
  font-weight: 100;
}

.input-group {
  position: relative;
  margin: 1.5rem 0;
}


.input-group input {
  font-family: 'poppins', Times, serif;
  width: 100%;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  font-size: 1rem;
  background-color: transparent;
  outline: none;
  border-radius: 10px;
}

.input-group label {
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  color: #ccc;
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -1.1rem;
  font-size: 0.75rem;
  color: #8a9381;
  background-color: transparent;
}

.subscribe-btn {
  background: linear-gradient(to right, #ae866a, white, #ae866a);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
   font-family: 'Dream Avenue', sans-serif;
}

.subscribe-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px #ae866a;
}

.thank-you-message {
  display: none;
  font-family: 'Dream Avenue', sans-serif;
  text-align: center;
  color: white;
  animation: fadeIn 0.5s ease forwards;
}

/* Animations */
@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #8a9381;
  transform: rotate(90deg);
}


.custom-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: linear-gradient(135deg, #ae866a, white);
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(227, 227, 227, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
  z-index: 9999;
}

.custom-alert.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Glassmorphism style */
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  /* Start off-screen above */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

#page-transition.active {
  transform: translateY(0);
  opacity: 1;
}

#page-transition.fade-up {
  /* Slide up to hide */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.logo-wrapper img {
  width: 340px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


#fid22{
  text-decoration: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}



.loading-page {
  position: fixed; /* Changed from absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, #AE866A, #383f45, #AE866A);
  z-index: 10000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: none;
}


#svg {
  height: 150px;
  width: 150px;
  stroke: white;
  fill-opacity: 0;
  stroke-width: 3px;
  stroke-dasharray: 4500;
  animation: draw 8s ease;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.name-container {
  height: 60px;
  overflow: hidden;
}



.logo-name {
  color: black;
  font-size: 42px;
  font-family: 'Dream Avenue', sans-serif;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-left: 20px;
  font-weight: 500;
}


  
    /* Responsive */
    @media (max-width: 768px) {
      .container p{
        font-size: 3rem;
        font-weight: 900;
      }
      .logo-name{
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 30px;
        margin-bottom: 50px;
      }

    }
.glass-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.2);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

