@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", serif;
}

.sticky-header {
  position: sticky;
  top: -1px;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 10px 40px;
}

.navbar-brand img {
  width: 50px;
}

.navbar-nav {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  min-width: 200px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-section {
  padding: 60px 0;
}

.about-section h2 {
  font-size: 30px;
  font-weight: 700;
}

.about-section p {
  font-size: 16px;
  font-weight: 400;
}
.about-section img {
  width: 100%;
  border-radius: 20px;
}
.about-section .learn-more {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.news-section {
  background-color: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}
.news-section h2 {
  font-size: 30px;
  font-weight: 700;
}
.news-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-card h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  text-align: start;
  font-weight: 500;
}

.news-card p {
  font-size: 15px;
  color: #555;
  text-align: start;
}

.news-card .read-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-card .read-more a {
  text-decoration: none;
}
.news-card img {
  width: 100%;
  border-radius: 12px;
}
.contact-us {
  text-align: center;
  padding: 60px 0;
  background: #5c7dbc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-us h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 500;
  color: #ffffff;
}
.contact-info {
  background-color: #ffffff;
  padding: 40px 0;
  border-radius: 12px;
}
.contact-info i {
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #ffffff;
  background-color: #4caf50;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info i:hover {
  background-color: #388e3c;
  transform: scale(1.1);
}

.contact-info h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-info p {
  font-size: 18px;
  color: #777;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}
.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.footer {
  padding: 60px 0 30px 0;
  background-color: #f4f4f4;
}
.footer .footer-logo img {
  width: 120px;
}
.footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer .social-icons a img {
  width: 50px;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}
.copy-right p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

/*Contact Us*/
.contact-section {
  background-color: #c6d6e9;
  padding: 60px 0;
}
.text-icon {
  display: flex;
  gap: 20px;
  align-items: center;
}
.text-icon .icon {
  width: 45px;
  height: 45px;
  font-size: 21px;
  color: #ffffff;
  background-color: #4caf50;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-icon .icon:hover {
  background-color: #388e3c;
  transform: scale(1.1);
}
.text-icon .text {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  color: Black;
}
.contact-section h1 {
  font-size: 48px;
  line-height: 50px;
  font-weight: 400;
  color: #333;
}

.form-control,
.form-select :focus {
  outline: 1px solid #878787;
  box-shadow: none;
}

.form-group label {
  margin-bottom: 0.3rem;
}
.form-control .form-control {
  border-radius: 2px;
  min-height: 48px;
}
.simple-section {
  padding: 70px 0;
}
.bg-purple {
  background-color: #e9abff;
}
.section-title h1 {
  font-size: 48px;
  line-height: 65px;
  font-weight: 400;
  color: #000;
}
.section-title h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #333;
}
.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.guide-list h3 {
  font-size: 40px;
  margin: 0;
}
.guide-list p {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  .search input {
    width: 270px;
  }

  .menu {
    display: flex;
    width: 40px;
  }
  .links a {
    margin-right: 10px;
    padding-right: 10px;
    text-wrap: nowrap;
  }
  .border-left {
    padding: 0;
  }
  .phone-detail {
    justify-content: center;
  }
  .navbar {
    padding: 10px;
  }
  .about-section h2 {
    font-size: 22px;
  }
  .about-section p {
    font-size: 14px;
  }
  .carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .footer {
    padding: 50px 0 30px 0;
  }
  .footer .footer-logo img {
    width: 100px;
  }
  .news-section {
    padding: 30px 0;
  }
  .guide-list li h3 {
    font-size: 32px;
  }
  .guide-list li p {
    font-size: 14px;
    line-height: 17px;
  }
  .section-title h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .section-title h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
