:root {
    --primary: #0ea5e9;       /* The Bright Blue from your logo/buttons */
    --navy: #0f172a;          /* The Dark Footer/Text Color */
    --slate: #64748b;         /* Muted text */
    --bg-light: #f8fafc;      /* Light gray background sections */
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: #555;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.6;

    display: flex;
    flex-direction: column;
    min-height: 100vh;

    /* FULL PAGE DOT BACKGROUND */
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 22px 22px;
    background-repeat: repeat;
    background-attachment: fixed; /* optional but recommended */
}


a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.bg-alt {
    background:
        linear-gradient(135deg, #f7f9fc 0%, #eef3fb 100%),
        radial-gradient(circle at 20% 20%, rgba(59,130,246,0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(59,130,246,0.06) 0%, transparent 45%);
    background-blend-mode: normal;
}


/* --- Navigation --- */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Use this if you have the image logo, otherwise text fallback */
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.btn-nav-contact {
    background-color: var(--primary);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav-contact:hover { background-color: #0284c7; }

/* --- Mobile Menu Toggle --- */
.hamburger { display: none; cursor: pointer; }
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.show { display: flex; }
    .hamburger { display: block; }
}

/* --- Common Components --- */
.py-section { padding: 5rem 0; }
.bg-alt { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-blue { color: var(--primary); }
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btn-outline {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    background: white;
}

/* --- Hero Section (Home) --- */
.hero { padding: 6rem 0 4rem; text-align: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; color: var(--slate); max-width: 750px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; margin-bottom: 4rem; }

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    margin-inline: auto;
}

/* --- About Page Specifics --- */
.founder-card {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* --- Pricing Page Specifics --- */
.guideline-item {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}
.guideline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.t-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.stars { color: #facc15; margin-bottom: 1rem; letter-spacing: 2px; }

/* --- Contact Form --- */
.contact-wrapper { max-width: 800px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}
.info-icon { color: var(--primary); margin-bottom: 0.5rem; }

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto; /* Pushes footer to bottom */
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer h4 { color: var(--primary); margin-bottom: 1.5rem; }
.footer ul li { margin-bottom: 0.75rem; color: #94a3b8; }
.footer a:hover { color: white; }
.copyright {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .founder-card { flex-direction: column; text-align: center; }
    .contact-info { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
/* --- New About Page Styles --- */

/* Grid for Purpose/Promise side-by-side */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.h-100 { height: 100%; }

/* Founder Premium Layout */
.founder-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.founder-sidebar {
    flex: 0 0 250px; /* Fixed width for sidebar */
    text-align: center;
}

.founder-photo-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.founder-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.badge-item {
    background: var(--bg-light);
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border);
}

.badge-item i { width: 16px; height: 16px; color: var(--primary); }

.founder-content { flex: 1; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .founder-layout { flex-direction: column; align-items: center; text-align: center; }
    .founder-sidebar { width: 100%; }
    .founder-photo-large { margin-inline: auto; }
}
/* --- Compact Page Header --- */
.page-header {
    padding: 3rem 0 2rem; /* Reduced from 5rem to 3rem */
    background-color: var(--bg-light);
    text-align: center;
    margin-bottom: 2rem;
}

/* Optional: Adjust font size if the text feels too big for the smaller banner */
.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    margin-bottom: 0;
}

/* --- New Modern Story Section --- */
.story-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
}

.story-text h6 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
}

/* The Visual Card on the right */
.story-visual {
    background: var(--navy);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 20px 20px 0px var(--bg-light); /* Offset shadow effect */
}

.story-visual h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-visual p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .story-split { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .story-text h1 { font-size: 2.5rem; }
    .story-visual { padding: 2rem; box-shadow: 10px 10px 0px var(--bg-light); }
}
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.founder-photo-large {
    /* Define the size of the photo area */
    width: 100%; /* Usually fits the parent column */
    max-width: 400px; /* Optional: Prevents it getting too big on wide screens */
    aspect-ratio: 4 / 5; /* Optional: Locks in a portrait shape (modern browser support) */
    
    /* ROUNDED EDGES SETUP */
    /* Adjust the pixel value to make it more or less round */
    border-radius: 16px; 
    /* IMPORTANT: This cuts off the corners of the image to fit the radius */
    overflow: hidden;

    /* Optional: Adds a subtle shadow for depth */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Ensure the image fills the rounded container perfectly */
.founder-photo-large img {
    width: 100%;
    height: 100%;
    /* Crucial: ensures image covers area without stretching */
    object-fit: cover; 
    display: block; 
}

.feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.alt-section p {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 10px;
}

.icon-circle {
    background: #eff6ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.alt-section p {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 10px;
}

.icon-circle {
    background: #eff6ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}



