/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --sage: #67bed9;
  --sage-dark: #000000;
  --sage-light: #e6f0e9;
  --beige-light: #f5f0e6;
  --text: #1a1a1a;
  --text-muted: #064928;
  --border: #e2e8ef;
  --bg: #ffffff;
  --bg-muted: #fff8eb;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.10);
}

/* ===== UTILITIES ===== */
.container { max-width: 1500px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-lg { padding: 0.85rem 1.85rem; font-size: 1rem; }
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(7, 212, 195, 0.877); }
.btn-outline { border-color: var(--sage); color: var(--sage); background: transparent; }
.btn-outline:hover { background: var(--sage-light); }
.btn-white { background: #fff; color: var(--sage); }
.btn-white:hover { background: #f0f4f0; }

a.btn.btn-primary{
  background: var(#fff); color: #fff;
}
a.btn.btn-primary:hover { background: var(--sage-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(7, 212, 195, 0.877); }


/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header { padding: 1.5rem 1.5rem 0.5rem; }
.card-content { padding: 0 1.5rem 1.5rem; }
.card-title { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.card-description { font-size: 0.9rem; color: var(--text-muted); }

/* ===== ICON BOX ===== */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--sage-light);
  margin-bottom: 1rem;
}
.icon-box svg { width: 24px; height: 24px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-box-lg { width: 64px; height: 64px; border-radius: 14px; }
.icon-box-lg img { width: 48px; height: 48px; object-fit: contain; }

/* ===== NAVIGATION ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226,232,239,0.7);
}
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  display: block;
  width: 130px;
  height: 90px;
  background: url('logo.png') no-repeat left top;
  background-size: 148px auto;
  color: transparent;
  font-size: 0;
}
.footer-logo-img {
  display: block;
  width: 80px;
  height: 36px;
  background: url('logo.png') no-repeat left top;
  background-size: 148px auto;
  color: transparent;
  font-size: 0;
  margin-bottom: 0.75rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sage);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  border-radius: 8px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-links .btn { margin-left: 0.75rem; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--text);
}
.nav-hamburger svg { width: 24px; height: 24px; }
#mobile-menu {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
#mobile-menu a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  transition: background 0.15s;
}
#mobile-menu a:hover, #mobile-menu a.active { background: var(--sage-light); color: var(--sage-dark); }
#mobile-menu .btn { margin-top: 0.5rem; width: 100%; }

/* ===== MAIN CONTENT ===== */
main { flex: 1; }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HERO ===== */

.company-name{
  white-space: nowrap;
  color: #124435;
  display:block;
  margin-top:10px;
}
.break{
  display: inline;
}

@media (max-width: 768px){
  .break{
    display: block;
  }
}

.hero {
  background: linear-gradient(140deg, var(--sage-light) 0%, #fff 55%, var(--beige-light) 100%), url("hero-bg1.png"); 
  /* background: url('bgmainpg.jpg') no-repeat ; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.35rem;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero p{
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== @ BARS IN THE HOMEPAGE ===== */
/* .hero {
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent, #2ABFBF, transparent);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent, #0d5c3a, transparent);
} */




/* ===== SECTION BASE ===== */
.section { padding: 3rem 0;}
#aboutus-vision-mission{
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.section-muted { background: var(--bg-muted); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-subtitle { color: var(--text-muted); max-width: 560px; margin: 0 auto 3rem; font-size: 1rem; }

#section-services-page{
  padding: 2rem 0;
  /* background: #e6eff0; */
}

#section-services-page .feature-card{
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

#section-services-page .card-title{
  font-size: small;
}

/* ===== Philosophy ===== */
.philosophy{
  /* background: #030303; */
  margin-left: 20vw;
  margin-right: 20vw;
  text-align: justify;
  color: var(--text-muted);
}
.container1 { 
  /* max-width: 1500px;  */
  margin: 0 auto; 
  padding: 0 1.5rem; 
  background: #fff8eb;
}
.container1 h2{
  color: #000000;
}

.container1 p{font-size: 0.9rem;}

/* ===== FEATURE GRID ===== */
/* .feature-grid1 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.feature-card{text-align:left;} */

.feature-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); }
.feature-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card .card-title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== VALUE SECTION ===== */
.value-grid { display: grid; gap: 3.5rem; grid-template-columns: 1fr 1fr; align-items: start; }
.value-grid .left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.value-grid .left p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.975rem; }
.benefit-list { margin-top: 1.5rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; }
.benefit-item svg { flex-shrink: 0; margin-top: 3px; width: 20px; height: 20px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-item p { color: var(--text-muted); font-size: 0.95rem; }
.benefit-list h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem; }

#about-pg-mission-vision{
  margin-left: 5rem;
}
/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p { opacity: 0.9; font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(140deg, var(--sage-light) 0%, #fff 55%, var(--beige-light) 100%);
  padding: 2rem 0;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.page-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 800px; margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.service-card {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card-inner { padding: 2rem;  }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.service-card .desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.service-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 7px;
}

#service-image img {
  border-radius: 16px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h4 {
  padding-left: 2rem;
}

.service-card ul {
  padding-left: 3rem;
}

@media (max-width: 768px) {

  .service-card {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  /* Force image div always on top */
  .service-card .service-image {
    order: -1;
    width: 100%;
    height: 220px;
  }

  .service-card .service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }

  /* Content below image */
  .service-card .service-card-inner {
    order: 1;
    width: 100%;
  }

}

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); text-align: center; }
.step-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(74,124,89,0.3);
}
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== ABOUT: STATS ===== */
.stats-grid { display: grid; gap: 2rem; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }

/* ===== ABOUT: EXPERTISE ===== */
.expertise-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.expertise-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.expertise-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.expertise-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ABOUT: VALUES ===== */
.values-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); text-align: center; }
.value-item .icon-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-item .icon-circle svg { width: 32px; height: 32px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.value-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== ABOUT PAGE LOGO ===== */
.homepagelogo{
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: -2.5rem;
  
}

/* ===== FOOTER LOGO ===== */
.footerlogo{
  display: flex;
  text-align: left;
  justify-content: left;
  margin-left: -1rem;
  margin-top: -25px;
}

/* ===== CREDENTIALS ===== */
.credentials { max-width: 760px; }
.credentials p { color: var(--text-muted); margin-bottom: 1rem; }
.credentials ul { margin: 0.75rem 0 1rem 1.5rem; }
.credentials ul li { list-style: disc; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr 2fr; }
.contact-info-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info-section > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.contact-item .label { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.1rem; }
.contact-item .val { font-size: 0.875rem; color: var(--text-muted); }

.hours-card { margin-top: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }

/* Form */
.form-card { padding: 2.25rem; }
.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.form-card .sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group label .req { color: #e53e3e; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.form-group input.error, .form-group textarea.error { border-color: #e53e3e; }
.form-group .error-msg { color: #e53e3e; font-size: 0.8rem; margin-top: 0.3rem; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; margin-top: 0.5rem; padding: 0.8rem; font-size: 1rem; }

/* ===== SELECT DROPDOWN ===== */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option[value=""][disabled] {
  color: #aaa;
}

/* Form loading state */
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Toast */
#toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  max-width: 360px;
  padding: 1rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: slideUp 0.25s ease;
}
#toast.success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
#toast.error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}
.footer-inner { padding: 3.5rem 0 2rem; }
.footer-grid 
{ display: grid; 
  gap: 1rem; 
  grid-template-columns: 1.2fr 0.5fr 1.5fr 1.5fr; 
  padding-left: 2rem; 
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--sage-dark); }
.footer-col ul li span { font-size: 0.875rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-socials a { color: var(--text-muted); transition: color 0.15s; }
.footer-socials a:hover { color: var(--sage-dark); }
.footer-socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--sage-dark); font-weight: 500; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== Image Inside ===== */

.service-img-card {
  position: relative;
  background-size: cover;
  background-position: 100;
  background-repeat: no-repeat;
  height: 220px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
}

.service-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(24, 18, 18, 0.4) 500%,
    rgba(6, 186, 231, 0.1) 200%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: background 0.3s ease;
  z-index: 0;
}

.service-img-card:hover::after {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.60) 50%,
    rgba(0, 0, 0, 0.20) 100%
  );
}

.service-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
  transition: transform 0.3s ease;
}

.service-img-card:hover .service-img-overlay {
  transform: translateY(-4px);
}

.service-img-card .card-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.service-img-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* Zoom on hover */
.service-img-card {
  background-size: 100%;
  transition: background-size 0.4s ease, box-shadow 0.2s, transform 0.2s;
}

.service-img-card:hover {
  background-size: 110%;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-links .btn { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 4rem 0 5rem; }
  .section { padding: 4rem 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}


/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--sage);
  padding: 0.25rem 0;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

.marquee-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-divider {
  color: #ffffff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

