:root {
  --dark: #05073f;
  --blue: #0d7cff;
  --orange: #ff9f12;
  --red: #ff5b78;
  --white: #ffffff;
  --light: #fbfaf6;
  --text: #07093f;
  --gray: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--text);overflow-x: hidden;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0 47px;
  font-size: 14px;
}

.top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.top-content a,
.top-content span {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.top-left i,
.top-right i {
  margin-right: 7px;
}

.top-right {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-social a {
  width: 31px;
  height: 31px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.top-social a:nth-child(3) {
  background: #ff5b8a;
}

.top-social a:nth-child(4) {
  background: #3156a8;
}

/* ================= NAVBAR ================= */
.main-navbar {
  margin-top: -42px;
  position: relative;
  z-index: 20;
  padding: 0;
}

.nav-box {
  background: var(--white);
  min-height: 78px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 0 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), #19c7ff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 159, 18, 0.25);
  border-radius: 50%;
  animation: rotateLogo 4s linear infinite;
}

.logo-text {
  font-size: 27px;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.logo-text span {
  display: block;
  color: var(--blue);
  font-size: 15px;
  letter-spacing: 2px;
}

.nav-link {
  color: var(--dark);
  font-weight: 800;
  font-size: 15px;
  margin: 0 10px;
  padding: 28px 0;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.dropdown-item {
  font-weight: 700;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: var(--blue);
  color: #fff;
}

.search-btn {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 22px;
  margin-left: 10px;
  transition: 0.3s;
}

.search-btn:hover {
  background: var(--blue);
  color: #fff;
}

.booking-btn {
  height: 50px;
  border: 2px solid var(--blue);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
  margin-left: 12px;
  transition: 0.3s;
}

.booking-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  min-height: 790px;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 110px;
  width: 70px;
  height: 70px;
  border: 5px solid rgba(13,124,255,.15);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 86px;
  top: 125px;
  width: 58px;
  height: 58px;
  background: rgba(255,159,18,.18);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hero-text {
  position: relative;
  z-index: 5;
}

.hero-text h1 {
  font-size: 61px;
  line-height: 1.14;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-text h1 span {
  color: var(--orange);
  position: relative;
  display: inline-block;
  padding: 0 24px;
}

.hero-text h1 span::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 2px;
  width: 108%;
  height: 100%;
  border: 3px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.hero-text p {
  max-width: 520px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.service-btn {
  background: var(--blue);
  color: #fff;
  padding: 17px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(13,124,255,.25);
  transition: 0.3s;
}

.service-btn:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-4px);
}

.play-call {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 22px;
  border: 10px solid #fff;
  box-shadow: 0 0 35px rgba(0,0,0,.08);
  animation: pulse 1.8s infinite;
}

.arrow-shape {
  color: var(--orange);
  font-size: 44px;
  transform: rotate(-45deg);
}

/* ================= HERO IMAGE ================= */
.hero-image-box {
  position: relative;
  min-height: 610px;
}

.hero-img {
  position: absolute;
  right: 42px;
  bottom: 0;
  max-width: 72%;
  z-index: 4;
  animation: floatImage 4s ease-in-out infinite;
}

.paint-shape {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 470px;
  height: 300px;
  background: var(--blue);
  z-index: 1;
  border-radius: 60% 40% 45% 55%;
  transform: rotate(-8deg);
  animation: shapeMove 5s ease-in-out infinite;
}

.stat-card {
  position: absolute;
  right: 0;
  top: 95px;
  background: #fff;
  width: 245px;
  padding: 38px 24px 22px;
  z-index: 6;
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  border-radius: 4px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  position: absolute;
  top: -28px;
  left: 28px;
}

.stat-card h3 {
  font-size: 34px;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.stat-card p {
  color: #555;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.circle-icon {
  position: absolute;
  width: 74px;
  height: 74px;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 7;
  animation: floatIcon 3s ease-in-out infinite;
}

.blue-circle {
  background: var(--blue);
  top: 70px;
  right: 215px;
}

.orange-circle {
  background: var(--orange);
  right: -15px;
  bottom: 250px;
}

/* ================= BIG TEXT ================= */
.big-bg-text {
  position: absolute;
  left: 20px;
  bottom: 115px;
  font-size: 105px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,159,18,.35);
  z-index: 1;
  pointer-events: none;
}

/* ================= BOTTOM INFO ================= */
.bottom-info {
  position: relative;
  z-index: 10;
  background: #fff;
  margin-top: -22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  padding: 28px 35px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid #cfcfcf;
}

.info-box:last-child {
  border-right: 0;
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.info-icon.blue {
  background: rgba(13,124,255,.1);
  color: var(--blue);
}

.info-icon.orange {
  background: rgba(255,159,18,.15);
  color: var(--orange);
}

.info-icon.red {
  background: rgba(255,91,120,.15);
  color: var(--red);
}

.info-box h4 {
  font-size: 20px;
  margin: 0 0 7px;
  color: var(--dark);
  font-weight: 900;
}

.info-box p {
  margin: 0;
  color: #555;
  font-weight: 600;
  font-size: 14px;
}

/* ================= ANIMATIONS ================= */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,159,18,.45);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(255,159,18,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,159,18,0);
  }
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes shapeMove {
  0%, 100% {
    border-radius: 60% 40% 45% 55%;
  }
  50% {
    border-radius: 45% 55% 60% 40%;
  }
}

@keyframes rotateLogo {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
  .hero-text h1 {
    font-size: 50px;
  }

  .hero-img {
    max-width: 82%;
  }

  .paint-shape {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .top-bar {
    padding-bottom: 15px;
  }

  .top-content {
    flex-direction: column;
    text-align: center;
  }

  .top-right {
    flex-direction: column;
    gap: 8px;
  }

  .main-navbar {
    margin-top: 0;
  }

  .nav-box {
    padding: 12px 18px;
  }

  .nav-link {
    padding: 12px 0;
  }

  .search-btn,
  .booking-btn {
    margin: 10px 0 0;
  }

  .hero-section {
    padding-top: 60px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-image-box {
    margin-top: 50px;
    min-height: 520px;
  }

  .hero-img {
    right: 50%;
    transform: translateX(50%);
    max-width: 65%;
  }

  .paint-shape {
    right: 50%;
    transform: translateX(50%) rotate(-8deg);
  }

  .stat-card {
    right: 30px;
  }

  .bottom-info {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-box {
    border-right: 0;
    border-bottom: 1px solid #eee;
    padding: 0 0 22px;
  }

  .info-box:last-child {
    border-bottom: 0;
  }

  .big-bg-text {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-text h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .hero-text h1 span {
    padding: 0 10px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-image-box {
    min-height: 430px;
  }

  .hero-img {
    max-width: 88%;
  }

  .paint-shape {
    width: 300px;
    height: 220px;
  }

  .stat-card,
  .circle-icon {
    display: none;
  }

  .bottom-info {
    padding: 25px 20px;
  }

  .logo-text {
    font-size: 22px;
  }
}

.about-clean-section {
  position: relative;
  padding: 95px 0;
  background: #fff;
  overflow: hidden;
}

.about-clean-section::before,
.about-clean-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(#d9f0ff 3px, transparent 4px);
  background-size: 38px 38px;
  opacity: .8;
  z-index: 0;
}

.about-clean-section::before {
  left: -70px;
  bottom: 35px;
}

.about-clean-section::after {
  right: -60px;
  bottom: 15px;
}

.about-clean-section .container {
  position: relative;
  z-index: 2;
}

.about-img-box {
  position: relative;
  width: 100%;
  max-width: 455px;
  margin-left: auto;
}

.about-img-box img {
  width: 100%;
  height: 820px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.experience-card {
  position: absolute;
  top: 3px;
  left: -8px;
  width: 138px;
  height: 130px;
  background: #07143a;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(8,124,255,.25);
}

.experience-card h3 {
  font-size: 39px;
  line-height: 1;
  font-weight: 900;
  margin: 0;
}

.experience-card p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.about-content {
  max-width: 570px;
  padding-left: 10px;
}

.section-subtitle {
  color: #ff9700;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-subtitle span {
  width: 60px;
  height: 2px;
  background: #ff9700;
  display: inline-block;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.28;
  font-weight: 900;
  color: #05073f;
  margin-bottom: 18px;
}

.about-desc {
  color: #6d6d78;
  line-height: 1.7;
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 30px;
}

.about-feature {
  background: #fff;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 24px;
  max-width: 480px;
  margin-bottom: 18px;
  box-shadow: 0 13px 38px rgba(0,0,0,.06);
  transition: .3s ease;
}

.about-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 18px 45px rgba(0,0,0,.1);
}

.feature-icon {
  min-width: 46px;
  height: 46px;
  background: #fff0d7;
  color: #ff9700;
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-size: 23px;
}

.about-feature h4 {
  font-size: 20px;
  font-weight: 900;
  color: #05073f;
  margin: 0 0 7px;
}

.about-feature p {
  color: #6d6d78;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #07143a;
  color: #fff;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  margin-top: 12px;
  box-shadow: 0 15px 30px rgba(8,124,255,.25);
  transition: .3s;
}

.explore-btn:hover {
  background: #ff9700;
  color: #fff;
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .about-clean-section {
    padding: 70px 0;
  }

  .about-img-box {
    margin: auto;
  }

  .about-content {
    max-width: 100%;
    padding-left: 0;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-feature {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .about-img-box img {
    height: 420px;
  }

  .experience-card {
    width: 115px;
    height: 110px;
    left: 0;
  }

  .experience-card h3 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-feature {
    padding: 17px;
  }
}


.achievement-section {
  position: relative;
  padding: 55px 0 48px;
  background: linear-gradient(120deg, #2da4fb 0%, #0074ff 55%, #006cff 100%);
  overflow: hidden;
  color: #fff;
}

.achievement-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(0, 73, 180, .18) 12%, transparent 12.5%, transparent 87%, rgba(0, 73, 180, .18) 87.5%, rgba(0, 73, 180, .18)),
    linear-gradient(150deg, rgba(0, 73, 180, .18) 12%, transparent 12.5%, transparent 87%, rgba(0, 73, 180, .18) 87.5%, rgba(0, 73, 180, .18));
  background-size: 95px 165px;
  opacity: .35;
}

.achievement-section::after {
  content: "";
  position: absolute;
  right: 95px;
  top: 38px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff 0 8%, #7cc6ff 20%, #006cff 70%);
  box-shadow:
    70px 52px 0 -35px rgba(255,255,255,.65),
    100px 90px 0 -40px rgba(255,255,255,.45),
    -1040px 128px 0 2px rgba(255,255,255,.23),
    -985px 120px 0 -15px rgba(255,255,255,.35);
}

.achievement-section .container {
  position: relative;
  z-index: 2;
}

.small-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 12px;
}

.small-title span {
  width: 40px;
  height: 2px;
  background: #fff;
  display: inline-block;
}

.achievement-title h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 22px;
}

.achievement-row {
  max-width: 900px;
  margin: auto;
}

.achievement-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid rgba(0, 45, 145, .45);
}

.achievement-box.last {
  border-right: 0;
}

.ach-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #ff9d00;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
}

.achievement-box h3 {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 6px;
  color: #fff;
}

.achievement-box p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 991px) {
  .achievement-box {
    border-right: 0;
    margin-bottom: 25px;
    justify-content: center;
  }
}

.bubble{
    position:absolute;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(2px);
    animation: bubbleFloat 5s ease-in-out infinite;
    box-shadow:
    inset 0 0 12px rgba(255,255,255,.35),
    0 0 20px rgba(255,255,255,.12);
}

.bubble::before{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    top:10px;
    left:12px;
    filter:blur(1px);
}

.bubble1{
    width:58px;
    height:58px;
    left:65px;
    bottom:40px;
    animation-duration:5s;
}

.bubble2{
    width:24px;
    height:24px;
    left:145px;
    bottom:125px;
    animation-duration:4s;
    animation-delay:1s;
}

.bubble3{
    width:46px;
    height:46px;
    right:160px;
    top:35px;
    animation-duration:6s;
}

.bubble4{
    width:18px;
    height:18px;
    right:110px;
    top:105px;
    animation-duration:4.5s;
    animation-delay:.5s;
}

@keyframes bubbleFloat{

    0%{
        transform:translateY(0) scale(1);
    }

    25%{
        transform:translateY(-8px) translateX(4px) scale(1.03);
    }

    50%{
        transform:translateY(-15px) scale(1.08);
    }

    75%{
        transform:translateY(-8px) translateX(-4px) scale(1.03);
    }

    100%{
        transform:translateY(0) scale(1);
    }

}


.bubble::after{
    content:"";
    position:absolute;
    inset:6px;
    border-radius:50%;
    border-top:2px solid rgba(255,255,255,.7);
    border-left:2px solid rgba(255,255,255,.2);
    animation: shineRotate 8s linear infinite;
}

@keyframes shineRotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}


.drain-services-section {
  position: relative;
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.drain-services-section::before {
  content: "";
  position: absolute;
  left: -45px;
  bottom: 15px;
  width: 300px;
  height: 160px;
  background-image: radial-gradient(rgba(255, 185, 30, .35) 4px, transparent 5px);
  background-size: 42px 42px;
  opacity: .8;
}

.section-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ff9700;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-subtitle span {
  width: 60px;
  height: 2px;
  background: #ff9700;
  display: inline-block;
}

.drain-left h2 {
  font-size: 39px;
  line-height: 1.35;
  font-weight: 900;
  color: #05073f;
  margin-bottom: 20px;
  max-width: 520px;
}

.drain-desc {
  color: #6d7480;
  font-size: 15px;
  line-height: 1.75;
  max-width: 530px;
  margin-bottom: 35px;
}

.drain-image-card {
  position: relative;
  width: 100%;
  max-width: 535px;
  height: 315px;
  overflow: hidden;
}

.drain-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,63,.95), rgba(5,7,63,.05));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
}

.drain-overlay h3 {
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 12px;
}

.drain-overlay p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 390px;
  margin-bottom: 16px;
  color: #fff;
}

.drain-overlay a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.service-list {
  max-width: 430px;
  margin-left: auto;
  position: relative;
}

.service-item {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  margin-bottom: 22px;
  padding: 20px 75px 20px 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  transition: .3s ease;
}

.service-item.active {
  background: #07143a;
  color: #fff;
  box-shadow: 0 20px 45px rgba(8,124,255,.23);
}

.service-item:hover {
  transform: translateX(-8px);
}

.service-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #eaf4ff;
  color: #07143a;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.service-item.active .service-icon {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.service-item h4 {
  margin: 0 0 7px;
  color: #05073f;
  font-size: 20px;
  font-weight: 900;
}

.service-item.active h4 {
  color: #fff;
}

.service-item a {
  color: #07143a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.service-item.active a {
  color: #fff;
}

.service-num {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: #07143a;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.service-item.active .service-num {
  background: #ff9700;
}

.more-wrap {
  position: relative;
  margin-top: 10px;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ff9700;
  color: #fff;
  padding: 16px 23px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(255,151,0,.25);
}

.dashed-arrow {
  position: absolute;
  right: -15px;
  bottom: 20px;
  width: 235px;
  height: 95px;
  border-bottom: 3px dashed #05073f;
  border-right: 3px dashed #05073f;
  border-radius: 0 0 55px 0;
}

.dashed-arrow::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid #05073f;
}

@media (max-width: 991px) {
  .service-list {
    max-width: 100%;
    margin-left: 0;
  }

  .dashed-arrow {
    display: none;
  }
}

@media (max-width: 575px) {
  .drain-left h2 {
    font-size: 30px;
  }

  .service-item {
    padding-right: 55px;
  }

  .service-num {
    right: 10px;
  }
}

.curve-arrow{
    position:absolute;
    right:-10px;
    bottom:-8px;
    width:250px;
    pointer-events:none;
}

.curve-arrow svg{
    width:100%;
    height:auto;
}


/* ================= PROJECT SECTION ================= */
.project-section {
  position: relative;
  background: linear-gradient(120deg, #2da4fb 0%, #ff9800 100%);
  padding: 55px 0 0;
  color: #fff;
  overflow: hidden;
}

.project-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.project-title span {
  width: 38px;
  height: 2px;
  background: #fff;
}

.project-title p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.project-section h2 {
  font-size: 33px;
  font-weight: 900;
  margin: 13px 0;
}

.project-desc {
  max-width: 520px;
  margin: auto;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.project-img {
  height: 250px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.project-img:hover img {
  transform: scale(1.08);
}

/* bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
  animation: bubbleMove 5s ease-in-out infinite;
}

.bubble::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
  top: 9px;
  left: 10px;
}

.b1 {
  width: 48px;
  height: 48px;
  left: 7%;
  top: 65px;
}

.b2 {
  width: 16px;
  height: 16px;
  left: 17%;
  top: 40px;
  animation-delay: .8s;
}

.b3 {
  width: 45px;
  height: 45px;
  right: 12%;
  top: 25px;
  animation-delay: .5s;
}

.b4 {
  width: 15px;
  height: 15px;
  right: 6%;
  top: 65px;
  animation-delay: 1s;
}

@keyframes bubbleMove {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  position: relative;
  padding: 70px 0 80px;
  background: #fff;
  overflow: hidden;
}

.section-subtitle {
  color: #ff9700;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.section-subtitle span {
  width: 58px;
  height: 2px;
  background: #ff9700;
}

.testimonial-section h2 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 900;
  color: #05073f;
}

.testimonial-desc {
  color: #777;
  font-size: 13px;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 42px;
}

.testimonial-card {
  background: #fff;
  padding: 30px 27px;
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  min-height: 170px;
  position: relative;
  z-index: 2;
}

.testimonial-card p {
  color: #6d7480;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.client-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-box img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #07143a;
  object-fit: cover;
}

.client-box h5 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  color: #05073f;
}

.client-box span {
  color: #07143a;
  font-size: 12px;
}

.quote-shape {
  position: absolute;
  right: 135px;
  bottom: 25px;
  font-size: 190px;
  line-height: 1;
  color: rgba(8,124,255,.08);
  font-weight: 900;
}

.testimonial-dots {
  text-align: center;
  margin-top: 32px;
}

.testimonial-dots span {
  width: 17px;
  height: 5px;
  background: #05073f;
  border-radius: 20px;
  display: inline-block;
  margin: 0 5px;
}

.testimonial-dots span.active {
  width: 28px;
  background: #07143a;
}

@media (max-width: 991px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-desc {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-section h2,
  .testimonial-section h2 {
    font-size: 28px;
  }

  .quote-shape {
    display: none;
  }
}



.emergency-plumbing-section {
  position: relative;
  padding: 95px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
  overflow: hidden;
}

.emergency-plumbing-section::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  background: #07143a;
  opacity: .08;
  border-radius: 50%;
}

.emergency-plumbing-section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: #ff9700;
  opacity: .12;
  border-radius: 50%;
}

.emergency-content,
.quality-card {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  color: #ff9700;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}

.section-subtitle span {
  width: 60px;
  height: 2px;
  background: #ff9700;
}

.emergency-content h2 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 900;
  color: #05073f;
  margin-bottom: 22px;
}

.emergency-content p {
  color: #6d7480;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #07143a;
  color: #fff;
  padding: 16px 27px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 18px;
  box-shadow: 0 15px 35px rgba(8,124,255,.25);
  transition: .3s;
}

.emergency-btn:hover {
  background: #ff9700;
  color: #fff;
  transform: translateY(-4px);
}

.quality-card {
  background: #fff;
  padding: 42px 38px;
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
  border-left: 6px solid #07143a;
}

.quality-card h3 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  color: #05073f;
  margin-bottom: 25px;
}

.quality-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-card li {
  position: relative;
  padding: 0 0 14px 30px;
  color: #6d7480;
  font-size: 15px;
  line-height: 1.6;
}

.quality-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  background: #07143a;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.quality-card strong {
  color: #05073f;
}

@media (max-width: 991px) {
  .emergency-plumbing-section {
    padding: 70px 0;
  }

  .emergency-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .emergency-content h2 {
    font-size: 29px;
  }

  .quality-card {
    padding: 30px 22px;
  }

  .quality-card h3 {
    font-size: 24px;
  }
}

.coupon-map-section{

    padding:90px 0;
    background:#f8fbff;

}

.coupon-box{

    height:100%;
    background:linear-gradient(135deg,#07143a,#07143a);
    color:#fff;
    padding:45px;
    position:relative;
    overflow:hidden;
    border-radius:8px;
    box-shadow:0 20px 45px rgba(0,0,0,.1);

}

.coupon-box::before{

    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-110px;
    top:-110px;

}

.coupon-box::after{

    content:"";
    position:absolute;
    width:170px;
    height:170px;
    border:2px dashed rgba(255,255,255,.18);
    border-radius:50%;
    left:-70px;
    bottom:-70px;

}

.coupon-tag{

    display:inline-block;
    background:#ff9800;
    padding:8px 18px;
    font-size:13px;
    font-weight:800;
    border-radius:30px;
    margin-bottom:18px;

}

.coupon-box h5{

    font-size:20px;
    letter-spacing:2px;
    margin-bottom:10px;

}

.coupon-box h2{

    font-size:75px;
    font-weight:900;
    line-height:1;
    margin-bottom:18px;

}

.coupon-box h3{

    font-size:28px;
    font-weight:800;
    line-height:1.4;
    margin-bottom:25px;

}

.coupon-box ul{

    list-style:none;
    padding:0;
    margin:0 0 35px;

}

.coupon-box li{

    margin-bottom:12px;
    font-size:15px;

}

.coupon-btn{

    display:inline-block;
    background:#fff;
    color:#07143a;
    padding:15px 28px;
    text-decoration:none;
    font-weight:800;
    border-radius:5px;
    transition:.3s;

}

.coupon-btn:hover{

    background:#ff9800;
    color:#fff;

}

.map-box{

    position:relative;
    height:100%;
    min-height:480px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;
    height:100%;
    border:0;

}

.map-address{

    position:absolute;
    left:25px;
    bottom:25px;
    background:#fff;
    padding:20px 25px;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.map-address h4{

    color:#06153d;
    font-size:22px;
    margin-bottom:8px;
    font-weight:800;

}

.map-address p{

    margin:0;
    color:#666;
    line-height:1.7;

}

@media(max-width:991px){

.map-box{

min-height:400px;

}

.coupon-box h2{

font-size:60px;

}

}


.faq-section{
    padding:100px 0;
    background:#f8fbff;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{
    color:#ff9800;
    font-size:17px;
    font-weight:800;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    color:#06153d;
    font-size:42px;
    font-weight:900;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:600px;
    margin:auto;
}

.custom-faq .accordion-item{
    border:0;
    margin-bottom:20px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#06153d;
    font-size:20px;
    font-weight:800;
    padding:24px;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#07143a;
    color:#fff;
}

.custom-faq .accordion-button::after{
    filter:brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.custom-faq .accordion-body{
    padding:25px;
    color:#666;
    line-height:1.9;
    font-size:15px;
    background:#fff;
}


.contact-location-section{

    padding:100px 0;
    background:#f7fbff;

}

.contact-form-box{

    background:#fff;
    padding:45px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form-box h2{

    font-size:40px;
    font-weight:900;
    color:#06153d;
    margin-bottom:15px;

}

.contact-form-box p{

    color:#666;
    margin-bottom:30px;

}

.contact-form-box input,
.contact-form-box textarea{

    width:100%;
    border:1px solid #dbe8f8;
    padding:16px 18px;
    outline:none;
    transition:.3s;
    font-size:15px;

}

.contact-form-box input:focus,
.contact-form-box textarea:focus{

    border-color:#07143a;

}

.contact-form-box button{

    background:#07143a;
    color:#fff;
    border:0;
    padding:17px 35px;
    font-weight:800;
    transition:.3s;

}

.contact-form-box button:hover{

    background:#ff9800;

}

.location-box{

    height:100%;
    background:linear-gradient(135deg,#07143a,#07143a);
    color:#fff;
    padding:45px;
    position:relative;
    overflow:hidden; 

}

.location-box::before{

    content:"";
    position:absolute;
    width:230px;
    height:230px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-100px;
    top:-100px;

}

.location-box>*{

    position:relative;
    z-index:2;

}

.location-box h3{

    font-size:25px;
    font-weight:900;
    margin-bottom:15px;

}

.location-box p{

    line-height:1.8;

}

.zip-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:30px 0;

}

.zip-grid span{

    background:rgba(255,255,255,.12);
    text-align:center;
    padding:15px;
    font-size:20px;
    font-weight:800;

}

.location-box h4{

    margin-bottom:18px;
    font-weight:900;

}

.location-box ul{

    list-style:none;
    padding:0;
    margin:0;

}

.location-box li{

    margin-bottom:12px;

}

.location-box a{

    margin-top:35px;
    display:inline-block;
    background:#fff;
    color:#07143a;
    text-decoration:none;
    padding:15px 28px;
    font-weight:900;

}

.location-box a:hover{

    background:#ff9800;
    color:#fff;

}

@media(max-width:991px){

.contact-form-box,
.location-box{

padding:30px;

}

}



/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}



/*==========================
        FOOTER
==========================*/

.main-footer{
    position:relative;
    background:#07143a;
    color:#fff;
    padding:90px 0 0;
    overflow:hidden;
}

.main-footer::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

.main-footer::after{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-150px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,116,40,.08);
}

.main-footer .container{
    position:relative;
    z-index:2;
}

/*==========================
        LOGO
==========================*/

.footer-logo{
    color:#fff;
    font-size:28px;
    font-weight:900;
    line-height:1.4;
    margin-bottom:22px;
}

.footer-logo i{
    color:#ff7428;
    margin-right:10px;
}

.footer-widget p{
    color:#cfd6e3;
    line-height:1.9;
    font-size:15px;
    margin-bottom:30px;
}

/*==========================
      FOOTER TITLE
==========================*/

.footer-widget h4{
    color:#fff;
    font-size:24px;
    font-weight:800;
    margin-bottom:28px;
    position:relative;
    padding-bottom:12px;
}

.footer-widget h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#ff7428;
}

/*==========================
      SOCIAL
==========================*/

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.footer-social a:hover{
    background:#ff7428;
    transform:translateY(-4px);
}

/*==========================
      LINKS
==========================*/

.footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#cfd6e3;
    text-decoration:none;
    transition:.3s;
    position:relative;
    padding-left:18px;
    display:inline-block;
}

.footer-links li a::before{
    content:"›";
    position:absolute;
    left:0;
    top:0;
    color:#ff7428;
    font-size:18px;
    font-weight:bold;
}

.footer-links li a:hover{
    color:#ff7428;
    padding-left:25px;
}

/*==========================
      CONTACT
==========================*/

.footer-contact{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-contact li{
    display:flex;
    gap:16px;
    margin-bottom:20px;
    color:#d5dceb;
    line-height:1.8;
    font-size:15px;
}

.footer-contact i{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#ff7428;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:3px;
}

.footer-contact a{
    color:#d5dceb;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#ff7428;
}

/*==========================
      BUTTON
==========================*/

.footer-call{
    display:inline-block;
    margin-top:15px;
    background:#ff7428;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:5px;
    font-weight:800;
    transition:.3s;
}

.footer-call:hover{
    background:#fff;
    color:#07143a;
}

/*==========================
      FOOTER BOTTOM
==========================*/

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px 0;
}

.footer-bottom p{
    margin:0;
    color:#cfd6e3;
    font-size:14px;
    line-height:1.8;
}

.footer-bottom a{
    color:#ff7428;
    text-decoration:none;
    font-weight:700;
}

.footer-bottom a:hover{
    color:#fff;
}

.footer-bottom span{
    color:rgba(255,255,255,.25);
    margin:0 10px;
}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:991px){

.main-footer{
    padding-top:70px;
}

.footer-widget{
    margin-bottom:40px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom .text-lg-end{
    text-align:center!important;
    margin-top:10px;
}

}

@media(max-width:767px){

.footer-logo{
    font-size:24px;
}

.footer-widget h4{
    font-size:22px;
}

.footer-contact li{
    font-size:14px;
}

.footer-bottom p{
    font-size:13px;
}

.footer-call{
    width:100%;
    text-align:center;
}

.footer-social{
    justify-content:flex-start;
}

}




/* ==================================================
   ABOUT PAGE - COMPLETE STYLE
================================================== */

:root {
    --company-blue: #087cff;
    --company-blue-dark: #0066dc;
    --company-dark: #05073f;
    --company-orange: #ff9700;
    --company-light: #f5f9ff;
    --company-gray: #6d7480;
    --company-white: #ffffff;
}


/* ==================================================
   SECTION 1 - ABOUT OUR COMPANY
================================================== */

.company-about-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.company-about-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -170px;
    bottom: -150px;
    border: 50px solid rgba(8, 124, 255, .05);
    border-radius: 50%;
}

.company-about-section .container {
    position: relative;
    z-index: 2;
}


/* LEFT VISUAL AREA */

.company-about-visual {
    position: relative;
    min-height: 520px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* MAIN BLUE CARD */

.company-main-card {
    position: relative;
    width: 88%;
    min-height: 420px;
    padding: 55px 42px 45px;
    background:
        linear-gradient(
            135deg,
            #168cff 0%,
            #087cff 55%,
            #0065db 100%
        );
    color: #fff;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 30px 65px rgba(8, 124, 255, .25);
    transition: transform .4s ease;
}

.company-main-card:hover {
    transform: translateY(-7px);
}

.company-main-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    right: -125px;
    bottom: -135px;
}

.company-main-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border: 2px dashed rgba(255, 255, 255, .2);
    border-radius: 50%;
    right: 35px;
    top: 30px;
    animation: rotateAboutCircle 16s linear infinite;
}

.large-number {
    position: absolute;
    right: 18px;
    top: -25px;
    font-size: 145px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, .07);
}

.main-card-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--company-orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 12px 30px rgba(255, 151, 0, .3);
}

.card-small-title {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.company-main-card h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 16px;
}

.company-main-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.card-services {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card-services span {
    background: rgba(255, 255, 255, .13);
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 800;
}

.card-services i {
    color: var(--company-orange);
    margin-right: 5px;
}


/* FLOATING TRUST CARD */

.trusted-floating-card {
    position: absolute;
    right: -5px;
    bottom: 12px;
    z-index: 5;
    background: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    animation: trustedFloat 4s ease-in-out infinite;
}

.trusted-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 151, 0, .13);
    color: var(--company-orange);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 19px;
}

.trusted-floating-card strong,
.trusted-floating-card span {
    display: block;
}

.trusted-floating-card strong {
    color: var(--company-dark);
    font-size: 17px;
    font-weight: 900;
}

.trusted-floating-card span {
    color: var(--company-gray);
    font-size: 11px;
    margin-top: 3px;
}


/* DOT DECORATION */

.company-dots {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 190px;
    height: 150px;
    background-image:
        radial-gradient(
            rgba(8, 124, 255, .3) 3px,
            transparent 4px
        );
    background-size: 24px 24px;
    z-index: 1;
}


/* BUBBLES */

.about-bubble {
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(8, 124, 255, .2);
    background: rgba(8, 124, 255, .06);
    animation: aboutBubbleFloat 5s ease-in-out infinite;
}

.bubble-one {
    width: 45px;
    height: 45px;
    left: 5px;
    top: 30px;
}

.bubble-two {
    width: 18px;
    height: 18px;
    left: 75px;
    top: 5px;
    animation-delay: 1s;
}

.bubble-three {
    width: 28px;
    height: 28px;
    right: 20px;
    top: 70px;
    animation-delay: .5s;
}


/* RIGHT CONTENT */

.about-label {
    color: var(--company-orange);
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

.about-label span {
    width: 58px;
    height: 2px;
    background: var(--company-orange);
}

.company-about-content h2,
.company-why-content h2 {
    color: var(--company-dark);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 22px;
}

.company-about-content > p,
.company-why-content > p {
    color: var(--company-gray);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 17px;
}


/* CHECK ITEMS */

.company-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.company-check-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--company-light);
    padding: 15px;
    transition: .3s ease;
}

.company-check-item:hover {
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.company-check-item > i {
    width: 43px;
    height: 43px;
    min-width: 43px;
    background: rgba(8, 124, 255, .1);
    color: var(--company-blue);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.company-check-item strong,
.company-check-item span {
    display: block;
}

.company-check-item strong {
    color: var(--company-dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 3px;
}

.company-check-item span {
    color: var(--company-gray);
    font-size: 11px;
    line-height: 1.5;
}


/* CALL BUTTON */

.company-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--company-blue);
    color: #fff;
    text-decoration: none;
    padding: 16px 25px;
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(8, 124, 255, .25);
    transition: .3s ease;
}

.company-call-btn:hover {
    background: var(--company-orange);
    color: #fff;
    transform: translateY(-4px);
}


/* ==================================================
   SECTION 2 - MISSION & COMMITMENT
================================================== */

.company-mission-section {
    position: relative;
    padding: 105px 0;
    background: var(--company-light);
    overflow: hidden;
}

.company-mission-section .container {
    position: relative;
    z-index: 3;
}

.mission-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 65px solid rgba(8, 124, 255, .045);
    border-radius: 50%;
    top: -220px;
    left: -190px;
}

.mission-bg-dots {
    position: absolute;
    right: 30px;
    bottom: 25px;
    width: 220px;
    height: 180px;
    background-image:
        radial-gradient(
            rgba(255, 151, 0, .2) 3px,
            transparent 4px
        );
    background-size: 26px 26px;
}

.company-section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.center-label {
    color: var(--company-orange);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 13px;
}

.center-label span {
    width: 38px;
    height: 2px;
    background: var(--company-orange);
}

.company-section-heading h2 {
    color: var(--company-dark);
    font-size: 41px;
    font-weight: 900;
    margin-bottom: 15px;
}

.company-section-heading > p {
    color: var(--company-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto;
}


/* MISSION CARDS */

.company-value-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    padding: 48px 45px;
    color: #fff;
    overflow: hidden;
    transition: .4s ease;
}

.company-value-card:hover {
    transform: translateY(-8px);
}

.value-blue {
    background:
        linear-gradient(
            135deg,
            #168cff 0%,
            #087cff 55%,
            #0065dc 100%
        );
    box-shadow: 0 25px 55px rgba(8, 124, 255, .2);
}

.value-dark {
    background:
        linear-gradient(
            135deg,
            #111b52 0%,
            #05073f 100%
        );
    box-shadow: 0 25px 55px rgba(5, 7, 63, .17);
}

.company-value-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -110px;
    bottom: -110px;
    border: 40px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
}

.value-number {
    position: absolute;
    right: 22px;
    top: -20px;
    font-size: 140px;
    line-height: 1;
    color: rgba(255, 255, 255, .07);
    font-weight: 900;
}

.value-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    background: var(--company-orange);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 23px;
}

.value-label {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.company-value-card h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 15px;
}

.company-value-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.value-bottom-line {
    position: absolute;
    left: 45px;
    bottom: 0;
    width: 85px;
    height: 5px;
    background: var(--company-orange);
    transition: width .4s ease;
}

.company-value-card:hover .value-bottom-line {
    width: 160px;
}


/* ==================================================
   SECTION 3 - WHY CHOOSE US
================================================== */

.company-why-section {
    position: relative;
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

.company-why-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -120px;
    bottom: -120px;
    background: rgba(255, 151, 0, .05);
    border-radius: 50%;
}

.company-why-section .container {
    position: relative;
    z-index: 2;
}

.why-mini-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 25px 0;
    padding: 17px 20px;
    background: var(--company-light);
    border-left: 4px solid var(--company-orange);
    max-width: 390px;
}

.why-mini-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(8, 124, 255, .1);
    color: var(--company-blue);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.why-mini-info span,
.why-mini-info strong {
    display: block;
}

.why-mini-info span {
    color: var(--company-gray);
    font-size: 12px;
    margin-bottom: 3px;
}

.why-mini-info strong {
    color: var(--company-dark);
    font-size: 15px;
    font-weight: 900;
}


/* PHONE LINK */

.why-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-top: 5px;
}

.phone-circle {
    width: 60px;
    height: 60px;
    background: var(--company-orange);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    animation: companyPhonePulse 2s infinite;
}

.phone-content small,
.phone-content strong {
    display: block;
}

.phone-content small {
    color: var(--company-gray);
    font-size: 13px;
    margin-bottom: 3px;
}

.phone-content strong {
    color: var(--company-dark);
    font-size: 22px;
    font-weight: 900;
}


/* FEATURE CARDS */

.company-feature-card {
    position: relative;
    height: 100%;
    min-height: 265px;
    padding: 30px;
    background: var(--company-light);
    overflow: hidden;
    transition: .4s ease;
}

.company-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .1);
}

.company-feature-card.blue-card {
    background: var(--company-blue);
}

.company-feature-number {
    position: absolute;
    right: 15px;
    top: -10px;
    font-size: 85px;
    line-height: 1;
    color: rgba(5, 7, 63, .055);
    font-weight: 900;
}

.blue-card .company-feature-number {
    color: rgba(255, 255, 255, .1);
}

.company-feature-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    background: var(--company-orange);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.company-feature-card h3 {
    position: relative;
    z-index: 2;
    color: var(--company-dark);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 11px;
}

.company-feature-card p {
    position: relative;
    z-index: 2;
    color: var(--company-gray);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.blue-card h3,
.blue-card p {
    color: #fff;
}

.feature-arrow {
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: var(--company-blue);
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: .3s ease;
}

.company-feature-card:not(.blue-card) .feature-arrow {
    background: var(--company-blue);
    color: #fff;
}

.company-feature-card:hover .feature-arrow {
    transform: translateX(5px);
    background: var(--company-orange);
    color: #fff;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes rotateAboutCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes trustedFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes aboutBubbleFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.07);
    }
}

@keyframes companyPhonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 151, 0, .4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 151, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 151, 0, 0);
    }
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .company-about-section,
    .company-mission-section,
    .company-why-section {
        padding: 75px 0;
    }

    .company-about-visual {
        margin: 0 auto;
    }

    .company-about-content h2,
    .company-why-content h2,
    .company-section-heading h2 {
        font-size: 34px;
    }

    .company-main-card {
        width: 90%;
    }
}


@media (max-width: 767px) {

    .company-about-visual {
        min-height: auto;
        padding: 30px 0 75px;
    }

    .company-main-card {
        width: 100%;
        min-height: auto;
        padding: 40px 28px;
    }

    .trusted-floating-card {
        right: 10px;
        bottom: 20px;
    }

    .company-check-grid {
        grid-template-columns: 1fr;
    }

    .company-value-card {
        min-height: auto;
        padding: 38px 28px;
    }
}


@media (max-width: 575px) {

    .company-about-section,
    .company-mission-section,
    .company-why-section {
        padding: 60px 0;
    }

    .company-about-content h2,
    .company-why-content h2,
    .company-section-heading h2 {
        font-size: 29px;
    }

    .company-main-card h3 {
        font-size: 25px;
    }

    .company-main-card {
        padding: 38px 24px;
    }

    .trusted-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -25px 15px 0;
    }

    .company-about-visual {
        display: block;
        padding-bottom: 20px;
    }

    .company-value-card h3 {
        font-size: 26px;
    }

    .center-label {
        font-size: 14px;
    }

    .center-label span {
        width: 25px;
    }

    .company-feature-card {
        min-height: 245px;
    }
}

