/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');



/* Base Design System Variables */
:root {
  /* Brand Colors */
  --color-primary-green: #3a5132;
  --color-accent-beige: #F5F2E7;
  --color-soft-white: #FFFFFF;
  --color-deep-charcoal: #3a5132;
  --color-muted-gold: #C9A66B;

  /* Package Theme Colors */
  --color-platinum-bg: #F8F8FF;
  --color-platinum-accent: #C0C0C0;
  --color-platinum-button: #C0C0C0;
  --color-platinum-button-hover: #A0A0A0;

  --color-gold-bg: #FDF5E6;
  --color-gold-accent: #FFD700;
  --color-gold-button: #FFD700;
  --color-gold-button-hover: #DAA520;

  --color-lite-bg: #F5F2E7;
  --color-lite-accent: #3a5132;
  --color-lite-button: #3a5132;
  --color-lite-button-hover: #2A5A42;

  /* Semantic Colors */
  --color-text-primary: var(--color-deep-charcoal);
  --color-text-secondary: #3a5132;
  --color-background-primary: var(--color-soft-white);
  --color-background-secondary: var(--color-accent-beige);

  /* Typography */
  font-family: 'Montserrat', sans-serif;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

  /* Layout */
  --header-height: 80px;
  --container-max-width: 1200px;

  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
 font-family: 'Montserrat', sans-serif;
  font-size: var(--font-size-body);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-background-primary);
  padding-top: var(--header-height);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', sans-serif;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-base);
}

a {
  color: var(--color-primary-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  outline: 2px solid green;
  outline-offset: 2px;
}



/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Navigation barr */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  height: var(--header-height);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo {
    max-height: 32px;
  }
}

.nav-brand h2 {
  color: var(--color-primary-green);
  font-size: 1.4rem;
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
  .nav-brand h2 {
    font-size: 1.2rem;
  }
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-background-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    display: flex;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    left: 0;
  }
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-primary-green);
}

.nav-link.active {
  color: var(--color-primary-green);
  font-weight: var(--font-weight-semibold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary-green);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.nav-link:focus {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-normal);
  border-radius: 1px;
}

/* Section Management - Fixed */
.main-content {
  min-height: calc(100vh - var(--header-height));
}

.section {
  padding: var(--space-xl) 0;
  opacity: 1;
  display: block;
}

/* Hide all sections by default except the first one */
.section:not(#home) {
  display: none;
}

.section.active {
  display: block !important;
  opacity: 1;
  background-color: #f7fdf7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
   font-family: 'Montserrat', sans-serif;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 44px;
  /* Accessibility - touch target */
  background: none;
}

.btn:focus {
  outline: 3px solid rgba(59, 122, 87, 0.4);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-primary-green);
  color: var(--color-soft-white);
  border-color: var(--color-primary-green);
}

.btn--primary:hover {
  background: var(--color-lite-button-hover);
  border-color: var(--color-lite-button-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary-green);
  border-color: var(--color-primary-green);
}

.btn--outline:hover {
  background: var(--color-primary-green);
  color: var(--color-soft-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* hero section landing page */

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-text h1 {
  color: var(--color-primary-green);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-left: auto;
}

/* Introduction Section */


.intro-section {
  padding: var(--space-2xl) 0;

}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  color: var(--color-primary-green);
}

.intro-text {
  color: var(--color-primary-green);
  font-weight: var(--font-weight-medium);
  font-style: italic;
}





.testimonial-card {
  background: var(--color-background-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary-green);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}



.testimonial-author p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
  margin: 0;
}



/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

.contact-info h2 {
  color: var(--color-primary-green);
}

.contact-info p {
  color: var(--color-text-secondary);
}

.contact-details {
  margin: var(--space-xl) 0;
}

.contact-item {
  margin-bottom: var(--space-md);
}

.contact-item strong {
  display: block;
  color: var(--color-primary-green);
  margin-bottom: var(--space-xs);
}

.contact-item a {
  font-size: 1.125rem;
}

.contact-info img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--color-background-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 122, 87, 0.2);
}

.contact-form h3 {
  color: var(--color-primary-green);
  text-align: center;
}


.testimonials-grid,
.pillars-grid,
.focus-areas-grid,
.plans-grid {
  grid-template-columns: 1fr;
}

.section {
  padding: var(--space-lg) 0;
}

.hero,
.intro-section,

.pillars-section,
.focus-areas-section,
.plans-hero {
  padding: var(--space-lg) 0;
}


@media (max-width: 480px) {
  :root {
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.5rem;
    --font-size-body: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .testimonial-card,
  .pillar-card,
  .focus-area-card,
  .plan-card {
    padding: var(--space-md);
  }

  .plan-header,
  .plan-content,
  .contact-form {
    padding: var(--space-md);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 235px; }

  .nav-brand h2 {
    font-size: 1.27rem;
  }
}




/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}



@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Section */
.approach {
  text-align: center;
  padding: 4rem 8%;
  background-color: #f7fdf7;
}

.approach h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.subtitle {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: #3a5132;
}

/* Features Grid - Default (Desktop) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  justify-content: center;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature p {
  font-size: 0.95rem;
  color: #3a5132;
}

.feature img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}

/* Tablet View */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Carousel */
@media (max-width: 768px) {
  .features {
    display: flex;                 /* Flexbox instead of grid */
    overflow-x: auto;              /* Horizontal scroll */
    scroll-snap-type: x mandatory; /* Snap effect */
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .feature {
    flex: 0 0 100%;                /* One card at a time */
    scroll-snap-align: center;     /* Snap to center */
    box-sizing: border-box;
  }

  .approach h2 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  /* Hide scrollbar */
  .features::-webkit-scrollbar {
    display: none;
  }
  .features {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
/* Dots - Mobile Only */
@media (max-width: 768px) {
  .sunit {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }

  .sunit button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }

  .sunit button.active {
    background: #333; /* Active dot color */
  }
}


.testimonials {
  padding: 4rem 8%;
  text-align: center;
  background: #f7fdf7;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subtitle {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: #3a5132;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards styling */
.testimonial-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card img {
  width: auto;
  height: auto;
  max-width: 225px;
  border-radius: 12px;
  margin: 0 auto 1.2rem;
  display: block;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.testimonial-card span {
  display: block;
  font-size: 0.9rem;
  color: #3a5132;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #3a5132;
  text-align: left;
}

/* ✅ Desktop */
@media (min-width: 1025px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ✅ Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile - Carousel */
@media (max-width: 768px) {
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    -webkit-overflow-scrolling: touch; /* smooth on iOS */
  }

  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    margin: 0 auto;
  }

  /* Hide scrollbar for a clean look */
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }
}

/* 
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
} */


.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #ccc; 
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.carousel-dots button.active {
  background-color: #21908d; 
  transform: scale(1.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}



.our-story {
  padding: 4rem 8%;
  background: #f7fdf7;
  width: 100%;
  /* Full width rectangle */
}

.our-story h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.our-story p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #3a5132;
}

.our-story strong {
  font-weight: 600;
  color: #23311e;
}

/* Responsive */
@media (max-width: 768px) {
  .our-story {
    padding: 2rem 5%;
  }

  .our-story h2 {
    font-size: 1.6rem;
  }

  .our-story p {
    font-size: 0.95rem;
  }
}


.founder-section {
  padding: 4rem 8%;
  background: #f7fdf7;
}

.founder-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.founder-text {
  flex: 1;
}

.founder-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3a5132;
}

.founder-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-text .credentials {
  font-size: 0.99rem;
  color: #3a5132;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.founder-text p {
  font-size: 1rem;
  color: #3a5132;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .founder-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    max-width: 220px;
  }

  .founder-text {
    text-align: center;
  }
}


.mustang-section {
  padding: 4rem 8%;
  background: #f7fdf7;
}

.mustang-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Grid for Why Us Cards */
.camaro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.charger-card {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth effect */
}

.charger-card:hover {
  transform: translateY(-8px); /* lift upward */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12); /* stronger shadow when lifted */
}


.charger-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.charger-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}



.supra-highlight {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
}

.supra-highlight strong {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
}

.ferrari-btn {
  display: inline-block;
  background: #3a5132;
  color: #fff;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1.2rem;
}

/* CTA Section */
.lamborghini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9f9;
  padding: 3rem 8%;
  gap: 2rem;
  margin-top: 3rem;
}

.lamborghini-text {
  flex: 1;
}

.lamborghini-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.lamborghini-text p {
  font-size: 1rem;
  color: #3a5132;
}

.lamborghini-image {
  flex: 1;
}

.lamborghini-image img {
  width: 100%;
  border-radius: 10px;
}


/* Responsive */
@media (max-width: 992px) {
  .camaro-grid {
    grid-template-columns: 1fr;
  }

  .lamborghini-cta {
    flex-direction: column;
    text-align: center;
  }

  .lamborghini-image img {
    max-width: 400px;
  }
}

.interest-btn {
  display: inline-block;
  background: #3a5132;
  color: #fff;
  padding: 0.6rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  /* transition: all 0.3s ease;  <-- remove this */
}




.feature img {
  width: auto;
  height: auto;
  object-fit: contain; /* show whole image */
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #f7fdf7; /* optional: adds background behind transparent space */
}


/* ===============================
   Pillars & Focus Areas - Styling
   =============================== */

/* Section Titles */
.pillars-section,
.focus-areas-section {
  background: #f7fdf7;
  padding: 40px 20px;
  text-align: center;
}

.pillars-section h2,
.focus-areas-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #a3a09a;
  text-underline-offset: 6px;
}

/* Grid Layout - 3 cards per row */
.pillars-grid,
.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Common Card Styling */
.pillar-card,
.focus-area-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card Images */
.pillar-card img,
.focus-area-card img {
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Hover Effect */
.pillar-card:hover,
.focus-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Headings */
.pillar-card h3,
.focus-area-card h3 {
  font-size: 1.15rem;
  margin: 10px 0;
  color: #3a5132;
}

.focus-area-card h3 {
  color: #3a5132;
}

/* Paragraphs */
.pillar-card p,
.focus-area-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3a5132;
  margin-top: auto;
  /* pushes text evenly if content is shorter */
}

/* ===============================
   Responsive Adjustments
   =============================== */

/* Tablets - 2 per row */
@media (max-width: 992px) {

  .pillars-grid,
  .focus-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-section h2,
  .focus-areas-section h2 {
    font-size: 1.5rem;
  }
}

/* Mobile - 1 per row */
@media (max-width: 600px) {

  .pillars-grid,
  .focus-areas-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .focus-area-card {
    padding: 15px;
  }

  .pillar-card img,
  .focus-area-card img {
    height:auto;
  }
}

.services {
  padding: 4rem 5%;
  text-align: center;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.card img {
  width: 160px;
  margin-bottom: 15px;
}

/* 📱 Mobile Carousel */
@media (max-width: 768px) {
  .services .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .services .carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }

  .services .card {
    min-width: 100%;
    flex-shrink: 0;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 8px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s;
    cursor: pointer;
  }

  .carousel-dot.active {
    background: #21908d;
  }
}

/* 💻 Desktop (show all cards side by side) */
@media (min-width: 769px) {
  .services .carousel-track {
    display: flex;
    justify-content: center;
    gap: 2rem;
    transform: none !important;
  }

  .services .card {
    min-width: 0;
    flex: 1;
    margin: 0 1rem;
  }

  .carousel-dots {
    display: none;
  }
}


/* Footer */
.porsche-footer {
  font-size: 0.9rem;
  padding: 1.5rem 8%;
  border-top: 1px solid #ddd;
  color: #3a5132;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7fdf7;
  flex-wrap: wrap;
}

.porsche-footer .logo {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.porsche-footer a {
  color: #3a5132;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.porsche-footer a:hover {
  color: #3a5132;
}

/* Social Media Icons */
.footer-right a {
  margin-left: 12px;
  font-size: 1.5rem;
  color: #3a5132;
  transition: all 0.5s ease;
}

.footer-right a:hover {
  color: #3a8f60;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .porsche-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 1.35rem;
  }
}








/* program css */

/* Section Management - Fixed */
.main-content {
  min-height: calc(100vh - var(--header-height));
}

/* Hide all sections by default except the first one */
.section:not(#home) {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
}

/* Floating Button (Mobile Only) */
.floating-btn {
  position: fixed;
  bottom: -60px; /* hidden by default */
  left: 50%;
  transform: translateX(-50%);
  background: #3a5132;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: bottom 0.4s ease;
  z-index: 999;
}

/* Show button when active */
.floating-btn.show {
  bottom: 20px;
}

/* Mobile Only */
@media (min-width: 769px) {
  .floating-btn {
    display: none;
  }
}

.nav-social-mobile {
  display: none; /* Hidden by default */
  margin-top: auto;
  padding-bottom: 2rem;
  text-align: center;
}

.nav-social-mobile a {
  font-size: 1.8rem;
  color: var(--color-primary-green);
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.nav-social-mobile a:hover {
  color: #2a5a42;
}

@media (max-width: 768px) {
  .nav-social-mobile {
    display: block;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
  }
}
