/* ============================================================
   SOLUTECHH — style.css
   Single stylesheet. No frameworks. No build tools.
   Converted from React module CSS + global.css
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --teal-primary: #1DB9AE;
  --teal-dark:    #159a91;
  --teal-deep:    #127b73;
  --text-dark:    #1A202C;
  --text-gray:    #4A5568;
  --bg-light:     #F4F7F9;
  --white:        #FFFFFF;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 30px;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 15px 40px rgba(0,0,0,0.15);

  --transition: all 0.3s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

h1 { font-family: var(--font-heading); font-size: clamp(1.8rem,5vw,3.5rem);  font-weight: 800; line-height: 1.2; margin-bottom: 2rem; }
h2 { font-family: var(--font-heading); font-size: clamp(1.5rem,4vw,2.5rem);  font-weight: 700; line-height: 1.3; margin-bottom: 2rem; }
h3 { font-family: var(--font-heading); font-size: clamp(1.2rem,3vw,1.8rem);  font-weight: 700; line-height: 1.4; margin-bottom: 1rem; }
h4 { font-family: var(--font-heading); font-size: clamp(1rem,2vw,1.5rem);    font-weight: 600; margin-bottom: 1rem; }
h5 { font-family: var(--font-heading); font-size: clamp(0.9rem,1.5vw,1.2rem);font-weight: 600; margin-bottom: 0.5rem; }
p  { font-size: clamp(0.875rem,1.5vw,1rem); line-height: 1.6; color: var(--text-gray); margin-bottom: 1rem; }

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--teal-primary);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3.75rem; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.875rem,1.2vw,1rem);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }

.btn-outline {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   SECTION HEADER (shared across pages)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.8rem,5vw,2.5rem);
  color: var(--teal-deep);
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: var(--teal-primary);
  border-radius: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  padding: clamp(0.75rem,2vw,1.25rem) clamp(1rem,5vw,3.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--teal-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem,2vw,1rem);
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-container:hover { transform: translateY(-2px); }

.logo-img {
  height: clamp(50px,8vw,70px);
  width: auto;
}

.logo-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--teal-primary);
  font-size: clamp(1rem,3vw,1.5rem);
  letter-spacing: 2px;
  margin: 0 0 2px;
}
.logo-text p {
  font-size: clamp(0.5rem,1vw,0.6rem);
  color: var(--text-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

/* Nav list */
.nav-list {
  display: flex;
  gap: clamp(0.5rem,2vw,1.5rem);
  align-items: center;
  margin: 0;
}
.nav-list li { list-style: none; }

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.75rem,1.3vw,0.875rem);
  color: var(--text-dark);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--teal-deep);
  transition: 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover,
.nav-link.active {
  color: var(--teal-primary);
  background: rgba(29,185,174,0.1);
}

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  width: 24px; height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
  display: block;
}
.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

@media (max-width: 768px) {
  .menu-btn { display: flex; }

  .nav-wrapper {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    z-index: 999;
    overflow-y: auto;
    padding-top: 80px;
  }
  .nav-wrapper.open { display: flex; }

  .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    gap: 0.5rem;
  }
  .nav-list li { width: 100%; }
  .nav-link { justify-content: center; width: 100%; }

  .nav-close-btn {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 44px; height: 44px;
    background: none; border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
  }
  .nav-close-btn:hover { color: var(--teal-primary); }
}
@media (min-width: 769px) {
  .nav-wrapper { display: contents; }
  .nav-close-btn { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-deep);
  padding: clamp(2rem,5vw,4rem) 0 clamp(1.5rem,3vw,1.75rem);
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem,4vw,3rem);
  padding-bottom: clamp(2rem,4vw,2.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px)  { .footer-top { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size: clamp(0.8rem,1.5vw,0.875rem);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 0.75rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: clamp(32px,8vw,40px);
  height: clamp(32px,8vw,40px);
  object-fit: cover;
}
.footer-logo span {
  font-family: var(--font-heading);
  font-size: clamp(1rem,2.5vw,1.25rem);
  font-weight: 700;
  color: var(--teal-primary);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem,1.2vw,0.875rem);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: clamp(1rem,2vw,1.25rem);
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: clamp(0.8rem,1.5vw,0.875rem);
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.875rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--teal-primary); }

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: clamp(1rem,2vw,1.5rem);
}
.footer-bottom p {
  font-size: clamp(0.75rem,1.2vw,0.875rem);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand, .footer-col { text-align: center; }
  .footer-logo { justify-content: center; }
}

/* ============================================================
   PAGE HERO (teal gradient — used on Services, Achievements,
   service detail pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: clamp(40vh,60vh,70vh);
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding: clamp(2.5rem,8vw,5rem) clamp(1rem,5vw,3.75rem);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: clamp(300px,50vw,600px);
  height: clamp(300px,50vw,600px);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 10%;
  width: clamp(250px,40vw,400px);
  height: clamp(250px,40vw,400px);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 {
  font-size: clamp(1.75rem,5vw,3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: var(--white);
}
.page-hero p {
  font-size: clamp(0.875rem,2vw,1.25rem);
  color: rgba(255,255,255,0.95);
  margin: 0;
}

/* Variation: with a background image + overlay */
.page-hero.with-bg {
  background-size: cover;
  background-position: center;
}

/* ============================================================
   HOME PAGE
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(2rem,8vw,5rem) clamp(1rem,5vw,5rem);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-hero {
    min-height: auto;
    padding: 4rem 1rem;
    background-attachment: scroll;
    align-items: flex-start;
    padding-top: 80px;
  }
}
.home-hero-shape {
  position: absolute;
  left: -10%; top: 40%;
  width: 50%; height: 80%;
  background: var(--teal-primary);
  opacity: 0.9;
  border-radius: 50%;
  transform: rotate(15deg);
  filter: blur(2px);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .home-hero-shape { width: 100%; height: 40%; left: 0; top: 0; opacity: 0.6; }
}
.home-hero-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
  margin-top: clamp(-3rem,-10vh,-1rem);
}
@media (max-width: 767px) {
  .home-hero-content { max-width: 100%; margin-top: 0; }
}
.home-hero-content h1 {
  font-size: clamp(1.8rem,5vw,3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}
.home-hero-content h1 span { color: var(--teal-primary); }
.home-hero-content > p {
  font-size: clamp(1rem,2.5vw,1.25rem);
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-hero {
  background: var(--white);
  color: var(--teal-deep);
  border: 2px solid var(--white);
}
.btn-hero:hover {
  background: var(--teal-primary);
  color: var(--white);
  border-color: var(--teal-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 767px) {
  .btn-group { flex-direction: column; gap: 1rem; }
  .btn { justify-content: center; }
}

/* Stats bar (home) */
.stats-wrapper {
  position: relative;
  z-index: 20;
  margin-top: clamp(-2rem,-8vh,-1rem);
  padding: 0 clamp(1rem,5vw,5rem);
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) { .stats-wrapper { margin-top: 2rem; padding: 0 1rem; } }

.stats-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  padding: clamp(2rem,5vw,2.5rem);
}
@media (min-width: 768px) { .stats-container { grid-template-columns: repeat(3,1fr); } }

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}
.stat-box i {
  font-size: clamp(2rem,6vw,2.5rem);
  color: var(--teal-primary);
  margin-bottom: 1rem;
}
.stat-box h3 {
  font-size: clamp(1rem,2vw,1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.stat-box p { font-size: 0.875rem; font-weight: 600; margin: 0; }

/* Services grid (home) */
.home-services {
  padding: clamp(2rem,8vw,4rem) clamp(1rem,5vw,5rem);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2,1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(2rem,4vw,2.5rem) clamp(1.25rem,3vw,1.75rem);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-xl);
  color: inherit;
}
.service-icon-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon-wrap i { font-size: clamp(2.25rem,8vw,3rem); color: var(--teal-primary); }
.service-icon-wrap img {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.service-card h4 {
  font-size: clamp(1rem,2.5vw,1.25rem);
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: clamp(0.875rem,1.5vw,1rem); margin: 0; }

/* Map section */
.map-section {
  padding: clamp(2rem,8vw,5rem) clamp(1rem,5vw,5rem);
  background: var(--white);
  text-align: center;
}
.map-container {
  display: block;
  text-decoration: none;
  margin: 3rem auto;
  max-width: 800px;
  transition: var(--transition);
}
.map-container:hover { transform: translateY(-4px); }
.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: block;
  width: 100%;
}
.map-label {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--teal-primary);
  font-weight: 600;
}
@media (max-width: 767px) {
  .map-container iframe { height: 300px !important; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-section {
  padding: clamp(2.5rem,8vw,5rem) clamp(0.75rem,5vw,3.75rem);
  background: var(--bg-light);
}
.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem,3vw,2rem);
  margin-top: 2rem;
}
@media (min-width: 768px)  { .services-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-cards-grid { grid-template-columns: repeat(3,1fr); } }

.service-img-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
  color: inherit;
}
.service-img-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-primary);
  color: inherit;
}
.service-img-card img {
  width: 100%;
  height: clamp(150px,30vw,220px);
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-img-card:hover img { transform: scale(1.08); }
.service-img-card-content {
  padding: clamp(1.5rem,3vw,1.75rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-img-card h3 {
  font-size: clamp(1rem,2.5vw,1.25rem);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.service-img-card p { flex-grow: 1; margin: 0; }

.service-img-card-x {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
  color: inherit;
}
.service-img-card-x:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-primary);
  color: inherit;
}
.service-img-card-x img {
  width: 100%;
  height: clamp(150px,30vw,220px);
  
  transition: transform 0.5s ease;
}
.service-img-card-x:hover img { transform: scale(1.08); }
.service-img-card-x-content {
  padding: clamp(1.5rem,3vw,1.75rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-img-card-x h3 {
  font-size: clamp(1rem,2.5vw,1.25rem);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.service-img-card-x p { flex-grow: 1; margin: 0; }

/* ============================================================
   SERVICE DETAIL PAGE (CSSD, Modular OT, etc.)
   ============================================================ */
.service-detail-hero {
  position: relative;
  min-height: clamp(40vh,55vh,60vh);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: clamp(2rem,8vw,5rem) clamp(1rem,5vw,3.75rem);
}
.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,185,174,0.75), rgba(18,123,115,0.75));
  z-index: 1;
}
.service-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.service-detail-hero h1 {
  font-size: clamp(1.75rem,5vw,3rem);
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: var(--white);
}
.service-detail-hero p {
  font-size: clamp(0.875rem,2vw,1.2rem);
  color: rgba(255,255,255,0.95);
  margin: 0;
}

.sd-section {
  padding: clamp(2rem,6vw,4rem) clamp(1rem,5vw,3.75rem);
}
.sd-section:nth-child(even) { background: var(--bg-light); }
.sd-section:nth-child(odd)  { background: var(--white); }

.sd-section h2 {
  font-size: clamp(1.5rem,4vw,2rem);
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
}

.sd-gallery {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .sd-gallery { grid-template-columns: repeat(4,1fr); } }
.sd-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.sd-gallery img:hover { transform: scale(1.06); box-shadow: var(--shadow-lg); }

.sd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .sd-grid { grid-template-columns: repeat(2,1fr); } }

.sd-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.sd-card h3 { color: var(--teal-deep); font-size: 1.1rem; margin-bottom: 0.5rem; }
.sd-card p  { margin: 0; font-size: 0.9rem; }

.sd-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-primary);
  font-weight: 600;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.sd-back:hover { color: var(--teal-deep); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  height: 50vh;
  background: linear-gradient(rgba(18,123,115,0.75), rgba(18,123,115,0.75)),
              url('/assets/office.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-hero h1 { color: var(--white); margin: 0; }
@media (max-width: 767px) { .about-hero { height: 35vh; } }

.about-section {
  padding: clamp(2.5rem,6vw,4rem) clamp(1rem,5vw,5rem);
}
.about-section:nth-child(even) { background: var(--bg-light); }
.about-section:nth-child(odd)  { background: var(--white); }

.about-section h2 {
  font-size: clamp(1.5rem,4vw,2rem);
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
}
.about-section h2.centered { text-align: center; }

.about-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.about-flex-text { flex: 1; }
.about-flex-text h2 { font-size: clamp(1.5rem,3vw,2rem); color: var(--teal-deep); }
.about-flex-text p { font-size: 1rem; line-height: 1.8; font-weight: 500; }
.about-flex-img  { flex: 1; }
.about-flex-img img {
  width: 80%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .about-flex { flex-direction: column; }
  .about-flex-img img { width: 100%; }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-card h3 { color: var(--teal-deep); font-size: 1.1rem; margin-bottom: 0.5rem; }

.office-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}
.office-img:hover { transform: scale(1.05); }

.map-embed {
  width: 100%;
  height: 250px;
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--teal-deep);
  border-left: 4px solid var(--teal-primary);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3,1fr); } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-primary);
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.08); }
.product-card-content { padding: 1.5rem; }
.product-card h3 { color: var(--teal-deep); font-size: 1.1rem; margin-bottom: 0.5rem; }
.product-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-primary);
  background: rgba(29,185,174,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* ============================================================
   ACHIEVEMENTS PAGE
   ============================================================ */
.achievements-intro {
  padding: clamp(2.5rem,6vw,4rem) clamp(1rem,5vw,4rem);
  background: #f5f8f8;
  text-align: center;
  border-bottom: 1px solid rgba(29,185,174,0.2);
}
.achievements-intro h2 {
  font-size: clamp(1.5rem,4vw,2rem);
  color: #0a4d48;
  font-weight: 800;
  margin-bottom: 1rem;
}
.achievements-intro p { max-width: 700px; margin: 0 auto; font-size: 1rem; font-weight: 500; color: #1a1a1a; }

.achievements-projects {
  padding: clamp(2rem,6vw,4rem) clamp(1rem,5vw,4rem);
  background: var(--white);
  max-width: 1200px;
  margin: 0 auto;
}

.project-block {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: clamp(1.5rem,4vw,2.5rem);
  margin-bottom: 2.5rem;
  border: 2px solid transparent;
  transition: var(--transition);
}
.project-block:hover {
  box-shadow: 0 15px 45px rgba(29,185,174,0.15);
  border-color: var(--teal-primary);
  transform: translateY(-5px);
}
.project-title {
  font-size: clamp(1.25rem,3vw,1.75rem);
  font-weight: 800;
  color: var(--teal-primary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.project-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--teal-dark));
  border-radius: 2px;
}
.project-meta {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  font-weight: 500;
}
.project-meta strong { color: #0a0a0a; font-weight: 700; margin-right: 0.375rem; }

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) { .photo-gallery { grid-template-columns: repeat(3,1fr); } }
.photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 2px solid rgba(29,185,174,0.1);
}
.photo-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(29,185,174,0.2);
  border-color: var(--teal-primary);
}
.project-info p { font-size: 1rem; color: #333; line-height: 1.8; font-weight: 500; }

.project-divider {
  border: none;
  border-top: 2px dashed rgba(29,185,174,0.3);
  margin: 1.5rem 0 2.5rem;
}

@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery img { height: 200px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: clamp(2.5rem,8vw,5rem) clamp(1rem,5vw,3.75rem);
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-info h2 {
  font-size: clamp(1.5rem,3vw,2rem);
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail i {
  font-size: 1.25rem;
  color: var(--teal-primary);
  margin-top: 0.2rem;
  width: 24px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--text-dark); font-size: 0.875rem; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail span { font-size: 0.9rem; color: var(--text-gray); }
.contact-detail a:hover { color: var(--teal-primary); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem,4vw,2.5rem);
  box-shadow: var(--shadow-md);
}
.contact-form-box h2 {
  font-size: clamp(1.25rem,3vw,1.75rem);
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
}

/* Tab switcher */
.tab-switcher {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-light);
  padding: 0.25rem;
  border-radius: var(--radius-md);
}
.tab-btn {
  flex: 1;
  padding: 0.625rem 1rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--teal-primary);
  box-shadow: var(--shadow-sm);
}

/* Form elements */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(29,185,174,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Career fields — hidden by default */
.career-only { display: none; }

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success i { font-size: 3rem; color: var(--teal-primary); margin-bottom: 1rem; }
.form-success h3 { color: var(--teal-deep); margin-bottom: 0.5rem; }
.form-error {
  background: #f8d7da;
  color: #dc3545;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* =========================================
   FOUNDERS SECTION
========================================= */
.founders-section {
  padding: 5rem 1.5rem;
  background-color: #f8faff; /* Very soft blue/grey tint to separate it from white sections */
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1000px; /* Wider to accommodate the longer text beautifully */
  margin: 0 auto;
}

.founder-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensures both cards are exactly the same height */
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.founder-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 5px solid #eef2f6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Centers on faces if images are tall */
}

.founder-info {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes content evenly */
}

.founder-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 0.25rem;
}

.founder-role {
  color: #0056b3; /* Professional blue */
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eef2f6;
}

.founder-bio {
  text-align: left; /* Left-aligns long text for easier reading */
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}

.founder-bio p {
  margin-bottom: 1rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .founder-card {
    padding: 2rem 1.5rem;
  }
}

.footer-disclaimer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Adjust color based on your footer background */
  font-size: 0.75rem; /* Makes it look like fine print */
  line-height: 1.5;
  color: #f60000; /* Slightly muted text color */
  text-align: justify;
}

.footer-disclaimer strong {
  color: #ffffff; /* Makes the "DISCLAIMER" title pop */
}