
body {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9; 
}

body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

   
/* ===== HEADER STYLES ===== */
    .top-header {
      position: sticky;
      top: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 5%;
      background-color: #2c3e50;
      color: white;
      z-index: 1001;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

.login-text {
      font-weight: 600;
      cursor: pointer;
      transition: color 0.3s;
      color: white;
    }

    .login-text:hover {
      color: #3498db;
    }

     .search-bar {
      display: flex;
      width: 40%;
    }

    .search-bar input {
      width: 100%;
      padding: 8px 15px;
      border: none;
      border-radius: 20px 0 0 20px;
      outline: none;
      font-size: 14px;
    }

    .search-bar button {
      padding: 8px 15px;
      background-color: #3498db;
      color: white;
      border: none;
      border-radius: 0 20px 20px 0;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .search-bar button:hover {
      background-color: #2980b9;
    }

     /*  cart styling */

    .cart-container {
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: color 0.3s;
      color: white;
    }

    .cart-container:hover {
      color: #3498db;
    }

    .cart-icon {
      font-size: 20px;
      margin-right: 8px;
    }

    .cart-count {
      background-color: #e74c3c;
      color: white;
      border-radius: 50%;
      padding: 12px 12px;
      font-size: 12px;
      margin-left: 15px;
    }

/* =============================== */
/* === Desktop Navigation Styles */
/* =============================== */
    .navbar {
      position: sticky;
      top: 50px;
      background-color: #34495e;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo h1 {
      color: white;
      font-size: 1.5rem;
      margin-top: 0;
      padding: 15px 0;
    }

    .menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .menu li {
      position: relative;
    }

    .menu li a {
      color: white;
      text-decoration: none;
      padding: 15px 20px;
      display: block;
      transition: color 0.3s;
      font-weight: 500;
    }

    .menu li a:hover {
      color: #3498db;
    }

    .menu li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 10px;
      left: 20px;
      background-color: #3498db;
      transition: width 0.3s;
    }

    .menu li a:hover::after {
      width: calc(100% - 40px);
    }

    .menu li a.active {
      color: #3498db;
    }

    .menu li a.active::after {
      width: calc(100% - 40px);
    }

    #menuToggle {
      display: none; 
      position: absolute;
      top: 5px;
      right: 25px;
      z-index: 999;
      color: #fff;      
    }

    /* Slideshow */
    #slideshow {
      display: flex;
      justify-content: space-between;
      padding: 20px 5%;
      background: #f5f5f5;
    }
    
    #leftSlide, #rightSlide {
      width: 20%;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .slideshow-container {
      width: 65%;
      position: relative;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .mySlides {
      display: none;
    }
    
    .mySlides img {
      vertical-align: middle;
      border-radius: 5px;
    }
    
    /* Slideshow dots */
    .dot {
      height: 15px;
      width: 15px;
      margin: 100px 2px;
      background-color: #bbb;
      border-radius: 50%;     
      transition: background-color 0.6s ease;
    }
    
  
    /* Hero Section */
    #hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  max-width: 400px;
  z-index: 2;
  animation: fadeInLeft 1.2s ease-out;
}

.hero-text h4,
.hero-text h2,
.hero-text h1,
.hero-text strong {
  margin: 0 0 10px;
  animation: slideUp 0.8s ease-out;
}

.hero-text button {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  background-color: #088178;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  animation: fadeInUp 1s ease-out;
}

.hero-text button:hover {
  background-color: #01312e;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(-30px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    
    /* Features */
    #feature {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 40px 5%;
    }
    
    .fe-box {
      width: 180px;
      text-align: center;
      padding: 25px 15px;
      box-shadow: 20px 20px 34px rgba(0,0,0,0.03);
      border: 1px solid #cce7d0;
      border-radius: 4px;
      margin: 15px 0;
    }
    
    .fe-box:hover {
      box-shadow: 10px 10px 54px rgba(70,62,221,0.1);
    }
    
    .fe-box img {
      width: 100%;
      margin-bottom: 10px;
    }
    
    .fe-box h6 {
      display: inline-block;
      padding: 9px 8px 6px 8px;
      line-height: 1;
      border-radius: 4px;
      color: #088178;
      background-color: #fddde4;
    }
    
    /* Products */
    #product1 {
      text-align: center;
      padding: 40px 5%;
    }
    
    #product1 .pro-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding-top: 20px;
    }
    
    #product1 .pro {
      width: 23%;
      min-width: 250px;
      padding: 10px 12px;
      border: 1px solid #cce7d0;
      border-radius: 25px;
      cursor: pointer;
      box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
      margin: 15px 0;
      transition: 0.2s ease;
      position: relative;
    }
    
    #product1 .pro:hover {
      box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
    }
    
    #product1 .pro img {
      border-radius: 20px;
    }
    
    #product1 .pro .description {
      text-align: start;
      padding: 10px 0;
    }
    
    #product1 .pro .description span {
      color: #606063;
      font-size: 12px;
    }
    
    #product1 .pro .description h5 {
      padding-top: 7px;
      color: #1a1a1a;
      font-size: 14px;
    }
    
    #product1 .pro .description .star {
      font-size: 12px;
      color: rgb(243,181,25);
    }
    
    #product1 .pro .description h4 {
      padding-top: 7px;
      font-size: 15px;
      font-weight: 700;
      color: #088178;
    }
    
    #product1 .pro .cart {
      width: 30px;
      height: 40px;
      line-height: 40px;
      border-radius: 50px;
      background-color: #e8f6ea;
      font-weight: 500;
      color: #088178;
      border: 1px solid #cce7d0;
      position: absolute;
      bottom: 20px;
      right: 10px;
    }
    
    /* Banner */
#banner {
  position: relative;
  background-color: #000; /* fallback */
  background-size: cover;
  background-position: center;
  padding: 0;
  overflow: hidden;
  height: auto;
}

#banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5% 8%;
  flex-wrap: wrap;
}

.banner-content img {
  max-width: 45%;
  height: auto;
  border-radius: 8px;
  animation: fadeInRight 1.2s ease-out;
}

.banner-text {
  max-width: 50%;
  color: #fff;
  animation: fadeInLeft 1s ease-out;
}

.banner-text h4,
.banner-text h2 {
  margin-bottom: 12px;
  animation: slideUp 0.6s ease-out;
}

.banner-text h2 span {
  color: #ef3636;
}

.banner-text button {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #fff;
  background-color: #088178;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
  animation: fadeInUp 0.9s ease-out;
}

.banner-text button:hover {
  background-color: #01312e;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  
   /* ===== FOOTER STYLES ===== */
    footer {
      background-color: #2c3e50;
      color: white;
      padding: 40px 5% 20px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-branding {
      text-align: center;
      margin-bottom: 30px;
    }

    .footer-branding h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
    }

    .social-links a {
      color: white;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: #3498db;
    }

    .footer-branding p a {
      color: #3498db;
      transition: color 0.3s;
    }

    .footer-branding p a:hover {
      color: #2980b9;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #34495e;
      font-size: 0.9rem;
      color: #bdc3c7;
    }

    .site-footer {
      background-color: #34495e;
      color: #ecf0f1;
      padding: 40px 5% 20px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-column h3 {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background-color: #3498db;
    }

    .footer-column p {
      margin-bottom: 15px;
      color: #bdc3c7;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #bdc3c7;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #3498db;
    }

    address p {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #2c3e50;
    }

    .copyright {
      margin-bottom: 15px;
      text-align: center;
    }

    .payment-methods {
      display: flex;
      gap: 15px;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    /* WhatsApp Chat Button */
    .whatsapp-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      text-decoration: none;
    }

    .whatsapp-icon-container {
      position: relative;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      animation: pulse 2s infinite;
      transition: transform 0.3s;
    }

    .whatsapp-icon-container:hover {
      transform: scale(1.1);
    }

    /* WhatsApp Icon */
    .whatsapp-icon-container img {
      width: 32px;
      height: 32px;
    }

    /* Tooltip */
    .tooltip {
      position: absolute;
      bottom: 70px;
      background-color: #333;
      color: #fff;
      padding: 6px 10px;
      border-radius: 5px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateY(5px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .whatsapp-icon-container:hover .tooltip {
      opacity: 1;
      transform: translateY(0);
    }

    /* Pulse Animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }
      70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }


/* ---------------------------------------------------------------------------------------- */

    
  /* ---------- Responsive Breakpoints ---------- */

/* Tablets and below (<= 991px) */
@media (max-width: 991px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    position: static;
    flex-direction: column;
    width: 100%;
    background: none;
    box-shadow: none;
    padding: 1rem 0;
    max-height: none;
    opacity: 1;
  }

  #slideshow {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #leftSlide,
  #rightSlide {
    width: 90%;
  }

  .slideshow-container {
    width: 100%;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-content img,
  .banner-text {
    max-width: 100%;
  }

  .banner-text h2 {
    font-size: 1.5rem;
  }

  #feature {
    justify-content: center;
    gap: 1rem;
  }

  #product1 .pro-container {
    justify-content: center;
    gap: 1rem;
  }

  #product1 .pro {
    width: 45%;
  }

  .hero-text {
    left: 5%;
    right: 5%;
    max-width: 90%;
  }
}

/* Phones and below (<= 767px) */
@media (max-width: 767px) {
  .nav-links {
    position: absolute;
    right: 1rem;
    top: 60px;
    background-color: #fff;
    padding: 1rem;
    width: calc(100% - 2rem);
  }

  .header-container {
    padding: 0.5rem;
  }

  .logo {
    height: 40px;
  }

  .banner-text h2 {
    font-size: 1.2rem;
  }

  .banner-text button,
  .hero-text button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .fe-box {
    width: 100%;
    max-width: 300px;
  }

  #product1 .pro {
    width: 100%;
    max-width: 320px;
  }

  .hero-text h1,
  .hero-text h2,
  .hero-text h4 {
    font-size: 1.2rem;
  }

  .dot {
    margin: 30px 2px;
  }
}

@media (max-width: 768px) {
#hero {
    height: auto;
  }

  #hero img {
    height: auto;
    object-fit: cover;
  }

  .hero-text {
    position: absolute;
   /*  top: 10px; */
   /*  transform: none; */
   /*  padding: 20px 20px; */
    /* max-width: 100%; */
    text-align: left;
    
  }

  .hero-text h4,
  .hero-text h2,
  .hero-text h1,
  .hero-text strong {
    font-size: 12px;
  }

  .hero-text h1 {
    font-size: 16px;
  }

  .hero-text button {
    font-size: 12px;
    padding: 12px 24px;
  } 

  .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .banner-text,
  .banner-content img {
    max-width: 100%;
  }

  .banner-content img {
    margin-top: 20px;
  }

  .banner-text h2 {
    font-size: 22px;
  }

  .banner-text h4 {
    font-size: 16px;
  }

  .banner-text button {
    font-size: 16px;
    padding: 12px 24px;
  }

  #banner .overlay {
    background: rgba(0, 0, 0, 0.6);
  }

nav ul {
    display: none; /* hide desktop nav */
  }

 
  #menuToggle {
    display: block;
    color: #fff;
    cursor: pointer;
  }
      
  .menu {
    display: none; 
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #34495e;
  }
      
  .menu.active {
    display: flex;
  }
     
  .menu li {
    width: 100%;
    text-align: center;
  }
     
  .menu li a {
    padding: 15px;
  }
      
  .menu li a::after {
    display: none;
  }
      
  .search-bar {
    width: 60%;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
 .top-header {
    flex-direction: column;
    padding: 10px;
  }

  .search-bar {
    width: 100%;
    margin: 10px 0;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .content {
    padding: 60px 5% 40px;
  }
}

  

 

  

 
  