
/*banner*/
.about-banner{

    width:100%;
    padding:120px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#ffffff;

}


.about-center{

    max-width:900px;
    margin:auto;

}



.about-small-title{

    display:inline-block;
    color:#0d6efd;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;

}



.about-center h1{

    font-size:55px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin-bottom:25px;

}



.about-center p{

    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:750px;
    margin:auto;

}



/* Responsive */

@media(max-width:768px){

.about-center h1{

    font-size:34px;

}


.about-center p{

    font-size:16px;

}

}


.our-story-section{

    padding:100px 0;

    background:
    linear-gradient(135deg,
    #dbeafe,
    #eff6ff,
    #bfdbfe);

}

.story-container{

    width:90%;
    margin:auto;

    display:flex;
    align-items:center;
    gap:70px;

}

/* LEFT SIDE */

.story-text{

    width:50%;

    background:rgba(255,255,255,0.45);

    padding:40px;

    border-radius:25px;

    backdrop-filter:blur(10px);

}




.story-text span{

    color:#2563eb;

}


.story-text h2{

    color:#0f172a;
    font-size:45px;

}


.story-text p{

    color:#475569;
    font-size:17px;
    line-height:1.8;

}


/* RIGHT IMAGE */


.story-img{

    width:50%;

}

.story-img img{

    width:100%;
    height:500px;
    object-fit:cover;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.2);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.5);

}




@keyframes storyFloat{


0%{

transform:translateY(0);

}


50%{

transform:translateY(-15px);

}


100%{

transform:translateY(0);

}


}




/* MOBILE */

@media(max-width:768px){


.story-container{

    flex-direction:column;

}


.story-text,
.story-img{

    width:100%;

}



.story-text h2{

    font-size:32px;

}



.story-img img{

    height:350px;

}


}

/* team------------*/
.team-section{

    padding:100px 0;

    background:
    linear-gradient(135deg,
    #020617,
    #111827);

}



/* CENTER HEADING */

.team-heading{

    text-align:center;
    max-width:800px;
    margin:auto;

}


.team-heading span{

    color:#60a5fa;
    letter-spacing:3px;
    font-size:14px;
    font-weight:700;

}


.team-heading h2{

    color:white;
    font-size:50px;
    margin:20px 0;

}


.team-heading p{

    color:#cbd5e1;
    font-size:17px;
    line-height:1.8;

}





/* TEAM GRID */


.team-container{

    width:90%;
    margin:60px auto 0;

    display:flex;
    justify-content:center;
    gap:35px;

}




/* CARD */


.team-card{

    width:300px;

    background:
    rgba(255,255,255,0.08);

    padding:25px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.15);

    transition:.4s;

}



.team-card:hover{

    transform:translateY(-15px);

}





/* .team-card img{

    width:180px;
    height:180px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;

} */



/*========================
      TEAM CARD PREMIUM
=========================*/

.team-card{

    width:300px;

    background:linear-gradient(145deg,#172033,#1e293b);

    padding:30px 25px;

    border-radius:28px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.10);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    transition:all .4s ease;

    position:relative;

    overflow:hidden;

}

.team-card::before{

    content:"";

    position:absolute;

    top:-60px;

    right:-60px;

    width:140px;

    height:140px;

    background:rgba(59,130,246,.18);

    border-radius:50%;

}

.team-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(37,99,235,.35);

}

/*========================
      DIRECTOR PHOTO
=========================*/

.director-photo{

    width:190px;

    height:240px;

    margin:0 auto 25px;

    border-radius:22px;

    padding:6px;

    background:linear-gradient(135deg,#2563eb,#60a5fa,#93c5fd);

    box-shadow:
        0 10px 25px rgba(37,99,235,.30),
        0 0 0 6px rgba(255,255,255,.05);

    transition:all .45s ease;

    position:relative;

}

.director-photo img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    border-radius:18px;

    display:block;

    border:4px solid #ffffff;

}

.team-card:hover .director-photo{

    transform:scale(1.04) rotate(-1deg);

    box-shadow:
        0 20px 45px rgba(59,130,246,.45),
        0 0 35px rgba(96,165,250,.35);

}

/*========================
      TEXT STYLING
=========================*/

.team-card h3{

    color:#ffffff;

    font-size:26px;

    font-weight:700;

    margin-bottom:8px;

}

.team-card p{

    color:#93c5fd;

    font-size:16px;

    font-weight:500;

    margin-bottom:12px;

}

/*========================
      LINKEDIN BUTTON
=========================*/

.linkedin-icon{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0a66c2;

    color:#fff;

    text-decoration:none;

    font-size:18px;

    transition:.35s;

}

.linkedin-icon:hover{

    background:#2563eb;

    transform:translateY(-4px) scale(1.08);

}

/*========================
        MOBILE
=========================*/

@media(max-width:768px){

.director-photo{

    width:160px;

    height:210px;

}

.team-card h3{

    font-size:22px;

}

}

.director-photo{

    width:180px;

    height:230px;

    margin:0 auto 22px;

    overflow:hidden;

    border-radius:18px;

    background:#ffffff;

    border:4px solid #3b82f6;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.4s;

}

.director-photo img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    display:block;

}

.team-card:hover .director-photo{

    transform:translateY(-8px);

    border-color:#60a5fa;

    box-shadow:0 20px 45px rgba(59,130,246,.30);

}
@media(max-width:768px){

.director-photo{

    width:150px;

    height:200px;

}

}

.team-card h3{

    color:white;
    font-size:24px;

}



.team-card p{

    color:#93c5fd;

}





/* MOBILE */


@media(max-width:768px){


.team-container{

    flex-direction:column;
    align-items:center;

}


.team-heading h2{

    font-size:34px;

}


}

/* linkdin */
.linkedin-icon{

    width:45px;
    height:45px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    margin-top:15px;

    border-radius:50%;

    background:#0a66c2;

    color:white;

    text-decoration:none;

    font-size:22px;

    transition:0.4s;

}


.linkedin-icon:hover{

    transform:translateY(-5px) scale(1.1);

    background:#084d91;

}


.linkedin-icon i{

    line-height:1;

}