
         :root {
        --background: #FFFFFF;
    --foreground: #0F1724;
    --border: #00000014;
    --input: #F7FFF9;
    --primary: #4CAF50;
    /* --primary: #00c444; */
    --primary-foreground: #FFFFFF;
    --secondary: #E9FBEF;
    --secondary-foreground: #0F1724;
    --muted: #F1F5F3;
    --muted-foreground: #6B7280;
    --success: #23A455;
    --success-foreground: #FFFFFF;
    --accent: #B5E71F;
    --accent-foreground: #0F1724;
    --destructive: #EF4444;
    --destructive-foreground: #FFFFFF;
    --warning: #F97316;
    --warning-foreground: #FFFFFF;
    --card: #FFFFFF;
    --card-foreground: #0F1724;
    --sidebar: #E9FBEF;
    --sidebar-foreground: #0F1724;
    --sidebar-primary: #7ED957;
    --sidebar-primary-foreground: #0F1724;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --font-family-body: 'Inter', 'Inter Fallback';
    
         }
         * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      font-family: var(--font-family-body);
      background-color: var(--background);
      color: var(--foreground);
      -webkit-font-smoothing: antialiased;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .container {
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
        
    }
    /* centered width wrapper for main blocks */
    .width-wrapper {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px; /* small side padding to prevent edge collision */
    }
    /* restore header columns inside the width wrapper: logo / nav / CTA */
    .header .width-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

      .faq .width-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* right side wrapper in header to keep nav and CTA together */
    .header-right { display: flex; align-items: center; gap: 60px; }
    .section {
      width: 100%;
      padding: 120px 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

     .section#about {
      padding: 80px 0px;
    }
    .section.bg-secondary {

    /* Reveal helpers for scroll animations (initial hidden state) */
    .reveal {
      opacity: 0;
      transform: translateY(8px);
      will-change: transform, opacity;
    }
    .fade-in { opacity: 0; }
    .slide-up { transform: translateY(18px); opacity: 0; }
    .slide-left { transform: translateX(18px); opacity: 0; }
    .slide-right { transform: translateX(-18px); opacity: 0; }

    /* Ensure animated elements don't show a sudden jump before JS runs */
    .no-js .reveal, .no-js .fade-in, .no-js .slide-up, .no-js .slide-left, .no-js .slide-right {
      opacity: 1;
      transform: none;
    }
      background-color: var(--secondary);
    }
    h1, h2, h3, h4, p {
      margin: 0;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 24px;
      border-radius: 9999px; /* Pill shape requested */
      border: none;
      font-weight:400;
      font-size: 16px;
      cursor: pointer;
      white-space: nowrap;
      transition-duration:0.3s;
      font-family: var(--font-family-body);
    }
    .btn-primary {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }
    .btn-secondary {
      background-color: var(--background);
      color: var(--foreground);
      border: 1px solid var(--border);
    }
    .btn-ghost {
      background-color: transparent;
      color: var(--foreground);
    }
    .btn:focus { outline: none; }
    .btn-primary { border: none; }

    /* Hover / focus / active states for CTA buttons */
    /* .btn:hover { transform: translateY(-2px); } */
    .btn:active { transform: translateY(0); }
    .btn:focus-visible { box-shadow: 0 0 0 6px rgba(34,197,94,0.12); }

    .btn-primary:hover { background-color: #16A34A; }
    .btn-primary:active { background-color: var(--primary); }
    .btn-primary:focus-visible { box-shadow: 0 0 0 6px rgba(22,163,74,0.18); }

    .btn-secondary:hover {
      /* subtle green-tinted hover to match primary theme */
      background-color: rgba(76,175,80,0.08); /* --primary at low opacity */
      border-color: rgba(76,175,80,0.25);
      color: var(--foreground);
      box-shadow: 0 8px 20px rgba(15,23,36,0.06);
    }
    .btn-secondary:active {
      transform: translateY(0);
      background-color: rgba(22,163,74,0.12);
      border-color: rgba(22,163,74,0.28);
    }
    .btn-secondary:focus-visible { box-shadow: 0 0 0 6px rgba(76,175,80,0.12); }

    .btn-ghost:hover { background-color: rgba(0,0,0,0.04); color: var(--foreground); }
    .btn-ghost:focus-visible { box-shadow: 0 0 0 6px rgba(15,23,36,0.04); }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      width: 100%;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 80px;
      width: 100%;
      align-items: center;
    }
    .header {
      width: 100%;
      /* height: 80px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 0px;
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.9);
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(8px);
      transition-duration: 0.3s;
      
    }
    .logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--foreground);
    }
    
    .logo img {
        transition-duration: 0.3s;
    }

    .nav-links {
      display: flex;
      gap: 32px;
    }

    /* ensure header children order so the menu toggle can be visually placed at the right */
    .header .logo { order: 1; }
    .header .header-right { order: 2; display: flex; align-items: center; }
    .menu-toggle { order: 3; }

    /* Mobile menu toggle button (hidden on desktop) */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      color: var(--foreground);
    }

    /* Responsive: mobile breakpoint - collapse nav into a slide-down panel */
    @media (max-width: 900px) {
      .menu-toggle { display: inline-flex; margin-left: 8px; order: 3; }
      .header-right { gap: 12px; }
      .nav-links {
        display: block; /* switch to block for mobile stacking */
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--background);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(3,7,18,0.06);
        padding: 12px 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 280ms ease, opacity 200ms ease;
        text-align: center;
        opacity: 0 !important;
        z-index: 90;
        background: rgba(255, 255, 255,0.95);
        backdrop-filter: blur(18px);
      }
      .nav-links .nav-item { display: block; padding: 10px 0; }
      .header.nav-open .nav-links { max-height: 420px; opacity: 1 !important;    }
      /* keep header stacking context for absolute nav */
      .header { z-index: 70; }
    }
    
  
    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 600px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      background-color: var(--form-accent   );
      /* color: var(--accent-foreground); */
      border-radius: var(--radius-xl);
      font-size: 14px;
      font-weight: 600;
      width: fit-content;
    }
    h1 {
      font-size: 56px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--foreground);
    }
    .hero-text {
      font-size: 20px;
      line-height: 1.6;
      color: var(--muted-foreground);
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 16px;
    }
    .hero-image-container {
      width: 100%;
        height: 500px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background-color: var(--muted);
    }
    .hero-img {
        width: 100%;
        /* height: 100% */
      object-fit: cover;
    }
  
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center; /* horizontally center children */
    }
    .section-title {
      font-size: 40px;
      font-weight: 700;
      /* letter-spacing: -1px; */
      letter-spacing: 1px;
    }
    .section-sub {
      font-size: 18px;
      color: var(--muted-foreground);
      line-height: 1.6;
    }
      /* Utility: subdued/muted text used for notes, disclaimers */
    .muted {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-top:30px;
    }
    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px -10px rgba(0,0,0,0.1);
    }
    .icon-box {
      width: 48px;
      height: 48px;
      background-color: var(--primary);
      color: #FFFFFF;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }
    .feature-title {
      font-size: 20px;
      font-weight: 600;
    }
    .feature-desc {
      color: var(--muted-foreground);
      line-height: 1.5;
    }
  
    .split-image {
      width: 100%;
      height: 500px;
      border-radius: var(--radius-lg);
      object-fit: cover;
    }
    .split-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      justify-content: center;
    }
    /* Styles for hero stats */
    .stat-row {
      display: flex;
      gap: 48px;
      margin-top: 24px;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .stat-val {
      font-size: 32px;
      font-weight: 800;
      color: var(--foreground);
    }
    .stat-label {
      font-size: 14px;
      line-height:25px;
      color: var(--muted-foreground);
      font-weight: 500;
    }

    /* Timeline Process Styles */
    .process-list {
      display: flex;
      flex-direction: column;
      margin-top: 20px;
    }
    .process-item {
      display: flex;
      gap: 24px;
      position: relative;
      padding-bottom: 48px;
    }
    .process-item:last-child {
      padding-bottom: 0;
    }
    /* Timeline connector */
    .process-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 20px;
      top: 40px;
      bottom: 0;
      width: 2px;
      background-color: var(--border);
      transform: translateX(-50%);
    }
    .process-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--primary-foreground);
      font-weight: 700;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 2;
      position: relative;
      box-shadow: 0 0 0 4px var(--background);
    }
    .process-text {
      padding-top: 8px;
      font-size: 18px;
      font-weight: 600;
      color: var(--foreground);
    }
  
    .portfolio-wrapper {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
    .portfolio-slides {
      flex: 1;
      max-width: 1000px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      /* border:1px solid red; */
    }
    .portfolio-card {
      background: var(--card);
      
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .portfolio-image {
      width: 100%;
      height: auto;
      background: var(--muted);
      border-radius: var(--radius-lg);
      display:table;
      overflow: hidden;
    }
    .portfolio-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .portfolio-caption {
      /* padding: 16px 20px 20px; */
      padding-top:25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-size: 15px;
    }
    .portfolio-address {
      font-weight: 600;
      color: var(--card-foreground);
    }
    .portfolio-city {
      color: var(--muted-foreground);
      white-space: nowrap;
    }
    .portfolio-arrow {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 2px solid var(--primary); /* Greenish border for arrows */
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary); /* Green color */
      flex-shrink: 0;
      cursor: pointer;
      background: transparent;
      transition: background-color 0.2s, color 0.2s;
    }
    .portfolio-arrow:hover {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }
    .portfolio-dots {
      /* margin-top: 24px; */
      display: flex;
      gap: 8px;
      justify-content: center;
    }
    .portfolio-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: transparent;
      border: 1px solid var(--primary); /* Greenish border for bullets */
      cursor: pointer;
    }
    .portfolio-dot.active {
      background: var(--primary);
      width: 28px;
    }
  .footer {
      /* background-color: var(--secondary); */
      border-top: none;
      /* padding: 0 0 10px; */
      width: 100%;
      margin-top: 0;
    }
    .footer-cta {
      width: 100%;
      padding: 70px 0px;
      background-color: var(--primary);
      color: var(--primary-foreground);
      display: flex;
      justify-content: center;
    }


    .footer-cta .width-wrapper {
       display: flex;
       justify-content: center;
    }

    .footer-cta-inner {
      width: 100%;
      max-width: 1250px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .footer-cta-text {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 640px;
    }
    .footer-cta-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
      margin-left: auto;     /* push actions to the right */
      align-self: center;    /* center vertically within .footer-cta-inner */
    }

    /* ensure CTA actions stack nicely on small screens */
    @media (max-width: 640px) {
      .footer-cta-inner { flex-direction: column; align-items: stretch; gap: 16px; }
      .footer-cta-actions { margin-left: 0; justify-content: center; }
      .footer-cta-text { text-align: center; max-width: 100%; }
    }
    .footer-contact {
      width: 100%;
      /* padding: 72px 80px 40px; */
      display: flex;
      justify-content: center;
      border-bottom: 1px solid var(--border);
      background-color: transparent;
      
    }
    .footer-contact-inner {
      width: 100%;
      max-width: 1440px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: flex-start;
    }
    .footer-grid {
      display: grid;
      gap: 80px;
      margin: 0px 0 30px 0;
      background-color: transparent;

       display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px; 
     
      /* removed top border to avoid extra line above footer */
    }
    .footer-brand {
      display: flex;
      flex-direction:row;
      gap: 15px;
      gap: 20px;
        /* align-items: flex-start; */
      
    }

    footer a  { transition-duration:0.3s; }
    .footer-desc {
      color: var(--muted-foreground);
      line-height: 1.8;
      /* max-width: 300px; */
      font-size:13px;
    }
    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-col.menu {
      display: flex;
      flex-direction:row;
      gap: 25px;
      justify-content: right;
    }

    .footer-col.menu a {
   color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    transition-duration: 0.3s;

    }

    .footer-sitemap {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 4px;
    }
    .footer-sitemap a {
      color: var(--muted-foreground);
      font-size: 14px;
      text-decoration: none;
    }
    .footer-sitemap a:hover {
      color: var(--foreground);
      text-decoration: underline;
    }
    .footer-heading {
      font-weight: 600;
      font-size: 16px;
    }
    .footer-link {
      color: var(--muted-foreground);
      font-size: 14px;
      cursor: pointer;
      display:flex;
      flex-direction: row;
        gap:10px;
    }

    .footer-link:hover {
      color: var(--foreground);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top:20px;
      
      border-top: 1px solid var(--border);
      color: var(--muted-foreground);
      font-size: 14px;
      background-color: transparent;
      flex-wrap: wrap;
       display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px; 

    }

    .footer-bottom div.inner {
        display: flex;
        flex-direction: row;
        gap:20px;
    }
    .footer-bottom div.inner:last-child {
      justify-self: end;
}

    /* Scroll-to-top button styles */
    .scroll-top {
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      /* box-shadow: 0 8px 20px rgba(3,7,18,0.08); */
      transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
      opacity: 1;
      justify-self: end;
      margin-top:10px;
    }
    .scroll-top:hover { box-shadow: 0 14px 30px rgba(3,7,18,0.12); }
    .scroll-top:focus-visible { outline: none; box-shadow: 0 0 0 6px rgba(76,175,80,0.12); }
    @media (max-width: 640px) {
      .scroll-top { width:40px; height:40px; }
    }

    .footer-bottom p {

      font-size: 13px;
    /* margin:10px 0px; */
    }

    .footer-bottom a {
         border-bottom:1px solid var(--border);
         padding-bottom:2px;
     }   
    
    .footer-bottom .copyright { color: var(--muted-foreground); }
    .footer-bottom .social-icons { display: flex; gap: 12px; align-items: center; }
    .footer-bottom a { color: inherit; text-decoration: none; }
    .footer-bottom a:hover { color: var(--foreground); }

    @media (min-width: 1024px) {
      /* .footer-bottom { padding: 40px 80px 0; } */
    }
    @media (max-width: 768px) {
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
    .social-icons {
      display: flex;
      gap: 16px;
    }
    /* Portfolio styles moved to id="portfolio-styles" */

    .cookie-popup {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: calc(100% - 48px);
      max-width: 400px;
      background-color: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }
    .cookie-header {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 16px;
      color: var(--foreground);
    }
    .cookie-text {
      font-size: 14px;
      color: var(--muted-foreground);
      line-height: 1.5;
    }
    .cookie-actions {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .cookie-btn {
      flex: 1;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px; /* Updated to pill shape */
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
    }
    .cookie-accept {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }
    .cookie-decline {
      background-color: var(--background);
      border: 1px solid var(--border);
      color: var(--foreground);
    }
    /* utility classes extracted from inline styles */
    .icon-sm { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; margin-right: 8px; }
    .icon-md { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; margin-right: 8px; }
    .icon-lg { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; margin-right: 8px; }
    .iconify-18 { font-size: 18px; }
    .iconify-20 { font-size: 20px; }
    .iconify-24 { font-size: 24px; }
    .img-cover-block { width: 100%; height: 100%; object-fit: cover; display: block; }
    .stat-row-inline { 
        /* margin-top: 20px; gap: 32px; flex-wrap: nowrap; display: flex;  */
        display:grid;
       grid-template-columns: repeat(2, minmax(0, 1fr)); 
        gap:32px;
    }
    .stat-row-inline .stat-item {
    }
    .hero-text-large { font-size: 18px; }
    .input-box { height: 44px; border-radius: var(--radius-md); background-color: var(--input); border: 1px solid var(--border); padding: 0 12px; display: flex; align-items: center; font-size: 14px; color: var(--muted-foreground); }
    .img-logo { width: 100px; display: block; }

    .scrolled .img-logo { width: 70px; display: block; }
    header.scrolled {
      padding: 10px 0px;
    }
    /* FAQ card utilities */
    .faq-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; flex-direction: column; gap: 8px; cursor:pointer }
    .faq-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-question { font-size: 18px; font-weight: 600; }
    .faq-icon-container { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;  color: white; border-radius: 50%; }
    /* Footer CTA utilities */
    .footer-cta-title { font-size: 32px; color: var(--primary-foreground); }
    .footer-cta-sub { font-size: 16px; color: var(--primary-foreground); opacity: 0.9; }
    .btn-cta-light { background-color: var(--primary-foreground); color: var(--primary); border: none; }
    /* small icon wrapper used across buttons */
    .icon-wrapper { display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; }
    .icon-24 { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
    .icon-primary { color: var(--primary); }
    .btn-ghost-on-primary { color: var(--primary-foreground); border: 1px solid rgba(255,255,255,0.35); }
    .input-area { min-height: 96px; border-radius: var(--radius-md); background-color: var(--input); border: 1px solid var(--border); padding: 10px 12px; font-size: 14px; color: var(--muted-foreground); }
    .footer-contact-title { font-size: 28px; }
    .form-label { font-size: 14px; font-weight: 500; }
    .person-name { font-size: 16px; font-weight: 600; }
    .person-role { font-size: 14px; color: var(--muted-foreground); font-style: italic; }
    .col-gap-24 { display: flex; flex-direction: column; gap: 24px; }
    .col-gap-16 { display: flex; flex-direction: column; gap: 16px; }
    .col-gap-6 { display: flex; flex-direction: column; gap: 6px; }
    .col-gap-20 { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
    .col-gap-12 { display: flex; flex-direction: column; gap: 12px; }
    .row-gap-16 { display: flex; gap: 16px; }
    .row-center-gap-10 { display: flex; align-items: center; gap: 10px; }
    .row-justify-start { display: flex; justify-content: flex-start; margin-top: 4px; }
    .max-w-520 { max-width: 520px; }
    .flex-1 { flex: 1; }
    .small-text { font-size: 15px; }
    .profile-photo-wrapper { width: 100%; height: 320px; border-radius: var(--radius-lg); overflow: hidden; background-color: var(--muted); }
    /* Responsive adjustments to match original Tailwind layout behavior */
    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; gap: 28px; }
      .grid-2 { grid-template-columns: 1fr; gap: 16px; }
    }

    @media (min-width: 1025px) {
      .contact-grid { grid-template-columns: 2fr 1fr; }
    }
    /* Contact section specific layout and utilities */
    .contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; width: 100%; align-items: start; }
    .contact-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
    .contact-info { display: flex; flex-direction: column; gap: 16px; }
    .contact-person { display: flex; gap: 12px; align-items: center; }
    .contact-person .person-avatar { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; background: var(--muted); flex-shrink: 0; }
    .contact-person .person-avatar { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; background: var(--muted); flex-shrink: 0; position: relative; }
    .contact-person > :first-child { margin-right: 10px; }
    .person-meta { display: flex; flex-direction: column; gap: 4px; }
    .contact-meta-row { display: flex; gap: 8px; align-items: center; color: var(--muted-foreground); font-size: 14px; }
    .contact-meta-row a { color: inherit; text-decoration: none; }
    .contact-meta-row a:hover { color: var(--foreground); }
    .footer-contact-block { padding: 32px; background: #ffffff; border-radius: 0.5rem; border: 1px solid #E5E7EB; }
    /* Single-person overlay and contact details styling */
    .person-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .person-overlay {
      position: absolute;
      left: 12px;
      top: 12px;
      background: rgba(255,255,255,0.95);
      padding: 8px 10px;
      border-radius: 8px;
      box-shadow: 0 6px 18px rgba(3,7,18,0.06);
    }
    .person-overlay .person-name { font-weight: 700; font-size: 16px; color: var(--foreground); }
    .person-overlay .person-role { font-size: 13px; color: var(--muted-foreground); }
    .contact-details { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
    .contact-details .contact-row { display: flex; gap: 10px; align-items: center; color: var(--muted-foreground); margin-bottom: 12px; }
    .contact-details .contact-row:last-child { margin-bottom: 0; }
    .contact-details .contact-row a { color: inherit; text-decoration: none; }
    .contact-details .contact-row a:hover { color: var(--foreground); }
    /* Contact form consent checkbox styling */
    .consent-row { margin-top: 6px; margin-bottom: 6px; }
    /* custom checkbox styling to match green theme */
    .consent-row .form-checkbox {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      border: 1px solid #E5E7EB;
      border-radius: 5px;
      background: #FFFFFF;
      display: inline-block;
      position: relative;
      margin-top: -1px;
      margin-right: 10px;
      cursor: pointer;
      vertical-align: middle;
    }
    .consent-row .form-checkbox:focus {
      outline: none;
    }
    .consent-row .form-checkbox:checked {
      background: #4CAF50;
      border-color: #4CAF50;
    }
    .consent-row .form-checkbox:checked::after {
      content: '';
      position: absolute;
      left: 7px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid #FFFFFF;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }
    .consent-row label span { line-height: 1.4; }
    .footer-contact-form .input-box, .footer-contact-form .input-area { width: 100%; background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 0.5rem; padding: 10px 12px; color: var(--foreground); }
    .footer-contact-form .input-box:focus, .footer-contact-form .input-area:focus { outline: none; box-shadow: 0 0 0 2px rgba(34,197,94,0.12); background: #ffffff; }
    .footer-contact-form .btn { min-width: 180px; }
    /* contact form button use the same green as original Tailwind block */
    .footer-contact-form .btn-primary { background-color: #16A34A; color: #ffffff; }
    .footer-contact-form .btn-primary:hover { background-color: #15803D; }
    /* FAQ icon colors and behavior: chevron down/up and answer collapse */
    #faq-section .faq-icon-container iconify-icon {
      color: var(--muted-foreground);
      transition: transform 0.22s ease, color 0.18s ease;
      transform-origin: center;
      display: inline-block;
    }
    #faq-section .faq-card.active .faq-icon-container iconify-icon {
      transform: rotate(180deg);
      color: var(--primary); /* active (up) color */
    }
    /* answers collapsed by default, expand when active */
    #faq-section .faq-card .faq-answer {
      display: none;
      margin-top: 12px;
      color: var(--muted-foreground);
      line-height: 1.6;
    }
    #faq-section .faq-card.active .faq-answer {
      display: block;
    }
    .faq-list-wrapper { width: 100%; max-width: 820px; display: flex; flex-direction: column; gap: 16px; margin:0 auto; }
    .brand-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--primary); border-radius: 6px; color: white; }
    .cookie-icon { font-size: 20px; color: var(--primary); }
    /* Minimal Tailwind-like utility styles used by the contact block */
    .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .bg-white { background-color: #ffffff; }
    .max-w-7xl { max-width: 80rem; }
    .mx-auto { margin-left: auto; margin-right: auto; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .grid { display: grid; }
    .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gap-16 { gap: 120px; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .text-3xl { font-size: 1.875rem; line-height: 2.25rem; font-weight: 700; }
    .font-bold { font-weight: 700; }
    .text-gray-900 { color: #0F1724; }
    .mb-4 { margin-bottom: 1rem; }
    .text-gray-600 { color: #4B5563; }
    .mb-10 { margin-bottom: 2.5rem; }
    .space-y-6 > * + * { margin-top: 1.5rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gap-6 { gap: 1.5rem; }
    .block { display: block; }
    .text-sm { font-size: 0.875rem; }
    .font-semibold { font-weight: 600; }
    .text-gray-700 { color: #374151; }
    .mb-2 { margin-bottom: 0.5rem; }
    .w-full { width: 100%; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
    .bg-gray-50 { background-color: #F9FAFB; }
    .border { border-width: 1px; border-style: solid; }
    .border-gray-200 { border-color: #E5E7EB; }
    .rounded-lg { border-radius: 0.5rem; }
    .focus\:outline-none:focus { outline: none; }
    .focus\:ring-2:focus { box-shadow: 0 0 0 1px rgba(34,197,94,0.2); }
    .focus\:ring-green-500:focus { box-shadow: 0 0 0    1px rgba(34,197,94,0.2); }
    .focus\:bg-white { background-color: #ffffff; }
    .transition { transition: all 0.18s ease; }
    .bg-green-600 { background-color: var(--primary-foreground); }
    .hover\:bg-green-700:hover { background-color: #15803D; }
    .text-white { color: #ffffff; }
    .px-8 { padding-left: 2rem; padding-right: 2rem; }
    .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .rounded-md { border-radius: 0.375rem; }
    .flex { display: flex; }
    .items-center { align-items: center; }
    .justify-center { justify-content: center; }
    .space-x-2 > * + * { margin-left: 0.5rem; }
    .space-x-4 > * + * { margin-left: 10px; }
    .w-10 { width: 2.5rem; }
    .h-10 { height: 2.5rem; }
    .w-5 { width: 1.25rem; }
    .h-5 { height: 1.25rem; }
    .w-4 { width: 1rem; }
    .h-4 { height: 1rem; }}
    .bg-green-50 { background-color: var(--primary-foreground);  }
    .rounded-full { border-radius: 9999px; }
    .text-green-600 { color: #4CAF50; }
    .rounded-2xl { border-radius: 1rem; }
    /* spacing for contact icon rows (phone, email, address) */
    .flex.items-center.space-x-4.text-gray-600 { margin-bottom: 15px; }
    .p-8 { padding: 0rem; }
    .object-cover { object-fit: cover; }
    .mb-4 { margin-bottom: 1rem; }
    .text-lg { font-size: 1.125rem; }
    .text-sm { font-size: 0.875rem; }
    .text-xs { font-size: 0.75rem; }
    .italic { font-style: italic; }
  .cookie-hidden { display: none !important; }
    .bg-green-50 { background-color: #ECFDF3; }
  .footer-links {
    /* border-top:1px solid var(--border); */
    padding-top:60px;
    padding-bottom:30px;
    background-color: var(--secondary);
  }
  .footer-col .bg-green-50 { border:0px solid #E5E7EB; padding:10px; background-color: #fff;}

.footer-copy {
    margin-right:20px;
}
  
 body p, 
 body ul li { 
     font-size:16px; 
     
     line-height: 1.6;
     font-weight:400;
    }

body ul{ margin-top: 0px; }

body main a {
color: var(--primary);
text-decoration: none;
transition-duration:0.3s;
position: relative;
}

body main a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transition-duration:0.3s;
    opacity: 0.5;
}

body main a:hover::after {
    background: transparent
}

input[type=text],input[type=email],
textarea {
    font-family: var(--font-family-body);
    /* min-height:200px; */
}

textarea {
    resize:none;
    min-height:200px;
}

.et-process {
    background: #F8FDF9;
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(72, 185, 88, 0.2);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.nav-links .nav-item {
			display: flex;
			list-style: none;
			gap: 40px;
		}
		
.nav-item {
      font-size: 15px;
      font-weight: 500;
      color: var(--muted-foreground);
      cursor: pointer;
    }
    .nav-item:hover {
      color: var(--foreground);
    }

		.nav-links .nav-item  a {
			color: var(--text-dark);
			font-weight: 500;
			font-size: 15px;
			letter-spacing: 0.5px;
			position: relative;
            text-decoration: none;
            transition-duration:0.3s;
            
		}
		
		.nav-links .nav-item  a:hover {
			color: var(--text-dark);
		}
		
		.nav-links .nav-item  a::after {
			content: '';
			position: absolute;
			bottom: -6px;
			left: 0;
			width: 0;
			height: 2px;
			color: var(--accent);
			transition-duration:0.3s;
		}

        
		
		.nav-links .nav-item  a:hover::after,
		.nav-links .nav-item  a.active::after {
			width: 100%;
            background: var(--primary);
		}
		
		.nav-links .nav-item  a.active {
			color: var(--secondary-foreground);
            
		}

span.line {
    display: block;
    width: 50px;
    height: 2px;
    /* background: var(--muted-foreground); */
    margin-top:0px;
    margin-bottom: 50px;
}      

section#projects {
    /* padding-top:40px; */
    /* padding-bottom:80px; */
}

section#process {
    padding-bottom:0px;
}

main {
    max-width:820px;
    display:table;
    width:100%;
    padding:80px 0;
}

main h1 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--foreground);
    margin-bottom:30px;
}

main h2 {
    font-size: 22px;
    line-height: 1.3;
    
    margin-bottom:10px;
    margin-top:20px;
}

@media only screen and (max-width: 920px) {
   .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap:20px;
    }
    
    /* .nav-links { display:none;}  */
}
    

@media only screen and (max-width: 620px) {
    
main {
    padding:30px 0;
}

   .grid-3 {
        grid-template-columns: repeat(1, 1fr);
       
    }

    .hero-actions {
        display: table;
        gap: 0px;
        margin-top: 16px;
    }

   .btn {
        width: 100%;
        margin-bottom: 20px;
    }

    .stat-row-inline {
        margin-top:0;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap:20px;
    }

    .section {
        padding:40px 0;
    }

    .section#about {
        padding: 25px 0px;
    }

    .footer-cta .width-wrapper {
        display:table;
    }

    .footer-cta-actions {
        margin-top:30px;
        justify-content: center;
    }

    .lg\:grid-cols-3 {grid-template-columns: repeat(1, minmax(0, 1fr));}

    .footer-grid {

        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0px; 
        margin:40px 0px 30px 0px; 
    }

    .footer-cta-actions {
        display:table;
        width:100%;
    }

    h1 {
    font-size: 44px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--foreground);
}

    .footer-bottom div.inner:last-child {
        display:none;
    }
    .footer-bottom {
        
        display:table;
        margin:0px 0;
        width: 100%;
        justify-self: start;
        text-align: left;
        padding:40px 0px 30px 0px; 
    }
    
    .footer-bottom ul {
        padding:0;
    }

    .section-title {
      font-size: 34px;
      letter-spacing: -1px;
      margin-top:20px;
    }
    
    .header-right .btn {
        display: none;
    } 

    .img-logo { width: 60px; display: block;}

    .portfolio-arrow {
        display: none;
    }

    .md\:grid-cols-2 {
     grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .hero-image-container {
        margin-top:40px;
        margin-bottom:20px;
        max-height:400px;
    }
    
    .split-image {
        max-height:400px;
    }

    .footer-bottom div.inner {
        flex-direction: column;
        gap:10px;
    }

    .gap-16 { gap:20px;  }

    .footer-brand {
        /* display:none; */
    }

    .footer-col.menu {
        justify-content: start;
        margin-top:30px;
        flex-direction: column;
        gap:5px;
    }

    .footer-links {
      
        padding: 1px 0 1px 0;
    }

    .header {
        /* display:none; */
        /* position: relative; */
        padding:10px 0;
    }

    .scrolled .img-logo { width: 60px; display: block; }

    .feature-card {
      align-items: center;
    }

    .feature-desc {
      text-align: center;
    } 

    .faq-question {
    font-size: 17px;
    font-weight: 600;
}
}
   
    

.fade-in {
    opacity: 0;
}

/* Portfolio slider controls and transitions */
.portfolio-wrapper { position: relative; }
.portfolio-slides { position: relative; overflow: hidden; }
.portfolio-card { width: 100%; transition: opacity 300ms ease, transform 300ms ease; }
.portfolio-card img { display: block; width: 100%; height: auto; }
.portfolio-card { box-sizing: border-box; }

/* Hidden slides are absolutely positioned to stack on top of each other */
.portfolio-card { position: absolute; top: 0; left: 0; right: 0; opacity: 0; pointer-events: none; }
.portfolio-card.active { position: relative; opacity: 1; pointer-events: auto; }

.portfolio-contr  ols { position: absolute; left: 0; right: 0; bottom: -10px; display: flex; align-items: center; justify-content: center; gap: 16px; z-index: 30; pointer-events: auto; }
.portfolio-dots { display: flex; gap: 8px; align-items: center; }
.portfolio-dot { width: 10px; height: 10px; border-radius: 999px;  border: 1px solid var(--primary); cursor: pointer; transition: transform 160ms ease, background-color 160ms ease; }
.portfolio-dot.active { background: var(--primary); transform: scale(1.05); }


/* Stage layout: arrow left / slides center / arrow right */
.portfolio-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.portfolio-stage .portfolio-slides {
  flex: 1 1 auto;
  max-width: 950px;
  position: relative; /* for dots absolute positioning */
}

/* Dots overlay: bottom-right of the image area */
.portfolio-slides .portfolio-dots {
  position: absolute;
  right: 0px;
  bottom: 5px;
  z-index: 50;
  display: flex;
  gap: 8px;
}

.portfolio-arrow { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.95); box-shadow: 0 6px 18px rgba(3,7,18,0.08); cursor: pointer; transition: transform 160ms ease, opacity 160ms ease; }


/* Smaller controls on narrow viewports */
@media (max-width: 900px) {
  .portfolio-stage { gap: 8px; }
  .portfolio-arrow { width: 36px; height: 36px; }
  .portfolio-dot { width: 8px; height: 8px; }
  .portfolio-slides .portfolio-dots { right: 8px; bottom: 8px; }
}

/* Ensure slides container keeps a stable height to avoid content shift */

/* If you want captions to overlay the image, adjust accordingly */
.portfolio-city { display: block; font-weight: 700; margin-bottom: 6px; }
.portfolio-desc { color: var(--muted-foreground); font-size: 14px; margin: 0; }

/* Accessibility focus styles */
.portfolio-dot:focus, .portfolio-arrow:focus { outline: 3px solid rgba(76,175,80,0.12); }
