*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Merriweather', serif;
}



/* body, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
} */
a {
  text-decoration: none;
}

/* Top Navbar */
.top-navbar {
  display: flex;
  justify-content: space-between;
  /* background-color: #1e3a5f; */
  
  background-color: rgb(67 0 86);
  /* background-color: #333; */
  color: white;
  padding: 10px 20px;
}

.top-navbar a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
}
.contact-info{
 margin-left: 10px; 
 padding-top: 2px;
}
.contact-info span {
  margin-right: 10px;
}
.social-icons{
  margin-right: 40px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .top-navbar{
    display: block;
  }
  .contact-info{
    margin-left:10px; 
    display: inline-flex;
    flex-direction: column;
    font-size: 1rem;
    color: white;
  }
  .social-icons{
    /* margin-top: 100px; */
    margin-left:10px;
    font-size: 25px;
  }
}
/* -----------------main-nav------------------- */


header {
  background-color:#f4f3ee;
  color: black;
padding: 10px;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.navbar .logo a {
  color:black;
  font-size: 26px;
  text-decoration: none;
  font-weight: 900;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-toggle i {
  color: black;
}

.nav-links {
  /* border: 2px solid; */
  display: flex;
  list-style-type: none;
  margin-top: 0.9rem;
}

.nav-links li {
  margin: 0 20px;
  position: relative; /* Needed for the dropdown */
 
}

.nav-links a {
  font-size: 1.2rem;
  color:black;
  text-decoration: none;
  padding: 10px;
  font-weight: 400;
  /* padding-top: 15px; */
  /* padding-left: 1%; */
}

.nav-links a:hover {
  background-color: #f39c12;
  border-radius: 5px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #333;
  list-style-type: none;
  padding: 10px 0;
  top: 100%;
  left: 0;
  width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-menu li {
  padding: 10px;
  text-align: left;
}

.dropdown-menu li a {
  color: black;
  /* padding: 10px 20px; */
  display: block;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f39c12;
  border-radius: 5px;
}

/* Show the dropdown when hovering */
.dropdown:hover .dropdown-menu {
  display: block;
}

.cart {
  position: relative;
  right: 30px;
}

.cart-icon {
  color: black;
  font-size: 30px;
  text-decoration: none;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: #fff;
  border-radius: 50%;
  padding: 4px 10px;
  font-size: 12px;
}

.cart:hover {
  background-color: #f39c12;
  border-radius: 5px;
  cursor: pointer;
}
/* Mobile View Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 35px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  .nav-links a {
    font-size: 1.2rem;
    color:white;
    text-decoration: none;
    padding: 10px;
    font-weight: 400;
    /* padding-top: 15px; */
    /* padding-left: 1%; */
  }
  
  .nav-links li {
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
    position: relative;
    background-color: #333;
  }

  
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .cart {
    position: absolute;
    top: 15px;
    right: 80px;
  }
}



/* -------------------------why choose--------------- */

  /* Features Section */
  .features {
    background: #e6f1fa;
    padding: 40px 20px;
  }
  
  .features h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  
.feature {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    flex: 1 1 calc(50% - 20px);
    max-width: 300px;
  }
  
  .feature i {
    font-size: 2rem;
    color: #3cca41;
    /* color: #ffc800; */
    margin-bottom: 10px;
  }
  
  .feature h3 {
    font-size: 1.2rem;
    color: #333;
  }
  
  .feature p {
    font-size: 0.9rem;
    color: #666;
  }
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .features-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  /* ------------------reviews--------------------------------------------- */
  .reviews-grid-section {
    background-color:  #f9f9f9;
    /* border: 2px solid red; */
    padding: 40px;
    text-align: center;
    /* border-radius: 10px; */
    /* margin: 20px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .reviews-grid-section h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .review-card {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .review-author {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
  }
  
  .stars span {
    color: #ffc107;
    font-size: 18px;
  }
  
  .review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }
  /* -----------------hero------------------------------------------- */
  .contact-hero{
    height: 400px;
    width: 100%;
    background-image: url("https://t4.ftcdn.net/jpg/02/69/15/39/360_F_269153974_8x5Mbf1vYy67OKDq7mArqXN5gZvixMnw.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    }
    .contact-hero h2{
      font-size: 2.2rem;
      color: #fff;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
     padding-left: 15%;
     padding-top: 10%;
     /* text-align: center; */
     
    }
    .contact-hero p{
      padding-left: 2%;
      color: #fff;
      font-size: 1.5rem;
      /* width: 70%; */
    }
    @media (max-width:760px){
      .contact-hero h2{
        font-size: 2.1rem;
        padding-left: 4%;
        padding-top: 20%;
      }
      .contact-hero p{
        padding-left: 3%;
        color: #fff;
        font-size: 1.6rem;
        padding-top: 5%;
        /* width: 70%; */
      }
    }
 /* -----------------------------------------------------------    */
 #chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* background-color: #4ad62e; */
  background-color: #5BCD46;
  /* background-color: none; */
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  /* font-size: 20px; */
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

#chatbot-icon:hover {
  background-color: #0056b3;
}
/* --------------------------------------------------------------------------------- */
footer {
  background-color:rgb(67 0 86);
  color: #fff;
  padding: 30px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  padding: 10px;
}

.footer-section h3 {
  /* color: #ffc800;
  font-size: 18px;
  margin-bottom: 20px; */

 color: #ffc800;
  font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}


.footer-section p,
.footer-section ul {
  font-size: 15px;
  line-height: 1.9;
  font-weight: bold;
  list-style: none;
}

.footer-section a {
  /* color: #fff;
  text-decoration: none; */
  font-size: 15px;
  text-decoration: none;
  color: white;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  transition: 0.5s ease;
}


.footer-section a:hover {
  text-decoration: underline;
}

.footer-section .social-icons a {
  font-size: 20px;
  display: inline-block;
  text-decoration: none;
  background-color: #373737;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  transition: 0.5s ease;
}

.footer-section .social-icons a:hover {
  color: #3498db;
}
hr{
  margin-top: 4%;
}
.footer-bottom {
 /* margin-top: 4%; */
  text-align: center;
  padding: 0px 0;
  background-color: rgb(67 0 86);
}

.footer-bottom p {
  font-size: 15px;
  color: white;
}

#footer .credits{
  float: left;
  text-align: center;
  font-size: 13px;
}
#footer .credits a{
  color: #ffc800;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p, .footer-section ul {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-section h3 {
    font-size: 14px;
  }

  .footer-section p, .footer-section ul {
    font-size: 12px;
  }
}

@media (max-width:760px){
  #banner-image{
    width: 100%;
  }
}


#about{
  height: 600px;
}
#about h3{
  padding-top: 2%;
}
@media (max-width:760px){
  #about{
    height: auto;

  }
}