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

        :root {
            --primary-color: #8fac47;
            --secondary-color: #f8f9f5;
            --accent-color: #6b4423;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #8cb052 0%, #9aa353 100%);/* linear-gradient(135deg, #dada65 0%, #d9dd5e 100%);*/
            --gradient-secondary: linear-gradient(135deg, #f8f9f5 0%, #eef2e8 100%);
            --gradient-theme: linear-gradient(135deg, #8cb052 0%, #9aa353 100%);
            --gradient-forest: linear-gradient(135deg, #5aaf76, #355c4a);
            --shadow-soft: 0 10px 30px rgba(143, 172, 71, 0.15);
            --shadow-hover: 0 15px 40px rgba(143, 172, 71, 0.2);
            --header-height: 0px;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.3;
            color: var(--text-dark);
            background: var(--white);
            padding-top: var(--header-height);
            transition: padding-top 0.2s ease;
        }
             /* ============================
   BASE (Mobile‑First)
   ============================ */
#header, header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(143,172,71,0.1);
  background-color: rgba(255, 255, 255, 0.5); /* white at 80% opacity */
  backdrop-filter: blur(10px);
}

/* Wrapper */
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}

/* Logo + Auth (top row) */
.logo-section {
  display: flex; align-items: center; gap: 0.5rem;
}
.logo__img { width: 2rem; height: 2.5rem; }
.logo {
  font-size: 10.25rem; font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

/* Auth links hide by default until larger screens */
.auth-links {
  display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
  background: none; border: none;
  font-size: 1.5rem; color: var(--primary-color);
  cursor: pointer;
}

/* Bottom row nav (tabs or main links) */
.nav-bottom {
  width: 100%;
  margin-top: 0.5rem;
}
.main-nav-links,
.nav-links {
  list-style: none;
  display: none;    /* hidden on mobile */
  flex-direction: column;
  gap: 0.5rem;
}
.main-nav-links a,
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem;
}
.main-nav-links a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
.main-nav-links a:hover::after,
.nav-links a:hover::after {
  width: 100%;
}

/* ============================
   TABLET & DESKTOP (≥ 769px)
   ============================ */
@media (min-width: 280px) {
  nav {
    flex-wrap: nowrap;
    padding: 0 2rem;
  }

  /* Show auth links, hide mobile button */
  .auth-links {
    display: flex; gap: 1rem;
  }
  .mobile-menu-btn {
    display: none;
  }

  /* Two‑line structure: top + bottom */
  .nav-top, .nav-bottom {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .nav-top {
    justify-content: space-between;
    border-bottom: 1px solid rgba(143,172,71,0.1);
    padding: 0.5rem 0;
  }
  .nav-bottom {
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Show your link lists horizontally */
  .main-nav-links, .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* ============================
   VERY SMALL PHONES (≤ 420px)
   ============================ */
@media (max-width: 419px) {
  nav {
    padding: 0.25rem 0.5rem;
  }
  .logo {
    font-size: 0.5rem;
  }
  .mobile-menu-btn {
    font-size: 1.25rem;
  }
  .nav-bottom {
    margin-top: 0.25rem;
  }
  .main-nav-links a,
  .nav-links a {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

#header {
  box-shadow: var(--shadow-soft);
}

/* 2) Ensure nav-top items wrap nicely on mobile */
#header nav {
  display: flex;
  flex-wrap: wrap;           /* allow wrapping on small screens */
  align-items: center;
  justify-content: space-between;
}

/* 3) On very small screens, stack logo/auth below the main-nav */
@media (max-width: 419px) {
  #header nav .nav-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .main-nav-links {
    order: 2;                /* come right after logo */
    display: flex;           /* you probably want your links visible on mobile too? */
    flex-direction: column;
    width: 100%;
  }
  .auth-links {
    order: 3;
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 0.5rem;
  }
}

/* 4) Always push page content below the fixed header
main {
  margin-top: var(--header-height);
} */

/* 5) Fine‑tune logo and link sizes if needed */
.logo {
  font-size: 1.25rem;
}
@media (max-width: 419px) {
  .logo { font-size: 0.5 rem; }
}
/*----------------------------------------
  Ultra‑Small Phones (320px and below)
-----------------------------------------*/
@media (max-width: 280px) {
  /* Stack everything in the header */
  #header nav .nav-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Shrink logo image and text */
  .logo__img {
    width: 1.75rem;
    height: 2.25rem;
  }
  .logo {
    font-size: 0.9rem;
  }

  /* Hide desktop nav links by default; rely on hamburger */
  .main-nav-links {
    display: none;
  }

  /* Always show your mobile menu button */
  .mobile-menu-btn {
    display: block;
  }

  /* Auth links go below logo, centered */
  .auth-links {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    order: 3;
    margin-top: 0.5rem;
  }

  /* Tighter spacing inside nav */
  #header nav {
    padding: 0.5rem 0.75rem;
  }

}


        /* Hero Section */
        .hero {
            min-height: 10vh;
            background: var(--gradient-primary);
            display: flex;
            flex-direction: column; 
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0.25rem 0.25rem;
            gap: 1.5rem;
        }

        .hero-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.8" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.6;
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            max-width: 300px;
            padding: 1rem;
            position: relative;
            z-index: 2;
        }
       
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.7s forwards;
        }

.cta-button {
  display: inline-flex;               /* center label & pseudo-element */
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.5rem, 5vw, 2.5rem);
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* sliding highlight */
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Make sure it wraps / centers on narrower screens */
@media (max-width: 480px) {
  .cta-button {
    display: block;        /* full‑width button */
    width: 70%;           
    max-width: 150px;      /* prevent it becoming too wide */
    margin: 0 auto;        /* center it */
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
}


        /* Main Content Styles 
       main {
        margin-top: var(--header-height);
        }*/

        .content-section {
            padding: 2rem 1rem;
            margin: 0 auto;
            background: var(--gradient-secondary);
        }
        .content-section p{
            justify-self: center;
            padding-bottom: 1.5rem;
        }
        .highlight{
            color: var(--accent-color);
            font-weight: 700;
        }
        
        .story-content p{    
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 2rem;
            margin-top: 1rem;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        /* Cards Layout */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        .card {
            background:  rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--primary-color);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .card p {
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Features Section */
        .features {
            background: var(--gradient-secondary);
            padding: 2rem 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature {
            text-align: center;
            padding: 1rem;
        }

       .feature-icon {
            width: 140px;
            height: 140px;
            background: var(--gradient-primary);
            border-radius: 50%;           /* circle */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
            box-shadow: var(--shadow-soft);
            outline: 10px solid var(--primary-color);    
            outline-offset: 2px;                
        }


        .feature h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* Footer */
        footer {
            background: var(--gradient-theme);
            color: var(--white);
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            opacity: 0.7;
        }
        
        .inquiry-cta {
            text-align: center;
            margin: 2rem 0;
            padding: 1rem 2.5rem;
            background-color: var(--accent-color);     /* brown capsule background */
            border-radius: 9999px;         /* pill shape */
        }

        .inquiry-cta a {
            display: inline-block;
            
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;

            /* gradient text fill */
            background-clip: text;
            -webkit-background-clip: text;
            color: var(--white);
        }

        .inquiry-cta a:hover {
            color: #d9dd5e;
        }

        .inquiry-fab {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 3.5rem;
            height: 3.5rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;                /* above other content */
            transition: transform 0.2s ease;
        }

        .inquiry-fab:hover {
            transform: scale(1.1);
        }
        
        /* full‐screen semi‑transparent backdrop */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            display: none;              /* hidden by default */
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .modal-overlay.is-open {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        /* center the form 
        .modal-content {
            position: relative;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            max-width: 90%;
            max-height: 90%;
            overflow-y: auto;
        }*/

        .modal-content {
            position: relative;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            /* let it grow to 90% of viewport but never exceed 600px */
            width: 90vw;          /* 90% of viewport width */
            max-width: 600px;     /* comfortable absolute max on desktop */
            max-height: 90vh;     /* so it never overflows vertically */
            overflow-y: auto;

            /* stack children vertically, don’t shrink‑wrap horizontally */
            display: flex;
            flex-direction: column;
            align-items: center;  /* center child horizontally */
        }


        /* close “×” button */
        .modal-close {
            position: absolute;
            top: 0.5rem;
            right: 0.75rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-top {
                flex-wrap: wrap;
            }

            .auth-links {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid rgba(143, 172, 71, 0.1);
            }

            .nav-links, .main-nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .main-nav-links {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo__img {
                width: 2rem;
                height: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .content-section {
                padding: 1.5rem 0.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .main-nav-links {
                gap: 10px;
            }

            .main-nav-links a {
                font-size: 14px;
            }

            .auth-links {
                gap: 10px;
            }
        }

        /* Utility Classes */
       .text-center { 
            text-align: center; 
            background: var(--gradient-secondary);
            padding: 5%;
            border-radius: 50px;    /* adjust this value to taste */
        }


        .mb-2 { 
            margin-bottom: 1rem; 
        }

        .mb-3 { 
            margin-bottom: 1.5rem; 
        }

        .mt-3 { 
            margin-top: 1.5rem; 
        }

        .btn-secondary {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
            background-color: rgba(255, 255, 255, 0.5); /* white at 80% opacity */
            backdrop-filter: blur(10px);
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            font-weight: 300;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--primary-color);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .card h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
        }

        .card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .card.stats-highlight h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin: 15px 0 15px 0;
        }

        .card p {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .card ul {
            margin: 15px 0 25px 20px;
        }

        .card li {
            font-size: 1.05rem;
            color: #4a5568;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .founder-highlight {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        }


        .founder-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            text-align: center;
        }

        .contact-info {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
            text-align: center;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }
        
        .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
        margin-bottom: 2rem;
        }

        /* Each card is at least 300px wide, but can shrink/grow */
        .service-category {
        flex: 1 1 300px;
        max-width: 400px;
        align-self: flex-start;  /* so each card’s height is its own */
        background:  rgba(255, 255, 255, 0.95);
        padding: 20px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-radius: 15px;
        border-left: 4px solid var(--primary-color);
        }

        .service-category h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .service-category ul {
            margin-left: 0;
            list-style: none;
        }

        .service-category li {
            padding: 3px 0;
            padding-left: 15px;
            position: relative;
            color: var(--text-dark);
        }

        .service-category li::before {
            content: '•';
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .stats-highlight {
            border: 1px solid var(--primary-color);
            text-align: center;
            padding: 30px;
        }

        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
        }

        .mission-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            justify-content: center;
            justify-items: center;
            margin-bottom: 2rem;
        }

        .mission-point {
            background: rgba(255, 255, 255, 0.95);
            border-left: 3px solid var(--accent-color);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--primary-color);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .card {
                padding: 25px;
            }
            
            .card h2 {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

       .cert-section {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: start;      
            gap: 0rem;               
            position: relative;     
        }

        .cert__img {
            width: 70%;
            height: auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .cert__img {
            grid-column: 2;
            margin-right: 5rem ;
            justify-self: end;
        }

        .cert__img:hover {
            transform: scale(1.15);
        }

        @media (max-width: 368px) {
        .cert-section {
            grid-template-columns: 1fr;
        }
        .cert__img {
            max-width: 250px;
            margin: 0 auto;
            display: block;
            grid-column: 1;
            justify-self: center;
        }
        }

         .gallery-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(102, 126, 234, 0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay::before {
            content: '🔍';
            font-size: 2rem;
            margin-right: 10px;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            animation: lightboxZoom 0.3s ease;
        }

        .lightbox-content img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .lightbox-close:hover {
            background: rgba(255,255,255,0.3);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255,255,255,0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.3);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1rem;
            background: rgba(0,0,0,0.5);
            padding: 8px 16px;
            border-radius: 20px;
        }

        @keyframes lightboxZoom {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .gallery-description {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
                background-color: rgba(255, 255, 255, 0.5); /* white at 80% opacity */
                backdrop-filter: blur(10px);             
            }
            
            .gallery-container {
                padding: 25px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 15px;
            }

            .lightbox-nav {
                display: none;
            }

            .lightbox-content {
                max-width: 95%;
                max-height: 85%;
            }
        }

        .gallery-header {
        text-align: center;
        margin-bottom: 2rem;          
        }

        .gallery-header h1 {
        font-size: 2.5rem;       
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #8fac47;             
        }

        .gallery-header .subtitle {
        font-size: 1.125rem;     
        font-weight: 400;
        color: #666;             
        margin: 0;                
        }

        .hero-animate {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 200;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-animate p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .hero-animate li {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .about-animate {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.4s ease 0.1s forwards;
        }


        #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(143,172,71,0.1);
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

#header.header-scrolled {
    box-shadow: var(--shadow-soft);
    background-color: rgba(255, 255, 255, 0.7); /* white at 80% opacity */
    backdrop-filter: blur(10px);
    max-height: 5rem;
}

#header nav .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

#header .logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

#header .logo__img {
    width: 2.75rem;
    height: 3.5rem;
}

#header .logo {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

#header .auth-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

#header .auth-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

#header .auth-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

#header .main-nav-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0 auto;
}

#header .main-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 0.3rem 0;
    position: relative;
    transition: all 0.3s ease;
}

#header .main-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

#header .main-nav-links a:hover::after {
    width: 100%;
}

#header .main-nav-links a:hover {
    color: var(--primary-color);
}

#header .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/*────────────────────────────────────────────────────────────*/
/* Media Queries: Mobile                                       */
/*────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {
    #header .main-nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(143,172,71,0.1);
    }

    #header .mobile-menu-btn {
        display: block;
    }

    #header .main-nav-links.open {
        display: flex;
    }

    #header .auth-links {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 0.75rem 0;
        border-top: 1px solid rgba(143,172,71,0.1);
    }
}

      /*────────────────────────────────────────────────────────────*/
/* Reviews Section Styles                                      */
/*────────────────────────────────────────────────────────────*/
.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 2rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 300;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
}

.google-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.reviews-container {
  position: relative;
  overflow-x: auto;      /* allow manual horizontal scroll */
  overflow-y: hidden;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 0;
  scroll-behavior: smooth;  /* smooth manual scroll */
}

.reviews-track {
  display: flex;
  gap: 25px;
  padding: 0 30px;
}

/*  moves from 0 → negative scroll distance */
@keyframes scrollOnce {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--scroll-distance));
  }
}


.review-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.google-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: #4285f4;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8fac47 0%, #537255 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 5px;
}

.scroll-gradient {
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.scroll-gradient.left {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.1), transparent);
}

.scroll-gradient.right {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.1), transparent);
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 300px;
    }
    .reviews-container {
        padding: 20px 0;
    }
}

    .watermark {
        display: flex;
        justify-content: space-between;  /* split left & right */
        align-items: flex-start;  
        background: var(--gradient-secondary);       /* align top edges */
        padding: 2rem;
    }

        /* Left column styling */
        .watermark__info {
        max-width: 40%;     /* leave room for form on the right */
        }

        .info-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: var(--accent-color);
        }

       .info-image {
        display: block;       /* make it respect auto margins */
        margin: 1rem auto;    /* 1rem vertical, auto horizontal */
        width: 60%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .info-text {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-dark);
        }

/* Right column (form) 
        .inquiry-container {
            max-width: 40%;
            margin: 0;         
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }*/

        .inquiry-container {
            width: 100%;                 /* use all available modal space */
            max-width: 600px;            /* comfortable max */
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .inquiry-container-index {
            width: 100%;             /* now 100% of the 600px max */
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .inquiry-title {
            text-align: center;
            color: #333;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--primary-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .inquiry-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .inquiry-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .inquiry-label {
            font-weight: 600;
            color: #444;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .inquiry-control {
            padding: 0.75rem;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
            outline: none;
        }

        .inquiry-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        .inquiry-control:hover {
            border-color: #b8c5f2;
            background: white;
        }

        .inquiry-textarea {
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
        }

        .inquiry-error {
            color: #e74c3c;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: block;
        }

        .inquiry-submit {
            background: var(--accent-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
            max-width: 100px;
        }

        .inquiry-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .inquiry-submit:active {
            transform: translateY(-1px);
        }

        .inquiry-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .inquiry-submit:hover::before {
            left: 100%;
        }

        .inquiry-submit .spinner {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1.2rem;
        height: 1.2rem;
        margin: -0.6rem 0 0 -0.6rem;
        border: 2px solid rgba(255,255,255,0.6);
        border-top-color: white;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        }

        /* when loading… */
        .inquiry-submit.loading .button-text {
        visibility: hidden;
        }

        .inquiry-submit.loading .spinner {
        display: block;
        }

        /* spinner animation */
        @keyframes spin {
        to { transform: rotate(360deg); }
        }

        @media (max-width: 600px) {
        .inquiry-container {
            padding: 1.25rem;
            max-width: 100%;
        }

        .modal-content {
            padding: 1rem;
        }
        }


        /*@media (max-width: 768px) {
            .inquiry-container {
                margin: 1rem auto;
                padding: 2rem 1.5rem;
            }

            .inquiry-title {
                font-size: 2rem;
            }
        }*/

        /* Floating label effect */
        .inquiry-group {
            position: relative;
        }

        .inquiry-control:focus + .inquiry-label,
        .inquiry-control:not(:placeholder-shown) + .inquiry-label {
            transform: translateY(-1.5rem) scale(0.85);
            color: #667eea;
        }

       .alert {
            padding: 0.75rem 1rem;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        .alert-success {
            background-color: #e6ffed;
            border: 1px solid #28a745;
            color: #155724;
        }

        .alert-danger {
            background-color: #ffe6e6;
            border: 1px solid #dc3545;
            color: #721c24;
        }

        .alert-base {
            opacity: 0;
        }

/* ------------------------------------------------------------------
   MOBILE-FIRST BASE (no media query): your form, hero, cards, etc.
   (this is already in place as your default CSS)
   ------------------------------------------------------------------ */

/* ------------------------------------------------------------------
   TABLET AND UP: repurpose your existing “@media (max-width: 768px)”
   into “min-width: 601px” so it applies only on larger screens.
   ------------------------------------------------------------------ */
@media (min-width: 601px) {
  /* NAVIGATION */
  .nav-top { display: flex; justify-content: space-between; }
  .main-nav-links, .nav-links { display: flex; gap: 1.5rem; }
  .mobile-menu-btn { display: none; }

  /* HERO */
  .hero { min-height: 10vh; padding: 1rem 1rem; }
  .hero { flex-direction: row; padding: 4rem; }
  .hero-content { max-width: 500px; text-align: left; }

  /* GRID SECTIONS */
  .cards-grid,
  .features-grid,
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
  
  /* FORM */
  .inquiry-container { max-width: 40%; margin: 2rem; }
}

/* ------------------------------------------------------------------
   PHONE ONLY (600px and below): tweak for small touch screens
   ------------------------------------------------------------------ */

@media (max-width: 1920px) {
    .hero { min-height: 10vh; padding: 1rem 1rem; }
}
@media (max-width: 601px) {
  html { font-size: 14px; }              /* slightly smaller base text */
  
  /* Utilities */
  .container, .content-section { padding: 0.5rem; }
  .section-title { font-size: 1.75rem; }
  
  /* Hero */
  .hero { min-height: 10vh; padding: 1rem 1rem; }
  .hero h1 { font-size: 2rem; }
  .hero p  { font-size: 1rem; }
  
  /* Cards & Features */
  .cards-grid,
  .features-grid,
  .services-grid,
  .reviews-track { gap: 1rem; }

  .founder-highlight h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
  
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  
  /* Inquiry Form */
  .watermark { flex-direction: column; padding: 1.5rem; }
  .watermark__info,
  .inquiry-container { width: 100%; margin: 0 auto 2rem; max-width: none; }
  .inquiry-container { padding: 2rem 1rem; }
  
  /* FAB (floating button) */
  .inquiry-fab { bottom: 1rem; right: 1rem; width: 3rem; height: 3rem; font-size: 1.25rem; }
  
  /* Footer */
  footer .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 601px) {
  /* Make the watermark wrapper flex‑column */
  .watermark {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }
  /* Center the hero animation card and let it fill width */
  .hero-animate {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .card.founder-highlight {
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  /* Stack the cert section vertically */
  .cert-section {
    display: block;
  }
  .cert-list {
    margin-bottom: 1.5rem;
  }
  /* Full‑width list and smaller text */
  .cert-list p,
  .cert-list ul {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .cert-list ul {
    padding-left: 1.2rem;
  }
  /* Make the image responsive and centered */
  .cert__img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  /* Reduce heading size */
  .card.founder-highlight h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .founder-name {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

        .registration-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .registration-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-primary);
        }

        .registration-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .registration-title {
            color: var(--text-dark);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--primary-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .registration-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 400;
        }

        .registration-form {
            display: grid;
            gap: 2rem;
        }

        .registration-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .registration-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            position: relative;
        }

        .registration-group.full-width {
            grid-column: 1 / -1;
        }

        .registration-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .registration-label::before {
            content: '🌱';
            font-size: 1.2rem;
        }

        .registration-control {
            padding: 1.2rem;
            border: 2px solid #e8f5d0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
            outline: none;
            color: var(--text-dark);
            width: 100%;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .registration-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(143, 172, 71, 0.1);
            transform: translateY(-2px);
        }

        .registration-control:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-soft);
        }

        .registration-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            line-height: 1.5;
        }

        .registration-error {
            color: #e74c3c;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .registration-submit {
            background: var(--gradient-primary);
            color: var(--text-dark);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .registration-submit:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .registration-submit:active {
            transform: translateY(-1px);
        }

        .registration-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .registration-submit:hover::before {
            left: 100%;
        }

        .registration-info {
            background: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-color);
        }

        .registration-info h3 {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .registration-info p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .registration-field-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            font-size: 1.2rem;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .registration-container {
                margin: 0.5rem auto;
                padding: 1.5rem 1rem;
                border-radius: 15px;
                max-width: 95%;
            }

            .registration-title {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }

            .registration-subtitle {
                font-size: 1rem;
            }

            .registration-header {
                margin-bottom: 2rem;
            }

            .registration-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .registration-group {
                gap: 0.5rem;
            }

            .registration-label {
                font-size: 0.9rem;
                margin-bottom: 0.3rem;
            }

            .registration-control {
                padding: 1rem;
                font-size: 16px; /* Prevents zoom on iOS */
                border-radius: 10px;
            }

            .registration-textarea {
                min-height: 100px;
            }

            .registration-submit {
                padding: 1rem 2rem;
                font-size: 1rem;
                width: 100%;
                margin-top: 1.5rem;
            }

            .registration-info {
                padding: 1rem;
                margin-bottom: 1.5rem;
            }

            .registration-info h3 {
                font-size: 1.1rem;
            }

            .registration-info p {
                font-size: 0.9rem;
            }

            .registration-field-icon {
                display: none; /* Hide icons on mobile for cleaner look */
            }

            .registration-form {
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .registration-container {
                padding: 1rem 0.8rem;
                margin: 0.2rem auto;
                max-width: 98%;
            }

            .registration-title {
                font-size: 1.6rem;
            }

            .registration-control {
                padding: 0.9rem;
            }

            .registration-label::before {
                font-size: 1rem;
            }

            .registration-info {
                padding: 0.8rem;
            }

            .registration-form {
                gap: 1.2rem;
            }
        }

        /* Floating placeholder effect */
        .registration-control:focus::placeholder {
            opacity: 0.7;
            transform: translateY(-0.5rem);
        }

        /* Success state */
        .registration-control.success {
            border-color: var(--primary-color);
            background: rgba(143, 172, 71, 0.05);
        }

        /* Loading state */
        .registration-submit.loading {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .registration-submit.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid transparent;
            border-top: 2px solid var(--text-dark);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .success-container {
            max-width: 600px;
            width: 100%;
            margin:0 auto;
            background: var(--white);
            border-radius: 24px;
            padding: 4rem 3rem;
            box-shadow: var(--shadow-soft);
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-primary);
        }

        .success-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            animation: checkmark 0.6s ease-in-out 0.5s both;
            box-shadow: var(--shadow-soft);
        }

        @keyframes checkmark {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-title {
            color: var(--text-dark);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeIn 0.8s ease-out 0.3s both;
        }

        .success-subtitle {
            color: var(--text-light);
            font-size: 1.3rem;
            margin-bottom: 3rem;
            line-height: 1.6;
            animation: fadeIn 0.8s ease-out 0.5s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-message {
            background: var(--secondary-color);
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 3rem;
            border-left: 4px solid var(--primary-color);
            animation: fadeIn 0.8s ease-out 0.7s both;
        }

        .success-message h3 {
            color: var(--text-dark);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .success-message p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .contact-section {
            margin-top: 3rem;
            animation: fadeIn 0.8s ease-out 0.9s both;
        }

        .contact-title {
            color: var(--text-dark);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .contact-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: var(--white);
            border: 2px solid #e8f5d0;
            border-radius: 16px;
            padding: 1.5rem 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .contact-label {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .contact-value {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value:hover {
            color: var(--accent-color);
        }

        .success-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .success-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .success-btn-primary {
            background: var(--gradient-primary);
            color: var(--text-dark);
            box-shadow: var(--shadow-soft);
        }

        .success-btn-secondary {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .success-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .success-btn-primary:hover {
            filter: brightness(1.1);
        }

        .success-btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Floating particles animation */
        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.3;
            animation: particle-float 8s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .particle:nth-child(2) {
            top: 80%;
            right: 20%;
            animation-delay: -4s;
        }

        .particle:nth-child(3) {
            top: 50%;
            right: 10%;
            animation-delay: -6s;
        }

        @keyframes particle-float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }

        .login-container {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            padding: 40px;
            width: 100%;
            max-width: 400px;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(143, 172, 71, 0.1);
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .login-container:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .login-subtitle {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 400;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--white);
            color: var(--text-dark);
            outline: none;
        }

        .form-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(143, 172, 71, 0.1);
            transform: translateY(-1px);
        }

        .form-input::placeholder {
            color: #aaa;
        }

        .login-button {
            background: var(--gradient-primary);
            color: var(--accent-color);
            padding: 15px 20px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .login-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .login-button:hover::before {
            left: 100%;
        }

        .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(143, 172, 71, 0.3);
        }

        .login-button:active {
            transform: translateY(0);
        }

        .error-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 10px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .error-message.show {
            opacity: 1;
        }

        .success-message {
            color: var(--primary-color);
            font-size: 14px;
            margin-top: 10px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .success-message.show {
            opacity: 1;
        }

        .icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: var(--shadow-soft);
        }

        .icon svg {
            width: 30px;
            height: 30px;
            fill: var(--accent-color);
        }

        @media (max-width: 480px) {
            .login-container {
                padding: 30px 20px;
                margin: 0 10px;
            }
            
            .login-title {
                font-size: 24px;
            }
        }

.students-container {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  margin: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(143, 172, 71, 0.1);
  transition: box-shadow 0.3s ease;
}

.students-container:hover {
  box-shadow: var(--shadow-hover);
}

/* Header section */
.headerdash {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  margin: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(143, 172, 71, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.headerdash:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* Student count badge */
.student-count {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  margin-top: 0.5rem;
}

/* Back / Logout button */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.student-notif-button {
  display: flex;           /* block‑level flexbox */
  justify-content: center; /* center any inner content if needed */
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin: 1rem auto;       /* now horizontal auto‑margins will center it */
  transition: background 0.3s ease, transform 0.3s ease;
}


.student-notif-button:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Student list items */
.students-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.student-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-secondary);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Enhanced shimmer effect */
.student-item::before {
  content: '';
  position: absolute;
  top: 0; 
  left: -100%;
  width: 100%; 
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(143, 172, 71, 0.15), 
    rgba(218, 218, 101, 0.2),
    rgba(143, 172, 71, 0.15),
    transparent
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Subtle gradient overlay */
.student-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(143, 172, 71, 0.05) 0%, 
    transparent 50%, 
    rgba(218, 218, 101, 0.03) 100%
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.student-item:hover::before {
  left: 100%;
}

.student-item:hover::after {
  opacity: 1;
}

.student-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(143, 172, 71, 0.2),
    0 8px 16px rgba(143, 172, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg, 
    rgba(248, 249, 245, 0.95) 0%, 
    rgba(238, 242, 232, 0.9) 100%
  );
}

/* Active state for better feedback */
.student-item:active {
  transform: translateY(-4px) scale(1.01);
  transition: all 0.1s ease;
}

.student-info-dash {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  /* ensure it doesn’t grow to eat the avatar space */
  flex: 1 1 auto;
  margin-right: 0.75rem;
}

/* Link and text inside student item */
.student-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  padding: 0.25rem 0;
}

.student-item form {
  z-index: 2;
}

.student-item .student-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-dark);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.5px;
}

.student-item .student-phone {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.student-item .student-batch {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(143, 172, 71, 0.1);
  border-radius: 12px;
  margin-top: 0.5rem;
  border: 1px solid rgba(143, 172, 71, 0.15);
}

/* Enhanced hover states */
.student-item:hover .student-name {
  color: var(--primary-color);
  transform: translateX(4px);
  text-shadow: 0 2px 8px rgba(143, 172, 71, 0.3);
}

.student-item:hover .student-phone {
  color: var(--accent-color);
  transform: translateX(2px);
  font-weight: 600;
}

.student-item:hover .student-batch {
  color: var(--accent-color);
  background: rgba(143, 172, 71, 0.2);
  border-color: var(--primary-color);
  transform: translateX(2px) scale(1.05);
  box-shadow: 0 2px 8px rgba(143, 172, 71, 0.2);
}

/* RIGHT‑HAND PHOTO */
.student-avatar {
  flex: 0 0 auto;
  width: 50px;               /* tweak to your design */
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.student-item-inactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: #b2a9a9;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.student-item-inactive::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(143,172,71,0.1), transparent);
  transition: left 0.5s ease;
}

.student-item-inactive:hover::before {
  left: 100%;
}

.student-item-inactive:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
}

/* Link and text inside student item */
.student-item-inactive a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.student-item-inactive .student-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.student-item-inactive .student-phone {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.student-item-inactive:hover .student-name {
  color: var(--primary-color);
}

.student-item-inactive:hover .student-phone {
  color: var(--accent-color);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-light);
}

.empty-state .icon {
  width: 60px; height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-soft);
}

.empty-state .icon svg {
  width: 32px; height: 32px;
  fill: var(--accent-color);
}

.empty-state h3 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ======================
   Desktop & Tablet (≥769px)
   ====================== */
@media (min-width: 769px) {
  .students-container {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
  }

  .headerdash {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
  }

  .student-item {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .back-button {
    margin: 2rem;
  }
}

/* --------- Tabs --------- */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
  overflow-x: auto;
}
.tab-btn {
  flex: 1;
  padding: 0.75rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
}
.badge {
  background: var(--accent-color);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

/* Hide all tab panels by default */
.tab-content {
  display: none;
}

/* Show only the one marked “active” */
.tab-content.active {
  display: block;
}

/* --------- Inquiry Item --------- */
.inquiry-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.inquiry-question {
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 10px;
    font-style: italic;
}
.handle-btn {
  align-self: flex-end;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.2s;
}
.handle-btn:hover {
  transform: translateY(-2px);
}
.handled-label {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: var(--text-light);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}
        .students-header{
            margin-bottom: 5%;
        }
        .time-slot {
            margin-bottom: 30px;
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .time-slot:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .time-header {
            background: var(--gradient-primary);
            padding: 20px 30px;
            border-radius: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .time-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

/* --------- Responsive tweaks --------- */
@media (max-width: 600px) {
  .headerdash, .students-container {
    margin: 0.5rem;
    padding: 1rem;
  }
  .back-button {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .student-notif-button{
    padding: 0.5rem 1rem;
  }
  .tabs {
    margin: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .tab-btn {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
  .student-item, .inquiry-item {
    padding: 0.25rem;
  }
}

    .watermark_mod {  
        background-color: var(--gradient-secondary);
    }

    .student-detail-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    }

    .student-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(143,172,71,0.1);
    }

    .student-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    }

    .student-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    }

    .student-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--text-light);
    font-size: 0.875rem;
    }

    .student-basic {
    flex: 1;
    }

    .student-name {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-dark);
    }

    .student-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0.25rem 0;
    }

    .student-info {
    margin-bottom: 1.25rem;
    }

    .student-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    }

    .student-info p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    }

    .student-fees-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    }

    .fees-group {
    flex: 1;
    min-width: 200px;
    }

    .fees-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    }

    .fees-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(143,172,71,0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    background: rgba(248,249,245,0.8);
    }

    .student-fees-form .inquiry-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 0 auto;
    margin-top: 10%;
    }

    .student-fees-form .inquiry-submit:hover {
    transform: translateY(-2px);
    }

    /* Mobile tweaks */
    @media (max-width: 600px) {
    .student-header {
        flex-direction: column;
        text-align: center;
    }
    .student-photo {
        margin: 0 auto;
    }
    .student-fees-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    }

@media (max-width: 280px) {
  /* Stack nav-top children vertically & center */
  #header nav .nav-top {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
  }

  /* Logo smaller */
  .logo__img {
    width: 1.6rem;
    height: 2rem;
  }
  .logo {
    font-size: 0.9rem;
  }

  /* Always show hamburger, hide desktop links */
  .mobile-menu-btn {
    display: block;
    order: 2;  /* second in the stack */
    margin-top: 0.25rem;
  }
  .main-nav-links, .nav-links {
    display: none !important;
  }

  /* Auth links centered on their own line */
  .auth-links {
    display: flex !important;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }

  /* Match new header height in your root vars */
  body {
    padding-top:  calc(0.5rem /*top*/ + 1.6rem /*logo/nav height*/ + 0.5rem /*bottom*/);
  }
}

/* Center “error‑page” */
.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centering */
  align-items: center;       /* horizontal centering of children */
  text-align: center;        /* center the h1/p/link text */
  min-height: calc(50vh - 60px);  /* fill viewport minus your fixed header height */
  padding: 2rem;             /* some breathing room */
  box-sizing: border-box;
}

/* CSS */
.social-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center; /* or align to left/right as needed */
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.social-link:hover {
  background: var(--gradient-secondary);
  transform: scale(1.1);
}

/* Container to wrap all schedule cards */
.batch-schedule {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 1rem 0;
}

.batch-schedule h3{
    margin-bottom: 0.5rem;
}

/* Common card styling */
.schedule-card {
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover lift effect */
.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Headings inside cards */
.schedule-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* underline decoration

.schedule-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;                
  transform: translateX(-50%);  
  width: 40px;              
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}
 */

/* List of times */
.schedule-card .times {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-card .times li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: var(--text-dark);
}

/* Remove border on last item */
.schedule-card .times li:last-child {
  border-bottom: none;
}

/* Special styling for Yoga Therapy card */
.therapy-card {
  background: var(--gradient-secondary);
  text-align: center;
}

.therapy-card .therapy-time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 0;
}


@media (max-width: 450px) {
  /* make header content stack vertically and center */
  #header nav .nav-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;           /* for absolute hamburger */
    padding: 1rem 0.5rem;         /* less horizontal padding */
  }

  #header .logo{
    font-size: 1.2rem;
  }

  /* logo image and text stack */
  #header .logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* hide all nav links by default */
  #header .main-nav-links,
  #header .auth-links {
    display: none;
  }

  /* show hamburger and pin top right */
  #header .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    z-index: 10;
  }

  /* when hamburger toggles open */
  #header .main-nav-links.open,
  #header .auth-links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 0;
    border-radius: 0 0 12px 12px;
  }
  .card{
    padding-right: 10px;
    padding-left: 15px;
  }
.mission-point {
    background: rgba(151, 137, 164, 0.05);
    padding-right: 8px;
    padding-left: 10px;
    }
}

@media (max-width: 300px) {
  .mission-point {
    width: 75vw;
    max-width: none;
    margin: 0 auto;
    padding: 10px;
  }
}

.batch_form{
    display: block;
    margin-top: 1rem;
}

.students-header textarea {
  width: 100%;
  padding: 0.75rem 1rem;           /* adds inside space */
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;         /* include padding in width */
  resize: vertical;               /* allow user to grow/shrink vertically */
  min-height: 2rem;               /* ensure an initial comfortable height */
}

.delete-btn{
   color: #d51818;
   font-weight: 700;
   z-index: 2;
   border: #666;
}

.delete-btn-stu{
   color: #d51818;
   font-weight: 700;
   z-index: 2;
   background-color: var(--gradient-secondary);
   border: var(--gradient-secondary);
}

.g-recaptcha{
    max-width: 150px;
    font-size: medium;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.whatsapp-link {
  display: inline‑block;
  margin: 1em;
  transition: transform 0.15s ease;
}
.whatsapp-link:hover {
  transform: scale(1.1);
}
.whatsapp-logo {
  width: 48px;
  height: 48px;
}
 .hero-section {
            position: relative;
            min-height: 100vh;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 2rem 0;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .leaf {
            position: absolute;
            width: 20px;
            height: 40px;
            background: var(--gradient-theme);
            color: var(--gradient-forest);
            border-radius: 0 100% 0 100%;
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
        }

        .leaf:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; transform: rotate(15deg); }
        .leaf:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; transform: rotate(-30deg); }
        .leaf:nth-child(3) { top: 60%; left: 5%; animation-delay: 4s; transform: rotate(45deg); }
        .leaf:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 6s; transform: rotate(-15deg); }
        .leaf:nth-child(5) { top: 40%; left: 80%; animation-delay: 1s; transform: rotate(60deg); }

        .energy-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(143, 172, 71, 0.08) 0%, transparent 70%);
            animation: pulse 6s ease-in-out infinite;
        }

        .circle-1 { width: 300px; height: 300px; top: 10%; right: 10%; animation-delay: 0s; }
        .circle-2 { width: 200px; height: 200px; bottom: 15%; left: 8%; animation-delay: 2s; }
        .circle-3 { width: 150px; height: 150px; top: 50%; right: 20%; animation-delay: 4s; }

        .hero-container {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            height: 100%;
        }

        .hero-content {
            animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(143, 172, 71, 0.2);
            box-shadow: var(--shadow-soft);
        }

        .hero-title {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 500px;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gradient-theme);
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            padding: 1rem 2rem;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            height: 600px;
            animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .yoga-figure {
            position: absolute;
            top: 50%; left: 50%;
            width: 300px; height: 400px;
            transform: translate(-50%, -53%);
            border-radius: 150px 150px 50px 50px;
            box-shadow:0 4px 8px rgba(0,0,0,0.15);    /* main shadow */
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.6);
            background-image: url('/static/images/hero-meditation-3.png');
            background-size: cover;       /* <-- cover the whole div */
            background-position: center;    
            background-repeat: no-repeat;
            background-color: var(--gradient-secondary);         /* optional: fill behind the image */
        }

        .yoga-figure::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            opacity: 0;
        }

        .yoga-pose {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70%;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 2rem;
        }

        .pose-arms {
            width: 200px;
            height: 150px;
            border: 3px solid rgba(255, 255, 255, 0.6);
            border-radius: 100px 100px 0 0;
            border-bottom: none;
            animation: breathe 4s ease-in-out infinite;
        }

        .meditation-aura {
            position: absolute;
            top: -50px;
            left: -50px;
            right: -50px;
            bottom: -50px;
            border: 2px solid rgba(143, 172, 71, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .meditation-aura::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            border: 1px solid rgba(143, 172, 71, 0.2);
            border-radius: 50%;
            animation: rotate 15s linear infinite reverse;
        }

        .stats-floating {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(143, 172, 71, 0.1);
            opacity: 0.9;
        }

        .stat-1 {
            top: 10%;
            right: -10%;
            animation: floatUp 6s ease-in-out infinite;
        }

        .stat-2 {
            bottom: 20%;
            left: -15%;
            animation: floatUp 6s ease-in-out infinite 2s;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.25rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
            50% { transform: translateY(-20px) rotate(var(--rotation, 0deg)); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.05; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        @keyframes slideInLeft {
            0% { transform: translateX(-100px); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            0% { transform: translateX(100px); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .mobile-stats {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .mobile-stat {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 1rem;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(143, 172, 71, 0.1);
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                height: auto;
                align-items: flex-start;
                padding: 3rem 0 4rem 0;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 0 1rem;
                height: auto;
            }

            .hero-visual {
                height: 450px;
                order: -1;
            }

            .yoga-figure {
                width: 200px;
                height: 300px;
            }

            .hero-cta {
                justify-content: center;
            }
              /* show the floating stats on mobile too */
            .stats-floating {
                display: block;           /* undo the desktop-only hide */
            }

            /* if you’re still using mobile-stats grid, hide it now */
            .mobile-stats {
                display: none;
            }

            /* reposition stat-1 & stat-2 so they stay in view */
            .stat-1 {
                top: 1%;                  /* closer to the top */
                right: 5%;                /* pull it in from the right edge */
                animation: floatUp 6s ease-in-out infinite;
            }

            .stat-2 {
                bottom: 1%;               /* pull it up from the bottom */
                left: 5%;                 /* pull it in from the left edge */
                animation: floatUp 6s ease-in-out infinite 2s;
            }

        }

        /* Base: mobile-first accordion behavior */
.service-category details {
  border: none;      /* keep your existing border-left on .service-category */
}

.service-category summary {
  list-style: none;  /* remove triangle bullet */
  cursor: pointer;
  outline: none;
}

.service-category summary::-webkit-details-marker {
  display: none;     /* hide default arrow */
}

/* add your own arrow (optional) */
.service-category summary::after {
  content: "▸";
  float: right;
  transition: transform .2s ease;
}

.service-category details[open] > summary::after {
  transform: rotate(90deg);
}

/* default: hide the list until expanded */
.service-category ul {
  display: none;
  margin-top: 0.5em;
}

/* when open, show it */
.service-category details[open] > ul {
  display: block;
}

.para-style p{
  text-align: center;
}

.para-style h4{
    text-align: center;
    color: var(--accent-color);
    text-decoration: underline;
}

/* Slightly larger text on wider screens */
@media (min-width: 768px) {
  .para-style {
    font-size: 1.125rem;
  }
}

        /* Base: mobile-first accordion behavior */
.cert-list details {
  border: none;      /* keep your existing border-left on .cert-list */
}

.cert-list summary {
  list-style: none;  /* remove triangle bullet */
  cursor: pointer;
  outline: none;
}

.cert-list summary::-webkit-details-marker {
  display: none;     /* hide default arrow */
}

.cert-list details[open] > summary::after {
  transform: rotate(90deg);
}

/* default: hide the list until expanded */
.cert-list ul {
  display: none;
  margin-top: 0.5em;
}

/* when open, show it */
.cert-list details[open] > ul {
  display: block;
}
.img_subtitle{
    font-size: 12px;
    margin-top: 0.2rem;
    text-align: center;
    grid-column: 2;
}

/* base flex layout */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  transition: padding 0.3s ease;
}

/* logo section: image + title */
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}
#header.logo__img {
  height: 3.5rem;
  width: 3.75rem;
  transition: opacity 0.3s ease;
}
.logo {
  font-size: 1.25rem;
  font-weight: bold;
  white-space: nowrap;
}

/* when scrolled: */
#header.scrolled .logo {
  opacity: 0;
  visibility: hidden;
  width: 0;
  margin: 0;
  padding: 0;
}

/* Optional: shrink height */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg, white);
  z-index: 1000;
}
#header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-meditation-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-30%);
  opacity: 0;
}