* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

body {
  color: #333333;
  background-color: #ffffff;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  z-index: -1;
}

/* Header */
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  background: #005f73;
  color: #ffffff;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-right: 40px;
}

.nav-bar ul {
  display: flex;
  list-style: none;
}

.nav-bar ul li a {
  display: block;
  color: #ffffff;
  font-size: 20px;
  padding: 8px 25px;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 4px;
}

.nav-bar ul li:hover a {
  background-color: #0a9396;
  color: #ffffff;
}

/* Hero page */
.hero {
  height: 100vh;
  width: 100%;
  background-image: url(hero.png);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.content {
  max-width: 600px;
}

h1 {
  color: #ffffff;
  font-size: 75px;
  margin: 20px 0px 20px;
}

h3, h4 {
  color: #ffffff;
}

.button {
  background-color: #213032;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid black;
  font-weight: bold;
  padding: 13px 30px;
}

.button:hover {
  background-color: #0a9396;
  color: #213032;
  cursor: pointer;
}

/* School Section */
.school {
  width: 100%;
  padding: 100px 0px;
  background-image: url('../image/background.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.school::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.84);
  z-index: 1;
}

.school h2 {
  position: relative;
  z-index: 2;
  font-size: 75px;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align: center;
}

.school .main {
  position: relative;
  z-index: 2;
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.school img {
  height: auto;
  width: 50%;
  border-radius: 20px 0 20px 0;
}

.school-text p {
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
}

.school-text {
  width: 500px;
}

/* Feature page */
.feature {
  width: 100%;
  padding: 50px 0;
  background-color: #005f73;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature h2 {
  color: #ffffff;
  font-size: 50px;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align: center;
}

.box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0;
  justify-content: center;
}

.card {
  max-height: 500px;
  width: 300px;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #ffffff;
}

.box .card img {
  width: 300px;
  max-height: 375px;
  object-fit: contain;
}

.box .card .content {
  padding: 10px;
  background-color: #ffffff;
  color: #182f32;
  text-align: center;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #005f73;
}

.box .card p {
  font-size: 18px;
  margin: 10px 0;
  color: #005f73;
}

.box .card button {
  background-color: #005f73;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.box .card button:hover {
  background-color: #0a9396;
  color: #213032;
  cursor: pointer;
}

/* Categories page */
.categories {
  width: 100%;
  padding: 100px 0px;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories h2,
.box-categories {
  position: relative;
  z-index: 2;
}

.categories h2 {
  color: #005f73;
  font-size: 75px;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align: center;
}

.box-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ca-card {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 10px;
  border: 5px solid #ccc;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #ffffff;
}

.box .ca-card .content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 15px;
  background-color: #edffef;
  color: #182f32;
  text-align: center;
  opacity: 0;
}

.box .ca-card:hover .content {
  opacity: 1;
}

.ca-card h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #213032;
}

.box .ca-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.box .ca-card button {
  background-color: #005f73;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.box .ca-card button:hover {
  background-color: #0a9396;
  color: #213032;
  cursor: pointer;
}

.box .ca-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Cart page */
.cart {
  width: 100%;
  padding: 100px 0px;
  background-image: url('../image/background.png');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.84);
  z-index: 1;
}

.cart h2 {
  position: relative;
  z-index: 2;
  color: #005f73;
  font-size: 50px;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 20px;
}

.cart-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cart-content img.empty-cart-img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.cart-content p {
  color: #333333;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 20px;
  margin-bottom: 20px;
}

.shop-button {
  background-color: #005f73;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
}

.shop-button:hover {
  background-color: #0a9396;
  cursor: pointer;
}

/* Store Page */
.store-container {
  display: flex;
  padding: 20px;
  justify-content: center;
}

.sidebar {
  width: 250px;
  margin-right: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.sidebar h2 {
  color: #005f73;
  font-size: 24px;
  margin-bottom: 10px;
}

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

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #005f73;
}

.product-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-list h2 {
  color: #005f73;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.product-card {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 350px;
  width: 250px;
}

.product-card img {
  width: 240px;
  height: 210px;
  object-fit: contain;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #005f73;
}

.product-info p {
  font-size: 18px;
  margin: 10px 0;
  color: #005f73;
}

.product-info button {
  background-color: #005f73;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.product-info button:hover {
  background-color: #0a9396;
}


/* Lorem page*/
.content-sec {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec h6 {
  color: #005f73;
}

.content-sec p,
content-sec ul,
.content-sec ol,
.content-sec blockquote,
.content-sec table {
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-sec ul,
.content-sec ol {
  padding-left: 20px;
}

.content-sec blockquote {
  border-left: 4px solid #005f73;
  padding-left: 16px;
  color: #333;
}

.content-sec table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.content-sec table th,
.content-sec table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.content-sec img.article-img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.content-sec pre {
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
}

/* Footer*/
footer {
  background-color: #005f73;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

footer .social-icons {
  display: flex;
  justify-content: center;
}

footer .social-icons a {
  color: #ffffff;
  margin: 0 10px;
}

footer .social-icons a:hover {
  color: #ddd;
}
.contact {
  width: 100%;
  padding: 50px 0;
  background-color: #005f73;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .contact-info,
.contact .contact-form {
  max-width: 800px;
  width: 100%;
  margin: 20px 0;
  padding: 20px;
  background-color: #ffffff;
  color: #333;
  border-radius: 10px;
}

.contact .contact-info h2,
.contact .contact-form h2 {
  color: #005f73;
}

.contact .contact-form form {
  display: flex;
  flex-direction: column;
}

.contact .contact-form label {
  margin-bottom: 5px;
  color: #005f73;
}

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

.contact .contact-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #005f73;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.contact .contact-form button:hover {
  background-color: #0a9396;
}


/* About Us page */
.about {
  width: 100%;
  padding: 100px 0px;
  background-image: url('../image/background.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.84);
  z-index: 1;
}

.about h2 {
  position: relative;
  z-index: 2;
  font-size: 75px;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align: center;
}

.about .main {
  position: relative;
  z-index: 2;
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about img {
  height: auto;
  width: 50%;
  border-radius: 20px 0 20px 0;
}

.about-text p {
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
}

.about-text {
  width: 500px;
}

.team {
  width: 100%;
  padding: 100px 0px;
  background-color: #f9f9f9;
  text-align: center;
}

.team h2 {
  color: #005f73;
  font-size: 50px;
  text-transform: capitalize;
  margin-top: 0px;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  margin: 15px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.team-member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.team-member h3 {
  color: #005f73;
  font-size: 24px;
  margin: 10px 0;
}

.team-member p {
  color: #333333;
  font-size: 18px;
  margin: 5px 0;
}
.branches {
  width: 100%;
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
}

.branches h2 {
  color: #005f73;
  font-size: 50px;
  margin-bottom: 20px;
}

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

.branch {
  width: 300px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  text-align: left;
}

.branch h3 {
  font-size: 22px;
  color: #005f73;
  margin-bottom: 10px;
}

.branch p {
  font-size: 16px;
  color: #333333;
}

/* Login page */
.login {
  width: 100%;
  padding: 100px 0px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
}

.login-container h2 {
  color: #005f73;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  color: #333333;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.button {
  background-color: #005f73;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #0a9396;
}

.login-container p {
  margin-top: 20px;
  color: #333333;
}

.login-container a {
  color: #005f73;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}


/* Responsive Styles */

@media (min-width: 1300px) {
  .categories .box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .feature .box {
    grid-template-columns: repeat(4, 1fr);
  }

  .school .main {
    flex-direction: row;
  }
}

@media (min-width: 999px) and (max-width: 1299px) {
  .categories .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature .box {
    grid-template-columns: repeat(3, 1fr);
  }

  .school .main {
    flex-direction: column;
    align-items: center;
  }

  .school img {
    width: 80%;
  }

  .school-text {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 998px) {
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .logo {
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
  }

  .nav-bar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .nav-bar ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .nav-bar ul li a {
    font-size: 30px;
  }

  .categories .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature .box {
    grid-template-columns: repeat(2, 1fr);
  }

  .school .main {
    flex-direction: column;
    align-items: center;
  }

  .school img {
    width: 80%;
  }

  .school-text {
    width: 100%;
    text-align: center;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


@media (max-width: 660px) {
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .logo {
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
  }

  .nav-bar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .nav-bar ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .nav-bar ul li a {
    font-size: 30px;
  }

  .categories .box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature .box {
    grid-template-columns: repeat(1, 1fr);
  }

  .school .main {
    flex-direction: column;
    align-items: center;
  }

  .school img {
    width: 80%;
  }

  .school-text {
    width: 100%;
    text-align: center;
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* JavaScript */
.hidden {
    display: none;
}

.tooltip {
    position: absolute;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    display: none;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.social-icon img {
    width: 35px;
    height: 35px;
    transition: opacity 0.3s;
}

.social-icon img:hover {
    opacity: 0.7;
}



