:root {
  --navy: #0d5790;
  --deep-blue: #1366a6;
  --sky-blue: #0f97cd;
  --action-orange: #eb721c;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

/* Text Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.reveal-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
h1.reveal-up {
  animation-delay: 0.2s;
}
.hero-desc.reveal-up {
  animation-delay: 0.4s;
}
.hero-btns.reveal-up {
  animation-delay: 0.6s;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.slide-in-up {
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.bounce-in {
  opacity: 0;
  animation: bounceIn 1s ease forwards;
}

.animate-testimonial {
  animation: testimonialPulse 2s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}
.delay-5 {
  animation-delay: 1s;
}
.delay-6 {
  animation-delay: 1.2s;
}
.delay-7 {
  animation-delay: 1.4s;
}
.delay-8 {
  animation-delay: 1.6s;
}

/* Navigation */
.main-nav {
  background: var(--white);
  padding: 0.38rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.bar {
  width: 24px;
  height: 3px;
  background-color: #e2730a;
  border-radius: 999px;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.desktop-menu {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.desktop-menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 300;
  transition: color 0.3s;
}

.desktop-menu a:hover {
  color: var(--action-orange);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 62px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.grid-split {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.vision-mission-col {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  flex: 1 1 58%;
  min-width: 280px;
}

.vision-mission-image {
  flex: 1 1 38%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-mission-image img {
  width: 100%;
  max-height: 520px;
  margin-left: 50px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision-mission-image {
  position: relative;
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 4.5rem 5% 5rem;
  margin-top: 0;
}

.how-it-works .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 30px;
}

.how-it-works .section-title {
  text-align: center;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 2.5rem;
  font-weight: 700;
  padding-top: 40px;
  padding-bottom: 0;
}

.how-it-works .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.how-it-works-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.how-it-works-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1 1 65%;
}

.how-it-works-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  flex: 0 0 120px;
  align-items: start;
}

.icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.how-it-works-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  flex: 0 1 auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.how-it-works-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.up {
  color: white;
  font-weight: 100;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--sky-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.text-link {
  color: var(--sky-blue);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  transition: color 0.3s;
}
.step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.step-content h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
}

.step-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 1rem;
}

.step-icons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.step-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #e8f2ff);
  border-radius: 14px;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.08),
    inset 0 2px 6px rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
}

.step-icon:nth-child(1) {
  background: linear-gradient(145deg, #f7f9ff, #dfe9ff);
}

.step-icon:nth-child(2) {
  background: linear-gradient(145deg, #fff7e4, #ffe4b8);
}

.step-icon:nth-child(3) {
  background: linear-gradient(145deg, #f7fff3, #c8f0d0);
}

.step-icon:nth-child(4) {
  background: linear-gradient(145deg, #fff4f9, #f9d9eb);
}

.how-it-works-arrow {
  color: var(--sky-blue);
  font-size: 2.5rem;
  font-weight: bold;
  display: none;
  flex-shrink: 0;
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Testimonials */
.testimonials {
  background: #f5f9ff;
  padding: 5rem 5% 4.5rem;
}

.testimonial-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-header {
  margin-bottom: 2rem;
}

.testimonial-header .section-title {
  font-size: 3.75rem;
  margin-bottom: 0.8rem;
}

.section-title2 {
  font-size: 2.75rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.8rem;
  color: rgb(32, 32, 32);
}

.testimonial-header .section-subtitle {
  color: #4d5c7a;
  max-width: 650px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 28px;
  padding: 2rem 2.5rem;
  box-shadow: 0 22px 60px rgba(15, 78, 140, 0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0efff, #ffffff);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 3px solid rgba(15, 78, 140, 0.12);
  box-shadow: 0 10px 20px rgba(15, 78, 140, 0.12);
  flex-shrink: 0;
}

.testimonial-details {
  text-align: left;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #23304a;
  line-height: 1.8;
  margin: 1rem 0 0.75rem;
  min-height: 120px;
}

.testimonial-stars {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0;
}

.stars-with-rating {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.rating-number {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-star {
  color: #f5b400;
  font-size: 1.2rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.testimonial-role {
  color: #6a7891;
  font-size: 0.95rem;
}

.testimonial-card.animate {
  animation: testimonialPulse 0.8s ease;
}

@keyframes testimonialPulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-10px);
    opacity: 0.95;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .testimonial-card {
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
    padding: 1.6rem 1.75rem;
    text-align: left;
  }

  .testimonial-card .testimonial-avatar {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .testimonial-meta {
    text-align: left;
    align-items: flex-start;
  }

  .testimonial-name {
    font-size: 1.15rem;
  }

  .testimonial-role {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    min-height: 0;
    margin-top: 0.8rem;
  }

  .testimonial-star {
    font-size: 1.05rem;
  }
}

@media (min-width: 1200px) {
  .how-it-works-grid {
    gap: 1rem;
  }

  .how-it-works-step {
    flex: 1 1 calc(25% - 0.5rem);
    min-width: 150px;
  }

  .how-it-works-arrow {
    display: block;
    font-size: 2.5rem;
    padding: 0 0.75rem;
  }
}

@media (max-width: 1199px) {
  .how-it-works-layout {
    flex-direction: column;
    align-items: center;
  }

  .how-it-works-grid {
    flex-direction: column;
    width: 100%;
  }


 

  .how-it-works-icons {
    grid-template-columns: repeat(4, 72px);
    width: auto;
    justify-content: center;
  }

  .how-it-works-arrow {
    display: block;
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}

.mission-card,
.vision-card {
  background: rgb(255, 255, 255);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.badge {
  color: var(--navy);
  padding: 0.5rem 1rem;
  width: fit-content;
  border-radius: 8px;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.badge p {
  font-size: 0.75rem;
  color: #666;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.section-title {
  font-size: 32px;
  text-align: center;
  color: rgb(37, 37, 37);
  padding-top: 80px;
  margin-bottom: 0.8rem;
  justify-content: center;
  animation: fadedown 0.5s ease-in-out;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  padding-top: 0;
  justify-content: center;
  word-wrap: break-word;
  max-width: 700px;
  margin: 0.15rem auto 2rem;
  line-height: 1.75;
}

.section-title1 {
  color: var(--navy);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-grid .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.service-box {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:transform 0.3s ease,
  box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
}

.service-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-box h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.service-box p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}

.service-box .text-link {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  color: var(--action-orange);
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-box .text-link:hover {
  color: var(--deep-blue);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Styling */
.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 5% 2rem;
  margin-bottom: 0;
  isolation: isolate;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.3s ease,
    transform 7s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 31, 54, 0.28), rgba(6, 31, 54, 0.08));
  z-index: -1;
  pointer-events: none;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 span {
  color: rgb(231, 131, 16);
}
.slogan {
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Quote Box Mini Style */
.quote-box-mini {
  background: var(--white);
  padding: 2rem;
  margin: 0;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-top: 5px solid rgb(5, 5, 116);
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  justify-self: end;
  position: relative;
  z-index: 1;
}

.quote-box-mini h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.quote-box-mini input,
.quote-box-mini select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.btn-quote-submit {
  width: 100%;
  background: var(--navy);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-quote-submit:hover {
  background: var(--sky-blue);
}

.form-note {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

/* Achievements Bar */
.achievements {
  background: var(--navy);
  color: white;
  padding: 1.25rem 5%;
  margin-top: 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
  box-shadow: none;
}

.achievements .container {
  padding-top: 0;
  padding-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1.5rem;
}
.stat-item h2 {
  font-size: 3.5rem;
  color: var(--sky-blue);
}

/* Buttons */
.btn-primary {
  background: var(--sky-blue);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
}
.btn-action {
  background: var(--action-orange);
  color: white;
  padding: 1.2rem;
  margin-top: 25px;
  display: inline-block;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* Enhanced Hover Effects */
.service-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.how-it-works-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-action:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(235, 114, 28, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(15, 151, 205, 0.4);
}

/* Loading Animation */
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading {
  animation: loading 1s linear infinite;
}

/* Parallax Effect for Hero */
.hero {
  position: relative;
  overflow: clip;
}

/* Enhanced Button Animations */
.btn-quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 87, 144, 0.4);
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 114, 28, 0.4);
}

/* Image Hover Effects */
.service-box img {
  width: 100%;
  display: block;
}

.service-box:hover img {
  transform: none;
}

/* Ripple Effect */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button positioning for ripple */
.btn-action,
.btn-primary,
.btn-quote-submit,
.btn-pricing {
  position: relative;
  overflow: hidden;
}



/* Get a Quote Section */
.quote-section {
  background: white;
  padding: 5.5rem 5%;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
}

.section-padding {
  padding: 5rem 5%;
}

.home-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-reveal.home-reveal-left {
  transform: translateX(-34px);
}

.home-reveal.home-reveal-right {
  transform: translateX(34px);
}

.home-reveal.home-reveal-left.is-visible,
.home-reveal.home-reveal-right.is-visible {
  transform: translate(0, 0);
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-text h2.trusted-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.05;
  color: rgb(37, 37, 37) !important;
}

.quote-text h2.trusted-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 1rem 0 0.75rem;
  background: var(--action-orange);
  border-radius: 999px;
}

.quote-note {
  font-size: 1rem;
  color: #3d4a5e;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.quote-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--navy);
}

.quote-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555;
}

.quote-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature i {
  color: var(--action-orange);
  font-size: 1.5rem;
}

.feature span {
  font-weight: 600;
  font-size: 1rem;
  color: rgb(39, 39, 39);
}

.btn-quote-main {
  display: inline-block;
  background: var(--action-orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(235, 114, 28, 0.3);
}

.btn-quote-main:hover {
  background: var(--deep-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 102, 166, 0.4);
}

.quote-images {
  position: relative;
}

.image-stack {
  position: relative;
  height: 400px;
}

.cleaner-img {
  position: absolute;
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.img-1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-5deg);
}

.img-2 {
  top: 30px;
  left: 60px;
  z-index: 2;
  transform: rotate(3deg);
}

.img-3 {
  top: 60px;
  left: 120px;
  z-index: 1;
  transform: rotate(-2deg);
}

/* Responsive Design */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero {
    min-height: calc(88svh - 72px);
  }

  h1 {
    font-size: 4rem;
  }

  .section-title,
  .section-title1,
  .section-title2 {
    font-size: 3.5rem;
  }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1199px) {
  .how-it-works-grid {
    gap: 1rem;
  }

  .how-it-works-step {
    flex: 1 1 calc(25% - 0.5rem);
    min-width: 150px;
  }

  .how-it-works-arrow {
    display: block;
    font-size: 2.5rem;
    padding: 0 0.75rem;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1024px) {
  .main-nav {
    padding: 0.42rem 3%;
  }

  .hamburger {
    display: inline-flex;
  }

  .desktop-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    z-index: 1001;
  }

  .desktop-menu a {
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(13, 87, 144, 0.08);
    font-size: 1rem;
  }

  .desktop-menu a:last-child {
    border-bottom: none;
  }

  .desktop-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
    padding: 4.5rem 3% 2rem;
    text-align: center;
  }

  .hero-content {
    max-width: 760px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-desc {
    font-size: 1.1rem;
  }

  .quote-box-mini {
    max-width: 520px;
    width: min(100%, 520px);
    justify-self: center;
  }

  .nav-actions {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .grid-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vision-mission-image {
    order: 2;
  }

  .vision-mission-image img {
    margin-left: 0;
  }

  .vision-mission-col {
    order: 1;
    text-align: center;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-it-works-arrow {
    display: none;
  }

  .how-it-works-step {
    text-align: center;
  }

  .services-grid .container {
    padding-left: 3%;
    padding-right: 3%;
  }

  .services-grid .grid-3 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .quote-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .quote-images {
    display: none;
  }

  .quote-text h2 {
    font-size: 2.5rem;
  }

  .testimonial-card {
    grid-template-columns: auto 1fr;
    text-align: left;
    align-items: start;
  }

  .testimonial-avatar {
    margin: 0;
  }

  .testimonial-meta {
    text-align: left;
    align-items: flex-start;
  }

  .logo-img {
    height: 58px;
  }
}

/* Mobile Landscape (481px - 767px) */
@media (max-width: 768px) {
  .main-nav {
    padding: 0.38rem 5%;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3.75rem 5% 1.5rem;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .up {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-btns {
    display: flex;
    justify-content: flex-start;
  }

  .quote-box-mini {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    transform: none;
    justify-self: stretch;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    text-align: center;
    padding: 1.5rem;
  }

  .section-padding {
    padding: 3rem 5%;
  }

  .section-title,
  .section-title1,
  .section-title2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .services-grid .container {
    padding-left: 0;
    padding-right: 0;
  }

  .services-grid .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .service-box {
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    max-width: 100%;
  }

  .quote-section {
    padding: 3rem 5%;
  }

  .quote-text h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    gap: 1rem;
    padding: 1.35rem 1.3rem;
    border-radius: 24px;
  }

  .testimonial-avatar {
    width: 58px;
    height: 58px;
  }

  .testimonial-name {
    font-size: 1.05rem;
  }

  .testimonial-role,
  .rating-number {
    font-size: 0.85rem;
  }

  .testimonial-text {
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0.7rem 0 0.6rem;
  }

  .testimonial-star {
    font-size: 1rem;
  }

  .quote-features {
    justify-content: center;
    gap: 1.5rem;
  }

  .feature {
    flex-direction: row;
    gap: 0.75rem;
    text-align: left;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .logo-img {
    height: 52px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .main-footer {
    padding: 3rem 5% 1.5rem;
    margin-top: 0;
  }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 5%;
  }

  .main-nav {
    padding: 0.32rem 5%;
  }

  .logo-img {
    height: 48px;
  }

  .hero {
    min-height: auto;
    gap: 1.5rem;
    padding: 3.2rem 5% 1.25rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .slogan {
    letter-spacing: 2px;
    font-size: 0.8rem;
  }

  .up {
    font-size: 0.95rem;
  }

  .btn-action {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .quote-box-mini {
    padding: 1.35rem;
  }

  .quote-box-mini h3 {
    font-size: 1.2rem;
  }

  .stat-item h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 2rem 5%;
  }

  .section-title,
  .section-title1,
  .section-title2 {
    font-size: 1.8rem;
  }

  .mission-card,
  .vision-card {
    padding: 1.5rem;
  }

  .how-it-works-step {
    padding: 1.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .service-box {
    max-width: 100%;
  }

  .testimonial-card {
    grid-template-columns: 52px 1fr;
    gap: 0.9rem;
    padding: 1.15rem 1rem;
    border-radius: 20px;
  }

  .testimonial-avatar {
    width: 52px;
    height: 52px;
    border-width: 2px;
  }

  .testimonial-card .testimonial-details {
    text-align: left;
  }

  .testimonial-name {
    font-size: 0.98rem;
  }

  .testimonial-role,
  .rating-number {
    font-size: 0.8rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.6rem 0 0.55rem;
  }

  .testimonial-stars,
  .stars-with-rating {
    gap: 0.35rem;
  }

  .testimonial-star {
    font-size: 0.92rem;
  }

  .quote-text h2 {
    font-size: 1.8rem;
  }

  .btn-quote-main {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
  .hero {
    padding: 2.8rem 5% 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .btn-action {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .stat-item h2 {
    font-size: 1.8rem;
  }

  .section-title,
  .section-title1,
  .section-title2 {
    font-size: 1.6rem;
  }
}

/* Footer */
.main-footer {
  background: var(--navy);
  color: white;
  padding: 4rem 5% 2rem;
  margin-top: 0;
}

[class*="elfsight-app"] {
  position: fixed !important;
  left: auto !important;
  right: 16px !important;
  bottom: 16px !important;
  max-width: calc(100vw - 32px) !important;
  z-index: 999 !important;
  width: auto !important;
  margin: 0 !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--sky-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-logo span {
  color: var(--action-orange);
}

.footer-slogan {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--action-orange);
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.socials {
  display: flex;
  gap: 1rem;
  margin-left: 6rem;
}

.social-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--sky-blue);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--sky-blue);
}

.newsletter p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

.btn-newsletter {
  background: var(--action-orange);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-newsletter:hover {
  background: var(--deep-blue);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

 

  .newsletter-form {
    flex-direction: column;
  }

  .main-footer {
    padding: 3rem 5% 1.5rem;
    margin-top: 0;
  }

  [class*="elfsight-app"] {
    right: 12px !important;
    bottom: 12px !important;
    max-width: calc(100vw - 24px) !important;
  }
}
