.journey-section{
    padding:50px 5%;
    background:#f8f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.badge{
    display:inline-block;
    background:#fff1e7;
    color:#ff6b00;
    padding:10px 22px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title h2{
    font-size:45px;
    color:#101840;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#6b7280;
}

.journey-card{
    max-width:1400px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:25px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.journey-card h3{
    color:#ff6b00;
    font-size:45px;
    margin-bottom:25px;
}

.journey-card p{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:25px;
}

.stats{
    display:flex;
    justify-content:space-around;
    margin-top:50px;
    text-align:center;
}

.stat-box h4{
    font-size:50px;
    color:#ff6b00;
    font-weight:700;
}

.stat-box span{
    font-size:22px;
    color:#6b7280;
}

/* Mobile */

@media(max-width:768px){

    .section-title h2{
        font-size:36px;
    }

    .journey-card{
        padding:30px;
    }

    .journey-card h3{
        font-size:34px;
    }

    .journey-card p{
        font-size:18px;
    }

    .stats{
        flex-direction:column;
        gap:30px;
    }

    .stat-box h4{
        font-size:48px;
    }
}







.mission-section{
    background:#f8f9fc;
    padding:50px 5%;
}

.mission-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:30px;
}

.section-badge{
    display:inline-block;
    background:#fff1e7;
    color:#ff6b00;
    padding:10px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.mission-side h2,
.values-side h2{
    font-size:45px;
    color:#101840;
    margin-bottom:35px;
    font-family:Georgia, serif;
}

/* Mission Card */

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.mission-item{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.icon-box{
    width:50px;
    height:50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:24px;
}

.mission-icon{
    background:#fff3ea;
    color:#ff6b00;
}

.vision-icon{
    color:#00a8e8;
}

.mission-heading{
    color:#ff6b00;
    font-size:25px;
    margin-bottom:12px;
}

.vision-heading{
    color:#00a8e8;
    font-size:25px;
    margin-bottom:12px;
}

.mission-item p{
    font-size:16px;
    line-height:1.9;
    color:#5f6b7a;
}

/* Values */

.values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.value-card{
    background:#fff;
    border-radius:25px;
    text-align:center;
    padding:45px 20px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-5px);
}

.value-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    margin:auto;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.blue-bg{
    background:#e8f3ff;
    color:#2d6cdf;
}

.purple-bg{
    background:#f4ebff;
    color:#8b5cf6;
}

.green-bg{
    background:#edf9ef;
    color:#3e8c41;
}

.orange-bg{
    background:#fff4e8;
    color:#ff6b00;
}

.value-card h3{
    color:#101840;
    font-size:22px;
    font-weight:600;
}

/* Mobile */

@media(max-width:992px){

    .mission-container{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .mission-side h2,
    .values-side h2{
        font-size:40px;
    }
}






.founder-section{
    position:relative;
    padding:50px 6%;
    background:
    linear-gradient(rgba(12,18,58,.88),
    rgba(12,18,58,.88)),
    url('background.jpg');
    background-size:cover;
    background-position:center;
}

.founder-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

/* IMAGE */

.founder-image{
    flex:0 0 42%;
}

.founder-image img{
    width:100%;
    max-width:520px;
    height:440px;
    object-fit:cover;
    border-radius:28px;
    display:block;
}

/* CONTENT */

.founder-content{
    flex:1;
    color:#fff;
    padding-top:10px;
    padding-bottom:10px;
}

/* LEADERSHIP */

.leadership-badge{
    display: block;
    width: fit-content;
    margin: 0 auto 40px auto; /* centers horizontally */
    
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
    padding: 12px 28px;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SONAM KUMARI */

.founder-name-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff3ea;
    color:#ff6b00;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

/* TITLE */

.founder-content h2{
    font-family:Georgia, serif;
    font-size:40px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:28px;
    color:#fff;
}

/* PARAGRAPHS */

.founder-content p{
    font-size:16px;
    line-height:1.7;
    color:rgba(255,255,255,.92);
    margin-bottom:22px;
}

.founder-content strong{
    color:#fff;
    font-weight:700;
}

/* MOBILE */

@media(max-width:992px){

    .founder-container{
        flex-direction:column;
    }

    .founder-image{
        width:100%;
    }

    .founder-image img{
        max-width:100%;
        height:auto;
    }

    .founder-content h2{
        font-size:38px;
    }

    .founder-content p{
        font-size:16px;
    }
}








.team-section{
    padding:100px 6%;
    background:#f8f9fc;
}

.team-header{
    text-align:center;
    margin-bottom:60px;
}

.team-badge{
    display:inline-block;
    background:#fff1e8;
    color:#ff6b00;
    padding:12px 24px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.team-header h2{
    font-size:58px;
    color:#101840;
    margin-bottom:15px;
    font-family:Georgia, serif;
}

.team-header p{
    font-size:20px;
    color:#6b7280;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.team-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.team-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    text-align:center;
    padding-bottom:30px;
    position:relative;
    transition:all .4s ease;
    box-shadow:0 10px 30px rgba(255,107,0,.08);
}

.team-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#ff6b00;
    transform:scaleX(0);
    transition:.4s;
}

.team-card:hover::before{
    transform:scaleX(1);
}

.team-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(255,107,0,.20);
}

/* IMAGE */

.image-box{
    overflow:hidden;
}

.team-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.team-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */

.team-card h3{
    font-size:26px;
    color:#101840;
    margin-top:10px;
    margin-bottom:10px;
    transition:.3s;
}

.team-card:hover h3{
    color:#ff6b00;
}

.designation{
    display:block;
    color:#6b7280;
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
    transition:.3s;
}

.team-card:hover .designation{
    color:#ff6b00;
}

/* SOCIAL */

.social-links{
    display:flex;
    justify-content:center;
    gap:12px;
    transition:.4s;
}

.team-card:hover .social-links{
    transform:translateY(-5px);
}

.social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff1e8;
    color:#ff6b00;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.4s;
	margin-top: 10px;
}

.social-links a:hover{
    background:#ff6b00;
    color:#fff;
    transform:rotate(360deg);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .team-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .team-container{
        grid-template-columns:1fr;
    }

    .team-header h2{
        font-size:40px;
    }

    .team-header p{
        font-size:17px;
    }
}









