 /* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}
    /*Navigation Section  Home page eng ai */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navigation Container Home page eng ai */
.nav_container {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* Nav Bar */
.nav_bar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.logo span {
  color: orangered;
}

/* Links */
.navigation_bar {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.links {
  display: flex;
  gap: 2rem;
}

.links li a {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}

.links li a:hover {
  color: orange;
}

/* CDN Icons and Button */
.cdn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cdn i {
  color: white;
  font-size: 1.5rem;
}

.cdn i:hover {
  color: orange;
  cursor: pointer;
}

.cdn button {
  background-color: orange;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section  Home Page eng ai*/
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
  padding-top: 60px;
}

.img-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 20px;
}

.content h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-left: -150%;
}

.content p {
  font-size: 1rem;
  margin-left: -119%;

}

.content button {
  background-color: orange;
  color: white;
  padding: 15px 40px;
  border: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 auto;
  margin-left: -60%;

}

/* About Section  Home page eng ai*/
.about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 5% 8%;
  color: white;
  justify-content: center;
}

.left,
.right {
  flex: 1;
  background-color: black;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
}

.left img,
.right img {
  width: 170px;
  height: 170px;
  border: 8px solid #ffbe33;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.left img:hover,
.right img:hover {
  transform: scale(1.1);
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 1rem;
}

.info span {
  font-size: 1.5rem;
}

.info h2 {
  font-size: 1.2rem;
}

.info button {
  background-color: orange;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.info button i {
  margin-left: 5px;
}



img {
  width: 100%;
  height: auto;
}

      /* Started Here */
/* Menu Section Menu page eng fuad */
/* ========== FILTER BUTTONS ========== */
.filter-buttons {
  text-align: center;
  margin: 20px 0;
}

.filter-buttons button {
  background-color: #ddd;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
}

.filter-buttons button.active {
  background-color: #444;
  color: white;
}

/* ========== CONTAINER ========== */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ========== CARDS LAYOUT (MOBILE-FIRST) ========== */
.yollo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.boss {
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 500px; /* Set fixed or minimum height */
}

/* Optional: Equalize all .boss cards inside their grid */
.yollo {
  align-items: stretch;
}


/* Image Section */
.xampp_1 {
  background-color: aqua;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
  .xampp_1  img{
    margin-left: 10%;
  }

.xampp_1 .images-cart img {
  width: 80%;
  max-width: 300px;
}

/* Text Section */
.xampp_2 {
  background-color: black;
  color: white;
  padding: 1.5rem;
}

.xampp_2 h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.xampp_2 p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.options h6 {
  font-size: 1.2rem;
  margin: 0;
}

.options .fa-cart-shopping {
  height: 3rem;
  width: 3rem;
  background-color: yellowgreen;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}
 
/* ========== TABLETS ========== */
@media (min-width: 768px) {
  .yollo {
    grid-template-columns: 1fr 1fr;
  }

  .this {
    grid-template-columns: 1fr 1fr;
    
  }

  .read_button {
    width: fit-content;
  }

  .xampp_2 h1 {
    font-size: 2.2rem;
  }

  .xampp_2 p {
    font-size: 1.1rem;
  }

  .randomised h1 {
    font-size: 2.5rem;
  }

  .randomised p {
    font-size: 1.2rem;
  }
}

/* ========== LAPTOPS / DESKTOPS ========== */
@media (min-width: 1024px) {
  .yollo {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }

  .boss {
    max-width: 27rem;
    height: auto;
  }

  .promose_1 img {
    height: auto;
    max-height: 500px;
  }

  .randomised h1 {
    font-size: 3rem;
  }

  .randomised p {
    font-size: 1.3rem;
  }

  .read_button {
    font-size: 1.2rem;
  }
}

/*  Section Menu Ends Here (Eng Fuad)*/


    /* About Section Style another page by (eng fuad ) start here  */
  .about-9{
    height: 90vh;
    background-color: #222831;
    width: 100%;
    padding: 50px 0;
    margin-bottom: 10%;
    margin-top : 20%;
  }
    .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px;
      gap: 50px;
      max-width: 1200px;
      margin: auto;
    }
    .about-section img {
      width: 300px;
      max-width: 100%;
      border-radius: 10px;
     
      
    }
    .about-content {
      max-width: 500px;
      color: white;
    }
    .about-content h2 {
      font-family: 'Brush Script MT', cursive;
      font-size: 36px;
      margin-bottom: 20px;
    }
    .about-content p {
      font-size: 16px;
      line-height: 1.6;
      color: #ccc;
    }
    .about-content button {
      margin-top: 20px;
      background-color: orange;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .about-content button:hover {
      background-color: darkorange;
    }


    /* Booking section  Style  eng ai starts here  */


    .booking-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 50px;
      gap: 40px;
    }

    .booking-form {
      width: 500px;
    }

    .booking-form h2 {
      font-family: 'Brush Script MT', cursive;
      font-size: 32px;
      margin-bottom: 20px;
      color: #333;
    }

    .booking-form input {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .booking-form button {
      width: 100%;
      background-color: orange;
      border: none;
      padding: 12px;
      color: white;
      font-weight: bold;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
    }

    .booking-form button:hover {
      background-color: darkorange;
    }

    .map-container iframe {
      width: 500px;
      height: 400px;
      border: 0;
      border-radius: 10px;
      padding-top: 13%;
    }

      /* Our Customer  eng ai*/

      .testimonials {
        padding: 50px 20px;
        text-align: center;
      }
      
      .testimonials h2 {
        font-family: 'Brush Script MT', cursive;
        font-size: 28px;
        margin-bottom: 40px;
      }
      
      /* Container-ka flexible ah */
      .testimonial-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 30px;
      }
      
      /* Sanduuqyada testimonials-ka */
      .testimonial-box {
        background: #222;
        color: white;
        padding: 20px;
        width: 100%;
        max-width: 450px;
        min-height: 200px;
        border-radius: 10px;
        text-align: left;
        box-sizing: border-box;
      }
      
      .testimonial-box h4 {
        margin-top: 10px;
        color: white;
      }
      
      /* Sawirrada avatar */
      .avatars {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
      }
      
      .avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 5px solid transparent;
        object-fit: cover;
        transition: border 0.3s ease;
      }
      
      .avatar.active {
        border-color: orange;
      }
      
      /* dhibcaha navigation */
      .nav-dots {
        text-align: center;
        margin-top: 10px;
      }
      
      .nav-dots span {
        display: inline-block;
        width: 15px;
        height: 15px;
        background: orange;
        border-radius: 50%;
        margin: 0 5px;
        opacity: 0.5;
        transition: opacity 0.3s ease;
      }
      
      .nav-dots .active {
        opacity: 1;
      }
      
   
      /* Footer Section Style eng ai */
      .footer-section {
        width: 300px;
        margin: 10px;
      }
      
      .footer-section h3 {
        font-family: 'Cursive', sans-serif;
      font-family: 'Brush Script MT', cursive;
      font-weight: italic;
      line-height: 2rem;
      }
      
      .social-icons a {
        margin: 0 8px;
        font-size: 20px;
        text-decoration: none;
      }

/* Burger toggle animation */
.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.toggle span:nth-child(2) {
  opacity: 0;
}
.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

 
/* Tablets and small laptops */
@media (max-width: 999px) {
  .cdn {
    display: none;
  }

  .navigation_bar {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #222;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-bottom: 1rem;
  }

  .navigation_bar.active {
    transform: translateX(0);
  }

  .navigation_bar .links {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .navigation_bar .cdn {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 1rem;
  }

  .burger {
    display: flex;
  }
  .menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-container {
    gap: 20px;
  }

  .testimonial-box {
    width: 100%;
    max-width: 400px;
  }
   
 
}




/* Mobile phones */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 10px;
  }

  .content {
    margin: 0 10px;
    margin-left: 55%;
    text-align: center;
    
  }
  .content h3{
    font-size: 1.75rem;
    margin-left: -68%;
  }
  .content p{
    font-size: 1.29rem;
    color: whitesmoke;
    line-height: 1.6rem;
    margin-left: -75%;

  }
 .content button{
    margin-left: -55%;
    padding: 30px 90px;
    font-size: 20px;
  }
  .about .container {
    flex-direction: column;
    margin: 5% 5%;
  }

  .left,
  .right {
    width: 100%;
  }
  .menu {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .menu h3{
     font-size: 2rem;
  }
  .menu p{
    font-size: 1.5rem;
  }
  .menu span{
    font-size: 2rem;
  }


  .about-section {
    flex-direction: column;
    text-align: center;
     
  }
  .about-9{
    width: 100%;
    height: 100vh;
  }

  .booking-section {
    flex-direction: column;
    align-items: center;
  }

  .map-container iframe {
    width: 100%;
  }

  .booking-form {
    width: 100%;
  }
 .footer-container{
    flex-direction: column;
    align-items: center;
    
  
 }

 .testimonial-box {
  padding: 15px;
  max-width: 100%;
  /* text-align: center; */

}

.avatar {
  width: 60px;
  height: 60px;
}

.testimonials h2 {
  font-size: 24px;
  /* margin-top: -30%; */

}
.testimonials h4{
  text-align: center;
}
 .testimonials span{
  text-align: center;
  margin-left: 37%;
  font-size: 1.25rem;
 }
 .testimonials p{
  text-align: center;
  font-size: 1.25rem;
 }
 .footer-container h3{
  font-size: 2rem;
 }
 .footer-container p{
  font-size: 1.5rem;
 }
}
