/* colors */
:root {
  --primary-color: #00b4f0;
  --secondary-color: #7a7a73;
  --dark-color: #17313e;
  --warning-color: #ffd700;
  --danger-color: #ea2f14;
  --light-color: #eee;
  --white-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  background-color: var(--light-color) !important;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero .navbar {
  margin-top: 2rem;
  font-size: 1.6rem;
  position: fixed;
  z-index: 99999;
  width: 100%;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.hero .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.hero .navbar .brand {
  padding: 0.2rem 3rem;
  background-color: var(--white-color);
  border-bottom-right-radius: 5rem;
  border-top-right-radius: 5rem;
}

.hero .navbar .brand img {
  width: 12rem;
  height: auto;
  margin-left: 8rem;
  transition: all 0.3s ease-in-out;
}
.hero .navbar .brand img:hover {
  transform: scale(110%);
}
.hero .navbar .navbar-collapse {
  flex-grow: 0;
}
.hero .navbar .nav-item a {
  display: inline-block;
  height: 100%;
  text-align: center;
  padding: 1.7rem 2rem;
  color: var(--dark-color);
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

.hero .navbar .nav-item a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
}
.news-hero-content {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 10rem 0rem;
  gap: 15rem;
}

.news-hero-content video {
  width: 170%;
  height: auto;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.news-hero-content video:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.news-hero-content h1 {
  font-size: 3rem;
  color: var(--dark-color);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.news-hero-content p {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .news-hero {
    margin-bottom: 35rem !important;
  }
  .news-hero-content {
    flex-direction: column;
    padding: 4rem 3rem;
    gap: 4rem;
    align-items: center;
    text-align: center;
    margin-bottom: 60rem;
  }
  .news-hero-content video {
    width: 60%;
  }
  .news-hero-content h1 {
    font-size: 2rem;
  }
  .news-hero-content p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
  }
  .hero .navbar .brand {
    background-color: rgb(255, 255, 255, 0);
  }
  .hero .navbar .brand img {
    width: 12rem;
    height: auto;
    margin-left: 2rem;
  }

  .navbar-toggler {
    margin-right: 2rem;
  }
  .hero .navbar .nav-item a {
    display: block;
  }
}

.hero .carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hero .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero .carousel span,
button {
  z-index: 8888 !important;
}
.carousel-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  z-index: 222;
}
.carousel::before {
  content: "";
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
}

.carousel-caption h1 {
  font-size: 6rem;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.carousel-caption p {
  font-size: 1.8rem;
  color: var(--white-color);
  margin-bottom: 2rem;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 5rem;
  background-color: var(--white-color);
  color: var(--primary-color);
  border-radius: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  margin-top: 1rem;
  font-size: 1.6rem;
}

.hero-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-card {
  position: absolute;
  bottom: 15%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 333;
}

.hero-card .card {
  font-size: 1.2rem;
  width: 80%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin: 0 3rem;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.hero-card .card:hover {
  background-color: rgba(255, 255, 255, 1);
  cursor: pointer;
}
.card-content {
  transition: all 0.3s ease-in-out;
}
.hero-card .card:hover .card-content {
  transform: translateX(1rem);
}

.hero-card .card-body {
  display: flex;
  align-items: center;
  color: var(--dark-color);
}
.hero-card .card-body i {
  margin: 0 1rem;
  font-size: 2rem;
  color: #00b4f0;
}

.hero-card h6 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5rem;
  left: 2rem;
  z-index: 9998 !important ;
}

.icons i {
  font-size: 3rem;
  margin: 1rem 0;
}

.icons a {
  color: var(--dark-color);
  font-size: 2rem;
  transition: all 0.2s;
}

.icons a:hover {
  color: var(--primary-color);
}

.services {
  padding: 9rem 0;
}
.services h2 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 3rem;
  font-weight: bold;
  color: var(--dark-color);
}
.services p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.sevices-cards {
  display: flex;
  justify-content: center;
  padding: 0 6rem;
}

.sevices-cards .card-body i {
  font-size: 4rem;
  color: #00b4f0;
  margin: 1.6rem 0;
  transition: all 0.3s ease-in-out;
}

.sevices-cards .card:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px 3px !important;
}

.sevices-cards .card-body h5 {
  font-size: 2.4rem;
  margin: 1.6rem 0;
}

.sevices-cards .card-body p {
  font-size: 1.6rem;
  color: var(--dark-color);
  max-width: 50rem;
}

.sevices-cards .card-body ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
}
.sevices-cards .card-body ul li {
  display: flex;
  align-items: center;
  padding: 0;

  font-size: 1.6rem;
}
.sevices-cards .card-body ul li i {
  font-size: 0.75rem;

  margin: 0 1rem;
}

.gallery-section {
  padding: 60px 20px;
  background-color: var(--primary-color);
  text-align: center;
  color: var(--white-color);
}

.gallery-section .section-title {
  text-align: center;
  font-size: 4rem;
  margin: 3rem 0;
  font-weight: bold;
  color: var(--white-color);
}
.gallery-section p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  margin: 30% auto;

  display: block;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.left-column {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.info-cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.info-cards .card {
  flex: 1 1 45%;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  color: #333;
}

.right-column {
  flex: 1 1 65%;
}

.mission-card {
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.mission-card h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.mission-card p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.about .section-title h2 {
  text-align: center;
  font-size: 4rem;
  margin: 3rem 0;
  font-weight: bold;
}
.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 70rem;
}
.about-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.about-content p {
  font-size: 1.6rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
  font-weight: 500;
}
.about-content p span {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 2rem;
}
.left-card {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 1rem;
  width: 50%;
  transition: all 0.3s ease-in-out;
}
.right-card {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 1rem;
  width: 50%;
  transition: all 0.3s ease-in-out;
}

.left-card:hover,
.right-card:hover,
.abuot-right:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px 3px !important;
  transform: translateY(-10px);
}
.abuot-right {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}

.abuot-right h5 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
}

.contact {
  padding: 6rem 2rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
}

.contact h2 {
  text-align: center;
  font-size: 4rem;
  margin: 5rem 0 2rem 0;
  font-weight: bold;
  color: var(--white-color);
}

.contact p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.contact-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
}

.map {
  flex: 1;
  align-items: center;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.contact-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.contact-items .details {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 3rem;
  background-color: var(--white-color);
  color: var(--primary-color);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.contact-items .details h5 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
  padding: 0;
  margin-bottom: 2rem;
}
.contact-items .details p {
  text-align: start;
}

.contact-items .work-hours {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 3rem;
  background-color: var(--white-color);
  color: var(--primary-color);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.contact-items .work-hours h5 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 2rem;
}

.contact-items p {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  color: var(--dark-color);
}
.contact-items i {
  color: var(--primary-color);
  font-size: 2rem;
}
.contact-items a {
  text-decoration: none;
  color: var(--dark-color);
}

.footer-section {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.footer-content img {
  width: 30rem;
  height: auto;
  margin-bottom: 2rem;
}

.footer-content h3 {
  font-size: 2.4rem;
  color: var(--white-color);
  font-weight: bold;
}
.footer-content h5 {
  font-size: 1.6rem;
  color: var(--white-color);
  font-weight: bold;
}
.footer-content p {
  font-size: 1.6rem;
  color: var(--light-color-color);
  margin-top: 1rem;
  max-width: 40rem;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-content ul li {
  font-size: 1.6rem;
  color: var(--white-color);
  margin-top: 1rem;
}

.footer-content ul li a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-content ul li a:hover {
  color: var(--primary-color);
}
.footer-content .footer-social {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}
.footer-content i {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 1rem 1rem 0 0;
  transition: all 0.3s ease-in-out;
}
.footer-content i:hover {
  color: var(--white-color);
  cursor: pointer;
}

.footer-social h5 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.footer-bottom {
  font-size: 1.4rem;
  color: var(--light-color);
  margin: 3rem auto 0;
  border-top: var(--secondary-color) 2px solid;
  padding-top: 1rem;
  width: 90%;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.footer-bottom a {
  color: var(--light-color-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
