/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#ffffff;
    color:#1a1a1a;
    line-height:1.7;
}

/* ================= ABOUT HERO ================= */

.about-hero{
    min-height:45vh;
    padding:50px 185px;   /* left-right 30px equal */
    background:#f9fafc;
}



/* Heading */

.about-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:30px;
    text-align: center;
}

.about-text{
    color:#111111;
}

.brand-text{
    color:#6c2bd9;
}

/* Paragraph */

.about-hero p{
    font-size:19px;
    color:#555555;
    line-height:1.9;
    
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    
    
}

/* Responsive */

@media(max-width:768px){

    .about-hero h1{
        font-size:34px;
    }

    .about-hero p{
        font-size:16px;
        text-align: justify;
    }
}

/* ================= ABOUT HERO RESPONSIVE ================= */

@media (max-width:1200px){
    .about-hero{
        padding:60px 100px;
    }
}

@media (max-width:992px){
    .about-hero{
        padding:60px 60px;
    }

    .about-hero h1{
        font-size:38px;
    }

    .about-hero p{
        font-size:17px;
        text-align:left; /* better readability */
    }
}

@media (max-width:768px){
    .about-hero{
        padding:50px 25px;   /* 🔥 important fix */
        min-height:auto;
    }

    .about-hero h1{
        font-size:30px;
        line-height:1.3;
    }

    .about-hero p{
        font-size:15px;
        line-height:1.7;
        text-align:left;   /* mobile pe justify avoid karo */
    }
}

@media (max-width:480px){
    .about-hero{
        padding:40px 18px;
    }

    .about-hero h1{
        font-size:26px;
    }

    .about-hero p{
        font-size:14px;
    }
}












/* ===== Founder Section ===== */
/* ===== SECTION BASE ===== */
.founder-section{
    padding:40px 8%;
    background:#f8faff;
    text-align:center;
}

/* ===== HEADING ===== */
/* ===== HEADING AREA ===== */

.founder-heading{
    text-align:center;
    margin-bottom:40px;
}

.founder-heading h2{
    font-size:50px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:5px;
    letter-spacing:1px;
}

.founder-subtitle{
    font-size:25px;
    font-weight:500;
    color:#64748b;
}
/* ===== GLASS CARD ===== */
.founder-card{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:70px;
    align-items:center;
    padding:60px;
    border-radius:25px;
    text-align:left;
    position:relative;
    z-index:1;

    border:2px solid transparent;

    background:
        linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)) padding-box,
        linear-gradient(135deg, #4f46e5, #7c3aed, #3b82f6) border-box;

    backdrop-filter:blur(18px);

    box-shadow:0 25px 60px rgba(0,0,0,0.08);

    transition:all 0.4s ease;
}

/* 🔥 Permanent Glow Layer */
.founder-card::before{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:30px;
    background:linear-gradient(135deg,#4f46e5,#7c3aed,#3b82f6);
    filter:blur(25px);
    opacity:0.1;   /* 👈 Glow intensity */
    z-index:-1;
}

/* Hover pe thoda strong */
.founder-card:hover{
    transform:translateY(-8px);
}

.founder-card:hover::before{
    opacity:0.3;
}

/* ===== IMAGE SIDE ===== */
.founder-image{
    flex:1;
    text-align:center;
}

.founder-image img{
    width:320px;
    border-radius:20px;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.founder-image img:hover{
    transform:translateY(-10px) scale(1.03);
}

.founder-image h3{
    margin-top:20px;
    font-size:24px;
    font-weight:700;
    color:#111827;
}

.founder-image span{
    display:block;
    margin-top:5px;
    font-size:15px;
    color:#64748b;
}

/* ===== CONTENT SIDE ===== */
.founder-content{
    flex:1;
}

.lead-text{
    font-size:20px;
    font-weight:600;
    margin-bottom:20px;
    color:#1e293b;
}

.founder-content p{
    font-size:16px;
    line-height:1.7;
    color:#475569;
    margin-bottom:18px;
}

/* ===== HIGHLIGHTS ===== */
.founder-highlights p{
    font-size:16px;
    margin-bottom:12px;
    font-weight:500;
    color:#0f172a;
}

/* ===== BUTTON ===== */
.founder-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 32px;
    border-radius:30px;
    background:linear-gradient(90deg,#4f46e5,#3b82f6);
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.founder-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(59,130,246,0.3);
}

/* ================= FOUNDER RESPONSIVE ================= */

@media (max-width:992px){

    .founder-section{
        padding:70px 6%;
    }

    .founder-heading h2{
        font-size:36px;
        letter-spacing:0.5px;
    }

    .founder-subtitle{
        font-size:20px;
    }

    .founder-card{
        flex-direction:column;
        gap:40px;
        padding:40px;
        border-radius:20px;
        text-align:center;
    }

    .founder-content{
        text-align:center;
    }

    .founder-image img{
        width:260px;
    }

    .lead-text{
        font-size:18px;
    }

    .founder-content p{
        font-size:15px;
        line-height:1.7;
    }

}


/* Small Mobile */

@media (max-width:576px){

    .founder-section{
        padding:50px 5%;
    }

    .founder-heading h2{
        font-size:28px;
    }

    .founder-subtitle{
        font-size:16px;
    }

    .founder-card{
        padding:28px 20px;
        border-radius:16px;
    }

    .founder-image img{
        width:200px;
        border-radius:16px;
    }

    .founder-image h3{
        font-size:20px;
    }

    .founder-image span{
        font-size:14px;
    }

    .lead-text{
        font-size:16px;
    }

    .founder-content p{
        font-size:14px;
        line-height:1.6;
    }

    .founder-highlights p{
        font-size:14px;
    }

    .founder-btn{
        padding:12px 24px;
        font-size:14px;
        border-radius:25px;
    }

}




















/* ================= VISION SECTION ================= */

.vision-section{
    padding:70px 8%;
    background:#f8faff;
    text-align:center;
}

/* Heading */

.vision-heading h2{
    font-size:50px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.vision-heading p{
    color:#64748b;
    font-size:18px;
    margin-bottom:80px;
}

/* Wrapper */

.vision-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    flex-wrap:wrap;
}

/* Card */

.vision-card{
    flex:1 1 520px;
    padding:60px;
    border-radius:25px;
    text-align:left;
    position:relative;

    border:2px solid transparent;

    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg,#4f46e5,#7c3aed,#3b82f6) border-box;

    box-shadow:0 20px 60px rgba(0,0,0,0.06);

    transition:all 0.4s ease;
}

/* Hover */

.vision-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.08),
        0 0 40px rgba(124,58,237,0.15);
}

/* Icon */

.vision-icon{
    width:60px;
    height:60px;
    margin-bottom:25px;
}

.vision-icon svg{
    width:100%;
    height:100%;
    stroke:#4f46e5;
    stroke-width:1.5;
    fill:none;
}

/* Title */

.vision-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    color:#0f172a;
}

/* Text */

.vision-card p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:18px;
}

/* Responsive */

@media(max-width:992px){
    .vision-wrapper{
        flex-direction:column;
    }
}


/* ================= VISION RESPONSIVE ================= */

@media (max-width:992px){

    .vision-section{
        padding:80px 6%;
    }

    .vision-heading h2{
        font-size:36px;
    }

    .vision-heading p{
        font-size:16px;
        margin-bottom:50px;
    }

    .vision-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .vision-card{
        padding:40px;
        border-radius:20px;
    }

    .vision-card h3{
        font-size:24px;
        margin-bottom:18px;
    }

    .vision-card p{
        font-size:15px;
        line-height:1.75;
    }

    .vision-icon{
        width:50px;
        height:50px;
        margin-bottom:20px;
    }

}


/* Small Mobile */

@media (max-width:576px){

    .vision-section{
        padding:60px 5%;
    }

    .vision-heading h2{
        font-size:28px;
        line-height:1.3;
    }

    .vision-heading p{
        font-size:14px;
        margin-bottom:40px;
    }

    .vision-card{
        padding:30px 22px;
        border-radius:16px;
    }

    .vision-card h3{
        font-size:20px;
    }

    .vision-card p{
        font-size:14px;
        line-height:1.7;
    }

    .vision-icon{
        width:45px;
        height:45px;
    }

}











/* ================= VALUES SECTION ================= */

.values-section{
    padding:70px 8%;
    background:#f8faff;
}

/* ===== Heading ===== */

.values-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 90px auto;
}

.values-heading h2{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.values-heading p{
    font-size:18px;
    color:#64748b;
    line-height:1.7;
}

/* ===== Wrapper ===== */

.values-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:50px;
}

/* ===== Card ===== */

.value-card{
    position:relative;
    padding:55px 40px;
    border-radius:22px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    transition:all 0.4s ease;
    overflow:hidden;
}

/* Gradient top accent line */

.value-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#4f46e5,#7c3aed,#3b82f6);
}

/* Hover Effect */

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.08),
        0 0 35px rgba(124,58,237,0.12);
    border-color:transparent;
}

/* ===== Number Style ===== */

.value-icon{
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#7c3aed;
    margin-bottom:25px;
}

/* ===== Title ===== */

.value-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#0f172a;
}

/* ===== Text ===== */

.value-card p{
    font-size:16px;
    line-height:1.85;
    color:#475569;
}

/* ================= VALUES RESPONSIVE ================= */

@media (max-width:992px){

    .values-section{
        padding:80px 6%;
    }

    .values-heading{
        margin-bottom:60px;
    }

    .values-heading h2{
        font-size:36px;
        letter-spacing:-0.5px;
    }

    .values-heading p{
        font-size:16px;
    }

    .values-wrapper{
        gap:30px;
    }

    .value-card{
        padding:40px 30px;
        border-radius:18px;
    }

    .value-card h3{
        font-size:20px;
    }

    .value-card p{
        font-size:15px;
        line-height:1.75;
    }

}


/* Small Mobile */

@media (max-width:576px){

    .values-section{
        padding:60px 5%;
    }

    .values-heading h2{
        font-size:28px;
        line-height:1.3;
    }

    .values-heading p{
        font-size:14px;
    }

    .value-card{
        padding:30px 22px;
        border-radius:14px;
    }

    .value-card::before{
        height:3px; /* top gradient line thinner */
    }

    .value-icon{
        margin-bottom:18px;
    }

    .value-card h3{
        font-size:18px;
    }

    .value-card p{
        font-size:14px;
        line-height:1.7;
    }

}










/* ================= APPROACH SECTION ================= */

.approach-section{
    padding:50px 6%;
    background:#f9fafc;
}

.approach-container{
    max-width:1200px;
    margin:auto;
}

/* ===== Header ===== */

.approach-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 90px auto;
}

.approach-header h2{
    font-size:46px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.approach-header p{
    font-size:17px;
    color:#6b7280;
    line-height:1.8;
}

/* ===== Grid ===== */

.approach-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

/* ===== Card ===== */

.approach-card{
    padding:45px;
    background:#ffffff;
    border-radius:16px;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 30px rgba(0,0,0,0.04);
    transition:all 0.35s ease;
}

.approach-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    border-color:#d1d5db;
}

.approach-card h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:14px;
    color:#111827;
}

.approach-card p{
    font-size:15.5px;
    line-height:1.8;
    color:#4b5563;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .approach-grid{
        grid-template-columns:1fr;
    }
}


/* ================= RESPONSIVE IMPROVEMENTS ================= */

@media (max-width:992px){

    .approach-section{
        padding:80px 6%;
    }

    .approach-header{
        margin-bottom:60px;
    }

    .approach-header h2{
        font-size:34px;
    }

    .approach-header p{
        font-size:16px;
    }

    .approach-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .approach-card{
        padding:30px;
    }

    .approach-card h3{
        font-size:18px;
    }

    .approach-card p{
        font-size:14.5px;
        line-height:1.7;
    }
}


@media (max-width:576px){

    .approach-section{
        padding:60px 5%;
    }

    .approach-header h2{
        font-size:26px;
        line-height:1.3;
    }

    .approach-header p{
        font-size:14px;
    }

    .approach-card{
        padding:24px;
        border-radius:12px;
    }

}









/* ================= ABOUT CLOSING PREMIUM ================= */

.about-closing{
    padding:70px 6%;
    background:#f9fafc;
    position:relative;
    overflow:hidden;
}

/* subtle top divider */

.about-closing::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:4px;
    border-radius:10px;
    display: none;
    background:linear-gradient(90deg,#4f46e5,#7c3aed,#3b82f6);
}

.about-closing-container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* Heading */

.about-closing h2{
    font-size:44px;
    font-weight:800;
    line-height:1.25;
    color:#0f172a;
    margin-bottom:30px;
    letter-spacing:-0.5px;
}

/* Paragraph */

.about-closing p{
    font-size:18px;
    color:#64748b;
    line-height:1.9;
    margin-bottom:50px;
}

/* Button */

.about-btn{
    display:inline-block;
    padding:18px 44px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    color:#ffffff;
    background:linear-gradient(90deg,#4f46e5,#7c3aed);
    transition:all 0.35s ease;
    box-shadow:0 15px 35px rgba(124,58,237,0.25);
}

.about-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 25px 60px rgba(124,58,237,0.35);
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

    .about-closing{
        padding:100px 6%;
    }

    .about-closing h2{
        font-size:28px;
        line-height:1.35;
    }

    .about-closing p{
        font-size:15px;
        line-height:1.7;
    }

    .about-btn{
        padding:14px 28px;
        font-size:14px;
        border-radius:8px;
    }

}