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

.navbar {
  z-index: 2;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: white !important;
}

.nav-link {
  text-align: center;
  font-size: 20px;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  font-family: sans-serif;
  margin-top: 0;
}

.navbar .dropdown-menu {
  font-family: sans-serif;
  background-color: #ffffff;
}

.navbar .dropdown-item {
  font-family: sans-serif;
  color: #000;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
}

@media (max-width: 584px) {
  .navbar .nav-link {
    color: black !important;
  }
}

.navbar {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 30px;
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background-color: white;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
}
/* banner */

#banner img {
  width: 100%;
}
#banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

#know-more {
  text-align: center;
}
.card {
  border: none;
}

#content-banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#content-banner h4 {
  color: rgb(255, 255, 255);
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 150px;
}

#content-banner a {
  font-size: larger;
  color: lawngreen;
}

@media (max-width: 584px) {
  #content-banner {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  #content-banner h4 {
    font-size: 50px;
  }

  #content-banner a {
    font-size: larger;
    color: lawngreen;
  }
}

h2 {
  color: rgb(255, 255, 255);
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
}

/* full left-right card */

.full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 80px;
  align-items: center;
}

.left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.left h3 {
  font-family: "Ephesis", cursive;
  font-size: 40px;
}

.left h1 {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  margin-bottom: 20px;
}

.right h4 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
}

.left p,
.right p {
  font-family: sans-serif;
  color: #555;
}

.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}

button {
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  background-color: #767676;
  color: white;
  border: none;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* full left-right card (above 1400px) */
@media (min-width: 1400px) {
  .full {
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    padding: 80px 100px;
  }

  .left h1 {
    font-size: 100px;
  }

  .left h3 {
    font-size: 50px;
  }

  .left p,
  .right p {
    font-size: 22px;
  }

  button {
    font-size: 20px;
    padding: 16px 40px;
  }
}

/* full left-right card (768px–1199px) */
@media (max-width: 1199px) {
  .full {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 40px;
  }

  .left h1 {
    font-size: 60px;
  }

  .left h3 {
    font-size: 32px;
  }

  .left p,
  .right p {
    font-size: 18px;
  }

  button {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Small device */
@media (max-width: 767px) {
  .full {
    padding: 30px 20px;
    gap: 30px;
  }

  .left h1 {
    font-size: 40px;
  }

  .left h3 {
    font-size: 26px;
  }

  .left p,
  .right p {
    font-size: 16px;
  }

  button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

html {
  scroll-behavior: smooth;
}

/* review card */

.review-card {
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.review-section {
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
}

#h2-review {
  font-size: 80px;
  font-family: "Oswald", sans-serif;
  color: #222;
  font-weight: 600;
}

.review-section h5 {
  font-family: sans-serif;
  font-size: 18px;
}

.review-section h4 {
  font-family: "Ephesis", cursive;
  font-size: 40px;
  color: #757f00;
}

.review-section p {
  font-family: sans-serif;
  margin-top: 15px;
  font-size: 15px;
  color: #555;
}

.user-name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 18px;
}

.user-img {
  margin-top: 10px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}

@media (max-width: 768px) {
  .review-image {
    height: 250px;
    object-fit: cover;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background-color: #d3d3d3;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  background-size: 70% 70%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #bbb;
}

/* our-team */

.ourteam-content h2 {
  font-size: 80px;
  font-family: "Oswald", sans-serif;
  color: #222;
  font-weight: 600;
  text-align: center;
}

.team-members {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.one-img-content img {
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  width: 100%;
}

.one-img-content h4,
p {
  font-family: sans-serif;
  text-align: center;
}

.one-img-content p {
  padding-top: 10px;
  color: rgb(245, 147, 0);
  margin-bottom: 0%;
  text-decoration: underline;
}

.one-img-content h4 {
  font-size: 25px;
  font-weight: 700;
  font-family: sans-serif;
}

@media (max-width: 768px) {
  .one-img-content p {
    padding-top: 10px;
    color: rgb(245, 147, 0);
    margin-bottom: 0%;
    text-decoration: underline;
  }

  .one-img-content h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: sans-serif;
  }
}
/* our-exp */
.our-exp {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
}
.ourexp-items i {
  padding: 25px;
  border-radius: 30px;
  font-size: 100px;
  color: rgb(245, 147, 0);
}

.ourexp-items h5 {
  font-family: sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 35px;
}
.ourexp-items p {
  font-family: sans-serif;
  font-size: 18px;
}

.our-exp {
  background-color: #e1e1e1;
  box-shadow: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 200px;
}

@media (max-width: 767px) {
  .ourexp-items i {
    padding: 10.5px;
    border-radius: 30px;
    font-size: 40px;
    color: rgb(245, 147, 0);
  }

  .ourexp-items h5 {
    font-family: sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 17.5px;
  }
  .ourexp-items p {
    font-family: sans-serif;
    font-size: 14px;
  }
}

/* footer */
#footer-full {
  background-color: #282626;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: sans-serif;
  color: #ffffff;
  gap: 20px;
  border-bottom: 2px solid white;
  padding-bottom: 40px;
}

.footer-links h2 {
  text-align: center;
  padding-bottom: 30px;
  color: rgb(245, 147, 0);
  font-family: "oswald", sans-serif;
  font-size: 40px;
}

.footer-links h3 {
  color: rgb(245, 147, 0);
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 27px;
}

.footer-links p {
  line-height: 1.4;
  font-size: 20px;
}

.footer-links h6 {
  text-align: start;
  width: 90%;
  margin-bottom: 10px;
}

.footer-links ul,
a {
  color: white;
  line-height: 2;
  font-family: sans-serif;
  display: flex;
  text-align: start;
  flex-direction: column;
  list-style: none;
  cursor: pointer;
  padding-left: 0;
  margin: 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  font-weight: bold;
  color: white;
  padding-top: 20px;
}

/* Tablets */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-links h2 {
    font-size: 32px;
  }

  .footer-links h3 {
    font-size: 22px;
  }

  .footer-links p,
  .footer-links h6 {
    font-size: 16px;
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .footer-links h2 {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .footer-links h3 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .footer-links p,
  .footer-links h6 {
    font-size: 14px;
    width: 100%;
  }

  .footer-links ul,
  a {
    line-height: 1.6;
  }

  .footer-bottom {
    padding: 15px 10px;
    font-size: 14px;
  }
}
