@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --primary-color: linear-gradient(90deg, #0d3b66 0%, #00f0ff 100%);
  --secondary-color: #0d3b66;
  --cyan-color: #00f0ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;

  color: #fff;

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*========================*/

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
}

.site-header .container {
  max-width: 1380px;
}

.navbar-brand img {
  height: 52px;
}

.desktop-menu {
  display: flex;

  align-items: center;

  margin-left: auto;
}

.navbar-nav {
  display: flex;

  flex-direction: row;

  gap: 34px;

  margin-right: 45px;
}

.nav-link {
  color: #fff;

  font-size: 13px;

  font-weight: 500;

  padding: 0;

  transition: 0.3s;
}

.nav-link:hover ,.nav-link.active{
  color: #00f0ff !important;
}

.header-btns {
  display: flex;

  align-items: center;

  gap: 15px;
}

.phone-btn {
  display: flex;

  align-items: center;

  gap: 10px;

  height: 46px;

  padding: 15px 25px;

  border-radius: 50px;

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.25);

  font-size: 13px;

  transition: 0.3s;
  width: max-content;
}

.phone-btn:hover {
  background: #fff;

  color: #111;
}

.quote-btn {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 15px 25px;

  border-radius: 50px;

  background: var(--primary-color);

  color: #fff;

  font-size: 13px;

  font-weight: 600;

  transition: 0.35s;
  width: max-content;
}

.quote-btn:hover {
  transform: translateY(-3px);

  color: #fff;

  box-shadow: 0 10px 30px rgba(0, 180, 255, 0.35);
}

.navbar-toggler {
  display: none;

  color: #fff;

  font-size: 30px;
}

.offcanvas {
  width: 320px;

  background: #142032;

  color: #fff;
}

.mobile-menu {
  list-style: none;

  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
  display: block;

  color: #fff;

  padding: 16px 0;

  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #35d8ff;

  padding-left: 10px;
}

.hero {
  position: relative;
  color: #fff;
  padding-top: 150px;
  padding-bottom: 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center center,
    rgba(5, 22, 46, 0.8) 0%,
    rgba(5, 22, 46, 0.55) 50%,
    rgba(13, 59, 102, 0.4) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 2px;
  font-size: 11px;
  margin-bottom: 35px;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23d8ff;
}

.hero-title {
  font-size: 78px;
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 35px;
}

.hero-title span {
  color: var(--cyan-color);
}

.hero-text {
  max-width: 560px;
  color: #d5d9df;
  line-height: 2;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 18px;
  margin-bottom: 45px;
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}

.hero-points {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.hero-points span i {
  color: var(--cyan-color);
}

.hero-review {
  color: var(--cyan-color);
  font-size: 18px;
}

.hero-review span {
  color: #d8dde4;
  font-size: 14px;
}

.hero-logos {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.hero-logos img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
}

/* Floating Cards */

.experience-card {
  position: absolute;
  top: 200px;
  right: 0;
  width: 330px;
  padding: 20px;
  border-radius: 24px;
  backdrop-filter: blur(25px);
  background: #0c234080;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.community-card {
  position: absolute;
  right: 80px;
  bottom: 70px;
  width: 330px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  color: #0c2340;
}

.experience-card small,
.community-card small {
  letter-spacing: 3px;
  color: #2dd9ff;
}

.community-card small {
  color: #0f3f70;
}

.experience-card h2,
.community-card h2 {
  font-size: 52px;
  font-weight: 700;
  margin: 12px 0;
}

.experience-card h2 span,
.community-card h2 span {
  color: #22d9ff;
}

.warranty-card {
  position: absolute;
  right: 0;
  bottom: -40px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 26px;
  border-radius: 50px;
  background: #0c2340ab;
  backdrop-filter: blur(25px);
}

.warranty-card i {
  color: #22d9ff;
}

.warranty-card strong {
  display: block;
  font-size: 14px;
}

.warranty-card span {
  display: block;
  font-size: 12px;
  color: #bfc8d2;
}

.scroll-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.7;
  color: #fff;
}

.top-marquee {
  background: #f2f7fa;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid #dbe4eb;
  border-bottom: 1px solid #dbe4eb;
}

.marquee {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-content span {
  color: #10263f;
  font-size: 15px;
  font-weight: 500;
}

.marquee-content i {
  color: #8ea8bf;
  font-size: 10px;
}
.top-marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-home {
  padding: 80px 0;
}
.about-home__image {
  position: relative;
}
.about-home__image img {
  width: 100%;
  display: block;
  border-radius: 35px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
}
.about-home__image:hover img {
  transform: scale(1.03);
}
.about-home__badge {
  position: absolute;
  right: 35px;
  bottom: -40px;
  width: 320px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}
.about-home__image:hover .about-home__badge {
  transform: translateY(-8px);
}
.about-home__badge-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background: linear-gradient(90deg, #1e5a8f 0%, #42dff3 100%);
}
.about-home__badge span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #10233f;
  margin-bottom: 6px;
}
.about-home__badge p {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--secondary-color);
}
.about-home__content {
  padding-left: 55px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  color: #10233f;
  margin: 0px 0 15px;
}

.about-home__content p {
  color: #667085;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-home .btn-primary-custom {
  margin-top: 18px;
}
.about-home__stats {
  display: flex;
  gap: 70px;
  margin-top: 55px;
  max-width: 460px;
}
.stat-box {
  position: relative;
  padding-left: 25px;
}
.stat-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 3px;
  height: 110px;
  border-radius: 30px;
  background: linear-gradient(180deg, #1e5a8f 0%, #42dff3 100%);
}
.stat-box h3 {
  margin: 0 0 8px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: #10233f;
}
.stat-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.stat-box p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.services.section {
  background: #f2f7fa;
  padding: 100px 0px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  max-width: 1320px;
  margin: 0 auto;
}

.services-nav {
  display: flex;
  gap: 12px;
}
.section-title span {
  color: var(--secondary-color);
}
.services-prev,
.services-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.services-prev,.services-next {
  border: 1px solid var(--secondary-color);
  color: #0d2742;
}

.services-next:hover ,.services-prev:hover{
  color: #fff;
  background: linear-gradient(90deg, #1e5a8f, #42dff3);
}
.services-slider {
  padding: 30px 0;
}
.services-prev:hover,
.services-next:hover {
  transform: translateY(-3px);
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card__count {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #8d9aaa;
  font-size: 13px;
  font-weight: 700;
}

.service-card__image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
}

.service-card__image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: 0.4s;
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 22px;
  color: #0d2742;
  font-weight: bold;
  margin-bottom: 14px;
}

.service-card p {
  color: #6d7784;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0d2742;
  font-weight: 700;
}

.service-card a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d7dde5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform: rotate(-45deg);
}

.service-card:hover a i {
  background: #42dff3;
  border-color: #42dff3;
  color: #fff;
}

.video-box {
  position: relative;
  overflow: hidden;
  height: 640px;
}
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 24, 44, 0.15) 0%,
    rgba(5, 24, 44, 0.88) 100%
  );
}
.video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.video-play {
  width: 95px;
  height: 95px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  transition: 0.35s;
  position: relative;
}
.video-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: pulse 2s infinite;
}
.video-play:hover {
  background: #42dff3;
  color: #fff;
  transform: scale(1.08);
}
.video-content h2 {
  font-size: 52px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}
.video-content h2 span {
  color: var(--cyan-color);
}
.video-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
}
.video-box.playing .video-play {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.video-content {
  pointer-events: none;
}

.video-play {
  pointer-events: auto;
}

.bg-video {
  cursor: pointer;
}

.why-us {
  background: #fff;
  padding: 80px 0;
}

.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  height: 100%;
  min-height: 520px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 25, 48, 0.95),
    rgba(8, 25, 48, 0.1)
  );
}

.featured-card .content {
  position: absolute;
  left: 35px;
  right: 35px;
  top: 35px;
  color: #fff;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff14;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0f2945;
  margin-bottom: 25px;
  transition: 0.3s ease;
  font-size: 26px;
  color: #00f0ff;
}
.featured-card h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-card p {
  color: #d9e3ef;
  line-height: 1.8;
  font-size: 14px;
}
.info-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: 0.35s;
}

.info-card:hover {
  transform: translateY(-5px);
  background: #f3f7fa;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f3f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0f2945;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.info-card h5 {
  font-size: 24px;
  color: #10233d;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-card p {
  color: #6d7d91;
  line-height: 1.8;
  margin: 0;
}
.info-card:hover .card-icon {
  background: #fff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.experience-section {
  background: #cfebff;
  padding: 80px 0;
}

.trust-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 23px;
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.trust-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.trust-card p {
  margin: 0;
  color: #617387;
  font-size: 15px;
  line-height: 1.8;
}

.experience-image {
  height: 100%;
  overflow: hidden;
  border-radius: 70px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 700px;
  display: block;
}

.process-section {
  padding: 80px 0;
  background: #f2f7fa;
}

.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  z-index: 1;
}

.process-item {
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #1ed5ff;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #10233f;
  margin-bottom: 30px;
}

.process-item h4 {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 18px;
}

.process-item p {
  color: #0c234098;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.service-area {
  padding: 80px 0;
}
.section-text {
  color: #05162eb5;
  font-weight: 400;
  line-height: 1.7;
}
.section-text a {
  color: #05162e;
  font-weight: 500;
  text-decoration: underline;
}
.location-card {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 24px;
  padding: 28px 32px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.35s;
}

.location-card:hover {
  background: #071b34;
  border-color: #08d4ff;
  transform: translateY(-4px);
}

.location-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.location-title {
  display: flex;
  gap: 16px;
}

.location-title .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #edf7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071b34;
  transition: 0.35s;
}

.location-title span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #071b34;
  margin-bottom: 5px;
}

.location-title h4 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #10233f;
  transition: 0.35s;
}

.location-head small {
  color: #08d4ff;
  letter-spacing: 2px;
  font-size: 14px;
  display: none;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #08d4ff;
  display: inline-block;
  margin-right: 6px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tags span {
  padding: 8px 14px;
  background: #f2f7fa;
  color: #071b34a5;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.35s;
}

.location-card:hover span,
.location-card:hover small,
.location-card:hover .icon {
  color: var(--cyan-color);
}
.location-card:hover small {
  display: flex;
  align-items: center;
}

.location-card:hover h4,
.location-card:hover .location-tags span {
  color: #fff;
}
.location-card:hover .icon {
  background: rgba(0, 212, 255, 0.15);
}

.location-card:hover .location-tags span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-map {
  margin-top: 35px;
  border-radius: 24px;
  overflow: hidden;
}

.service-map img {
  width: 100%;
}

.ready-box {
  display: flex;
  gap: 5px;
  margin-top: 35px;
  align-items: center;
  flex-wrap: wrap;
}

.ready-box i {
  color: #ff4040;
  font-size: 28px;
}

.ready-box h5 {
  color: var(--secondary-color);
  font-size: 34px;
  margin-bottom: 8px;
}

.ready-box p {
  margin: 0;
  color: #05162e;
}

.before-after-section {
  padding: 80px 0;
  background: #f2f7fa;
}

.beforeAfterSwiper {
  margin-top: 70px;
  overflow: hidden;
}

.beforeAfterSwiper .swiper-slide {
  width: 100%;
}

.compare-wrapper {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  border-radius: 30px;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #ddd;
}

/* Both Images */

.after-img,
.before-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: left;
}

/* Before Image */

.before-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.compare-label {
  position: absolute;
  top: 20px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  z-index: 30;
  text-transform: uppercase;
}

.before-label {
  left: 20px;
  background: rgba(12, 22, 36, 0.8);
}

.after-label {
  right: 20px;
  background: var(--primary-color);
  color: #fff;
}

.compare-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 25;
}

.compare-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  cursor: ew-resize;
  pointer-events: auto;
}

.compare-handle i {
  color: #122540;
  font-size: 15px;
}

.before-after-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
}
.before-prev,
.before-next {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  color: var(--secondary-color) !important;
  opacity: 1 !important;
}
.before-prev::after,
.before-next::after {
  display: none;
}

.before-prev i,
.before-next i {
  font-size: 18px;
  color: #122540;
}

.before-prev:hover,
.before-next:hover {
  background: #00cfff;
  border-color: #00cfff;
}

.before-prev:hover i,
.before-next:hover i {
  color: #fff;
}

.gallery-section {
  padding: 80px 0;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.gallery-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #122540;
  text-decoration: none;
  font-weight: 600;
}

.gallery-btn i,
.view-all i {
  transition: 0.35s;
  transform: rotate(45deg);
}

.gallery-btn:hover i,
.view-all:hover i {
  transform: rotate(90deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  transition: 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.testimonial-section {
  background: #cfebff;
  padding: 80px 0;
}

.testimonial-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.view-all {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-all:hover {
  color: #00cfff;
}

.review-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  transition: 0.35s;
  border: 1px solid rgba(0, 180, 255, 0.35);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-color);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.stars {
  color: var(--secondary-color);
  font-size: 20px;
  letter-spacing: 2px;
}

.review-top span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #05162e9a;
  text-transform: uppercase;
}

.review-text {
  color: #05162e9a;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #edf2f7;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--primary-color);
}

.review-user h6 {
  margin: 0;
  font-size: 16px;
  color: #10233f;
  font-weight: 700;
}

.review-user small {
  color: #7d8ea2;
  font-size: 13px;
}

.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.faq-heading p {
  color: #7d8da1;
  margin-top: 12px;
}

.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #05162e23;
  border-radius: 0;
  background: transparent;
}

.custom-accordion .accordion-button {
  padding: 28px 70px 28px 0;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--secondary-color);
}

.custom-accordion .accordion-body {
  padding: 0 70px 30px 0;
  color: #718196;
  line-height: 1.9;
}

/* Remove Bootstrap Icon */

.custom-accordion .accordion-button::after {
  display: none;
}

/* Custom Circle */

.custom-accordion .accordion-button::before {
  content: "\2b";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #d7e2ea;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 30px;
  color: #122540;
  transition: 0.35s;
  text-align: center;
}

/* Active */

.custom-accordion .accordion-button:not(.collapsed)::before {
  transform: rotate(45deg);

  background: var(--primary-color);

  color: #fff;

  border-color: #1bcff7;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.contact-section {
  padding: 80px 0;
  background: #f2f7fa;
}

.contact-text {
  color: #05162eb4;
  line-height: 1.9;
  font-size: 17px;
  max-width: 360px;
  margin: 30px 0 45px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2745;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-item small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 3px;
}

.contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

/*==================*/

.contact-form-box {
  background: #fff;

  border-radius: 28px;

  padding: 45px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-box label {
  display: block;

  font-size: 12px;

  letter-spacing: 2px;

  color: var(--secondary-color);

  margin-bottom: 10px;

  font-weight: 600;
}

.form-control,
.form-select {
  height: 52px;

  border-radius: 30px;

  border: 1px solid #dfe8f0;

  box-shadow: none;

  padding: 0 20px;

  color: #10233f;
}

textarea.form-control {
  height: 130px;

  resize: none;

  border-radius: 20px;

  padding: 18px 20px;
}

.form-control:focus,
.form-select:focus {
  border-color: #22d5ff;

  box-shadow: none;
}

.submit-btn {
  width: 100%;

  height: 56px;

  margin-top: 30px;

  border: none;

  border-radius: 40px;

  color: #fff;

  font-size: 13px;

  letter-spacing: 2px;

  font-weight: 600;

  background: linear-gradient(90deg, #0d4c7f, #26d7ff);

  transition: 0.35s;
}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 15px 35px rgba(0, 160, 255, 0.25);
}

.cta-section {
  position: relative;
  padding: 80px 0;
  background: url("../img/cta-bg.png") center/cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: #05162ed1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.cta-content h2 span {
  display: block;
  color: #20d7ff;
}

.cta-content p {
  max-width: 520px;
  margin: 0 auto 40px;
  color: #d7dde5;
  line-height: 1.8;
  font-size: 16px;
}

/* Buttons */

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.finance-strip {
  background: #fff;
  padding: 25px 0;
  border-top: 1px solid #eceff3;
  border-bottom: 1px solid #eceff3;
}

.finance-title {
  font-size: 20px;
  font-weight: 600;
  color: #10233f;
  margin-bottom: 10px;
  text-align: left;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icons img {
  height: auto;
  width: auto;
  transition: 0.3s;
}

.payment-icons img:hover {
  transform: translateY(-3px);
}

.footer {
  background: #081b34;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 110px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  font-size: 15px;
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.35s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #23d8ff;
  border-color: #23d8ff;
  color: #081b34;
}

.footer h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer ul li a:hover {
  color: #23d8ff;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

@media (min-width: 992px) {
 .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 991px) {
  .footer {
    padding: 60px 0 25px;
  }

  .footer-bottom {
    text-align: center;
  }

  .testimonial-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-title {
    font-size: 42px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-title {
    font-size: 46px;
  }

  .compare-wrapper {
    height: 520px;
  }

  .about-home {
    padding: 100px 0;
  }
  .about-home__content {
    padding-left: 0;
    margin-top: 70px;
  }
  .about-home .section-title {
    font-size: 48px;
  }
  .about-home__badge {
    right: 20px;
    bottom: 20px;
    width: 280px;
  }
  .about-home__stats {
    gap: 35px;
    flex-wrap: wrap;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .process-line {
    display: none;
  }

  .process-item {
    text-align: center;
  }

  .step-circle {
    margin: 0 auto 25px;
  }

 
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }

  .footer-text {
    margin: auto auto 30px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer h5 {
    margin-top: 20px;
  }

  .testimonial-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .review-card {
    padding: 25px;
  }

  .review-text {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .large,
  .medium,
  .small {
    height: 280px;
  }

  .gallery-section {
    padding: 80px 0;
  }

  .before-after-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .compare-wrapper {
    height: 340px;
    border-radius: 18px;
  }

  .compare-label {
    font-size: 9px;
    padding: 8px 12px;
  }

  .compare-handle {
    width: 48px;
    height: 48px;
  }

  .before-prev,
  .before-next {
    width: 46px;
    height: 46px;
  }

  .desktop-menu {
    display: none;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar {
    padding: 12px 18px;
  }

  .navbar-brand img {
    height: 44px;
  }

  .process-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .process-item h4 {
    font-size: 22px;
  }

  .about-home .section-title {
    font-size: 38px;
  }
  .about-home__badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }
  .about-home__stats {
    flex-direction: column;
    gap: 30px;
  }
}
