@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Gasoek+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Elms Sans", sans-serif;
}

html,
body{
    overflow-x:hidden;
}

.nav {
    width: 100%;
    min-height: 80vh;
    position: relative;
}

.bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 15s infinite;
}

.bg1 {
    background-image: url("../images/ban2.png");
    animation-delay: 0s;
}

.bg2 {
    background-image: url("../images/ban3.png");
    animation-delay: 5s;
}

.bg3 {
    background-image: url("../images/ban4.png");
    animation-delay: 10s;
}

.nav::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .55), rgba(0, 0, 0, .3), transparent);
    z-index: 1;
}

.navwrap,
.hero {
    position: relative;
    z-index: 2;
}


.navwrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(12px);
    z-index: 9999;
}

.main-nav {
    width: min(1400px, 92%);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    flex-shrink: 0;
}

.logo img{
    display: block;
    width: 120px;
    height: 70px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px){

    .logo img{
        width: 60px;
        height: 60px;
    }

}

/* Mobile */
@media (max-width: 768px){

    .logo img{
        width: 52px;
        height: 52px;
    }

}

/* Small phones */
@media (max-width: 480px){

    .logo img{
        width: 45px;
        height: 45px;
    }

}

.sections {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pages {
    height: 80px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .35s;
}

/* Hover effect for all navbar items except Donation */

.pages:not(.donation):hover {
    background: #d83529;
}

.pages:not(.donation):hover span {
    color: #fff;
}

.pages span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.pages.active {
    background: #d83529;
}

.pages.active span {
    color: #fff;
}

.donation button {
    border: none;
    background: #e53935;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: .35s;
}

.donation button:hover {
    background: #ff5a4f;
    transform: translateY(-2px);
}

.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 2vh 0;
}

.herowrap {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    color: #fff;
    padding-top: 80px;
}

.herowrap h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    word-break: break-word;
    transform: translateY(40px);
    animation: fadeUp .8s forwards;
}

.herowrap .sub {

    opacity: 0;

    transform: translateY(40px);

    animation: fadeUp .8s forwards;

    animation-delay: 1.7s;

}


.hero-fullform {

    margin: 22px 0 28px;

    width: 100%;
    max-width: 650px;

    border-left: 4px solid #f44336;

    padding-left: 18px;

    /* Animation */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s forwards;
    animation-delay: 1.35s;

}

.hero-fullform span {

    display: block;

    color: #f44336;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 8px;

    text-transform: uppercase;

}

.hero-fullform p {

    color: #f5f5f5;

    font-size: 18px;

    line-height: 1.8;

    font-weight: 300;

    word-break: break-word;

}

.hero-fullform strong {

    color: #ff6b57;

    font-weight: 700;

}

@media(max-width:768px) {

    .hero-fullform {

        margin: 18px 0 22px;

        padding-left: 14px;

    }

    .hero-fullform span {

        font-size: 12px;

        letter-spacing: 3px;

    }

    .hero-fullform p {

        font-size: 15px;

        line-height: 1.7;

    }

}

.sub {
    margin-top: 25px;
}

.sub p {
    width: min(550px, 100%);
    padding: 22px;
    border-radius: 18px;
    background: rgba(30, 30, 30, .35);
    backdrop-filter: blur(12px);
    border-left: 4px solid #8dd8ff;
    color: #fff;
    line-height: 1.8;
    font-size: clamp(15px, 2vw, 17px);
}

.herowrap h3:nth-child(1) {
    animation-delay: .2s;
}

.herowrap h3:nth-child(2) {
    animation-delay: .5s;
}

.herowrap h3:nth-child(3) {
    animation-delay: .8s;
}

.herowrap h3:nth-child(4) {
    animation-delay: 1.1s;
}

.herowrap .sub {
    opacity: 0;
    animation: fadeUp .8s forwards;
    animation-delay: 1.4s;
}

.menu-btn {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

@media(max-width:992px) {

    .menu-btn {
        display: block;
    }

    .sections {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #111;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transition: .4s;
        padding-top: 20px;
    }

    .sections.active {
        right: 0;
    }

    .pages {
        height: 60px;
        justify-content: flex-start;
        padding-left: 30px;
    }

    .donation {
        padding: 20px 30px;
    }

    .donation button {
        width: 100%;
    }

}

@media(max-width:768px) {

    .nav {
        min-height: 70vh;
    }

    .navwrap {
        height: 70px;
    }

    .hero {
        min-height: 70vh;
    }

    .herowrap {
        text-align: center;
        padding-top: 70px;
    }

    .sub p {
        margin: auto;
        text-align: center;
    }

}

@media(max-width:480px) {

    .sections {
        width: 100%;
    }

    .logo {
        width: 140px;
    }

    .herowrap h3 {
        line-height: 1.1;
    }

    .sub p {
        padding: 18px;
    }

}

@keyframes fadeSlide {

    0%,
    100% {
        opacity: 0;
    }

    6%,
    33% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Chrome, Edge, Safari */
::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#e53935;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ff5a4f;
}






















/* hero banner */

.about-hero {
    padding: 120px 0 90px;
    background: linear-gradient(to right, #f8fbff, #edf5ff, #e9fdff);
    overflow: hidden;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(216, 53, 41, .08);
    top: -140px;
    right: -120px;
    filter: blur(40px);
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(66, 165, 245, .12);
    left: -100px;
    bottom: -80px;
    filter: blur(40px);
}

.about-hero::before,
.about-hero::after {
    pointer-events: none;
}

.about-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.about-left {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #eaf4ff;
    color: #d83529;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-left h1 {
    font-size: 60px;
    line-height: 1.15;
    color: #222;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-left p {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.primary-btn {
    background: #d83529;
    color: #fff;
}

.primary-btn i {
    margin-left: 10px;
    transition: .35s;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(216, 53, 41, .3);
}

.primary-btn:hover i {
    transform: translateX(6px);
}

.secondary-btn {
    border: 2px solid #d83529;
    color: #d83529;
    background: #fff;
}

.secondary-btn:hover {
    background: #d83529;
    color: #fff;
    transform: translateY(-5px);
}

.about-right {
    flex: 1;
    position: relative;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    animation: zoomImage 12s ease-in-out infinite alternate;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
    animation: float 4s ease-in-out infinite;
}

.floating-card h3 {
    color: #d83529;
    font-size: 24px;
    margin-bottom: 6px;
}

.floating-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.card1 {
    top: 25px;
    left: -35px;
}

.card2 {
    bottom: 30px;
    left: -40px;
    animation-delay: 1s;
}

.card3 {
    right: -30px;
    top: 55%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes zoomImage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@media(max-width:992px) {

    .about-hero {
        padding: 120px 0 70px;
    }

    .about-hero-wrap {
        flex-direction: column;
        gap: 50px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left {
        text-align: center;
    }

    .about-left p {
        margin: auto auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .card1 {
        left: 15px;
        top: 15px;
    }

    .card2 {
        left: 15px;
        bottom: 15px;
    }

    .card3 {
        right: 15px;
        top: 60%;
    }

}

@media(max-width:768px) {

    .about-left h1 {
        font-size: 42px;
    }

    .about-left p {
        font-size: 16px;
    }

    .floating-card {
        padding: 14px 18px;
    }

    .floating-card h3 {
        font-size: 18px;
    }

    .floating-card p {
        font-size: 12px;
    }

}

@media(max-width:576px) {

    .about-hero {
        padding: 110px 0 60px;
    }

    .about-left h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .floating-card {
        position: static;
        margin-top: 15px;
        animation: none;
    }

    .image-box {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

}

@media (max-width:992px) {

    .about-hero {
        padding: 90px 0 70px;
    }

    .about-hero-wrap {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .about-left,
    .about-right {
        width: 100%;
        flex: none;
    }

    .about-left h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .about-left p {
        max-width: 700px;
        margin: 0 auto 35px;
        font-size: 17px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-box {
        width: 80%;
        margin: auto;
    }

    .card1 {
        left: -20px;
        top: 20px;
    }

    .card2 {
        left: -20px;
        bottom: 20px;
    }

    .card3 {
        right: -20px;
        top: 58%;
    }

}


@media (max-width:768px) {

    .about-hero {
        padding: 60px 0 50px;
    }

    .about-hero-wrap {
        gap: 45px;
    }

    .hero-tag {
        font-size: 13px;
        padding: 8px 18px;
    }

    .about-left h1 {
        font-size: 36px;
    }

    .about-left p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 260px;
        text-align: center;
    }

    .image-box {
        width: 100%;
    }

    .image-box img {
        border-radius: 20px;
    }

    .floating-card {

        padding: 14px 18px;
        border-radius: 14px;

    }

    .floating-card h3 {
        font-size: 18px;
    }

    .floating-card p {
        font-size: 13px;
    }

    .card1 {
        top: 15px;
        left: 15px;
    }

    .card2 {
        bottom: 15px;
        left: 15px;
    }

    .card3 {
        right: 15px;
        top: 55%;
    }

}

@media (max-width:576px) {

    .about-hero {
        padding: 70px 0 50px;
    }

    .about-left h1 {
        font-size: 30px;
    }

    .about-left p {
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 14px 22px;
    }

    .image-box img {
        border-radius: 18px;
    }

    .floating-card {

        padding: 10px 14px;
        border-radius: 12px;
        min-width: 110px;

    }

    .floating-card h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .floating-card p {
        font-size: 11px;
        line-height: 1.3;
    }

    .card1 {
        top: 10px;
        left: 10px;
    }

    .card2 {
        bottom: 10px;
        left: 10px;
    }

    .card3 {
        right: 10px;
        top: 60%;
    }

}

@media (max-width:400px) {

    .about-left h1 {
        font-size: 26px;
    }

    .about-left p {
        font-size: 14px;
    }

    .hero-tag {
        font-size: 12px;
    }

    .floating-card {

        transform: scale(.85);
        transform-origin: center;

    }

}

/* story */

.our-story {
    padding: 110px 0;
    background: #fff;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.story-left {
    flex: 1;
}

.story-left span {
    color: #d83529;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 15px;
}

.story-left h2 {
    font-size: 48px;
    margin: 18px 0 25px;
    color: #222;
}

.story-left p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 22px;
}

.story-stats {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-box {
    width: 180px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.stat-box:hover {
    transform: translateY(-8px);
}

.stat-box h3 {
    color: #d83529;
    font-size: 40px;
    margin-bottom: 8px;
}

.stat-box span {
    color: #555;
    letter-spacing: 0;
    font-size: 15px;
}

.story-right {
    flex: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.image-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    transition: .45s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.image-grid img:nth-child(3) {
    grid-column: 1/3;
    height: 300px;
}

.image-grid img:hover {
    transform: scale(1.04);
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

@media (max-width:991px) {

    .our-story {
        padding: 80px 0;
    }

    .story-wrapper {
        flex-direction: column;
        gap: 55px;
    }

    .story-left,
    .story-right {
        width: 100%;
        flex: none;
    }

    .story-left {
        text-align: center;
    }

    .story-left h2 {
        font-size: 42px;
    }

    .story-left p {
        max-width: 700px;
        margin: 0 auto 20px;
    }

    .story-stats {
        justify-content: center;
    }

    .image-grid {
        max-width: 700px;
        margin: auto;
    }

}

@media (max-width:768px) {

    .our-story {
        padding: 70px 0;
    }

    .story-left span {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .story-left h2 {
        font-size: 34px;
        line-height: 1.25;
        margin: 15px 0 20px;
    }

    .story-left p {
        font-size: 16px;
        line-height: 1.8;
    }

    .story-stats {
        gap: 18px;
        justify-content: center;
    }

    .stat-box {
        width: 170px;
        padding: 22px;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    /* .image-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .image-grid img,
    .image-grid img:nth-child(3){
        grid-column:auto;
        height:260px;
    } */

}

@media (max-width:576px) {

    .our-story {
        padding: 60px 0;
    }

    .story-left {
        text-align: left;
    }

    .story-left h2 {
        font-size: 28px;
    }

    .story-left p {
        font-size: 15px;
    }

    .story-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stat-box {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .stat-box h3 {
        font-size: 30px;
    }

    .image-grid img,
    .image-grid img:nth-child(3) {
        height: 220px;
        border-radius: 16px;
    }

}

@media (max-width:400px) {

    .story-left h2 {
        font-size: 24px;
    }

    .story-left p {
        font-size: 14px;
    }

    .stat-box {
        padding: 18px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .image-grid img,
    .image-grid img:nth-child(3) {
        height: 190px;
    }

}

/* @media(max-width:991px) {

    .about-hero {
        min-height: 650px;
    }

    .about-content h1 {
        font-size: 48px;
    }

    .story-wrapper {
        flex-direction: column;
    }

    .story-left,
    .story-right {
        width: 100%;
    }

} */

/* @media(max-width:576px) {

    .about-content h1 {
        font-size: 32px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .stat-box {
        width: 100%;
    }

} */

/* member */
/*==========================
        TEAM SECTION
==========================*/

.team-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #04274b 0%,
            #16335bfe 35%,
            #cdd7e8 100%);
    padding: 50px 0;
}

/*==========================
        TEAM HEADING
==========================*/

.container {

    width: 90%;
    max-width: 1450px;
    margin: auto;

}

.team-head {

    text-align: center;

    margin-bottom: 70px;

}

.team-head span {

    display: inline-block;

    color: #f8ce29;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 16px;

}

.team-head h2 {

    font-size: 56px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 18px;

}

.team-head p {

    max-width: 720px;

    margin: auto;

    color: #d7e7f3;

    font-size: 18px;

    line-height: 1.8;

}

/* team head responsive  */

@media(max-width:991px) {

    .team-head {

        margin-bottom: 50px;

    }

    .team-head h2 {

        font-size: 42px;

    }

    .team-head p {

        font-size: 16px;

        width: 90%;

    }

}

@media(max-width:576px) {

    .team-head span {

        font-size: 12px;

        letter-spacing: 3px;

    }

    .team-head h2 {

        font-size: 32px;

    }

    .team-head p {

        font-size: 15px;

        line-height: 1.7;

    }

}

#memberName {

    font-size: 46px;
    font-weight: 800;
    color: #16335B;

}

#memberRole {

    color: #4F83CC;

    letter-spacing: 3px;

}

#memberDesc {

    color: #5B6475;

    line-height: 1.8;

    font-size: 17px;

}

.team-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*==========================
      LEFT SIDE
==========================*/

.team-wheel {

    position: relative;
    overflow: hidden;

    width: 520px;
    height: 620px;
    z-index: 1;

}


/* Thick Semi Circle */

.arc {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(13, 71, 161, .10) 0%,
            rgba(13, 71, 161, .05) 60%,
            transparent 100%);
    filter: blur(20px);
    z-index: 0;
}


/*==========================
       MEMBER
==========================*/

.member {

    position: absolute;

    width: 140px;
    height: 140px;

    border-radius: 50%;
    overflow: hidden;
    filter: none;
    opacity: 1;
    z-index: 2;

    /* transition: all .9s cubic-bezier(.22, .61, .36, 1); */

    transition:
        left .8s,
        top .8s,
        width .8s,
        height .8s,
        opacity .5s,
        transform .8s,
        filter .5s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

}

.member img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* Glass Ring */

.member::before {

    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;

    /* border:5px solid rgba(255,255,255,.75); */

    backdrop-filter: blur(0px);

}


/*==========================
      ACTIVE IMAGE
==========================*/

.member.active {

    width: 215px;
    height: 215px;
    left: 250px;
    top: 210px;

    z-index: 100;

    border: 6px solid rgba(255, 255, 255, .75);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .20),
        0 0 0 8px rgba(255, 255, 255, .10);

}

.member.active::after {

    content: "";

    position: absolute;

    width: 120%;

    height: 120%;

    left: -10%;

    top: -10%;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(82, 161, 255, .22) 0%,
            transparent 70%);

    z-index: -1;

    filter: blur(18px);

}

/*==========================
      TOP IMAGE
==========================*/

.member.top {

    width: 110px;
    height: 110px;
    left: 250px;
    top: 20px;

    opacity: .25;

    filter: blur(5px);
    opacity: 0.25;
    /* transition: all 0.9s ease; */

    transform: scale(.75);

}


/*==========================
      BOTTOM IMAGE
==========================*/

.member.bottom {

    width: 110px;
    height: 110px;
    left: 250px;
    top: 470px;

    opacity: .25;

    filter: blur(5px);

    transform: scale(.72);

}


/*==========================
      INFO CARD
==========================*/

.info-card {

    position: relative;
    overflow: visible;

    width: 760px;
    min-height: 270px;

    margin-left: -70px;
    /* Card slides behind the image */

    padding: 55px 55px 55px 100px;

    background: rgba(255, 255, 255, .16);

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 30px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .10),
        inset 0 1px 1px rgba(255, 255, 255, .35);

    overflow: visible;
    z-index: 6;
}

.profile-line {
    position: absolute;

    left: -80px;
    /* Adjust based on your image position */
    top: 50%;

    transform: translateY(-50%);

    width: 80px;
    height: 2px;

    border-radius: 50px;

    background: linear-gradient(to right,
            rgba(255, 255, 255, .9),
            rgba(255, 255, 255, .35));

    box-shadow: 0 0 15px rgba(255, 255, 255, .35);

    z-index: 5;
}

.profile-line::before {

    content: "";

    position: absolute;

    left: -10px;
    top: 50%;

    transform: translateY(-50%);

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #4EA3FF;

    border: 3px solid rgba(255, 255, 255, .9);

    box-shadow:
        0 0 15px rgba(78, 163, 255, .5);

}

/* Speech Arrow */

/* .pointer{

    position:absolute;
    left:-12px;
    top:50%;
    width:24px;
    height:24px;

    transform:translateY(-50%) rotate(45deg);

    background:rgba(255,255,255,.18);
    backdrop-filter:blur(20px);

    border-left:1px solid rgba(255,255,255,.25);
    border-bottom:1px solid rgba(255,255,255,.25);

    z-index:2;
} */


.line {

    display: block;

    width: 90px;

    height: 5px;

    background: #0A2D62;

    border-radius: 20px;

    margin-bottom: 18px;

}


#memberName {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(to right, #e6fffb, rgb(255, 254, 254), #f0c786);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    padding-bottom: 2vh;

    /* REPLACED text-stroke WITH text-shadow FOR A CLEAN OUTER BORDER */
    text-shadow:
        -1px -1px 0 #ffe1e1,
        1px -1px 0 #042736,
        -1px 1px 0 #f99ce2,
        1px 1px 0 #5b4205;
}



#memberRole {

    color: #f8ce29;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 16px;

    margin-bottom: 30px;

}


#memberDesc {

    color: #cbe9f6;

    font-size: 18px;

    line-height: 1.8;

    max-width: 560px;

}


/*==========================
      POSITIONS
==========================*/

/* Active */

/* .member:nth-child(2) {

    left: 250px;

    top: 210px;

} */


/* Top */

/* .member:nth-child(3) {

    left: 250px;

    top: 20px;

} */


/* Bottom */

/* .member:nth-child(4) {

    left: 250px;

    top: 470px;

} */


/*==========================
      Animation
==========================*/

.info-card {

    animation: fadeIn .7s;

}

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateX(60px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


.team-scroll {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-left: 25px;
}

.team-scroll button {

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #4EA3FF;
    color: #fff;

    cursor: pointer;

    font-size: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);

    transition: .35s;
}

.team-scroll button:hover {

    transform: translateY(-4px) scale(1.08);

    background: #1f87ff;
}

@media(max-width:992px) {

    .team-scroll {
        display: none;
    }

}















/* vision */
/*===============================
        PURPOSE SECTION
================================*/

.purpose-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 8vh 0;
    /* background: linear-gradient(135deg, #f7fbff, #edf5ff); */
}

.purpose-heading {
    width: 100%;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
}

/*===============================
            HEADING
================================*/

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.subtitle {
    display: inline-block;
    color: #3b82f6;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: #102A43;
    margin-bottom: 18px;
}

.section-title p {
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

/*===============================
          ANIMATION STAGE
================================*/

.purpose-stage {

    position: relative;

    width: 100%;

    height: 100%;

    overflow: hidden;

}

/*===============================
         MORPH GLOW
================================*/

.stage-glow {

    position: absolute;

    width: 380px;
    height: 380px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: linear-gradient(135deg,
            rgba(59, 130, 246, .1),
            rgba(147, 197, 253, .09));

    filter: blur(40px);

    border-radius: 50%;

    z-index: 1;

}

/*===============================
            CARD
================================*/

.purpose-card {

    position: absolute;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    /* top: 50%;
    left: 50%; */

    width: 430px;

    padding: 40px;

    border-radius: 30px;

    background: rgba(242, 248, 174, 0.167);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow:
        0 10px 28px rgba(98, 50, 1, 0.29);

    transform: translate(-50%, -50%);

    z-index: 5;

}

.purpose-card:hover {
    border: 1px solid rgb(78, 115, 4);
    cursor: pointer;
}

.purpose-card:hover .card-icon {
    background: linear-gradient(135deg, #cb3305, #f4d807);
    border: 1px solid rgba(239, 9, 9, 0.477);
}


/*===============================
          CARD NUMBER
================================*/

.card-number {

    position: absolute;

    right: 30px;
    top: 20px;

    font-size: 72px;

    font-weight: 800;

    color: rgba(16, 42, 67, .06);

}

/*===============================
            ICON
================================*/

.card-icon {

    width: 78px;
    height: 78px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 30px;

    color: #fff;

    background: linear-gradient(135deg, #3b82f6, #60a5fa);

    margin-bottom: 28px;

    box-shadow: 0 12px 25px rgba(59, 130, 246, .25);

}

/*===============================
          TYPOGRAPHY
================================*/

.purpose-card h3 {

    font-size: 34px;

    color: #102A43;

    margin-bottom: 18px;

}

.purpose-wrapper {
    height: 65vh;
    margin-top: 60px;
}


.purpose-card p {

    color: #5b6474;

    line-height: 1.9;

    font-size: 17px;

}

/*===============================
       INITIAL POSITIONS
================================*/
#vision,
#mission,
#objective {

    left: 50%;
    top: 50%;

}

/*===============================
         RESPONSIVE
================================*/

@media(max-width:991px) {

    .section-title h2 {
        font-size: 38px;
    }

    .purpose-stage {
        height: 520px;
    }

    .purpose-card {

        width: 90%;

        padding: 30px;

    }

    .card-number {
        font-size: 48px;
    }

}

/* strategy */

.strategy-section {
    width: 100%;
    padding: 5vh 0;
    background: #011937;
}

.strategy-section .container {
    width: 80%;
    margin: auto;
}

.strategy-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 70px;
    align-items: center;
    padding: 10vh 0;
}

.strategy-left .subtitle {
    color: #d62888;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 15px;
}

.strategy-left h2 {
    font-size: 40px;
    color: #ffffff;
    margin: 18px 0;
    line-height: 1.2;
}

.strategy-left p {
    font-size: 17px;
    line-height: 1.9;
    color: #b3b18b;
}

.strategy-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 3vh;

}

.strategy-card {

    background: #fff;

    /* width: 40vh; */

    border-radius: 22px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s;

}

.strategy-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(43, 108, 176, .18);

}

.strategy-card i {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: linear-gradient(135deg, #3b82f6, #60a5fa);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    margin-bottom: 25px;

    transition: .4s;
    padding: 1vh;

}

.strategy-card:hover i {

    transform: rotate(10deg) scale(1.08);

    cursor: pointer;

    background: linear-gradient(135deg, #2563eb, #1d4ed8);

}

.strategy-card h5 {

    font-size: 2.9vh;

    color: #102a43;

    margin-bottom: 15px;

}

.strategy-card p {

    color: #6b7280;

    line-height: 1.8;

    font-size: 12px;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px) {

    .strategy-wrapper {

        grid-template-columns: 1fr;

    }

    .strategy-grid {

        grid-template-columns: 1fr;

    }

    .strategy-left {

        text-align: center;

    }

    .strategy-left h2 {

        font-size: 38px;

    }

}




/* media query */
/* team member */
/* ==========================
   Laptop (1024px - 1366px)
========================== */
@media (min-width: 1921px) {

    .team-container {
        max-width: 1800px;
        margin: auto;
        gap: 100px;
    }

    .team-wheel {
        width: 700px;
        height: 700px;
    }

    .member {
        width: 170px;
        height: 170px;
    }

    .member.active {
        width: 260px;
        height: 260px;
    }

    .info-card {
        width: 900px;
        min-height: 340px;
        padding: 70px 70px 70px 120px;
    }

    #memberName {
        font-size: 60px;
    }

    #memberRole {
        font-size: 20px;
    }

    #memberDesc {
        font-size: 22px;
        line-height: 2;
    }

}

@media (max-width:1366px) and (min-width: 1044px) {

    .team-container {
        width: 95%;
        gap: 40px;
    }

    .team-wheel {
        width: 460px;
        height: 560px;
    }

    .arc {
        width: 320px;
        height: 320px;
        left: 25px;
    }

    .member {
        width: 120px;
        height: 120px;
    }

    .member.active {
        width: 185px;
        height: 185px;
    }

    .member.top,
    .member.bottom {
        width: 95px;
        height: 95px;
    }

    /* Member Positions */

    .member:nth-child(2) {
        left: 170px;
        top: 180px;
    }

    .member:nth-child(3) {
        left: 220px;
        top: 30px;
    }

    .member:nth-child(4) {
        left: 220px;
        top: 410px;
    }

    .info-card {

        width: 620px;
        min-height: 240px;

        margin-left: -45px;

        padding: 45px 40px 45px 70px;

    }

    .profile-line {

        width: 80px;
        left: -80px;

    }

    #memberName {
        font-size: 38px;
    }

    #memberRole {
        font-size: 15px;
    }

    #memberDesc {
        font-size: 16px;
        max-width: 480px;
    }

}

/* ===========================
   Small Laptop (≤1042px)
=========================== */

@media (max-width:1044px) and (min-width: 991px) {

    .team-section {
        height: 20vh;
        display: flex;
        background: linear-gradient(135deg,
                #04274b 0%,
                #16335bfe 35%,
                #cdd7e8 100%);
        padding: 10px 0;
    }

    .team-container {
        display: grid;
        grid-template-columns: 50% 50%;
        width: 95%;
        gap: 0px;
        align-items: center;
    }

    .team-wheel {
        width: 100%;
        height: 520px;
    }

    .arc {
        width: 280px;
        height: 280px;
    }

    /* Member Sizes */

    .member {
        width: 110px;
        height: 110px;
    }

    .member.active {
        width: 185px;
        height: 185px;
    }

    .member.top,
    .member.bottom {
        width: 90px;
        height: 90px;
    }

    /* Member Positions */

    .member:nth-child(2) {
        left: 160px;
        top: 160px;
    }

    .member:nth-child(3) {
        left: 220px;
        top: 20px;
    }

    .member:nth-child(4) {
        left: 220px;
        top: 360px;
    }

    /* Info Card */

    .info-card {
        width: 520px;
        min-height: 220px;
        margin-left: -50px;
        padding: 40px 35px 40px 60px;
    }

    .profile-line {
        left: -80px;
        width: 80px;
    }

    #memberName {
        font-size: 34px;
    }

    #memberRole {
        font-size: 14px;
        letter-spacing: 2px;
    }

    #memberDesc {
        font-size: 15px;
        line-height: 1.7;
    }

}

/* tablet */
@media (max-width:991px) {

    .team-section {
        padding: 80px 0;
        min-height: auto;
    }

    .team-container {
        flex-direction: column;
        gap: 60px;
    }

    .team-wheel {
        width: 100%;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .arc {
        display: none;
    }

    .member.active {
        position: relative;
        left: auto !important;
        top: auto !important;

        width: 180px;
        height: 180px;

        opacity: 1;
        transform: translateX(0);

        filter: none;
    }

    .member.top,
    .member.bottom {
        display: none;
    }

    .profile-line {
        display: none;
    }


    .info-card {
        width: 100%;
        margin: 0;
        padding: 35px 25px;
        animation: none;
    }

    .text-slide {
        animation: textSlide .6s ease;
    }

    .image-slide {
        animation: imageSlide .6s ease;
    }

    #memberDesc {
        max-width: 100%;
    }

}

/* mobile */
@media (max-width:768px) {

    .team-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }

    .team-wheel {
        width: 100%;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .arc {
        display: none;
    }

    /* Hide inactive members */
    .member {
        position: absolute;
        opacity: 0;
        transform: translateX(100px);
        transition: all .6s ease;
    }

    /* Only active member is visible */
    .member.active {
        position: relative;
        left: auto !important;
        top: auto !important;

        width: 180px;
        height: 180px;

        opacity: 1;
        transform: translateX(0);

        filter: none;
    }

    .member.top,
    .member.bottom {
        display: none;
    }

    .profile-line {
        display: none;
    }

    .info-card {
        width: 100%;
        margin: 0;
        padding: 35px 25px;
        animation: none;
    }

    .text-slide {
        animation: textSlide .6s ease;
    }

    .image-slide {
        animation: imageSlide .6s ease;
    }

}

/* small mobile */
@media (max-width:576px) {

    .team-section {
        padding: 60px 0;
    }

    .team-wheel {
        height: 310px;
    }

    .arc {
        width: 220px;
        height: 220px;
    }

    .member {
        width: 80px;
        height: 80px;
    }

    .member.active {
        width: 145px;
        height: 145px;
        border-width: 4px;
    }

    .member.top,
    .member.bottom {
        width: 65px;
        height: 65px;
        filter: blur(3px);
    }

    .member:nth-child(2) {
        top: 95px;
    }

    .member:nth-child(3) {
        top: 0;
    }

    .member:nth-child(4) {
        top: 220px;
    }

    .info-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    #memberName {
        font-size: 28px;
        line-height: 1.2;
        padding-bottom: 15px;
    }

    #memberRole {
        font-size: 13px;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }

    #memberDesc {
        font-size: 15px;
        line-height: 1.6;
    }

    .line {
        width: 60px;
        height: 4px;
    }

}

/* extra small phone */
@media (max-width:480px) {

    .member.active {

        width: 180px;
        height: 180px;

    }

    #memberName {

        font-size: 26px;

    }

    #memberRole {

        font-size: 12px;

    }

    #memberDesc {

        font-size: 14px;

    }

    .info-card {

        padding: 25px 20px;

    }

}

@keyframes mobileImage {

    from {

        opacity: 0;
        transform: translateX(70px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes textSlide {

    from {

        opacity: 0;
        transform: translateX(40px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}


/* responsive for purpose */
/*=================================================
                1200px
==================================================*/

@media (max-width:1440px) and (min-width: 991px) {

    .purpose-stage {
        padding: 0 10vh;
        height: 500px;

    }

    .card-icon {
        width: 10vh;
        height: 10vh;
    }

    .section-title h2 {
        font-size: 46px;
    }

    .purpose-card {
        width: 290px;
        height: auto;
        padding: 35px;
    }

    .purpose-card h3 {
        font-size: 30px;
    }

    .stage-glow {
        position: absolute;
        width: 340px;
        height: 380px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(135deg,
                rgba(59, 130, 246, .1),
                rgba(147, 197, 253, .09));
        filter: blur(40px);
        border-radius: 50%;
        z-index: 1;
    }

}


/*=================================================
                992px
==================================================*/

@media (max-width:992px) {

    .purpose-wrapper {
        height: 520px;
    }

    .purpose-card {
        width: 330px;
        padding: 30px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .purpose-card h3 {
        font-size: 28px;
    }

    .purpose-card p {
        font-size: 15px;
    }

}


/*=================================================
            MOBILE LAYOUT
==================================================*/

@media (max-width:767px) {

    .purpose-section {
        padding: 70px 0;
        min-height: 100vh;
    }

    .purpose-stage {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .stage-glow {
        width: 220px;
        height: 220px;
    }

    .purpose-card {
        width: 280px;
        padding: 22px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .purpose-card h3 {
        font-size: 24px;
    }

    .purpose-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/*=================================================
            SMALL PHONE
==================================================*/

@media (max-width:480px) {

    .purpose-stage {
        height: 480px;
    }

    .purpose-card {
        width: 240px;
        padding: 18px;
    }

    .stage-glow {
        width: 170px;
        height: 170px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .purpose-card h3 {
        font-size: 20px;
    }

    .purpose-card p {
        font-size: 13px;
    }
}

/* very small phone */

@media (max-width:360px) {

    .purpose-heading {
        padding: 4vh 0;
    }

    .purpose-heading h2 {
        font-size: 28px;
        padding: 2vh 0;
        line-height: 1.3;
    }

    .purpose-heading p {
        padding: 0 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .purpose-section {
        padding: 50px 15px;
    }

    .purpose-stage {
        height: 500px;
        /* Keep GSAP working */
    }

    .stage-glow {
        width: 180px;
        height: 180px;
    }

    /* Only reduce card size */
    .purpose-card {
        width: 240px;
        padding: 18px;
        border-radius: 18px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 14px;
    }

    .card-number {
        font-size: 30px;
        right: 14px;
        top: 12px;
    }

    .purpose-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .purpose-card p {
        font-size: 13px;
        line-height: 1.6;
    }

}