/********** Template CSS **********/
:root {
  --primary: #ffc107;
  --light: #f8fff3;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #d3d3d3;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}


/*** Service ***/
.service-item {
  /* height: 310px; */
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  /* background: #f3ffec; */
  border: 1px solid #111a24;
  border-radius: 40px !important;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {
}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 30px;
}

.testimonial-item img {
  object-fit: cover;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

.team-container {
}
.team-itemmy {
  background: #fff;
}
/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #373737;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
  @media (max-width: 600px) {
    width: 100%;
  }
}
.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}
header i {
  color: #ffc107;
  font-size: 32px;
  text-align: center;
}
header h2 {
  color: #ffc107;
  font-weight: 500;
  text-align: center;
}
.data {
  text-align: center;
}
.data p a {
  color: #ffc107;
  text-decoration: none;
  text-align: center !important;
}
.data p a:hover {
  text-decoration: underline;
}
.buttons {
  padding: 20px 0px;
  text-align: center;
}
.buttons .cookie-button {
  border: 2px solid #ffc107;
  color: #fff;
  padding: 8px 0;
  background: #ffc107;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}
.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #ffc107;
}
#declineBtn {
  background-color: #fff;
  color: #ffc107;
}
#declineBtn:hover {
  background-color: #ffc107;
  color: #fff;
}
/* Footer Style */
.topics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.topic_item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.topic_item .card-text {
}
.topic__img {
  max-width: 240px;
  min-height: 270px;
  object-fit: cover;
}
.topic__name {
  font-size: 18px;
}
.topic__descr {
  max-width: 287px;
}
.topic__right {
  height: 911px;
}
@media (max-width: 1020px) {
  .topic__right {
    width: 100%;
    object-fit: cover;
  }
}
.about_1 {
}
.pluses {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media (max-width: 680px) {
  .pluses {
    flex-wrap: wrap;
    /* flex-direction: column
    ; */
  }
}
.about__descr {
  max-width: 1040px;
  margin: 0 auto;
}
.news__block .topic__name {
  color: #000000;
}
.news__block .card-text {
  color: #111a24;
}
.news__block .topics {
  display: flex;
  flex-direction: row;
}
@media (max-width: 680px) {
  .news__block .topics {
    flex-direction: column;
  }
}
.news__block .topic_item {
  align-items: start;
}

@media (max-width: 990px) {
  .mobile-no {
    display: none;
  }
  .topic_item {
    flex-direction: column;
  }
  .service-item {
    /* height: 460px; */
  }
  .testimonial-item div {
    flex-direction: column;
  }
  .testimonial-carousel .testimonial-item {
    padding: 30px 2px;
  }
}

/* new styles  */

:root {
  --primary: #343a40;
  --accent: #ffc107;
  --light-bg: #f8f9fa;
  --text-color: #495057;
  --light-accent: #fff3cd;
}


.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.btn-explore {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-explore:hover {
  transform: translateY(-5px);
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.hero-decoration {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.decoration-1 {
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 193, 7, 0.05);
  animation: float 15s ease-in-out infinite;
}

.decoration-2 {
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background-color: rgba(52, 58, 64, 0.03);
  animation: float 20s ease-in-out infinite alternate;
}

.decoration-3 {
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 193, 7, 0.08);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
  0% {
      transform: translate(0, 0) rotate(0deg);
  }
  50% {
      transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
      transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
}

.brands-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
}

.brands-label {
  font-size: 0.9rem;
  color: #adb5bd;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.brands {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand-name {
  font-weight: 700;
  color: #6c757d;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.brand-name:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.animated-element {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.5s;
}

.delay-3 {
  animation-delay: 0.7s;
}

.delay-4 {
  animation-delay: 0.9s;
}

.highlight-box {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .hero-title {
      font-size: 2.6rem;
  }
  
  .hero-subtitle {
      font-size: 1.3rem;
  }
  
  .hero-image {
      margin-top: 40px;
  }
  
  .brands {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
  }
}

.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}


.about-text {
  line-height: 1.8;
  margin-bottom: 30px;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--light-bg);
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.card-title {
  color: var(--primary);
  margin-bottom: 15px;
}

.accent-text {
  color: var(--accent);
  font-weight: 500;
}

.decoration-shape {
  position: absolute;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}


.features-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}

.section-title {
  color: var(--primary);
  margin-bottom: 20px;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}




.feature-card:hover::before {
  width: 100%;
  opacity: 0.1;
  z-index: -1;
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.overlay-text {
  color: white;
  font-weight: 600;
}

.corner-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 0 0 50% 0;
  top: 0;
  left: 0;
  z-index: 0;
}

.methodology-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}


.step-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
}

.step-title {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.5rem;
}

.sub-feature {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 193, 7, 0.5);
}

.sub-feature h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-connector {
  position: relative;
  height: 100px;
  display: none;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--accent);
}

.process-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 1.5rem;
}

.methodology-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.accent-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 193, 7, 0.05);
  z-index: 0;
}

.process-illustration {
  position: relative;
  margin-top: 50px;
  margin-bottom: 30px;
}

.process-diagram {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  position: relative;
  margin: 50px 0;
}

.process-fill {
  height: 100%;
  width: 100%;
  background-color: var(--accent);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease;
}

.process-diagram.active .process-fill {
  transform: scaleX(1);
}

.process-marker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
  z-index: 1;
}

.marker-1 {
  left: 0%;
}

.marker-2 {
  left: 50%;
}

.marker-3 {
  left: 100%;
}

.marker-label {
  position: absolute;
  top: -40px;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .process-connector {
      display: block;
  }
}

.careers-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}



.career-content {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.career-text {
  line-height: 1.8;
  margin-bottom: 0;
}

.skills-section {
  padding: 100px 0;
  background-color: white;
}

x

.skills-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.skills-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.skill-item {
  margin-bottom: 25px;
  padding-left: 30px;
  position: relative;
}

.skill-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.skill-item h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.tips-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.tips-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.tip-item {
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.tip-number {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.tip-item h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

  
.faq-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}



.faq-container {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-question {
  display: flex;
  margin-bottom: 15px;
}

.question-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

.question-text {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.faq-answer {
  padding-left: 45px;
}

.image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-cta {
  margin-top: 40px;
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.faq-cta h4 {
  color: var(--primary);
  margin-bottom: 15px;
}

.form-section {
  padding: 100px 0;
  background-color: white;
}

.form-container {
  background-color: var(--light-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
  color: var(--primary);
  margin-bottom: 20px;
}

.form-description {
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}


.contact-info {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-description {
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  color: var(--accent);
  font-size: 1.3rem;
  margin-right: 15px;
  margin-top: 3px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}