@import "./variables.css";

/* Navbar */
.navbar {
  width: 100%;
  position: relative;
  height: 80px;
  background: var(--primary);
  padding: 0;
  overflow-y: visible;
  z-index: 9;
}
.navbar .container {
  position: relative;
  height: 100%;
}
.navbar .navbar-toggler {
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--light);
  outline: 0;
  border: 0;
  color: var(--primary);
}
.navbar .navbar-brand {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 7px solid var(--primary);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-nav {
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}
.navbar .navbar-nav div {
  display: flex;
  gap: 30px;
  height: 100%;
  width: 40%;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item:nth-child(4) {
  width: 300px;
}
.navbar .navbar-nav .nav-link {
  opacity: 1;
  color: var(--light);
  transition: 0.5s ease all;
  font-size: 16px;
  font-weight: 600;
}
.navbar .navbar-nav .nav-link.dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .dropdown-menu {
  padding: 0;
  border-radius: 0;
  background: var(--dark);
  box-shadow: var(--shadow);
  border: 0;
  border-top: 3px solid var(--light);
}
.navbar .navbar-nav .dropdown-menu li {
  border-bottom: 2px solid #fff3;
}
.navbar .navbar-nav .dropdown-menu li:last-child {
  border-bottom: 0;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 15px;
  transition: 0.5s ease all;
  background: var(--dark);
  color: var(--light);
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: var(--primary);
}

/* Hero Section */
.hero {
  width: 100%;
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}
/* .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #fff5, var(--light-alt));
  z-index: 3;
} */
.hero .pattern {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 102%;
  z-index: 3;
}
.hero .carousel,
.hero .carousel .carousel-inner,
.hero .carousel .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}
.hero .carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 10s infinite;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.hero .carousel .carousel-inner .carousel-item .carousel-caption {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.hero .carousel .carousel-inner .carousel-item .carousel-caption h5 {
  font-size: 35px;
  font-weight: 600;
  color: var(--light);
  text-shadow: var(--shadow);
}
.hero .carousel .carousel-inner .carousel-item .carousel-caption h5 span {
  display: block;
  font-family: var(--cursive);
  font-size: 60px;
  font-weight: 400;
  line-height: 90px;
  color: var(--light);
}
.hero .carousel .carousel-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 50px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.hero .carousel .carousel-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--light);
  opacity: 1;
}

/* Footer */
.footer {
  border-radius: 100px 100px 0 0;
}
.footer .logo {
  width: 150px;
}
.footer h4 {
  font-size: 25px;
  font-family: var(--cursive);
  font-weight: 500;
  color: var(--light);
}
.footer h6 {
  font-size: 20px;
  font-weight: 400;
  color: var(--light);
  line-height: 150%;
  opacity: 0.5;
}
.footer hr {
  opacity: 0.1;
}
.footer .info h6 {
  font-size: 25px;
  font-family: var(--cursive);
  font-weight: 500;
  color: var(--light);
  opacity: 1;
  line-height: 100%;
}
.footer .info h6 b {
  display: block;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--sans-serif);
  margin: 3px 0 15px;
  opacity: 0.5;
}
.footer .info p {
  margin-bottom: 5px;
}
.footer .info p i {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}
.footer .info p a {
  font-size: 16px;
  font-weight: 400;
  color: var(--light);
}
.footer address {
  font-size: 18px;
  font-weight: 400;
  color: var(--light);
  line-height: 170%;
  opacity: 0.5;
}

.footer-bottom {
  padding: 15px 0;
  background: var(--dark-alt);
}
.footer-bottom p {
  color: #fff7;
}
.footer-bottom p a,
.footer-bottom p b {
  color: var(--light);
  font-weight: 500;
}

/* About */
.about-section::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.about-section::before {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.about-section .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
}
.about-section .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-section .text {
  border-left: 3px solid #1c528e2b;
  padding: 15px 15px 15px 20px;
  margin-left: 15px;
}
.about-section .card {
  background: var(--light-alt);
  border: 3px solid #1c528e4d;
}
.about-section h6 {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--cursive);
  color: var(--primary);
  margin-bottom: 20px;
}
.about-section h6 b {
  display: block;
  font-size: 16px;
  font-family: var(--sans-serif);
  color: var(--dark);
  margin: 3px 0 0;
}
.about-section p {
  margin-bottom: 5px;
}
.about-section p i {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}
.about-section p a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}
.about-section address {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 170%;
}

/* Why Choose Us */
.why-choose-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: url(../images/pattern-light.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.why-choose-section::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 50px;
  background: url(../images/pattern-light.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.why-choose-section .accordion-item {
  margin-bottom: 10px;
  border: 0;
}
.why-choose-section .accordion-button {
  outline: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 600;
  background: var(--dark);
  color: var(--light);
}
.why-choose-section .accordion-button.collapsed {
  background: var(--light-alt);
  color: var(--primary);
}
.why-choose-section .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  height: 100%;
  width: 100%;
}
.why-choose-section .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
}
.why-choose-section .image .img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

/* Team Section */
.team-section {
  background: url(../images/parallax-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
/* .team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, transparent, #fff5, var(--light-alt));
  z-index: 3;
}
.team-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #fff5, var(--light-alt));
  z-index: 3;
} */
.team-section .pattern-alt {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 102%;
  z-index: -1;
}
.team-section .pattern {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 102%;
  z-index: -1;
}
.team-section .card .card-header {
  position: relative;
  height: 130px;
}
.team-section .card .card-header img {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.team-section .card .card-body {
  padding-top: 120px !important;
  text-align: center;
}
.team-section .card .card-body h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  text-transform: capitalize;
  cursor: pointer;
}
.team-section .card .card-body h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 10px;
  cursor: pointer;
}
.team-section .teamModal {
  background: #0009;
  backdrop-filter: blur(3px);
}
.team-section .teamModal h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  text-transform: capitalize;
}
.team-section .teamModal h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 7px 0 20px;
}
.team-section .teamModal .modal-content {
  border: 10px solid var(--primary);
  position: relative;
  z-index: 10;
}
.team-section .teamModal .btn-close {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--light);
  opacity: 1;
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal-backdrop {
  z-index: -1;
  pointer-events: none;
}

/* Expertise */
.expertise-section::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.expertise-section::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.expertise-section .nav-pills {
  justify-content: center;
  gap: 0;
}
.expertise-section .nav-pills button {
  background: var(--primary);
  color: var(--light);
  border: 5px solid var(--primary);
  outline: 0;
  box-shadow: none;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
}
.expertise-section .nav-pills button.active {
  background: var(--light);
  color: var(--primary);
}
.expertise-section .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  height: 100%;
  width: 100%;
}
.expertise-section .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
}
.expertise-section .image .img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.expertise-section .text {
  border-left: 3px solid #1c528e2b;
  padding: 15px 15px 15px 20px;
  margin-left: 15px;
  height: 100%;
}
.expertise-section .text h4 {
  font-size: 25px;
  font-family: var(--cursive);
  color: var(--primary);
}
.expertise-section .text h5 {
  font-size: 18px;
  font-weight: 500;
}

/* Banner */
.banner {
  width: 100%;
  height: 400px;
  background: url(../images/hero/banner.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .pattern {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 102%;
  z-index: 3;
}
.banner h1 {
  font-size: 50px;
  font-weight: 400;
  font-family: var(--cursive);
  color: var(--light);
}

/* Why Choose Us Section Alt */
.why-choose-section-alt::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.why-choose-section-alt::before {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.why-choose-section-alt .card {
  border: 3px solid #1c528e3d;
  box-shadow: var(--shadow);
  height: 100%;
}
.why-choose-section-alt .card .row {
  height: 100%;
}
.why-choose-section-alt .card h5 {
  font-size: 18px;
  font-family: var(--cursive);
  color: var(--primary);
}
.why-choose-section-alt .card .card-body {
  background: var(--light-alt);
  height: 100%;
}

/* Team Alt Section */
.team-section-alt::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.team-section-alt::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.team-section-alt .box {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 30px;
  background: var(--light-alt);
  border-radius: 50px;
  border: 3px solid #1c528e3d;
}
.team-section-alt .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  height: 200px;
  width: 200px;
  margin: auto;
}
.team-section-alt .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
}
.team-section-alt .image .img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.team-section-alt .text {
  width: 100%;
  margin-top: 15px;
}
.team-section-alt .text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.team-section-alt .text h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Team Gallery Section */
.team-gallery-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.team-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.team-gallery-section .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  height: 100%;
  width: 100%;
  margin: auto;
  position: relative;
}
.team-gallery-section .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  position: relative;
}
.team-gallery-section .image .img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.team-gallery-section .image h5 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--primary);
  background: var(--light);
  display: inline-block;
  padding: 10px 25px;
  font-size: 35px;
  font-weight: 400;
  font-family: var(--cursive);
  box-shadow: var(--shadow);
}

/* Expertise Section Alt */
.expertise-section-alt::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.expertise-section-alt::before {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.expertise-section-alt .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  height: 100%;
  width: 100%;
}
.expertise-section-alt .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
}
.expertise-section-alt .image .img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.expertise-section-alt .text h4 {
  font-size: 25px;
  font-family: var(--cursive);
  color: var(--primary);
}
.expertise-section-alt .text h5 {
  font-size: 18px;
  font-weight: 500;
}
.expertise-section-alt .text .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.expertise-section-alt .text .item img {
  width: 150px;
}

/* Marketing Section */
.marketing-section::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.marketing-section::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.marketing-section .image {
  border-radius: 50px 0 50px 0;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  height: 100%;
  width: 100%;
  margin: auto;
  box-shadow: var(--shadow);
}
.marketing-section .image .img {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  position: relative;
}
.marketing-section .image .img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.marketing-section .text h4 {
  font-size: 30px;
  font-family: var(--cursive);
  color: var(--primary);
}
.marketing-section .text h4 span {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--sans-serif);
  color: var(--dark);
  display: block;
  margin-top: 5px;
}
.marketing-section .text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}
.marketing-section .text h5 b {
  font-size: 16px;
  font-weight: 900;
  display: block;
  color: var(--dark);
  margin-top: 15px;
}
.marketing-section .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}
.marketing-section .box-alt {
  border-radius: 10px;
  height: 250px;
  width: 100%;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(to right top, #b4bbdc, #f7fbff);
  box-shadow: var(--shadow);
}
.marketing-section .box-alt img {
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.marketing-section .box {
  border-radius: 10px;
  padding: 10px;
  background: var(--dark-alt);
  height: 100%;
  width: 100%;
  margin: auto;
  box-shadow: var(--shadow);
}
.marketing-section .box img {
  border-radius: 5px;
}
.marketing-section .box h5 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 15px 0;
  color: var(--light);
}

/* Contact Page */
.contact-section::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotateRev 10s infinite;
}
.contact-section::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: url(../images/pattern.png);
  background-position: center;
  background-size: contain;
  width: 150px;
  height: 150px;
  animation: rotate 10s infinite;
}
.contact-section .map {
  width: 100%;
  height: 100%;
}
.contact-section .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}
.contact-section h5 {
  font-size: 30px;
  font-family: var(--cursive);
  color: var(--dark);
}
.contact-section form label {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}
.contact-section form .form-control {
  height: auto;
  padding: 8px 15px;
  font-size: 16px;
  outline: 0;
  border: 2px solid #cdcdcd;
  transition: 0.5s ease all;
}
.contact-section form .form-control:focus {
  box-shadow: none;
  border: 2px solid var(--primary);
}
.contact-section .card {
  background: var(--light-alt);
  border: 3px solid #1c528e4d;
}
.contact-section h6 {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--cursive);
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-section h6 b {
  display: block;
  font-size: 16px;
  font-family: var(--sans-serif);
  color: var(--dark);
  margin: 3px 0 0;
}
.contact-section p {
  margin-bottom: 5px;
}
.contact-section p i {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}
.contact-section p a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}
.contact-section address {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 170%;
}

/* Responsive */
@media (max-width: 1199px) {
  .navbar .navbar-brand {
    left: 10px;
    transform: translateX(0);
  }
  .navbar .navbar-nav {
    background: var(--light);
    margin-top: 80px;
    gap: 0;
  }
  .navbar .navbar-nav div {
    display: block;
    width: 100%;
  }
  .navbar .navbar-nav .nav-item {
    text-align: right;
    padding: 0 15px;
  }
  .navbar .navbar-nav .nav-link {
    color: var(--dark);
  }
  .navbar .navbar-nav .nav-link:focus,
  .navbar .navbar-nav .nav-link:active,
  .navbar .navbar-nav .nav-link:hover {
    color: var(--dark);
  }
}
@media (max-width: 992px) {
  .navbar .navbar-brand {
    width: 150px;
    height: 150px;
  }
  .navbar .navbar-toggler {
    right: 15px;
  }
  .hero .carousel .carousel-controls {
    inset: auto auto 30px 50%;
    transform: translate(-50%, 0);
    width: 100px;
    margin: auto;
  }
  .hero .carousel .carousel-controls button {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .gx-5 {
    --bs-gutter-x: 0;
  }
  .navbar .navbar-brand {
    width: 130px;
    height: 130px;
  }
  .about-section .text,
  .expertise-section .text {
    margin-left: 0;
    border: 0;
    padding: 0;
  }
  .footer {
    border-radius: 30px 30px 0 0;
  }
  .footer .logo {
    width: 130px;
  }
  .hero .carousel .carousel-inner .carousel-item .carousel-caption h5 {
    font-size: 25px;
  }
  .hero .carousel .carousel-inner .carousel-item .carousel-caption h5 span {
    font-size: 40px;
    line-height: 50px;
  }
  .banner h1,
  .heading {
    font-size: 40px;
  }
  .section {
    padding: 70px 0;
  }
  .footer-bottom p {
    text-align: center !important;
  }
  .team-section .card .card-body h4 {
    font-size: 20px;
  }
}
