/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


  .keyword {
    color: #2ecc71; /* your favorite green */
    font-weight: 600; /* emphasis */
    text-align: center;
  }

  .highlight-green {
  color: #22c55e; /* your favorite green */
}




/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17,17,17,0.85); /* semi-transparent dark bg */
  backdrop-filter: blur(10px);      /* modern frosted look */
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo {
  height: 60px; /* scalable */
  width: auto;
}

.company-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fafff7;
  letter-spacing: 0.5px;
}

/* Navbar */
.navbar .nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar .nav-list li a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-list li a:hover,
.navbar .nav-list li a:focus {
  color: #00ff88;
}

/* CTA Button */
.header-btn {
  background-color: #16a34a;
  color: #ffffff;
  border: 2px solid #00ff88;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
  transition: all 0.3s ease;
}

.header-btn:hover,
.header-btn:focus {
  background-color: #22c55e;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.8);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar {
    display: none; /* hidden by default on tablet/mobile */
    width: 100%;
  }

  .navbar.active {
    display: block;
    margin-top: 1rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .header-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}


/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100svh;

  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Video */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 20px;
  margin-top: 0; /* ✅ reset margin */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* ✅ vertically center content */
  height: 100%; /* ✅ center within hero height */
}


/* Headline */
.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #00ff88;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
  will-change: transform, opacity;
}

/* Paragraph */
.hero-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0 auto;
  letter-spacing: 0.5px;
  opacity: 0.9;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
  will-change: transform, opacity;
}

/* Highlight key words */
.highlight {
  color: #00ff88;
  font-weight: 700;
}

/* Hero Form Container */
.hero-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s;
  will-change: transform, opacity;
}

/* Email Input */
.hero-form input[type="email"] {
  height: 52px; /* consistent with button */
  padding: 0 1rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 400px; /* keep current */
}

/* Input Focus Effect */
.hero-form input[type="email"]:focus {
  border: 2px solid #00ff88;
  border-color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* CTA Button */
.hero-form .btn {
  height: 52px; /* matches input */
  background-color: #00ff88;
  color: #111;
  border: 2px solid #00ff88;
  padding: 0 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  min-width: 200px;  /* slightly shorter than input */
  max-width: 280px;  /* optional: keep it proportional on large screens */
}

/* Button Hover */
.hero-form .btn:hover ,
.hero-form .btn:focus{
  background-color: #111;
  color: #00ff88;
  border-color: #00ff88;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
  animation: pulse 1s infinite alternate;
  animation-delay: 0.2s;

}

/* Responsive: stack input + button on mobile */
@media (max-width: 600px) {
  .hero-form {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-form input[type="email"],
  .hero-form .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility: hidden label */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Pulse keyframes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    transform: scale(1.07);
  }
}

@media (min-width: 1200px) {
  .hero-content h1 {
    line-height: 1.3;       /* gives more breathing room between lines */
    letter-spacing: 0.5px;  /* subtle spacing for large text */
  }
}


/* Hero Section Mobile Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: clamp(80px, 12vh, 120px) 20px; /* more breathing room */
    text-align: center;                     /* center everything */
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 6vw, 2.8rem);   /* scale header on small screens */
    line-height: 1.2;
  }

  .hero-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
    max-width: 90%;                          /* prevent overflow */
    margin: 0 auto 20px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta .cta-btn {
    width: 80%;
    max-width: 280px;
    font-size: 1rem;
  }

  .hero-image {
    width: 100%;
    height: auto;
    margin-top: 24px;
  }
}


.services {
  background: rgba(0, 255, 136, 0.04); /* super light green tint */
  position: relative;
  overflow: hidden; /* keeps elements inside section */
  z-index: 1; /* ensure section is above bg */
  padding: 60px 0;
}

.services-header {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Service Section Header */
.services-header h2 {
  font-family: 'Space Grotesk', sans-serif; /* modern, bold font */
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;                    /* bold for emphasis */
  color: #111;                             /* dark text for contrast */
  text-align: center;                      /* centered in section */
  line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.5px;                 /* subtle tightening for pro look */
}

/* Service Section Subtitle / Paragraph */
.services-header p {
  font-family: 'Inter', sans-serif;        /* clean, highly readable font */
  font-size: clamp(1rem, 1.2vw, 1.125rem);  
  font-weight: 400;                        /* normal weight for balance */
  color: #444;                             /* softer gray for contrast */
  text-align: center;                      /* centered under title */
  max-width: 680px; /* slightly reduced */
  margin: 0 auto 24px auto; /* tighter bottom margin */           /* center and give bottom spacing */
  line-height: 1.65;                        /* comfortable spacing */
  opacity: 0.9;                            /* slight transparency for softer feel */
}


/* Services Header Animation */
.services-header h2,
.services-header p {
  opacity: 0;                         /* hidden by default */
  transform: translateY(30px);        /* start slightly lower */
  transition: opacity 0.8s ease,
              transform 0.8s ease;
}

/* Visible state */
.services-header h2.is-visible,
.services-header p.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Service Cards Layout */
/* Service Cards Layout */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center; /* center cards in row */
  margin-top: 30px;
}

/* Individual Card */
.card {
  background: #fffcfc;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left; /* align text left */
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: default;
  max-width: 300px;   /* ⬅️ reduce card width */
  flex: 1 1 300px;    /* allow responsive wrapping */
  opacity: 0;                         /* hidden by default */
  transform: translateY(40px);        /* start slightly lower */
  transition: opacity 0.7s ease,
              transform 0.7s ease;
}


/* Mobile: 2 cards per row in Services */
@media (max-width: 768px) {
  .service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal-width columns */
    gap: 16px; /* reduce gap slightly for smaller screen */
    justify-items: center;
  }

  .card {
    max-width: 100%;
    width: 100%;
    padding: 20px 15px;
  }
}


.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effect */
.card:hover {
  transform: translateY(-8px);
  border-color: #00ff88;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.25);
}

/* Card Icon */
.card-icon {
  margin-bottom: 20px;
  text-align: center; /* keep icon centered */
}
.card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0,255,136,0.5));
}

/* Card Title */
.service-cards .card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);   /* responsive ~20–24px */
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: -0.2px;                   /* modern kerning */
}

.service-cards .card p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1rem);   /* responsive ~15–16px */
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  opacity: 0.95;
  margin: 0;
  max-width: 100%;                          /* full width inside card */
}



/* Service Card Icon Styling - Professional 2025 Standard */
/* Service Card Icon Styling - Professional 2025 Standard */
/* Service Card Icon Styling - Professional 2025 Standard */
.service-cards .card-icon .icon {
  width: 50px;                 /* larger for visual impact */
  height: 50px;
  stroke: #00ff88;
            /* brand green accent */
  stroke-width: 3;             /* heavier stroke for visibility */
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  margin-bottom: 16px;         /* space between icon and title */
  background: none !important; /* remove any grey/colored background */
  transition: transform 3s ease, stroke 0.3s ease; /* smooth hover effects */
}

/* Hover effect - 360° rotation when card is hovered */
.service-cards .card:hover .card-icon .icon {
  stroke: #22c55e;             /* slightly lighter green on hover */
}



/* Service Section CTA Button */
.services-cta {
  text-align: center;       /* center the button horizontally */
  margin-top: 60px;
  margin-bottom: 10px;        /* space from the cards */
}

.services-cta .cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;            /* comfortable padding */
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #111;                       /* dark text */
  background-color:#00ff88;         /* light grey background */
  border: 3px solid #00ff88;         /* green border for branding */
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
 
}

/* Hover Effect */
.services-cta .cta-btn:hover {
    /* green border for branding */
  box-shadow: 0 0 10px rgba(32, 51, 42, 0.6); /* green glow */
  transform: translateY(-2px);  
  transition: all 0.3s ease;                  /* smooth effect */
      /* subtle lift */
}



/* WHY CHOOSE US */
.why-choose {
  background: rgba(0,255,136,0.03);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}
.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header */
.why-choose-header {
  text-align: center;
  margin-bottom: 48px;
}
.why-choose-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(.2,.9,.2,1);
}


.why-choose-header p.why-choose-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  color: #444;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(.2,.9,.2,1);
}

/* cards grid */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 18px;
  align-items: start;
}

.why-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(16,20,18,0.04);
  border: 1px solid rgba(38, 240, 142, 0.485);
  text-align: left;
  min-height: 280px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 340px;
  flex: 1 1 300px;
  z-index: 10;

  /* hidden initially */
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    transform 0.5s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    opacity 0.6s ease-in-out;
}

/* Reveal on scroll */
.why-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1); /* ✅ reset transform */
}

/* Hover + Focus */
.why-card:hover,
.why-card:focus {
  transform: translateY(-8px) scale(1);
  border-color: #00ff88;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.25);
}


/* icon */
.why-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0,255,136,0.06);
  align-self: start;
}
.why-icon .icon {
  width: 50px;
  height: 50px;
  stroke: #00ff88;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* title + text */
.why-card h4 {
  font-family: 'Space Grotesk', sans-serif; /* ✅ unify with section headers */
  font-size: clamp(1.125rem, 2vw, 1.375rem); /* ✅ 18–22px responsive */
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  margin: 0 0 8px;        /* ✅ consistent with 8px system */
  letter-spacing: -0.2px;
}

.why-card p {
  font-family: 'Inter', sans-serif; /* ✅ consistent with other paragraphs */
  font-size: clamp(0.95rem, 1vw, 1.05rem); /* ✅ 15–17px responsive */
  font-weight: 400;
  line-height: 1.6;        /* ✅ perfect readability */
  color: #444;
  margin: 0;              /* no top margin, h4 already gives space */
}

/* visible state for animation */
/* visible state when element has class */
.why-choose-header h2.is-visible,
.why-choose-header p.why-choose-sub.is-visible,
.why-card.is-visible {
  opacity: 1;
}

.why-choose-header h2.is-visible { transition-delay: 0.3s; }
.why-choose-header p.why-choose-sub.is-visible { transition-delay: 0.6s; }


/* stagger */
.why-card[data-index="0"] { transition-delay: 0.6s; }
.why-card[data-index="1"] { transition-delay: 0.9s; }
.why-card[data-index="2"] { transition-delay: 1.2s; }

/* CTA button */
.why-choose-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.why-choose-cta .cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #111;
  background-color: #00ff88;
  border: 3px solid #00ff88;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.why-choose-cta .cta-btn:hover {
  color: #111;
  border: 3px solid #00ff88;
  box-shadow: 0 0 10px rgba(32, 51, 42, 0.6);
  transform: translateY(-2px);
}

/* background effects */
.why-choose::before,
.why-choose::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0,255,136,0.08);
  filter: blur(100px);
  animation: floaty 8s ease-in-out infinite alternate;
  z-index: 0;
}
.why-choose::before { top: 10%; left: 15%; }
.why-choose::after { bottom: 15%; right: 20%; }
@keyframes floaty {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(20px) translateX(10px); }
}
/* subtle grid overlay */
.why-choose::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0,255,136,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* responsive */
@media (max-width: 600px) {
  .why-icon { width: 48px; height: 48px; }
  .why-icon .icon { width: 24px; height: 24px; }
  .why-card { padding: 18px; min-height: unset; }
}
@media (min-width: 1400px) {
  .why-cards { gap: 24px 32px; }
}



/* Section heading */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px; /* spacing below header/p */
}

.section-header h2 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: black;
}

.section-header p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}




/* PROCESS SECTION ANIMATIONS */

/* hidden state */
.process-step {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* alternate directions */
.process-step:nth-child(odd) {
  transform: translateX(-60px);
}
.process-step:nth-child(even) {
  transform: translateX(60px);
}

/* visible state */
.process-step.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* animate circles */
.process-step .process-circle {
  transform: scale(0.7);
  transition: transform 0.6s ease;
}
.process-step.is-visible .process-circle {
  transform: scale(1);
}

.process-step:nth-child(1) { transition-delay: 0.2s; }
.process-step:nth-child(2) { transition-delay: 0.6s; }
.process-step:nth-child(3) { transition-delay: 0.8s; }

/* PROCESS SECTION HEADER */
.process-title,
.process-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-title.is-visible,
.process-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.process-title { transition-delay: 0.2s; }
.process-intro { transition-delay: 0.4s; }

  .about {
   
    overflow: hidden;   /* prevent them from going outside */
    background: #f9fafb; /* lighter background */
    padding: 4rem 2rem;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* LEFT SIDE (Values + Portfolio) */

  /* Core Values */
  /* Value Cards Container */
  .values {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 per row on desktop */
    gap: 20px;
    margin-bottom: 30px;
  }

  /* Each Value Card */
  .value-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Header (icon + title) */
.value-header {
  font-family: 'Space Grotesk', sans-serif;          /* ✅ unify with all card headers */
  font-size: clamp(1.125rem, 2vw, 1.375rem);         /* ✅ responsive ~18–22px */
  font-weight: 600;
  line-height: 1.3;                                  /* ✅ same rhythm as Why Choose Us cards */
  color: #111;                                       /* ✅ consistent dark tone */
  margin-bottom: 8px;                                /* ✅ 8px spacing system */
  letter-spacing: -0.2px;                            /* ✅ modern kerning */
}

.value-text {
  font-family: 'Inter', sans-serif;                  /* ✅ unify with all body text */
  font-size: clamp(0.95rem, 1vw, 1.05rem);           /* ✅ responsive ~15–17px */
  font-weight: 400;
  line-height: 1.6;                                  /* ✅ consistent with other cards */
  color: #444;                                       /* ✅ softer than header */
  margin: 0;                                         /* ✅ avoid extra stacking */
  max-width: 100%;                                   /* ✅ clean inside cards */
  opacity: 1;                                        /* ✅ keep visible */
  transform: none;                                   /* ✅ reset animations */
}


  /* Hover Effect */
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }

  /* Responsive: stack into 1 column on small screens */
  @media (max-width: 768px) {
    .values {
      grid-template-columns: 1fr;
    }
  }


  .value-card:hover {
    border-color: #00ff88;
      box-shadow: 0 0 18px rgba(22, 163, 74, 0.55); /* ✅ stronger green glow */
    transform: translateY(-8px) scale(1.02);       /* ✅ lift + slight zoom */
  }

  /* Header with Arrow */

  /* Expand Arrow */
  .expand-arrow {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    cursor: pointer;
    color: #16a34a;
    font-weight: 600;
    transition: transform 0.3s ease;
  }

  .expand-arrow:hover {
    transform: scale(1.1);
  }

  /* Slider Container */
  .portfolio-slider {
    display: none;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  }

  .portfolio-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  /* Each Slide */
  .portfolio-slider .slide {
    position: relative;
    flex: 0 0 70%; /* Show ~80% of slide width */
    max-width: 600px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #111; /* fallback background */
    transition: transform 0.3s ease;
  }

  .portfolio-slider .slide:hover {
    transform: translateY(-5px);
  }

  /* Slide Image */
  .portfolio-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Caption Overlay */
  .portfolio-slider .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
  }

  .portfolio-slider .caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .portfolio-slider .caption p {
    font-size: 1rem;
    opacity: 0.9;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .portfolio-slider .slide {
      flex: 0 0 95%; /* Show full width on mobile */
      height: 350px;
    }
    .portfolio-slider .caption h3 {
      font-size: 1.2rem;
    }
    .portfolio-slider .caption p {
      font-size: 0.9rem;
    }
  }


  /* RIGHT SIDE (About Content) */
.about-content h2 {
  font-family: 'Space Grotesk', sans-serif;    /* ✅ unify with section headers */
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);     /* ✅ same system as other h2s */
  font-weight: 700;
  line-height: 1.2;
  color: #111;                                /* ✅ consistent dark header color */
  margin-bottom: 16px;                        /* ✅ align with other sections */
  letter-spacing: -0.5px;                     /* ✅ pro kerning */
}

.about-content p {
  font-family: 'Inter', sans-serif;           /* ✅ unify with all body text */
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);  /* ✅ matches service/why choose paragraphs */
  font-weight: 400;
  line-height: 1.6;                           /* ✅ optimal readability */
  color: #444;
  max-width: 65ch;                            /* ✅ keeps measure readable */
  margin-bottom: 18px;                        /* ✅ balanced spacing */
}


  .about-cta {
    margin-top: 28px;          /* space above button */
    text-align: center;        /* center under paragraph */
  }

  .about-cta .cta-btn {
  display: inline-block;
      padding: 0.85rem 2rem;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      color: #111;
      background-color: #00ff88;
      border: 3px solid #00ff88;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.4s ease;
      cursor: pointer;
  }

  .about-cta .cta-btn:hover {
  border-color: #00ff88;
    box-shadow: 0 0 18px rgba(22, 163, 74, 0.55); /* ✅ stronger green glow */
    transform: translateY(-8px) scale(1.02);       /* ✅ lift + slight zoom */
  }


  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* RESPONSIVE */
  @media (min-width: 601px) and (max-width: 900px) {
    .about-container {
      grid-template-columns: 1fr 1fr; /* Keep 2 columns for tablets */
    }
    .portfolio-grid {
      grid-template-columns: 1fr 1fr;
    }
    .values {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .about-container {
      grid-template-columns: 1fr; /* Stack only on small phones */
    }
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
    .values {
      grid-template-columns: 1fr;
    }
  }

  /* Initial hidden state */
  .about-content h2,
  .about-content p,
  .about-highlights .highlight,
  .about-right .value-card,
  .about-right .expand-arrow,
  .about-right .portfolio-filters,
  .about-right .portfolio-grid .project-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
  }

  /* Reveal state */
  .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* Extra polish for highlights */
  .about-highlights .highlight {
    transform: scale(0.8);
  }
  .about-highlights .highlight.reveal {
    transform: scale(1);
  }

.support-packages {
  padding: clamp(100px, 12vh, 160px) 24px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(0, 255, 136, 0.05) 100%);
}

/* Section Header */
.support-packages .section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.support-packages .section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3rem); /* bigger header */
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
  line-height: 1.2;
}

.support-packages .section-header p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.125rem, 1.6vw, 1.25rem); /* 18px–20px */
  color: #444;
  line-height: 1.75;
}

/* Roadmap container */
.package-roadmap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
  border-left: 4px solid rgba(0, 255, 136, 0.5);
  padding-left: 50px;
}

/* Individual step */
.package-step {
  position: relative;
  margin-bottom: 60px;
}

.package-step:last-child {
  margin-bottom: 0;
}

/* Step icons */
.package-step .step-icon {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #00ff88;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.6);
}

/* Step content */
.package-step .step-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.package-step .step-content p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: #555;
  line-height: 1.7;
}

/* Mini CTA inside Custom Coding */
.package-step .mini-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #00c76f;
  border: 1px solid #00ff88;
  padding: 10px 16px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.package-step .mini-cta:hover {
  background: #00ff88;
  color: #fff;
}

/* Contact form */
.support-cta {
  text-align: center;
  margin-top: 40px;
}

.support-cta form {
  display: flex;
  justify-content: center;
  align-items: center; /* ✅ centers label with select & button */
  gap: 14px;
  flex-wrap: wrap;

  max-width: 720px;
  margin: 0 auto;

  background: #f3f7f5;
  padding: 20px 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


/* Label */
.support-cta label {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-right: 8px;
  white-space: nowrap;
}

/* Inputs & Select */
.support-cta select {
  flex: 2; /* take up more width */
  min-width: 260px; /* wider dropdown */
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #3cd998;
}

/* Button */
.support-cta button {
  flex: 1; /* allow button to stretch */
  min-width: 200px; /* wider button */
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;

  background: #00ff88;
  color: #111;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.support-cta button:hover {
  background: #00c76f;
  transform: translateY(-2px);
}



.process-section {
  padding: clamp(80px, 10vh, 140px) 24px;  /* ✅ adaptive vertical rhythm */
  background-color: #f9f9f9;
  color: #111;
}

.process-container {
  max-width: 1100px;   /* ✅ balanced max-width for readability */
  margin: 0 auto;
  text-align: center;
}

/* Section Title */
.process-title {
  font-family: 'Space Grotesk', sans-serif; /* ✅ unify with section headers */
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);  /* ✅ consistent with Why Choose Us / Services */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #111;
  letter-spacing: -0.5px;                   /* ✅ modern kerning */
}

/* Section Intro Text */
.process-intro {
  font-family: 'Inter', sans-serif;         /* ✅ unify with paragraphs */
  font-size: clamp(1rem, 1.2vw, 1.125rem);  /* ✅ consistent with sections */
  font-weight: 400;
  color: #444;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.7;                         /* ✅ readable and breathable */
  opacity: 0.9;                             /* ✅ soft contrast */
}


.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px; /* adjust since circles get bigger */
  left: 0;
  right: 0;
  height: 5px;
  background-color: #00ff88;
  z-index: 1;
}

.process-step {
  position: relative;
  width: 32%; /* slightly bigger than 30% */
  text-align: left;
  z-index: 2;
  padding: 0 16px; /* more padding between steps */
}

.process-circle {
  width: 64px;   /* bigger circles */
  height: 64px;
  background-color: #00ff88;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem; /* larger number */
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.process-text h3 {
  font-family: 'Space Grotesk', sans-serif;     /* ✅ unify with other section/card headers */
  font-size: clamp(1.25rem, 2vw, 1.5rem);       /* ✅ ~20–24px, matches service cards */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;                       /* ✅ standardized spacing rhythm */
  color: #111;
  letter-spacing: -0.2px;                       /* ✅ modern kerning */
}

.process-text p {
  font-family: 'Inter', sans-serif;             /* ✅ unify with body text everywhere */
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);    /* ✅ ~15–17px, matches card paragraphs */
  font-weight: 400;
  line-height: 1.6;                             /* ✅ ideal readability */
  color: #444;
  margin: 0;                                    /* ✅ avoid double spacing */
  max-width: 100%;                              /* ✅ clean alignment inside container */
}


/* Responsive */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    width: 100%;
    margin-bottom: 50px; /* more spacing since everything’s bigger */
  }

  .process-timeline::before {
    top: 0;
    left: 32px; /* line shifts to match bigger circles */
    width: 5px;
    height: 100%;
  }

  .process-circle {
    margin-bottom: 1rem;
  }
}


/* Step icons */
.package-step .step-icon {
  position: absolute;
  left: -45px; /* push further left for more separation */
  top: 0;
  width: 45px;   /* bigger circle */
  height: 45px;
  background: #00ff88; /* keep your green */
  color: #111;   /* black icons/text inside */
  font-size: 1.2rem; /* slightly bigger icon size */
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

/* Add extra spacing between icon and text block */
.package-step .step-content {
  margin-left: 15px; /* pushes text away from circle */
}

.package-step .step-icon i {
  font-size: 1.2rem;
  color: #111; /* black */
}
.package-step .step-icon i {
  width: 20px;
  height: 20px;
  stroke: #111; /* black */
}

.step-icon i {
  font-size: 20px;
  color: #111; /* black */
}


/* ============================
   Improved Mobile Workflow Layout
   ============================ */
@media (max-width: 768px) {
  /* Give header more breathing room */
  .process-section {
    padding-top: 120px; /* ⬆️ more top spacing */
    padding-bottom: 80px;
  }

  /* Stack steps as clean "cards" instead of a messy vertical timeline */
  .process-timeline {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  /* Replace horizontal line with a subtle vertical connector */
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 120px);
    background-color: #00ff88;
    z-index: 1;
    opacity: 0.3; /* softer line for elegance */
  }

  .process-step {
    position: relative;
    width: 85%; /* narrower for centered column */
    background: #fff;
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 45px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 2;
  }

  /* Center the circles above each card */
  .process-circle {
    margin: 0 auto 16px auto;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  /* Adjust text */
  .process-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .process-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}


/* ===== SUPPORT PACKAGES ANIMATIONS ===== */

/* hidden state */
.section-header,
.package-step,
.support-cta {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* visible state */
.section-header.is-visible,
.package-step.is-visible,
.support-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger effect for steps */
.package-step:nth-child(1) { transition-delay: 0.2s; }
.package-step:nth-child(2) { transition-delay: 0.4s; }
.package-step:nth-child(3) { transition-delay: 0.6s; }
.package-step:nth-child(4) { transition-delay: 0.8s; }

/* CTA fades in last */
.support-cta { transition-delay: 1s; }


/* Contact Section Base */
.contact {
  background: linear-gradient(135deg, #0f172a, #1e293b); /* deep navy gradient */
  padding: clamp(70px, 12vh, 120px) 40px;
  display: flex;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  color: #f3f4f6;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay effect */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.15), transparent 60%);
}

/* Container */
.contact-container {
  display: flex;
  justify-content: space-between; /* left and right columns */
  align-items: flex-start; /* align to top, not middle */
  max-width: 1200px;
  width: 100%;
  gap: 80px; /* space between left text and right form */
  position: relative;
  z-index: 2;
  margin: 0 auto; /* center container in section */
}


/* Left Column */
.contact-text {
  flex: 1;
  min-width: 300px;
}

.contact-heading {
  font-family: 'Clash Display', 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color:#f9fafb;
}

.contact-subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #d1d5db;
  line-height: 1.8;
  max-width: 520px;
}

/* Right Column: Glass Form */
.contact-form {
  flex: 1;
  min-width: 340px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  margin-left: auto; /* new: push form toward the right edge */
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.25);
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.btn-submit {
  background: #00ff88;
  color: #0f172a;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #00c76f;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    padding: 28px;
  }
}


/* Make the dropdown options text black */
.contact-form select option {
  color: #000;             /* Black text */
  background-color: #fff;  /* White background for options */
}

.label-typewriter {
  position: relative;
  display: inline-block;
  color: #fff; /* label color */
}

/* Cursor pseudo-element */
.label-typewriter::after {
  content: "";
  position: absolute;
  right: -2px; /* just outside the label */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #00ff88;
  animation: blink 0.7s step-start infinite;
  opacity: 1;
}

/* Stop blinking and fade out after typing */
.label-typewriter.finished::after {
  animation: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Optional blinking effect */
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}




/* ===========================
   FOOTER STYLING
=========================== */
.footer {
  background-color: #f0fff5; /* Mint Green + Light Gray */
  color: #333;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ensures top alignment */
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* ---------- LEFT COLUMN (Logo + Socials) ---------- */
.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;  /* stack logo + socials vertically */
  align-items: flex-start; /* keep them left-aligned */
  text-align: left;
}

.footer-brand .logo {
  width: 220px;
  height: auto;
  margin-bottom: 20px; /* space between logo and socials */
  margin-top: -20px;   /* optional: adjust upward if needed */
}

.footer-brand .socials {
  display: flex;
  justify-content: flex-start; /* centers horizontally */
  gap: 20px;
  width: 100%; /* make it span full width of parent */
  margin-left: 40px; /* fine-tune: increase or decrease for exact position */
}


.footer-brand .social-icon {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.footer-brand .social-icon:hover {
  color: #00b386; /* accent green on hover */
}


/* ---------- CENTER + RIGHT COLUMNS ---------- */
.footer-links,
.footer-services {
  flex: 1;
}

.footer h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #00b386; /* Accent heading */
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #00b386;
}

/* ---------- BOTTOM BAR ---------- */
.footer-bottom {
  
  border-top: 1px solid rgba(0, 179, 134, 0.3);
  padding-top: 200px;
  font-size: 1.1rem;
  color: #666;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-services,
  .footer-links {
    margin-top: 30px;
  }
}



/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  /* ================= ABOUT SECTION ================= */
  .about {
    padding-top: clamp(100px, 12vh, 160px); /* more breathing room */
  }

  .value-cards {
    flex-direction: column; /* stack cards vertically on mobile */
    gap: 15px;
  }

  .value-card {
    width: 100%; /* full width on mobile */
  }

  /* ================= PORTFOLIO ================= */
  .portfolio-slider {
    flex-direction: column;
    gap: 15px;
  }

  .project-card {
    width: 100%;
  }

  .portfolio-filters {
    flex-direction: column;
    gap: 10px;
  }

  /* ================= SERVICES ================= */
  .service-cards {
    flex-direction: column;
    gap: 15px;
  }

  /* ================= PROCESS ================= */
  .process-steps {
    flex-direction: column;
    gap: 15px;
  }

  /* ================= SUPPORT PACKAGES ================= */
  .support-packages .package-step {
    width: 100%;
  }

  /* ================= CONTACT ================= */
  .contact-form {
    width: 100%;
    padding: 10px;
  }

  /* General text & spacing adjustments */
  h2, p {
    font-size: 1rem; /* adjust for small screens */
  }

  /* Reduce large margins/paddings on mobile */
  section {
    padding: 20px 10px;
  }
}







/* ===== Mobile nav styles ===== */
/* Hamburger button */
.menu-toggle {
  display: none; /* hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 1px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.menu-toggle .bar {
  display: block;
  width: 32px;
  height: 5px;
  background: #16a34a;      /* bright green (adjust to your brand shade) */
  margin: 3px 0;
  border-radius: 2px;
}

.menu-toggle:hover .bar {
  background: #22c55e;      /* lighter green on hover */
}


/* Mobile nav (hidden by default) */
/* ==== Mobile Nav (fixed version) ==== */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 2px solid #22c55e;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1200;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none; /* prevent invisible blocking */
  transition: max-height .36s ease, opacity .36s ease;
  border-radius: 0 0 12px 12px;

}

.mobile-nav.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.overlay {
  pointer-events: none; /* prevents blocking clicks */
}

/* mobile nav visible */
.mobile-nav.show {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto; /* re-enable interactions when open */
  display: block;
}

/* Mobile nav links */
.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .navbar { display: none; }  /* hide desktop nav */
  .header-btn { display: none; } /* hide desktop CTA */
  .menu-toggle { display: inline-flex; } /* show hamburger */
}



/* ==== Mobile Nav Styling ==== */


/* nav links */
.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #f9fafb; /* off-white for contrast */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* hover effect */
.mobile-nav a:hover {
  background: rgba(34, 197, 94, 0.15); /* subtle green glow */
  color: #22c55e;
  padding-left: 28px; /* smooth slide effect */
}

html {
  scroll-behavior: smooth;
}



@media (max-width: 768px) {
  .fade-in,
  .slide-in,
  .process-step,
  .why-card,
  .services-header h2,
  .services-header p,
  .about-header h2,
  .about-header p {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 992px) {
  .navbar {
    display: none;
    width: 100%;
  }
  .navbar.active {
    display: block;
    margin-top: 1rem;
  }
}


@media (max-width: 768px) {
  footer {
    display: none !important;
  }
}


@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;    /* stack text + form */
    gap: 30px;                 /* smaller spacing */
    align-items: center;       /* center everything */
    padding: 20px;
  }

  .contact-text {
    text-align: center;
  }

  .contact-heading {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .contact-subtext {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    max-width: 90%;            /* prevent overflow */
    margin: 0 auto;
  }

  .contact-form {
    width: 100%;
    min-width: auto;            /* remove min-width pushing form out */
    padding: 20px;
  }
}


@media (max-width: 768px) {
  .hero {
    padding: clamp(80px, 12vh, 120px) 20px; /* more breathing room */
    text-align: center;                     /* center everything */
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 6vw, 2.8rem);   /* scale header on small screens */
    line-height: 1.2;
  }

  .hero-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
    max-width: 90%;                          /* prevent overflow */
    margin: 0 auto 20px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta .cta-btn {
    width: 80%;
    max-width: 280px;
    font-size: 1rem;
  }

  .hero-image {
    width: 100%;
    height: auto;
    margin-top: 24px;
  }
}