#header {
  position: relative;
  z-index: 1000;
}
#header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 10px 20px;
}
#header .navbar .brand-title {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#header .navbar .navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}
#header .navbar .navbar-links li {
  list-style: none;
}
#header .navbar .navbar-links li a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}
#header .navbar .navbar-links li a:hover {
  background-color: #555;
  border-radius: 4px;
}
#header .navbar .toggle-button {
  position: absolute;
  top: 15px;
  right: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  background: transparent;
  border: none;
}
#header .navbar .toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #header .navbar .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  #header .navbar .toggle-button {
    display: flex;
  }
  #header .navbar .navbar-links {
    display: none;
    width: 100%;
    margin-top: 10px;
  }
  #header .navbar .navbar-links.active {
    display: flex;
  }
  #header .navbar .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }
  #header .navbar .navbar-links li a {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

#about {
  padding: 50px 0;
}
#about .textbox {
  text-align: center;
}
#about .textbox h2 {
  font-size: 25px;
  font-weight: 600;
}
#about .textbox h1 {
  color: #090101;
  font-size: 55px;
  font-weight: 900;
  margin: 15px 0 25px 0;
}
#about .textbox p {
  font-size: 16px;
  font-weight: 400;
}
#about .imgbox {
  width: 450px;
}
#about .imgbox img {
  max-width: 100%;
  border-radius: 50px;
}
@media (max-width: 768px) {
  #about {
    padding: 50px 0;
  }
  #about h1 {
    font-size: 45px;
  }
  #about p {
    font-size: 19px;
  }
  #about .imgbox {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  #about {
    padding: 50px 0;
  }
  #about .textbox h2 {
    font-size: 20px;
  }
  #about .textbox h1 {
    font-size: 27px;
    margin: 10px 0 20px 0;
  }
  #about .textbox p {
    font-size: 14px;
  }
  #about .imgbox {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

#services {
  padding: 50px 0;
  background-color: #d7ffd7;
}
#services .textbox {
  border-radius: 15px;
  text-align: center;
  padding: 15px;
}
#services .textbox h1 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
}
#services .textbox h3 {
  font-weight: 400;
  font-size: 20px;
}
#services .carousel.slide {
  margin: 35px auto;
  width: 100%;
  max-width: 700px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px #1c1b1b;
  padding-bottom: 0;
}
#services .carousel.slide .carousel-item {
  position: relative;
  height: 450px;
}
#services .carousel.slide .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#services .carousel.slide .carousel-item .carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  bottom: 2rem;
  margin-top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
#services .carousel.slide .carousel-item .carousel-caption h5 {
  font-size: 30px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #ffc107;
}
#services .carousel.slide .carousel-item .carousel-caption p {
  font-size: 20px;
  color: #f8f9fa;
  margin-bottom: 35px;
}
#services .carousel.slide .carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  margin: 0 5px !important;
  opacity: 0.7;
}
#services .carousel.slide .carousel-indicators button.active {
  background-color: #ffc107 !important;
  opacity: 1;
}
#services .card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 5px;
  justify-content: center;
}
#services .card-container .card {
  width: 400px;
  height: auto;
  text-align: center;
  border-radius: 19px;
  line-height: 1.2;
  margin: 10px;
  padding: 10px;
  transition: all 0.3s ease;
  background-color: #08d5ce;
}
#services .card-container .card img {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .card-container .card .card-content .card-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0 17px 0;
}
#services .card-container .card .card-content .card-description {
  font-size: 19px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #services {
    padding: 30px 0;
  }
  #services .textbox h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  #services .textbox h3 {
    font-weight: 400;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  #services {
    padding: 10px 0;
  }
  #services .textbox h1 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  #services .textbox h3 {
    font-weight: 400;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  #services .card-container {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  #services .card {
    justify-content: center;
    width: 90%;
    margin: 15px 0;
  }
  #services .card img {
    width: 100%;
    height: auto;
  }
  #services .card h2 {
    font-size: 16px;
  }
  #services .card p {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  #services {
    margin: 20px auto;
    padding-bottom: 10px;
  }
  #services .carousel-item .carousel-caption {
    padding: 15px;
    bottom: 2rem;
  }
  #services .carousel-item .carousel-caption h5 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #services .carousel-item .carousel-caption p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  #services {
    margin: 10px auto;
    border-radius: 12px;
  }
  #services .carousel-item img {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #services .carousel-item .carousel-caption {
    padding: 10px;
    bottom: 1rem;
    width: 90%;
    left: 5%;
  }
  #services .carousel-item .carousel-caption h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  #services .carousel-item .carousel-caption p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #services .carousel-indicators {
    margin-bottom: 0;
  }
  #services .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    margin: 0 3px !important;
  }
}
@media (max-width: 768px) {
  #services {
    width: 46%;
    margin: 10px;
  }
  #services img {
    height: 250px;
  }
  #services img .card-content .card-title {
    font-size: 20px;
  }
  #services img .card-content .card-description {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  #services {
    width: 100%;
    margin: 10px 0;
  }
  #services img {
    height: auto;
    max-height: 300px;
  }
  #services img .card-content .card-title {
    font-size: 22px;
    margin: 10px 0;
  }
  #services img .card-content .card-description {
    font-size: 16px;
  }
}

#rubrics.video-section .section-header {
  background-color: #f8f9fa;
}
#rubrics.video-section .section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
}
#rubrics.video-section .section-header .text-muted {
  font-size: 17px;
  font-weight: 400;
}
#rubrics .video-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#rubrics .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
#rubrics .video-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#rubrics .video-card:hover .video-thumbnail::before {
  opacity: 1;
}
#rubrics .video-card .video-thumbnail {
  position: relative;
  cursor: pointer;
}
#rubrics .video-card .video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#rubrics .video-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
#rubrics .video-card .video-card-body {
  padding: 1.25rem;
}
#rubrics .video-card .video-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}
#rubrics .video-card .video-card-text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}
#rubrics .video-card .ratio {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
@media (max-width: 576px) {
  #rubrics .section-header {
    text-align: center;
  }
  #rubrics .section-header h2 {
    font-size: 14px;
  }
  #rubrics .section-header p {
    font-size: 10px;
    width: 90%;
  }
}
@media (max-width: 768px) {
  #rubrics .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  #rubrics .section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    width: 100%;
  }
}

footer {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #0d0101;
  color: #fffefe;
}
footer .box {
  width: 100%;
}
footer .box h2 {
  color: #fffefe;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 26px;
}
@media (max-width: 768px) {
  footer .box h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
footer .box .box-two h3 {
  color: #ffcbcb;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 768px) {
  footer .box .box-two h3 {
    font-size: 16px;
  }
}
footer .box .box-two h4 {
  margin-bottom: 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  footer .box .box-two h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
footer .box .box-two h4 a {
  color: #fffefe;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .box .box-two h4 a:hover {
  color: #ffc107;
}
footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fffefe;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
footer .social-icons a:hover {
  background-color: #fffefe;
  color: #0d0101;
  transform: translateY(-3px);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
}
footer .footer-bottom p {
  font-size: 16px;
  color: rgba(255, 254, 254, 0.7);
  margin: 0;
}
@media (max-width: 576px) {
  footer .footer-bottom p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */