/* Config */

/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); */

:root {
  --white: #fff;
  --black: #000;
  --yellow: #fcd116;
  --green: #1eb53a;
  --gray-btn: #0000004d;
  --blue: #00a3dd;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--black);
}

::selection {
  background: #0000007e;
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
p {
  margin-bottom: 0 !important;
}

img {
  user-select: none;
  pointer-events: none;
}

.heading {
  font-weight: 600 !important;
  font-size: 32px;
}

.body-wrapper {
  width: 75vw;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0;
  overflow-x: hidden;
}

.btn {
  background-color: white !important;
  border-radius: 30px !important;
  padding: 10px 30px !important;
  transition: all 0.3s ease-in-out !important;
}

.btn a {
  text-decoration: none;
  color: var(--black) !important;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 30px -10px;
}
/* Config */

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--black);
  color: var(--black);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 30px -10px;
  z-index: 1000;
}

.back-to-top i {
  color: var(--white);
}
.back-to-top:hover {
  background: var(--black);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
/* Back to Top */

/* Mobile Menu */

.mobile-menu {
  padding-left: 30%;
}
.mobile-menu i {
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu-slide {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-slide.active {
  right: 0;
}
.mobile-menu-slide .mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  z-index: 1000;
  padding-left: 50px;
}

.mobile-menu-slide .mobile-menu-close i {
  font-size: 24px;
  color: var(--white);
}

.mobile-menu-slide a {
  text-decoration: none;
  color: var(--white);
  font-size: 28px;
  padding: 20px 30px;
  display: block;
  font-weight: 600;
}

.mobile-menu-slide a:hover {
  background-color: var(--black);
  color: var(--yellow);
  transition: all 0.3s ease-in-out;
}

/* Mobile Menu */

/* Navbar */
nav {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  padding: 20px 30px !important;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

nav.scrolled {
  background: #000;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 30px -10px;
}

nav #white_logo {
  width: 10%;
  min-width: 140px;
  max-width: 200px;
}

nav .links {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
}

nav .links a i {
  color: var(--white);
  font-size: 14px;
}

/* Navbar */

/* Hero Section */
/* .hero {
  background: url(./assets/images/Hero_Bg.png) no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 900px;
} */

.hero-swiper {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
  position: relative;
}

.hero .carousel-slide {
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .carousel-info {
  width: 45%;
}

.hero .carousel-info h1 {
  font-size: 40px;
  font-weight: 500 !important;
}

.hero .carousel-info p {
  font-size: 14px;
  font-weight: 300 !important;
}

.hero .carousel-info .btn {
  background-color: var(--yellow) !important;
  color: var(--black) !important;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.carousel-info {
  position: relative;
  z-index: 2;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00000082;
  width: 45px;
  height: 26px;
  border-radius: 20px;
  border: none;
  margin: 0 !important;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background-color: var(--black);
}
.hero-swiper .swiper-button-prev {
  left: 40px;
}
.hero-swiper .swiper-button-next {
  right: 40px;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  display: none !important;
}

.hero-swiper .swiper-button-next i,
.hero-swiper .swiper-button-prev i {
  color: var(--white);
  font-size: 16px;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
/* Hero Section */

/* Services Section */

.services .service-card img {
  border-bottom-right-radius: 40px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.services .service-card .service-title {
  margin-top: 30px;
  text-transform: uppercase;
  font-weight: 400 !important;
  letter-spacing: 1px;
}

.services .service-card .service-desc {
  margin: 15px 0;
  margin-bottom: 15px !important;
}

.services .service-card a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}

/* Services Section */

/* About Section */
.about {
  background-color: var(--green);
  color: var(--white);
}

.about .heading,
.about p {
  color: var(--white);
}

.about p {
  font-weight: 300;
}

.about .about-left {
  width: 80%;
}

.about .stats {
  width: 80%;
}

.about .stats .data {
  font-weight: 700;
  color: var(--white);
  font-size: 26px;
  letter-spacing: 2px;
}

.about img {
  width: 100%;
  height: 70vh;
  max-height: 600px;
  object-fit: cover;
  border-bottom-right-radius: 40px;
}

.about .stats {
  margin: 50px 0 !important;
}
/* About Section*/

/* Leadership Section */

.leadership-card {
  display: flex;
  align-items: center;
}

.leadership-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.leadership-card .leadership-name {
  font-weight: 700 !important;
}

.leadership-card p {
  font-weight: 300 !important;
}

.leadership-card .leadership-desc {
  margin-top: 30px;
  margin-bottom: 20px !important;
}

.leadership-card .btn {
  background-color: var(--gray-btn) !important;
  color: var(--white) !important;
}

/* Leadership Section */

/* Footer */
footer .social i {
  color: var(--black);
  font-size: 20px !important;
  margin: 0 16px;
}

footer .social i:hover {
  color: var(--blue);
}

footer #footer_logo {
  width: 10%;
  min-width: 140px;
  max-width: 200px;
}
/* Footer */

/* Client Testimonials */
.testimonial {
  background-color: var(--black);
  color: var(--white);
}

.testimonial .heading {
  color: var(--white);
}

.testimonial-card {
  display: flex;
  background-color: var(--white);
  color: var(--black);
  flex-direction: column;
  width: 100%;
  height: 250px;
  padding: 20px;
  border-radius: 16px;
  justify-content: space-between;
  /* aspect-ratio: 4 / 3; */
}

.testimonial-card .title {
  font-weight: 500;
  color: var(--black);
  font-size: 16px;
}

.testimonial-card .desc {
  letter-spacing: 0.5px;
  font-weight: 300;
}

.testimonial-card .name {
  font-weight: 500;
}

.testimonial-card .info {
  font-weight: 300;
}

.testimonial-card .avatar {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.testimonial .service-swiper {
  width: 100%;
  height: 300px;
  margin-top: 30px;
}

.testimonial .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial .swiper-controls {
  margin-top: 16px !important;
}

.testimonial .swiper-button-prev,
.testimonial .swiper-button-next {
  color: var(--black);
  position: relative;
  background-color: white;
  width: 45px;
  height: 26px;
  border-radius: 20px;
  border: none;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
}

.testimonial .swiper-button-prev:hover,
.testimonial .swiper-button-next:hover {
  opacity: 0.8;
}

.testimonial .swiper-button-next {
  margin-left: 35px !important;
}

.testimonial .swiper-button-next::after,
.testimonial .swiper-button-prev::after {
  display: none !important;
}

/* Client Testimonials */

/* Contact Section */
.contact {
  background-color: var(--blue);
  color: var(--white);
}

.contact p {
  font-weight: 300;
  color: var(--white);
}

.contact .contact-desc {
  width: 40%;
}

.contact .btn {
  background-color: var(--black) !important;
  color: var(--white) !important;
}

/* Contact Section */

/* Media Queries */

@media screen and (max-width: 1200px) {
  .body-wrapper {
    width: 85vw;
  }

  .about .about-left {
    width: 100%;
  }

  .about .stats {
    width: 100%;
  }

  .leadership-card {
    flex-direction: column;
    align-items: start;
  }

  .leadership-name {
    margin-top: 15px;
  }

  .contact .contact-desc {
    width: 100%;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
  }

  .back-to-top i {
    font-size: 16px;
  }

  .hero .carousel-info {
    width: 80%;
  }
  .hero .carousel-info h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 480px) {
  .body-wrapper {
    width: 90vw;
  }

  .hero-swiper {
    height: 100vh;
  }

  .heading {
    font-size: 28px;
  }

  .about .stats .data {
    font-size: 20px;
  }

  .leadership-card:nth-child(1) {
    margin-top: 30px;
  }

  .hero .carousel-info h1 {
    font-size: 24px;
    font-weight: 600 !important;
  }

  .hero .swiper-button-prev {
    left: 10px;
  }

  .hero .swiper-button-next {
    right: 10px;
  }
}
/* Media Queries */
