
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --bg-color: #fdfcfb;
  --accent: #d37c7a;
  --dark-green: #173540;
  --text-main: #2d2d2d;
  --green-deep: #173540;
  --green-mid: #1a3745;
  --gold: #d37c7a;
  --gold-light: #ffd1d3;
  --cream: #f7f3ec;
  --white: #ffffff;
  --star-gold: #ff9d00;
}

html, body {
  background-color: #f4f4f4;
  padding: 0;
  width: 100%;
}


.hero-section,
.about,
.section-container1,
.services-section,
.section-container,
.testimonial-full-width,
.contact-section,
.main-footer {
  overflow: hidden;
}

.page-wrapper {
  width: 100%;
}

/* ========= LOADER ========= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .6s ease, visibility .6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
   pointer-events: none;
  display: none !important;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.loader-img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.loader-logo-text {
  font-family:"Playfair Display", serif;
  font-size: 2.2rem;
  color: #ecaeacf8;
  letter-spacing: 3px;
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #df9391f8, #ecaeacf8);
  border-radius: 99px;
  animation: fill-bar 2.4s ease forwards;
}

.loader-tagline {
  font-family: "Playfair Display", serif;
  font-size: .85rem;
  letter-spacing: 4px;
  color: rgba(218, 164, 164, 0.5);
  text-transform: uppercase;
  animation: fade-in-up .8s ease .3s both;
}

@keyframes fill-bar {
  0% {
    width: 0%
  }

  100% {
    width: 100%
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero-section {
  background: #173540;
  border-radius: 40px;
  min-height: auto;
  margin: 20px;
  position: relative;
  overflow: hidden;
}

#hero {
  min-height: 800px;
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
  pointer-events: none;
}

#hero .container {
  max-width: 1350px;
  margin: 0 auto;
  width: 92%;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0px;
  align-items: center;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 500px;
  padding-right: 20px;
  text-align: left;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}


.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 3vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-primary {
  background: #d37c7a;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  border-bottom: 3px solid #f8a2a1;
  transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 124, 122, .4);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.image-box {
  width: 100%;
  max-width: 520px;
  height: 480px;
  border-radius: 40px;
  padding: 12px;
  position: relative;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.image-box::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: #173540;
  border-radius: 50%;
  z-index: 1;
}

.play-button {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: #d37c7a;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  border: 10px solid #173540;
  color: white;
}

.play-button .ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
  animation: ripple-wave 3s linear infinite;
}

.play-button .ripple:nth-child(1) {
  animation-delay: 0s
}

.play-button .ripple:nth-child(2) {
  animation-delay: 1s
}

.play-button .ripple:nth-child(3) {
  animation-delay: 2s
}

@keyframes ripple-wave {
  0% {
    transform: scale(1);
    opacity: 0.6
  }

  100% {
    transform: scale(2.5);
    opacity: 0
  }
}

/* ===================================================
   NAVBAR
=================================================== */
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 90px;
}

.logo {
  position: absolute;
  left: 20px;
  z-index: 1001;
  top: 50%;
  transform: translateY(-50%);
}

.logo-img {
  width: 120px;
  height: auto;
  min-height: 50px;
  display: block;
}

.navbar {
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  max-width: 900px;
  height: 90px;
  margin: 0 auto;
  position: relative;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-top-right-radius: 40px;
  box-shadow: 15px -15px 0 15px #f4f4f4;
}

.navbar::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-top-left-radius: 40px;
  box-shadow: -15px -15px 0 15px #f4f4f4;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links a {
  color: #173540;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1002;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #173540;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.mob-link {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-style: italic;
  letter-spacing: 1px;
  transition: color .2s;
}

.mob-link:hover {
  color: var(--gold);
}

/* ===================================================
   ABOUT SECTION
=================================================== */
.about {
  padding: 80px 20px;
  background: #dde0e2;
  border-radius: 60px;
  min-height: auto;
  margin: 60px 20px;
  position: relative;
  overflow: hidden; 
}

.about>.container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 260px;
}

.about-left h1 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #233842;
  
}

.about-img img {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right {
  flex: 2;
  min-width: 150px;
}

.desc {
  color: #203c499a;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===================================================
   APPROACH SECTION
=================================================== */
.section-container1 {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-block {
  max-width: 520px;
}

.sub-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #365d6b;
  margin-bottom: 20px;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 40px;
  font-weight: 400;
  color: #173540;
}

.title span {
  color: var(--accent);
  font-style: italic;
}

.white-card {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .02);
}

.list-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f2f2f2;
}

.list-item:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.list-item h4 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 8px;
}

.list-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.visual-block {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.img-back {
  width: 340px;
  height: 650px;
  background: url('../images/683.jpg') center/cover;
  border-radius: 200px;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 1;
}

.img-front {
  width: 320px;
  height: 440px;
  background: url('../images/9963.jpg') center/cover;
  border-radius: 150px;
  border: 10px solid #f4f4f4;
  position: relative;
  z-index: 2;
  margin-top: 100px;
  margin-right: 20px;
}

.circular-badge {
  position: absolute;
  top: -80px;
  right: 60px;
  width: 160px;
  height: 160px;
  background: var(--dark-green);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-badge .icons {
  border-radius: 50%;
  background: #d37c7a;
  padding: 10px;
}

.badge-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

/* ===================================================
   SERVICES SECTION
=================================================== */
.services-section {
  background: #F8F7F3;
  padding: 64px 24px;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.services-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: #2D3E33;
  margin-top: 16px;
  line-height: 1.2;
}

.services-header h2 span {
  color: #d37c7a;
}

#view-all-btn {
  margin-top: 24px;
  background: #3D4A3E;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#view-all-btn:hover {
  background: #2D3E33;
}

#view-all-btn .arrow {
  transform: rotate(-45deg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #1a3745;
  border-radius: 100% 100% 0 0;
  transition: height 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  height: 180%;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.service-card h3,
.service-card p,
.service-card svg path {
  transition: 0.3s;
}

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

.service-card:hover svg path {
  fill: #fff;
}

.icon-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  color: #d37c7a;
}

.hidden-card {
  display: none;
}

.hidden-card.show {
  display: flex;
}

/* ===================================================
   MARQUEE
=================================================== */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  background: #ffffff;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}

.track span {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 800;
  margin-right: 60px;
  white-space: nowrap;
}

.filled {
  color: #2b5e74;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 2px #2b5e74;
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===================================================
   BENEFITS SECTION
=================================================== */
.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  
} 

.section-header {
  display: block;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 60px;
  
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #78716c;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.heading {
  font-size: clamp(32px, 4vw, 64px) !important;
  font-weight: 400;
  line-height: 1.5;
  color: #292524;
}

.highlight {
  color: #d37c7a;
}

.section-btn {
  margin-top: 20px;
  background: #173540;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.section-btn:hover {
  background: #2b5e74;
}

.section-btn .arrow {
  transition: transform 0.3s;
}

.section-btn:hover .arrow {
  transform: rotate(45deg);
}

.grid-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
}

.right {
  margin: 0 30px;
}

.benefit-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #78716c;
  line-height: 1.6;
  max-width: 100%;
}

.icon {
  margin-bottom: 10px;
  opacity: 0.7;
}

.icon path {
  fill: #d37c7a !important;
}

.center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

#bg-box {
  width: 350px;
  height: 350px;
}

.rotate-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 30s linear infinite;
}

.main-img {
  width: 280px;
}

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

  to {
    transform: rotate(360deg)
  }
}

/* ===================================================
   TESTIMONIAL
=================================================== */
.testimonial-full-width {
  width: calc(100% - 60px);
  max-width: 1900px;
  margin: 40px auto;
  background-color: #173540;
  padding: 60px 40px;
  overflow: hidden;
  border-radius: 40px;
  box-sizing: border-box;
  min-height: 500px;
}

.testimonial-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 40px;
  align-items: center;
}

.image-side {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 460px;
  width: 100%;
  max-width: 600px;
  z-index: 2;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.rating-tag {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #173540;
  color: white;
  padding: 20px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.text-side {
  position: relative;
  color: white;
}

.quote-mark {
  font-size: 80px;
  font-family:"Playfair Display", serif;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.8;
}

.stars-row {
  color: #ff9d00;
  margin-bottom: 20px;
  font-size: 16px;
}

.stars-row>.stars {
  padding: 4px;
}

.quote-text {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 90%;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-box img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.author-meta h5 {
  font-size: 18px;
  margin: 0 0 4px 0;
}

.author-meta span {
  font-size: 14px;
  opacity: 0.7;
}

.floating-asterisk {
  position: absolute;
  right: -40px;
  top: 4%;
  transform: translateY(-40%);
  font-size: 250px;
  color: rgba(216, 125, 125, 0.05);
  z-index: 0;
  pointer-events: none;
  animation: spin 12s linear infinite;
}

.swiper-pagination-bullet {
  background: #fff !important;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #ff9d00 !important;
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.italic-gold {
  color: #f8a2a1;
}

.main-heading {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 24px;
}

.description {
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 448px;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-badge i {
  color: #f8a2a1;
}

.contact-badge span {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 700;
  color: #173540;
}

.icon-boxes {
  background-color: #173540;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card h4 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: #6b7280;
}

.social-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-label {
  font-weight: 500;
  color: #374151;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: #173540;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
  background: #d37c7a;
}

.form-container {
  background: white;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.form-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 32px;
  color: #2d2d2d;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.input-field {
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  font-family: inherit;
  font-size: 15px;
}

.input-field::placeholder {
  color: #b0b0b0;
  font-size: 14px;
}

.resize-none {
  resize: none;
  margin-bottom: 16px;
  display: block;
}

.submit-btn {
  background-color: #173540;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 16px;
  width: 100%;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* ===================================================
   FOOTER
=================================================== */
.main-footer {
  background-color: #173540;
  color: #ffffff;
  padding: 80px 10% 40px 10%;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.footer-col p {
  font-size: .95rem;
  line-height: 1.6;
  color: #d1d1d1;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d1d1d1;
  font-size: .95rem;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f8a2a1;
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #d1d1d1;
}

.contact-item i {
  margin-top: 5px;
  color: #c4ccb9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section img {
  height: 50px;
  width: 50px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 500;
}

.logo-text span {
  color: #8a9a5b;
}

.social-icons1 {
  display: flex;
  gap: 15px;
}

.social-icons1 a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons1 a:hover {
  background: #fff;
  color: #f8a2a1;
}

.copyright {
  font-size: .9rem;
  color: #d1d1d1;
}

/* ===================================================
   RESPONSIVE — LARGE DESKTOP (max 1440px)
   Fixes logo overlapping pill on medium desktops
=================================================== */
@media (max-width: 1440px) {
  .logo {
    left: 20px;
  }
}

/* ===================================================
   RESPONSIVE — TABLET (max 1024px)
=================================================== */
@media (max-width: 1024px) {

  /* ── Hero ── */
  .hero-section {
    margin: 12px;
    border-radius: 24px;
    min-height: auto;
  }

  #hero {
    height: auto;
    min-height: auto;
    padding: 110px 20px 60px;
  }

  #hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-image-wrapper {
    justify-content: center;
    margin-top: 20px;
  }

  .play-button {
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  /* ── Navbar ── */
  .hamburger {
    display: flex;
  }

  /* White hamburger bars — hero bg is dark green */
  .hamburger span {
    background: #ffffff;
  }

  .nav-links {
    display: none;
  }

  .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar {
    max-width: 100%;
    padding: 0 20px;
    justify-content: flex-end;
    background: transparent;  /* Remove white pill bg on tablet */
    border-radius: 0;
    box-shadow: none;
  }

  .navbar::before,
  .navbar::after {
    display: none;
  }

  /* ── About ── */
  .about-flex {
    flex-direction: column;
    gap: 30px;
  }

  .about {
    margin: 30px 12px;
    border-radius: 30px;
    padding: 60px 30px;
  }

  .about>.container {
    gap: 40px;
  }

  /* ── Approach ── */
  .section-container1 {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    gap: 40px;
  }

  .content-block {
    max-width: 100%;
  }

  .visual-block {
    height: 500px;
    justify-content: center;
    margin-top: 30px;
    overflow: hidden;
  }

  .img-back {
    width: 48%;
    max-width: 260px;
    height: 420px;
    left: 2%;
  }

  .img-front {
    width: 46%;
    max-width: 240px;
    height: 340px;
    margin-right: 2%;
    margin-top: 80px;
  }

  .white-card {
    padding: 30px 24px;
  }

  /* ── Services ── */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header {
    flex-direction: column;
  }

  /* ── Benefits ── */
  .grid-container {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .column {
    max-width: 280px;
    gap: 30px;
  }

  .right {
    margin: 0;
  }

  .section-header {
    flex-direction: column;
  }

  #bg-box {
    width: 300px;
    height: 300px;
  }

  .main-img {
    width: 220px;
  }

  /* ── Testimonial ── */
  .testimonial-full-width {
    width: calc(100% - 24px);
    padding: 50px 24px;
    min-height: auto;
  }

  .testimonial-wrapper {
    padding: 0 10px;
  }

  /* ── Contact ── */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE (max 768px)
=================================================== */
@media (max-width: 768px) {

  
  .nav-container {
    justify-content: center;
    padding: 0;
  }

  .logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 1001;
  }

  /* Navbar becomes an invisible layer, only hamburger visible */
  .navbar {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    max-width: none;
    height: 90px;
    padding: 0 20px;
    margin: 0;
  }
  
  .hamburger span {
    background: #ffffff;
  }

  .nav-links {
    display: none !important;
  }

  /* ── Hero ── */
  .hero-section {
    margin: 10px;
    border-radius: 20px;
  }

  #hero {
    padding: 100px 16px 50px;
  }

  .image-box {
    height: 280px;
    max-width: 300px;
  }

  .image-box::before {
    display: none;
  }


  .play-button {
    display: none;
  } 


  /* .play-button {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 16px auto 0;
  } */

  /* ── About ── */
  .about {
    margin: 20px 10px;
    padding: 50px 20px;
    border-radius: 24px;
    min-height: auto;
  }

  .about>.container {
    gap: 24px;
  }

  .about-left {
    min-width: 0;
  }

  /* ── Approach ── */
  .visual-block {
    height: 400px;
    
  }

  .img-back {
    width: 48%;
    max-width: 200px;
    height: 340px;
    left: 2%;
  }

  .img-front {
    width: 46%;
    max-width: 190px;
    height: 280px;
    margin-right: 2%;
    margin-top: 60px;
  }


  .circular-badge {
   top: 0;
    right: 10px;
    transform: scale(0.8);
  }

  /* ── Benefits ── */
  .grid-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .column {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .benefit-card {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
  }

  .center {
    width: 100%;
  }

  #bg-box {
    width: 260px;
    height: 260px;
  }

  .main-img {
    width: 200px;
  }

  /* ── Testimonial ── */
  .testimonial-full-width {
    width: calc(100% - 20px);
    padding: 40px 16px;
    border-radius: 24px;
    min-height: auto;
    margin: 20px auto;
  }

  .testimonial-wrapper {
    padding: 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-side {
    width: 100%;
    margin-left: 0;
    height: 240px;
  }

  .rating-tag {
    position: static;
    margin-top: 12px;
    justify-content: center;
  }

  .quote-text {
    max-width: 100%;
  }

  /* ── Contact ── */
  .info-grid {
    grid-template-columns: 1fr;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .main-footer {
    padding: 60px 6% 30px;
  }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
=================================================== */
@media (max-width: 480px) {

  /* ── Hero ── */
  .hero-section {
    margin: 8px;
    border-radius: 16px;
  }

  #hero {
    padding: 90px 12px 40px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .image-box {
    height: 240px;
    max-width: 280px;
  }

  /* ── About ── */
  .about {
    padding: 40px 16px;
    margin: 16px 8px;
    border-radius: 20px;
  }

  /* ── Approach ── */
  .section-container1 {
    padding: 50px 4%;
  }

  .visual-block {
    height: 320px;
    overflow: hidden;
  }

  .img-back {
    width: 46%;
    max-width: 160px;
    height: 260px;
    left: 1%;
  }

  .img-front {
    width: 46%;
    max-width: 150px;
    height: 220px;
    margin-right: 1%;
    margin-top: 50px;
  }

  .circular-badge {
    width: 110px;
    height: 110px;
    top: 0px;
    right: 10px;
  }

  .white-card {
    padding: 20px 16px;
  }

  /* ── Marquee ── */
  .marquee {
    padding: 24px 0;
  }

  .track span {
    font-size: clamp(40px, 12vw, 64px);
    margin-right: 30px;
  }

  /* ── Services ── */
  .services-section {
    padding: 40px 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px;
  }

  /* ── Benefits ── */
  .section-container {
    padding: 50px 12px;
  }

  .column {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-card {
    max-width: 100%;
    min-width: 0;
  }

  #bg-box {
    width: 220px;
    height: 220px;
  }

  .main-img {
    width: 170px;
  }

  /* ── Testimonial ── */
  .testimonial-full-width {
    width: calc(100% - 16px);
    padding: 32px 12px;
    border-radius: 20px;
  }

  .image-side {
    height: 200px;
  }

  /* ── Contact ── */
  .contact-section {
    padding: 50px 12px;
  }

  .form-container {
    padding: 24px 16px;
    border-radius: 24px;
  }

  /* ── Footer ── */
  .main-footer {
    padding: 50px 5% 24px;
  }
}

/* ===================================================
   RESPONSIVE — EXTRA SMALL (max 360px)
=================================================== */
@media (max-width: 360px) {
  .logo-img {
    width: 90px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .visual-block {
    height: 280px;
  }

  .img-back {
    width: 44%;
    max-width: 140px;
    height: 230px;
  }

  .img-front {
    width: 44%;
    max-width: 130px;
    height: 190px;
  }

  .track span {
    font-size: 36px;
  }
}