@import url('styles-dropdown.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 18px;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.spans {
  display: flex;
}
.contact-info {
  display: flex;
  gap: 40px;
  align-items: center;

}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px !important;
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.contact-value {
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0.9px;
}
.navbar {
  background: #FFFFFF;
  box-shadow: 0px 6px 12px rgba(183, 183, 183, 0.35);
  padding: 15px 0;
  border-radius: 22.69px;
  width: 87% !important;
  height: 100px;
  margin-top: -50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 108px;
  height: 86px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 70px;
  align-items: center;
}
.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-link.active {
  color: #4CC7DD;
  font-weight: 500;
}
.nav-link:hover {
  color: #4CC7DD;
}
.dropdown-arrow {
  width: 15px;
  height: 8px;
}
.cta-button {
  position: relative;
}
.btn-contact {
  background: #A89C8C;
  border: none;
  border-radius: 71px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
 
  cursor: pointer;
  transition: transform 0.3s ease;
}
.btn-contact:hover {
  transform: translateY(-2px);
}
.btn-contact img {
  width: 39px;
  height: 39px;
}
.hero .container{
  max-width: 1800px;
  width: 100%;
  margin: 0  auto;
  padding: 0 20px;
}
    .hero-carousel-container {
      position: relative;
      width: 573px;
      height: 659px;
      display: flex;
      align-items: center;
    }
    .hero-carousel {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      height: 100%;
    }
    .carousel-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
    }
    .carousel-image {
      width: 573px !important;
      height: 659px !important;
      object-fit: cover;
      margin-top: 40px;
      border-top: 6px solid #FFFFFF;
      border-left: 6px solid #FFFFFF;
    }
    .hero-svg-navigation {
      position: absolute;
      left: -80px;
      top: 65%;
      transform: translateY(-50%);
      height: 462px;
      width: 66px;
      z-index: 10;
    }
    .hero-svg-navigation svg {
      height: 100%;
      width: 100%;
    }
    .nav-circle {
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .nav-circle:hover {
      transform: scale(1.05);
    }
    .nav-arrow {
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .nav-arrow:hover circle:first-child {
      fill-opacity: 0.08;
    }
    .nav-arrow:hover circle:last-child {
      stroke-opacity: 0.8;
    }
/* Hero Section */
.hero {
  min-height: 808px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: -50px;
}
.phone {
  height: 52px !important;
  width: 52px !important;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: -320px;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 75px;
 
  justify-content: space-between;
}
.mask-img {
  margin-top: 46px;
}
.hero-text {
  flex: 1;
  max-width: 800px;
}
.hero-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #96EFFF;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.85);
  margin-bottom: 40px;
}
.hero-title {
	font-size: 57px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 75px;
	letter-spacing: 1.7px;
	/* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.9); */
	margin-bottom: 30px;
}
.hero-description {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 26px;
  letter-spacing: 0.44px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.85);
  margin-bottom: 45px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.btn-primary {
  background: #FFFFFF;
  border: none;
  border-radius: 71px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #01132B;
  font-size: 23px;
  cursor: pointer;
  transition: transform 0.3s ease;
  justify-content: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 71px;
  padding: 13px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-primary img,
.btn-secondary img {
  width: 29px;
  height: 29px;
}
.hero-image {
  flex-shrink: 0;
}
.hero-image img {
  width: 66px;
  height: 462px;
}
/* About Section */
.about {
  padding: 100px 0;
  background: #FFFFFF;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 75px;
  padding: 0 67px;
}
.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}
.about-text {
  flex: 1;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}
.about-text,
.section-header,
.service-card .service-image img {
  opacity: 0.9 !important;
}
.section-header {
  margin-bottom: 5px;
}
.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #26C7E4;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  display: block;
  margin-bottom: 28px;
}
.section-title {
  font-size: 58px;
  color: #000000;
  line-height: 73px;
  margin-bottom: 38px;
}
.about-description {
	font-size: 19px;
	font-weight: 300;
	color: #535353;
	line-height: 32px;
	margin-bottom: 45px;
}
.btn-learn-more {
  background: #A89C8C;
  border: none;
  border-radius: 71px;
  padding: 13px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
  align-self: flex-start;
}
.btn-learn-more:hover {
  transform: translateY(-2px);
}
.btn-learn-more img {
  width: 29px;
  height: 29px;
}
@import url('styles-dropdown.css');
.services {
  background: #294295;
  padding: 100px 0;
}
.services .container{
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.services .section-header {
  margin-bottom: 56px;

}
.services .section-subtitle {
  color: #4CC7DD;
}
.services .section-title {
  color: #FFFFFF;
}
.services .section-description {
  font-size: 20px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 28px;
}
.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:3%;

}
.service-card {
  position: relative;
  opacity: 0.9 !important;
  width: 531.3%;
  height: 430px;
  transform: none !important;
}
.service-image {
  width: 100%;
  height: 330px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-info {
	position: absolute;
	bottom: 53px;
	left: 21px;
	right: 21px;
	background: #FFFFFF;
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0px 2.5px 12.7px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 85px;
}
.service-card {
  position: relative;
  opacity: 0.9 !important;
  width: 31.3%;
  height: 430px;
  transform: none !important;
  margin-bottom: 0;
  cursor: pointer;
  transition: transform 0.3s ease !important;
}
.service-card:hover {
  transform: translateY(-5px) !important;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}
.service-number {
	font-size: 35px;
	color: #A89C8C;
	opacity: 0.5;
	letter-spacing: 0.84px;
	margin-bottom: 0;
}
.service-title {
	font-size: 21px;
	color: #000000;
	letter-spacing: 0;
	margin: 0;
}
.service-icon {
	width: 50px;
	height: 50px;
}
/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: #FFFFFF;
}
.reviews .section-header {
  text-align: center;
  margin-bottom: 58px;
}
.reviews .section-subtitle {
  color: #4CC7DD;
}
.reviews-slider {
  overflow: hidden;
  width: 100%;
}
.reviews .section-title {
  color: #000000;
  text-transform: capitalize;
}
.review-card {
  flex-shrink: 0;
}
.reviews-slider{
  overflow: hidden;
}
.swiper-slide{
  box-sizing: border-box;
  height: auto !important;
}
.reviews-grid {
  display: flex;
  gap: 58px;
  transition: transform 0.5s ease;
  will-change: transform;
  overflow: hidden;
  padding: 0;
   justify-content: flex-start; 
}
.reviews .container{
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.review-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 26px;
  width: 404px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
  opacity: 0.9 !important;
}
.review-card.featured {
  border: 1px solid rgba(76, 199, 221, 0.5);
  transform: scale(1.05);
}
.quote-icon {
  width: 34px;
  height: 24px;
  margin-bottom: 35px;
}
.review-text {
	font-size: 18px;
	font-weight: 300;
	color: #000000;
	line-height: 29px;
	margin-bottom: 27px;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
}
.stars {
  display: flex;
  gap: 4px;
}
.stars img {
  width: 16px;
  height: 16px;
}
.rating-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #5E6A71;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: 4px solid #4CC7DD;
}
.reviewer-name {
  font-weight: 700;
  font-size: 23px;
  color: #000000;
  margin-bottom: 12px;
}
.reviewer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #656565;
}
.review-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 51px;
  margin-top: 50px;
}
.image-one{
  border: none !important;
}
.nav-btn img{
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background: rgba(76, 199, 221, 0.1);
}
.nav-btn , .nav-btn img{
  border: none !important;
}
.nav-dots, .reviews-pagination {
  display: flex;
  gap: 12px;
}
.dot, .reviews-pagination span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(46, 102, 97, 0.25);
  cursor: pointer;
  transition: background 0.3s ease;
}
.nav-btn{
  border-radius: 50%;
}
.dot.active, .reviews-pagination span.swiper-pagination-bullet-active  {
  background: #294295;
}
/* Contact Section */
.contact {
  background: #000000;
  padding: 34px 0;
}
.contact .container{
  max-width: 1860px;
  width: 100%;
  margin: 0 auto;
}
.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  padding: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact img {
  width: 92px;
  height: 87px;
}
.contact-details h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.56px;
  margin-bottom: 10px;
}
.contact-details p {
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0.44px;
  line-height: 20px;
  white-space: nowrap;
}
@media (max-width: 1800px) {

  .services-grid {
    padding: 0 80px !important;
  }
 
}
@media (max-width: 1600px) {
 
  .hero-title {
    font-size: 70px !important;
    line-height: 80px !important;
  }
  .services-grid {
    padding: 0 60px !important;
  }
 
}
@media (max-width: 1700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 40px !important;
  }
}
@media (min-width : 1650px) and (max-width: 1850px) {
  .services-grid {
    padding: 0 0 !important;
  }
}
@media (max-width: 1400px) {
  .hero-content {

    gap: 50px !important;
  }
  .hero-title {
    font-size: 60px !important;
    line-height: 70px !important;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 40px !important;
  }
  .service-card {
    width: 100% !important;
    max-width: 100% !important;
  }

}
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 50px !important;
    line-height: 60px !important;
  }
  .about-content {
    padding: 0 40px !important;
    gap: 50px !important;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 0 !important;
    gap: 0 !important;
  }
  .reviews-grid {
    flex-wrap: wrap;

    gap: 40px !important;
 
  }
  .review-card {
    width: 100% !important;
    max-width: 500px !important;
  }
  .contact-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px !important;
    padding: 0 60px !important;
  }
  .contact-item {
    flex: 0 0 calc(50% - 40px);
  }
  .footer-content {
    flex-wrap: wrap;
    gap: 80px !important;
    padding: 0 100px !important;
  }
  .footer-column {
    flex: 0 0 calc(50% - 80px);
  }
}
@media (max-width: 1000px) {

  .hero {
    min-height: 700px !important;
    margin-top: -30px !important;
  }
  .hero-bg-image {
    margin-left: -200px !important;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px !important;

  }
  .hero-title {
    font-size: 45px !important;
    line-height: 55px !important;
  }
  .hero-description {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 40px !important;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-image {
    display: none;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 40px !important;
    padding: 0 0 !important;
  }
  .about, .services{
    padding: 50px 0;
  }
  .about-image img {
    height: auto !important;
    max-height: 400px !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0 !important;
  }
  .service-card {
    width: 100% !important;
    max-width: 100% !important;
    height: 400px !important;
  }
  .service-image {
    height: 300px !important;
  }
 
  .contact-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px !important;
    padding: 0 30px !important;
  }
  .contact-item {
    flex: 0 0 100%;
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px !important;
    padding: 0 30px !important;
  }
  .footer-column {
    flex: 0 0 100%;
  }
  .footer-map img {
    width: 100% !important;
    max-width: 364px !important;
    height: auto !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 30px !important;
  }
}
@media (max-width: 768px) {
 .review-navigation {
	gap: 25px;

}
.reviews-next, .reviews-prev{
  display: none;
}
  .container {
    padding: 0 20px;
  }
 
  .nav-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px !important;
  }
  .cta-button {
    order: 2;
  }
  .hero {
    min-height: 600px !important;
  }
  .hero-title {
    font-size: 36px !important;
    line-height: 46px !important;
  }
  .hero-subtitle {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  .hero-description {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  .btn-primary,
  .btn-secondary {
    padding: 15px 25px !important;
    font-size: 18px !important;
  }
  .section-title {
    font-size: 40px !important;
    line-height: 50px !important;
  }
  .section-subtitle {
    font-size: 20px !important;
  }
  .service-card {
    height: 350px !important;
  }
  .service-image {
    height: 250px !important;
  }


  .contact img {
    width: 70px !important;
    height: 65px !important;
  }
  .contact-details h3 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
  }
 
  .footer-column h3 {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }
 
}
@media (max-width: 480px) {
  .service-info {

	left: 11px;
	right: 11px;

}
  .hero-title {
    font-size: 32px !important;
    line-height: 42px !important;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  .section-title {
    font-size: 32px !important;
    line-height: 42px !important;
  }
  .service-card {
    height: 320px !important;
  }
  .service-image {
    height: 220px !important;
  }
  .contact-item {
    text-align: center;
  }
  .footer-column h3 {
    font-size: 24px !important;
  }
  .footer-column ul li a {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-links span {
    display: none;
  }
}
.container--0- {
  position: relative;
  width: 65.58340454101562px;
  height: 462px;
  justify-content: start;
  align-items: center;
  gap: 125px;
  display: flex;
  flex-direction: column;
}
.container-0-1-0 {
  position: relative;
  width: 40px;
  height: 187px;
  justify-content: start;
  align-items: center;
  gap: 34px;
  display: flex;
  flex-direction: column;
}
.container-1-2-0 {
  position: relative;
  width: auto;
  height: auto;
  background-color: #ffffff40;
  justify-content: start;
  align-items: center;
  border-radius: 20px;
  gap: 10px;
  display: flex;
  padding: 6px 6px 6px 6px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.hero-sub {
  display: flex;
}
.hero-svg {
  display: flex;
  margin-right: 20px;
  align-items: end;
}
@media(min-width: 1500px) {
 
  .about-content {
    width: 1440px !important;
    display: flex;
    align-items: center;
    gap: 75px;
    padding: 0 20px;
  }
  .about-image {
    width: 48%;
  }
  
  .section-subtitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 30.24px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: #26C7E4;
    margin-bottom: 28px;
  }
  .about .container {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
@media(max-width: 1000px) {
  .navbar {
    margin-top: 0px !important;
    border: none !important;
    width: 100% !important;
  }
  .section-title{
    text-align: center;
  }
  .section-header{
    align-items: center;
    
  }
  .btn-learn-more{
    align-self: center;
  }
  .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding:  0;
  }
  .hero-bg-image {
    margin-left: 0px !important;
  }
  .hero-content {
    margin-top: 100px;
  }
  .hero-sub {
    display: none;
  }
  .section-header {

    text-align: center !important;
    align-items: center !important;
    padding: 0 !important;
  }
}
.hero-svg {
  cursor: pointer;
}
.hero-svg g[data-figma-bg-blur-radius] {
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-svg g[data-figma-bg-blur-radius]:hover circle:first-child {
  fill-opacity: 0.08;
}
.hero-svg g[data-figma-bg-blur-radius]:hover circle:last-child {
  stroke-opacity: 0.8;
}
@media(max-width:1000px){
  .hero-carousel-container{
    display: none;
  }
}
