/* ================= BASE ================= */
body {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

/* ================= HEADER ================= */
.header {
    position: sticky;
    top: 0;
    background: rgba(2, 6, 23, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ebe5e8;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO */
.logo-wrap img {
    height: 64px;
    /* increased from ~48–56px */
    width: auto;
}


.logo-wrap span {
    font-size: 26px;
    /* increased */
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.4px;
}


/* NAVIGATION */
.nav a {
    margin-left: 70px;
    /* more breathing space */
    font-size: 18px;
    /* increased from 14–15px */
    font-weight: 700;
    color: #f8efe8;
    position: relative;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #fecb00;
}

/* ================= HERO ================= */
.hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #eef4ff, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 52px;
}

.hero-content span {
    color: #eead04;
}

.hero-content p {
    margin-top: 18px;
    font-size: 18px;
    color: #475569;
}

.hero-image img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.18);
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #2563eb, #0231b3);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .35);
}

/* ================= SECTIONS ================= */
.section {
    padding: 70px 0;
}

.section.alt {
    background: #f1f5f9;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 14px;
}

.section-subtitle {
    text-align: center;
    color: #475569;
}

/* ================= GRID ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(2, 6, 23, 0.96);
    padding: 28px;
    border-radius: 16px;

    /* text base color */
    color: #cbd5e1;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    will-change: transform;
}

/* Hover popup – SAME EFFECT */
.card:hover {
    transform: translateY(-14px) scale(1.035);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.55),
        0 18px 40px rgba(0, 0, 0, 0.45);
    z-index: 10;
}

/* Headings */
.card h3 {
    color: #eead04;
    font-weight: 600;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

/* Hover heading micro-move */
.card:hover h3 {
    transform: translateY(-3px);
    letter-spacing: 0.01em;
}

/* Body text */
.card p,
.card li {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Optional list spacing */
.card ul {
    padding-left: 18px;
}



/* ================= FOUNDER ================= */
.founder-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    background: white;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .12);
}

.founder-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.founder-qualifications span {
    background: #eef4ff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin: 4px;
    display: inline-block;
}

/* ================= CONTACT ================= */

#contact {
    --contact-font: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
    --contact-text-main: #c9c9c9ee;
    --contact-text-muted: #a3a3a3;
    --contact-accent: #eead04;

    font-family: var(--contact-font);
    color: var(--contact-text-main);
}

/* ================================
   CARD LAYOUT
================================ */
.contact-card {
    display: flex;
    gap: 2rem;
    background: rgba(2, 6, 23, 0.96);
    padding: 2.5rem;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

/* ================================
   LEFT SIDE (CONTACT DETAILS)
================================ */
.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 45px;
    /* adjust this value */
}


.contact-left h2 {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0 0 18px 0;
    color: #d5d5d5;
}


/* EACH CONTACT ROW — FIXED LEFT EDGE */
.contact-item {
    display: grid;
    grid-template-columns: 15px auto;
    column-gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

/* ICON — LEFT ALIGNED */
.contact-item i {
    font-size: 16px;
    color: var(--contact-text-muted);
    line-height: 1;
    justify-self: start;
}

/* TEXT — LEFT ALIGNED */
.contact-item a {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--contact-text-muted);
    text-decoration: none;
    text-align: left;
}

.contact-item a:hover {
    color: var(--contact-accent);
}

/* ================================
   RIGHT SIDE (FORM)
================================ */
.contact-right {
    flex: 1.3;
}

/* FORM GRID */
.contact-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.contact-form textarea {
    grid-column: span 3;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    font-family: var(--contact-font);
    font-size: 0.95rem;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--contact-text-main);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 0.85rem;
    color: var(--contact-text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--contact-accent);
}

/* BUTTON */
.contact-form button {
    grid-column: span 3;
    justify-self: flex-end;
    padding: 10px 28px;
    background: var(--contact-accent);
    color: #000;
    border: none;
    border-bottom-right-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ffbf2f;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea,
    .contact-form button {
        grid-column: span 1;
    }
}



/* ================= FOOTER ================= */
.footer {
    background: #020617;
    color: #cbd5f5;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-social a {
    display: flex;
    gap: 10px;
    color: #cbd5f5;
}

.footer-qr img {
    width: 130px;
    background: white;
    padding: 8px;
    border-radius: 10px;
}

/* ================= ANIMATIONS ================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .9s ease forwards;
}

.fade-delay-1 {
    animation-delay: .2s;
}

.fade-delay-2 {
    animation-delay: .4s;
}

.fade-delay-3 {
    animation-delay: .6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media(max-width:900px) {

    .hero-grid,
    .founder-card,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================
   FOOTER BOTTOM (CENTERED)
========================= */
.footer {
    background: #020617;
    color: #eead04;
    padding: 64px 0 32px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

/* Unified Heading Style */
.footer-heading {
    color: #eead04;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

/* Brand Text */
.footer-brand p {
    max-width: 360px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Social Links */
.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e1cbd6;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #eead04;
    transform: translateX(4px);
}

/* QR Image */
.footer-qr img {
    width: 120px;
    border-radius: 8px;
    background: #eead04;
    padding: 2px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .nav a {
        margin-left: 32px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
    }

    .hero-grid,
    .founder-card,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .card:hover {
        transform: none;
    }

    .contact-card {
        flex-direction: column;
        padding: 1.8rem;
    }

    .contact-left {
        padding-left: 0;
        text-align: center;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section h2 {
        font-size: 28px;
    }

    .card {
        padding: 22px;
    }
}

@media (max-width: 768px) {

    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social a {
        justify-content: left;
    }

}