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

:root{
    --green-light: #2ecc71;      
    --green-dark: #13562f;    
    --bg-white: #ffffff;
    --muted-shadow: rgba(16,185,129,0.12);
}


body {
    font-family: 'Poppins', 'Inter' ;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Avoid using a global top margin that impacts all sections */
    margin-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter' ;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--green-light);
    color: #fff;
    border-radius: 15px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green-dark);
}

.btn-secondary {
    background: #fff;
    color: #065f46;
    border-radius: 15px;
}

.btn-secondary:hover {
    background: var(--green-dark);
    color: #ffff;
    transform: translateY(-3px);
}


/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 60%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border: 1px solid #10b981;
    border-radius: 20px;
    margin-top: 1rem;
}

.nav-logo img {
    width: 5vw;
    height: 10vh;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}



.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 100%;
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #065f46;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    /* Ensure hero occupies full viewport height so the next section doesn't overlap it */
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    /* Clear the fixed navbar height so content is never hidden underneath */
    padding-top: 90px;
}


.hero-background {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(73.01% 111.34% at 50.03% 0%, #FFFFFF 0%, #FFFFFF 37.54%, #F2F3F5 75.08%, #58d68d 100%);
    background-size: 100% 100%;
    inset: 0;
}


.hero-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--green-light);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: var(--green-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    margin-bottom: 2rem;
    color: var(--green-light);
    font-weight: 500;
}

.gold-text {
    color: var(--green-dark);
    border: 1px solid #10b981;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

/* corner boxes/handles for the outlined word */
.gold-text::before,
.gold-text::after{
    content: "";
    position: absolute;
    inset: -6px; /* place just outside the border */
    pointer-events: none;
    background-repeat: no-repeat;
}
.gold-text::before{
    background-image:
      linear-gradient(#10b981, #10b981),
      linear-gradient(#10b981, #10b981);
    background-size: 8px 8px, 8px 8px; /* size of the small boxes */
    background-position: top left, top right;
}
.gold-text::after{
    background-image:
      linear-gradient(#10b981, #10b981),
      linear-gradient(#10b981, #10b981);
    background-size: 8px 8px, 8px 8px;
    background-position: bottom left, bottom right;
}

/* small green pill hints with pointer triangle */
.hint {
    position:absolute;
    z-index:1;
    background:var(--green-light);
    color:white;
    padding:8px 14px;
    border-radius:20px;
    font-weight:600;
    font-size:0.9rem;
    box-shadow: 0 10px 22px rgba(16,185,129,0.08);
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.hint::after{
    /* triangle pointer */
    content:"";
    width:12px;height:12px;
    background: var(--green-light);
    transform: rotate(45deg);
    position:absolute;
}
/* example positioning for the two hints in the screenshot */
.hint.left { left:10%; top:88%; transform:translate(-10%, -50%) rotate(-15deg); }
.hint.left::after { left:100%; top:56%; transform: translate(-50%,-50%) rotate(50deg); }
.hint.right { right:8%; top:88%; transform:translate(10%,-50%) rotate(10deg); }
.hint.right::after { right:100%; top:56%; transform: translate(50%,-50%) rotate(50deg); }




.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

/* Services Section */
 .services {
    /* Balanced vertical rhythm for the second section */
    padding: 4rem 0 4rem;
 }

 .services .section-header {
    margin-bottom: 3rem;
 }

 .section-label {
    display: inline-block;
    color: var(--green-light);
    border: 1px solid var(--green-light);
    background: rgba(16,185,129,0.06);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
 }

 .services .section-header h2 {
    color: var(--green-light);
 }

 .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
 }

 .service-card {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0px 12px 20px -8px var(--green-light);
 }

 .service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    color: var(--green-dark);
 }
 .service-icon svg { width: 100%; height: 100%; }
 .service-icon svg * {
    fill: none;
    stroke: var(--green-dark);
    stroke-width: 3;
 }

 .service-card h3 {
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
 }

 .service-card p {
    color: #1f2937;
    opacity: 0.8;
    margin: 0;
 }

 /* Responsive layout for Services */
 @media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
 }

 @media (max-width: 640px) {
    .service-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.25rem; }
 }

 /* Features Section */
 .features { padding: 4rem 0 4rem; }
 .features .section-header { margin-bottom: 3rem; }
 .features .section-header h2 { color: var(--green-light); }
 .section-subtitle {
    max-width: 760px;
    margin: 0.5rem auto 0;
    color: #6b7280; /* gray-500 */
    font-size: 1rem;
 }

 .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
 }

 .feature-card {
    position: relative;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 14px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
 }

 .feature-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green-light);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(16,185,129,0.25);
    border: 1px solid rgba(16,185,129,0.5);
 }

 .feature-icon { width: 90px; height: 90px; margin: 0 auto 1.25rem; color: var(--green-dark); }
 .feature-icon svg { width: 100%; height: 100%; }
 .feature-icon svg * { fill: none; stroke: var(--green-dark); stroke-width: 3; }

 .feature-card h3 { color: var(--green-dark); font-weight: 800; margin-bottom: 0.35rem; }
 .feature-card p { color: #1f2937; opacity: 0.8; margin: 0; }

 @media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
 }
 @media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 2rem 1.25rem 1.5rem; }
 }

 /* Waitlist Section */
 .waitlist { padding: 3rem 0 4rem; }
 .waitlist .container { max-width: 900px; }
 .waitlist-card {
    background: #ffffff;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(16,185,129,0.08);
    padding: 2rem;
 }
 .waitlist-header { text-align: center; margin-bottom: 1.5rem; }
 .waitlist-header h2 { color: var(--green-light); margin-bottom: 0.25rem; font-weight: 500; }
 .waitlist-header p { color: #6b7280; font-size: 1rem; }
 .waitlist-form { display: flex; flex-direction: column; gap: 1rem; }
 .input-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
 .form-group label {
    display: block;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 0.4rem;
    font-weight: 600;
 }
 .waitlist-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(16,185,129,0.3);
    background: linear-gradient(90deg, rgba(16,185,129,0.12), rgba(16,185,129,0.06));
    outline: none;
    color: #0f5132;
    font-weight: 600;
 }


 .waitlist-form input::placeholder {
    color: rgba(19, 86, 47, 0.75);
    font-weight: 700;
 }
 .waitlist-form input:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
    background: #ffffff;
 }
 .waitlist-submit {
    width: 100%;
    border-radius: 12px;
    font-weight: 500;
    padding: 16px 20px;
    box-shadow: 0 10px 20px rgba(16,185,129,0.25);
    margin-top: 0.75rem;
 }
 .waitlist-submit:hover { transform: translateY(-2px); }
 @media (max-width: 640px) { .input-row { grid-template-columns: 1fr; } }

 /* FAQ Section */
 .faq { padding: 3rem 0 5rem; }
 .faq .section-header h2 { color: var(--green-light); }
 .faq-list { display: flex; flex-direction: column; gap: 1rem; }
 .faq-item {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(16,185,129,0.08);
    overflow: hidden;
 }
 .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.25rem;
    text-align: left;
    cursor: pointer;
 }
 .faq-toggle { font-size: 1.6rem; color: var(--green-dark); line-height: 1; }
 .faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid rgba(16,185,129,0.15);
 }

 @media (max-width: 640px) {
    .faq-question { font-size: 1.05rem; padding: 1rem; }
    .faq-answer { font-size: 0.95rem; padding: 0 1rem 1rem; }
 }


/* About Section */


/* Responsive Design */
@media (max-width: 1024px){
    .nav-logo img{
        height: 5vh;
        width: 5vh;
    }
}


@media (max-width: 769px) {

    .nav-menu {
        position: fixed;
        left: -200%;
        top: 80px;
        flex-direction: column;
        background: rgba(234, 250, 241, 1);
        width: calc(100% - 32px);
        text-align: center;
        transition: 0.3s;
        padding: 2rem 16px;
        border-radius: 10px;
        z-index: 2;
        border: 2px solid var(--green-dark);
        margin-top: 2rem;
    }

    .hint {
        font-size: 0.7rem;
    }

    .nav-menu li {
        color: #0f172a; /* improved contrast for mobile menu items */
    }

    .navbar {
        justify-self: center;
        width: 100vw;
        margin-top: 0;
    }

    .nav-container{
        width: 90%;
        height: 73px;
    }

    .nav-menu.active {
        left: 16px;
    }

    /* make links readable on light translucent background */
    .nav-menu a {
        color: #0f172a; /* high-contrast near-black */
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .nav-logo img{
        width: 12vw;
        height: 8vw;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-features {
        gap: 1.5rem;
    }

    .hero-buttons {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        padding: 20px 22px;
    }

    .hint.left{
        top: 68%;
    }

    .hint.right{
        top: 66%;
        transform: translate(-10%, -50%) rotate(20deg)
    }
    

   

    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    

    .navbar {
        justify-self: center;
    }

  
}

@media (max-width: 430px){
    .hint.left{
        left: 5%;
        top: 66%;
    }
    .hint.right{
        right: 4%;
        top: 66%;
        transform: translate(10%, -50%) rotate(15deg)
    }

}

@media (max-width: 414px){
    .hint.left{
        top: 58%;
    }
    .hint.right{
        top: 58%;
    }
}

@media (max-width: 375px) {
    .hint.left{
        top: 53%;
    }
    .hint.right{
        top: 53%;
    }
}

@media (max-width: 380px){
    .nav-logo img{
        height: 10vh;
        width: 20vw;
    }
}

@media (max-width: 430px){
    .nav-logo img{
        height: 8vh;
        width: 20vw;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent anchored sections from being hidden under the fixed navbar */
section { scroll-margin-top: 90px; }

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-feature:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(10px);
}

.contact-item:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(10px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal);
}

@media (max-width: 380px) {
    .hero-title {
        margin-top: 0rem;
        font-size: 2rem;
    }
    
    .container {
        margin-top: 0;
    }

    .navbar {
        justify-self: center;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Notification System Styles */
.notification {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    font-weight: 500;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    animation: slideInUp 0.3s ease;
}

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

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Footer */
.site-footer {
    background: #f3f4f6; /* light gray band like the mock */
    border-top: 1px solid rgba(16,185,129,0.12);
    padding: 1.75rem 0;
}
.site-footer .container { max-width: 1200px; display: block; }
.site-footer .footer-top { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.footer-brand { display: flex; align-items: center; }
.footer-logo-wrap {
    display: inline-flex;
    flex-direction: column; /* stack text under the logo */
    align-items: flex-start;
    gap: 0.15rem;
}
.footer-logo {
    width: 56px;
    height: auto;
    display: block;
}
.footer-logo-text {
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}
.hero-title .gold-text {
    color: var(--green-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform-origin: center;
}
/* centered copyright row */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--green-light);
    font-weight: 700;
    padding: 1rem 0 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(16,185,129,0.12);
    font-size: 0.95rem;
}
.footer-bottom i { color: var(--green-light); font-size: 0.7rem; }

/* X (Twitter) social icon positioned at the far right edge of the footer */
.site-footer { position: relative; }
.site-footer .social-x { display: inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:8px; text-decoration:none; color: #000; }
.site-footer .social-x img { width:56px; height:34px; display:block; object-fit:contain; filter: none; }
.site-footer .social-x:hover { background: rgba(16,185,129,0.06); }

@media (max-width: 640px) {
    .site-footer .social-x { right: 12px; }
}