/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #b6b2af;
}

.hero .overlay {
  /* background: rgba(148, 113, 38, 0.9); */
  /* background-image: url(dbio222.jpg); */
  padding: 40px;
  border-radius: 10px;
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #1c29a5;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #050a35;
}

/* Gradient Text */
.overlay h1,
.overlay p {
  background: linear-gradient(90deg, #041534, #c72c06, #041534);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.shop-btn{
  padding-top: 2%;
}

.btn:hover {
  background: #cf711f;
}

/* About Section */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 2%;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form {
  /* max-width: 600px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 80%;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  padding: 12px;
  background: #050a35;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #cf711f;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(5, 8, 54, 0.9);
  color: #fff;
  text-decoration: none;
}


/* Adjust hero so it doesn't hide behind navbar */
.hero {
  margin-top: 80px; /* pushes hero below navbar */
}

.call {
  padding-left: 5%;
  padding-top: 3%;
  background-image: url(dbio222.jpg);
}
.btn {
  display: inline-block;
  background: #0b0420;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #cf711f;
}

a[href^="mailto:"] {
    color: white;
}
a[href^="tel:"] {
    color: white;
}
a[href^="https:"] {
    color: white;
}


/* social icon */

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between icons */
  margin: 20px 0;
  
}

.social-links a {
  color: white;   /* default color */
  font-size: 28px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #25D366; /* WhatsApp green, or change to brand colors */
}

/* Responsive Image Slider */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
    }

    /* Slider container */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 90vh; /* adjust height */
  overflow: hidden;
}

/* Slides */
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  animation: slide 18s infinite; /* 3 slides × 6s each (5s stay + 1s slide) */
}

@keyframes slide {
  0%   { transform: translateX(0%); }   /* Slide 1 visible */
  28%  { transform: translateX(0%); }   /* Stay on Slide 1 for 5s */

  33%  { transform: translateX(-100%); } /* Slide 2 starts sliding */
  61%  { transform: translateX(-100%); } /* Stay on Slide 2 for 5s */

  66%  { transform: translateX(-200%); } /* Slide 3 starts sliding */
  94%  { transform: translateX(-200%); } /* Stay on Slide 3 for 5s */

  100% { transform: translateX(0%); }    /* Loop back to Slide 1 */
}


.slide {
  min-width: 100%;
  height: 100%;
  flex: 1 0 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


    /* Navigation buttons */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
    }

    .prev { left: 15px; }
    .next { right: 15px; }

    /* Dots for navigation */
    .dots {
      text-align: center;
      position: absolute;
      bottom: 15px;
      width: 100%;
    }
    .dot {
      display: inline-block;
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background: rgba(255,255,255,0.7);
      border-radius: 50%;
      cursor: pointer;
    }
    /* .active {
      background: orange;
    } */

    .dot.active {
  background: orange;
}


    /* Responsive */
    @media (max-width: 100px) {
      .slider { height: 10vh; }
    }
    @media (max-width: 100px) {
      .slider { height: 10vh; }
    }


.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  padding-top: 50%;
  display: flex;
  flex-direction: column;     
  justify-content: center;     
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.3); /* optional dark overlay */
  color: white;
  z-index: 2; 
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.overlay .btn {
  /* background: rgb(1, 2, 36); */
  background: linear-gradient(45deg, #fa3306, #09c72c, #3357ff);
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}
.overlay .btn:hover {
  /* background: darkorange; */
  background: linear-gradient(45deg, #d34706, #060ae7, #ff5733);
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 8, 54, 0.95);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar .logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hamburger */
.menu-toggle {
  display: none;   /* hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #e67e22;
}

/* Mobile Hamburger */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;       /* show hamburger */
    z-index: 2001;       /* above everything */
  }

  /* Ensure nav has positioning context */
  .navbar nav {
    position: relative;
    z-index: 2000;
  }

  .nav-links {
    display: none;       
    flex-direction: column;
    position: absolute;     /* position relative to nav */
    top: 100%;              /* right below navbar */
    right: 0;
    background: rgba(5, 8, 54, 0.95);
    width: 220px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    z-index: 2000;       
  }

  .nav-links.active {
    display: flex !important; /* show when toggled */
  }
}












