/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2 {
  text-align: center;
  color: #333;
}

p {
  text-align: center;
  color: #555;
}

/* Header */
.about-header {
  background: linear-gradient(to right, #ff5722, #e64a19);
  color: #fff;
  padding: 40px 20px;
}

.about-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Vision Section */
.vision-section {
  padding: 20px;
  background: #f9f9f9;
}

/* Timeline Section */
.timeline-section {
  background: #fff;
  padding: 20px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.timeline-item {
  width: 300px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  top: -10px;
  right: 10px;
  background: #ff5722;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
}



/* Contact Section */
.contact-section {
  background: #f9f9f9;
  padding: 20px;
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-section button {
  padding: 10px;
  background: #ff5722;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background: #e64a19;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 10px;
}


#container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns of equal width */
  gap: 10px;
  margin: 5px;

}

#container>div {
  margin: 5px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  ;
  text-align: center;
}

#container>div>img {
  width: 300px;
  height: 300px;
  padding-left: 10px;
  margin: 30px;
}

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* Navigation Links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

.nav-links a:hover {
  color: #ff5722;
  /* Highlight color on hover */
}

/* Action Buttons */
.actions .icon {
  margin-left: 15px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.actions .icon:hover {
  color: #ff5722;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links ul {
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    display: none;
  }

  .nav-links ul.active {
    display: flex;
  }

  .actions {
    display: none;
  }
}

/*footer*/
/* Footer Styles */
.footer {
  background-color: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px 0;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff5722;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff5722;
}

/* Newsletter Form */
.footer-section.newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-section.newsletter input[type="email"] {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.footer-section.newsletter button {
  padding: 10px;
  border: none;
  background-color: #ff5722;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.footer-section.newsletter button:hover {
  background-color: #e64a19;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
  margin: 10px 0;
}

.footer-bottom .socials {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-bottom .socials li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-bottom .socials li a:hover {
  color: #ff5722;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}


/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2 {
  text-align: center;
  color: #333;
}

p {
  text-align: center;
  color: #555;
}

/* Header */
.contact-header {
  background: linear-gradient(to right, #4caf50, #388e3c);
  color: #fff;
  padding: 40px 20px;
}

.contact-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 20px;
  background: #f9f9f9;
}

.contact-form-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form-section .form-group {
  position: relative;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form-section button {
  padding: 10px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-section button:hover {
  background: #388e3c;
}

/* Address Section */
.address-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background: #fff;
  gap: 20px;
}

.address {
  max-width: 400px;
}

.address h2 {
  color: #4caf50;
}

.map iframe {
  border-radius: 8px;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .address-section {
    flex-direction: column;
    align-items: center;
  }
}


/* search css */
#search {
  border-radius: 30px;
  text-align: center;
  width: 250px;
  height: 25px;
}

/*cart page */

#main {
  width: 100%;
  display: flex;
}

#main>#container1 {
  width: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 15px;
  margin: 15px;
  text-align: center;
}

#main>#container1>div {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#title{
  padding: 20px;
  margin: 10px;
}
#main>#total {
  padding: 20px;
  margin: 10px;
  width: 25%;
  background-color: rgb(124, 228, 231);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#buy>button {

  margin-left: 60px;
  text-align: center;
  width: 200px;
  height: 30px;
  border-radius: 10px;
  background-color: green;
  color: white;
}

/* media query */ 

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    header.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #333;
      color: white;
    }

    .navbar .logo a {
      text-decoration: none;
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .nav-links ul {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-links ul li {
      margin: 0 10px;
    }

    .nav-links ul li a {
      text-decoration: none;
      color: white;
      font-size: 1rem;
    }

    .actions {
      display: flex;
      gap: 10px;
    }

    .actions .icon {
      font-size: 1.5rem;
      text-decoration: none;
      color: white;
    }

    #search {
      padding: 5px;
      font-size: 1rem;
      border: none;
      border-radius: 20px;
    }

    /* Responsive styles */
    @media (max-width: 1050px) {
      .navbar {
        padding: 10px;
      }
      #search {
        width: 100%;
        margin-top: 10px;
      }
    }

    @media (max-width: 750px) {
      .nav-links {
        display: none;
      }

      .navbar {
        flex-wrap: wrap;
      }

      #container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
      }
      #container>div>img {
        width: 200px;
        height: 200px;
        padding-left: 8px;
        margin: 20px;
      }

      .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
      }

      .menu-toggle.active + .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      .nav-links ul {
        flex-direction: column;
      }

      .nav-links ul li {
        margin: 10px 0;
      }
    }

    @media (max-width: 500px) {
      .navbar .logo a {
        font-size: 1.2rem;
      }
      #container{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 2px;
       
      }
      #container>div>img {
        width: 200px;
        height: 200px;
        
       
      }

      .actions .icon {
        font-size: 1.2rem;
      }
    }

    /* Content Section */
    .content {
      padding: 20px;
    }

    .content h1 {
      text-align: center;
      margin-bottom: 20px;
    }

    .content p {
      text-align: justify;
      margin-bottom: 20px;
    }

    .grid {
      display: grid;
      gap: 20px;
    }

    /* @media (min-width: 790px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .grid {
        grid-template-columns: 1fr;
      }
    }

    .grid-item {
      background-color: #f4f4f4;
      padding: 15px;
      border-radius: 5px;
      text-align: center;
    } */