/* ========================= */
/* ABOUT SECTION BASE */
/* ========================= */

.about-section {
    font-family: Arial, sans-serif;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
/* ========================= */
/* ABOUT HERO - PREMIUM SAAS STYLE */
/* ========================= */

.about-hero {
    position: relative;
    
    background: url("../../images/StackCreate Technologies Banner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
    min-height: 65vh;
    height: auto;
    padding: 80px 8%;
}



/* Soft dark + glass overlay (Stripe-style readability layer) */
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.75) 0%,
        rgba(15, 23, 42, 0.55) 35%,
        rgba(15, 23, 42, 0.25) 60%,
        rgba(15, 23, 42, 0.05) 100%
    );
}

/* Floating glow effect (Apple-style depth) */
.about-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 120, 217, 0.25), transparent 70%);
    filter: blur(40px);
    transform: translateY(-50%);
}

/* CONTENT CONTAINER */
.about-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;

    /* glass card feel */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 30px 28px;
    border-radius: 16px;
}

/* TITLE (Apple/Stripe style) */
.about-content h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 14px;
    font-size: clamp(28px, 5vw, 52px);
}

/* Gradient underline accent */
.about-content h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 12px;
    border-radius: 10px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

/* DESCRIPTION (high readability SaaS style) */
.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 14px;
    font-size: clamp(14px, 2vw, 18px);
}

/* Optional: subtle hover lift effect */
.about-content:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


/* Tablet */
@media (max-width: 1024px) {
    .about-hero {
        padding: 60px 6%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 5%;
        align-items: flex-end; /* better mobile look */
    }

    .about-content {
        max-width: 100%;
        padding: 20px;
    }
}
/* ========================= */
/* MISSION VISION */
/* ========================= */

.mv-section {
    padding: 80px 8%;
    text-align: center;
    background: #f9fafb;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #0f172a;
    position: relative;
}

.mv-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    flex: 1 1 300px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.mv-card h3 {
    margin-bottom: 10px;
    color: #1e293b;
}

.mv-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .mv-cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mv-cards {
        flex-direction: column;
        align-items: center;
    }

    .mv-card {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 26px;
    }
}
/* ========================= */
/* DIVIDER */
/* ========================= */

.divider {
    width: 80%;
    margin: 60px auto;
    border: none;
    height: 1px;
    background: #e5e7eb;
}

/* ========================= */
/* FOUNDER SECTION */
/* ========================= */

/* ========================= */
/* FOUNDER SECTION - PREMIUM SAAS STYLE */
/* ========================= */

.founder-section {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* TEXT SIDE (Glass card style) */
.founder-text {
    flex: 1;
    padding: 35px 30px;

    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* TITLE (premium heading style) */
.founder-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

/* Accent underline like SaaS landing pages */
.founder-text h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

/* TEXT */
.founder-text p {
    font-size: 16.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* IMAGE SIDE */
.founder-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* IMAGE (premium portrait style) */
.founder-img img {
    width: 100%;
    max-width: 380px;
    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transform: scale(1);
    transition: all 0.4s ease;

    border: 6px solid rgba(255, 255, 255, 0.7);
}

/* Hover lift effect */
.founder-img img:hover {
    transform: scale(1.03) translateY(-4px);
}

/* Soft glow behind image (Apple-style depth) */
.founder-img::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .founder-section {
        flex-direction: column;
        text-align: center;
    }

    .founder-text {
        text-align: left;
    }
}
@media (max-width: 1024px) {
    .founder-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }

    .mv-section {
        padding: 60px 5%;
    }

    .founder-section {
        padding: 60px 5%;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .founder-section {
        flex-direction: column;
        gap: 40px;
        padding: 80px 6%;
    }

    .founder-text {
        text-align: left;
    }

    .founder-img img {
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 5%;
    }

    .founder-text {
        padding: 25px 20px;
    }

    .founder-text h2 {
        font-size: 26px;
    }

    .founder-text p {
        font-size: 15px;
    }

    .founder-img img {
        max-width: 250px;
    }
}


@media (max-width: 480px) {
    .about-content {
        padding: 18px;
    }

    .about-content h1 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 14px;
    }

    .mv-section {
        padding: 50px 5%;
    }

    .founder-section {
        padding: 50px 5%;
    }
}


@media (max-width: 768px) {
    .founder-section {
        flex-direction: column;
    }

    .founder-img {
        order: 1; /* image comes first */
    }

    .founder-text {
        order: 2; /* text goes below */
    }
}