/* CLUBS & SOCIETIES HERO */

.clubs-hero {

    position: relative;

    min-height: 700px;

    padding: 100px 0;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: linear-gradient(110deg, #f7faff 0%, #eef5fc 55%, #e6f0fb 100%);

}

.clubs-hero::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background: rgba(0, 63, 136, .05);

    top: -220px;

    right: -120px;

}

.clubs-hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(246, 161, 26, .07);

    bottom: -150px;

    left: -100px;

}

.clubs-hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}


/* HERO CONTENT */

.clubs-hero-content {

    max-width: 650px;

}

.clubs-hero-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #f6a11a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    margin-bottom: 22px;

}

.clubs-hero-label i {

    font-size: 17px;

}

.clubs-hero-content h1 {

    margin: 0 0 25px;

    color: #08295d;

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

}

.clubs-hero-content h1 span {

    display: block;

    color: #003f88;

}

.clubs-hero-content p {

    max-width: 590px;

    margin: 0 0 35px;

    color: #5d6979;

    font-size: 17px;

    line-height: 1.9;

}

/* HERO BUTTONS */

.clubs-hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}

.clubs-hero-buttons a {

    min-height: 52px;

    padding: 0 24px;

    border-radius: 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;

}


/* PRIMARY BUTTON */

.clubs-hero-buttons .btn-primary {

    background: #003f88;

    color: #ffffff;

    border: 2px solid #003f88;

    box-shadow: 0 10px 25px rgba(0, 63, 136, .18);

}

.clubs-hero-buttons .btn-primary i {

    color: #ffffff;

    font-size: 13px;

}

.clubs-hero-buttons .btn-primary:hover {

    background: #08295d;

    border-color: #08295d;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(0, 63, 136, .25);

}


/* OUTLINE BUTTON */

.clubs-hero-buttons .btn-outline {

    background: #ffffff;

    color: #003f88;

    border: 2px solid #003f88;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);

}

.clubs-hero-buttons .btn-outline i {

    color: #003f88;

    font-size: 13px;

}

.clubs-hero-buttons .btn-outline:hover {

    background: #003f88;

    border-color: #003f88;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(0, 63, 136, .2);

}

.clubs-hero-buttons .btn-outline:hover i {

    color: #ffffff;

}


/* MOBILE */

@media(max-width:768px) {

    .clubs-hero-buttons {

        width: 100%;

        flex-direction: column;

        gap: 12px;

    }

    .clubs-hero-buttons a {

        width: 100%;

        min-height: 52px;

        padding: 0 20px;

    }

}


/* HERO VISUAL */

.clubs-hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.clubs-hero-image {

    width: 100%;

    max-width: 500px;

    height: 520px;

    overflow: hidden;

    border-radius: 35px;

    box-shadow: 0 30px 70px rgba(0, 42, 90, .18);

    transform: rotate(2deg);

}

.clubs-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* FLOATING CARDS */

.clubs-floating-card {

    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 19px;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 16px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);

}

.clubs-floating-card i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #eaf2fc;

    color: #003f88;

    font-size: 18px;

}

.clubs-floating-card div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}

.clubs-floating-card strong {

    color: #08295d;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

}

.clubs-floating-card span {

    color: #7a8796;

    font-size: 11px;

}

.clubs-card-one {

    top: 55px;

    left: -10px;

}

.clubs-card-two {

    right: -15px;

    top: 190px;

}

.clubs-card-three {

    left: 20px;

    bottom: 45px;

}


/* TABLET */

@media(max-width:991px) {

    .clubs-hero {

        padding: 90px 0;

    }

    .clubs-hero-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .clubs-hero-content {

        max-width: 750px;

        margin: 0 auto;

        text-align: center;

    }

    .clubs-hero-content p {

        margin-left: auto;

        margin-right: auto;

    }

    .clubs-hero-buttons {

        justify-content: center;

    }

    .clubs-hero-visual {

        max-width: 600px;

        width: 100%;

        margin: 0 auto;

    }

}


/* MOBILE */

@media(max-width:768px) {

    .clubs-hero {

        min-height: auto;

        padding: 75px 0 85px;

    }

    .clubs-hero-container {

        gap: 45px;

        padding: 0 20px;

    }

    .clubs-hero-content {

        text-align: center;

    }

    .clubs-hero-label {

        font-size: 11px;

        letter-spacing: 1.4px;

        margin-bottom: 17px;

    }

    .clubs-hero-content h1 {

        font-size: 38px;

        line-height: 1.15;

        letter-spacing: -.7px;

        margin-bottom: 20px;

    }

    .clubs-hero-content p {

        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 28px;

    }

    .clubs-hero-visual {

        min-height: 400px;

        width: 100%;

    }

    .clubs-hero-image {

        height: 450px;

        width: calc(100% - 35px);

        border-radius: 25px;

        transform: rotate(0);

    }

    .clubs-floating-card {

        padding: 10px 12px;

        gap: 9px;

        border-radius: 13px;

    }

    .clubs-floating-card i {

        width: 34px;

        height: 34px;

        border-radius: 9px;

        font-size: 14px;

    }

    .clubs-floating-card strong {

        font-size: 11px;

    }

    .clubs-floating-card span {

        font-size: 9px;

    }

    .clubs-card-one {

        top: 20px;

        left: 0;

    }

    .clubs-card-two {

        top: 150px;

        right: 0;

    }

    .clubs-card-three {

        bottom: 15px;

        left: 5px;

    }

}


/* CLUBS & SOCIETIES */

.clubs-list {

    padding: 120px 0;

    background: #ffffff;

}

/* CLUBS & SOCIETIES */

.clubs-section-heading {

    max-width: 820px;

    margin: 0 auto 80px;

    text-align: center;

}

.clubs-section-heading span {

    display: inline-block;

    margin-bottom: 14px;

    color: #f6a11a;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.8px;

}

.clubs-section-heading h2 {

    max-width: 760px;

    margin: 0 auto 18px;

    color: #08295d;

    font-family: "Poppins", sans-serif;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 700;

}

.clubs-section-heading p {

    max-width: 720px;

    margin: 0 auto;

    color: #64748b;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    line-height: 1.85;

}


/* TABLET */

@media (max-width: 991px) {

    .clubs-section-heading {

        max-width: 720px;

        margin-bottom: 65px;

    }

    .clubs-section-heading h2 {

        font-size: 34px;

    }

    .clubs-section-heading p {

        font-size: 15px;

        line-height: 1.8;

    }

}


/* MOBILE */

@media (max-width: 768px) {

    .clubs-section-heading {

        width: 100%;

        max-width: 100%;

        padding: 0 24px;

        margin: 0 auto 50px;

        text-align: center;

    }

    .clubs-section-heading span {

        margin-bottom: 11px;

        font-size: 11px;

        letter-spacing: 1.5px;

    }

    .clubs-section-heading h2 {

        width: 100%;

        max-width: 360px;

        margin: 0 auto 16px;

        font-size: 27px;

        line-height: 1.3;

        letter-spacing: -.2px;

    }

    .clubs-section-heading p {

        width: 100%;

        max-width: 390px;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.85;

    }

}


/* CLUB FEATURE */

.club-feature {

    max-width: 1120px;

    margin: 0 auto 110px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}

.club-feature:last-child {

    margin-bottom: 0;

}

.club-feature-reverse {

    direction: rtl;

}

.club-feature-reverse>* {

    direction: ltr;

}


/* VISUAL */

.club-feature-visual {

    position: relative;

    min-height: 470px;

}

.club-feature-image {

    width: 100%;

    height: 470px;

    overflow: hidden;

    border-radius: 28px;

    background: #edf3fa;

    box-shadow: 0 25px 55px rgba(0, 40, 85, .12);

}

.club-feature-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .5s ease;

}

.club-feature:hover .club-feature-image img {

    transform: scale(1.04);

}


/* NUMBER */

.club-feature-number {

    position: absolute;

    top: -25px;

    left: -25px;

    width: 82px;

    height: 82px;

    border-radius: 22px;

    background: #003f88;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: "Poppins", sans-serif;

    font-size: 23px;

    font-weight: 800;

    box-shadow: 0 18px 35px rgba(0, 63, 136, .22);

}

.club-feature-reverse .club-feature-number {

    left: auto;

    right: -25px;

}


/* IMAGE TAG */

.club-feature-tag {

    position: absolute;

    bottom: 25px;

    left: 25px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 17px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(10px);

    color: #08295d;

    font-size: 12px;

    font-weight: 700;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

}

.club-feature-reverse .club-feature-tag {

    left: auto;

    right: 25px;

}

.club-feature-tag i {

    color: #f6a11a;

}


/* CONTENT */

.club-feature-content {

    max-width: 520px;

}

.club-feature-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #f6a11a;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}

.club-feature-content h3 {

    margin: 0;

    color: #08295d;

    font-family: "Poppins", sans-serif;

    font-size: 34px;

    line-height: 1.25;

}

.club-feature-line {

    width: 55px;

    height: 4px;

    margin: 20px 0 24px;

    border-radius: 10px;

    background: #f6a11a;

}

.club-feature-content p {

    margin: 0 0 17px;

    color: #606c7c;

    font-size: 15px;

    line-height: 1.9;

}


/* JET SUBJECTS */

.club-subjects {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 27px;

}

.club-subjects span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border-radius: 30px;

    background: #f3f7fc;

    border: 1px solid #e1eaf4;

    color: #40566f;

    font-size: 12px;

    font-weight: 600;

}

.club-subjects i {

    color: #003f88;

    font-size: 11px;

}


/* PRESS CLUB */

.club-focus-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 28px;

}

.club-focus-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #40566f;

    font-size: 13px;

    font-weight: 600;

}

.club-focus-list i {

    width: 24px;

    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5ff;

    color: #003f88;

    font-size: 10px;

}


/* ART & DRAMA */

.club-creative-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 28px;

}

.club-creative-grid div {

    min-height: 82px;

    padding: 12px 7px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 14px;

    background: #f8fbff;

    border: 1px solid #e4edf6;

}

.club-creative-grid i {

    color: #003f88;

    font-size: 19px;

}

.club-creative-grid span {

    color: #52657a;

    font-size: 11px;

    font-weight: 700;

}


/* HOME MAKERS */

.club-practical-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 27px;

}

.club-practical-list span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    background: #f3f8f3;

    border: 1px solid #e0ebe0;

    border-radius: 30px;

    color: #46624d;

    font-size: 12px;

    font-weight: 600;

}

.club-practical-list i {

    color: #4b8a55;

}


/* TABLET */

@media(max-width:991px) {

    .clubs-list {

        padding: 95px 0;

    }

    .club-feature {

        gap: 45px;

        margin-bottom: 90px;

    }

    .club-feature-visual {

        min-height: 400px;

    }

    .club-feature-image {

        height: 400px;

    }

    .club-feature-content h3 {

        font-size: 28px;

    }

    .club-feature-number {

        width: 68px;

        height: 68px;

        font-size: 19px;

        top: -18px;

        left: -18px;

    }

    .club-feature-reverse .club-feature-number {

        right: -18px;

    }

}


/* MOBILE */

@media(max-width:768px) {

    .clubs-list {

        padding: 75px 0;

    }


    .club-feature,
    .club-feature-reverse {

        direction: ltr;

        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 75px;

        padding: 0 20px;

    }

    .club-feature-reverse>* {

        direction: ltr;

    }

    .club-feature-visual {

        min-height: 330px;

    }

    .club-feature-image {

        height: 330px;

        border-radius: 22px;

    }

    .club-feature-number {

        top: -15px;

        left: -8px;

        width: 58px;

        height: 58px;

        border-radius: 16px;

        font-size: 16px;

    }

    .club-feature-reverse .club-feature-number {

        left: -8px;

        right: auto;

    }

    .club-feature-tag,
    .club-feature-reverse .club-feature-tag {

        left: 15px;

        right: auto;

        bottom: 15px;

        padding: 9px 13px;

        font-size: 10px;

    }

    .club-feature-content {

        max-width: 100%;

    }

    .club-feature-label {

        font-size: 11px;

        letter-spacing: 1.3px;

    }

    .club-feature-content h3 {

        font-size: 25px;

        line-height: 1.3;

    }

    .club-feature-content p {

        font-size: 14px;

        line-height: 1.85;

    }

    .club-subjects {

        gap: 7px;

        margin-top: 23px;

    }

    .club-subjects span {

        font-size: 11px;

        padding: 8px 11px;

    }

    .club-focus-list {

        grid-template-columns: 1fr;

        gap: 11px;

        margin-top: 23px;

    }

    .club-focus-list div {

        font-size: 12px;

    }

    .club-creative-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 9px;

        margin-top: 23px;

    }

    .club-creative-grid div {

        min-height: 75px;

    }

    .club-practical-list {

        gap: 7px;

        margin-top: 22px;

    }

    .club-practical-list span {

        font-size: 11px;

        padding: 8px 11px;

    }

}

/* STUDENT DEVELOPMENT */

.clubs-development {

    padding: 120px 0;

    background: #f7faff;

}

.clubs-development-inner {

    max-width: 1120px;

    margin: 0 auto;

    padding: 70px 75px;

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 80px;

    align-items: center;

    background: #003f88;

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    box-shadow: 0 30px 70px rgba(0, 63, 136, .18);

}


/* DECORATIVE CIRCLE */

.clubs-development-inner::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);

    right: -170px;

    bottom: -220px;

}

.clubs-development-inner::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(246, 161, 26, .18);

    left: -120px;

    top: -120px;

}


/* LEFT CONTENT */

.clubs-development-heading {

    position: relative;

    z-index: 2;

}

.clubs-development-heading span {

    display: inline-block;

    margin-bottom: 15px;

    color: #f6a11a;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.8px;

}

.clubs-development-heading h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 37px;

    line-height: 1.25;

    font-weight: 700;

}

.clubs-development-heading p {

    max-width: 470px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 15px;

    line-height: 1.9;

}


/* DEVELOPMENT BUTTON */

.clubs-development-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    padding: 0 22px;

    min-height: 48px;

    border: 2px solid #f6a11a;

    border-radius: 10px;

    background: #f6a11a;

    color: #ffffff !important;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;

    position: relative;

    z-index: 5;

    transition: background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


/* BUTTON TEXT */

.clubs-development-button span {

    display: inline-flex;

    align-items: center;

    height: 100%;

    margin: 0;

    padding: 0;

    color: #ffffff !important;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

}


/* BUTTON ARROW */

.clubs-development-button i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 14px;

    height: 14px;

    margin: 0;

    padding: 0;

    color: #ffffff !important;

    font-size: 12px;

    line-height: 1;

    vertical-align: middle;

    transform: translateY(0);

    transition: transform .3s ease,
        color .3s ease;

}


/* HOVER */

.clubs-development-button:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #003f88 !important;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);

}


.clubs-development-button:hover span {

    color: #003f88 !important;

}


.clubs-development-button:hover i {

    color: #003f88 !important;

    transform: translate(4px, 0);

}


/* DEVELOPMENT POINTS */

.clubs-development-points {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}

.clubs-development-point {

    padding: 25px 22px;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    border: 1px solid rgba(255, 255, 255, .11);

    border-radius: 18px;

    background: rgba(255, 255, 255, .07);

    transition: .3s ease;

}

.clubs-development-point:hover {

    background: rgba(255, 255, 255, .11);

    transform: translateY(-4px);

}

.clubs-development-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: rgba(246, 161, 26, .14);

    color: #f6a11a;

}

.clubs-development-icon i {

    font-size: 17px;

}

.clubs-development-point h3 {

    margin: 0 0 7px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

}

.clubs-development-point p {

    margin: 0;

    color: rgba(255, 255, 255, .68);

    font-size: 12px;

    line-height: 1.7;

}


/* TABLET */

@media(max-width:991px) {

    .clubs-development {

        padding: 90px 0;

    }

    .clubs-development-inner {

        margin: 0 25px;

        padding: 55px 45px;

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .clubs-development-heading h2 {

        font-size: 33px;

    }

    .clubs-development-heading p {

        max-width: 650px;

    }

}


/* MOBILE */

@media(max-width:768px) {

    .clubs-development {

        padding: 70px 0;

    }

    .clubs-development-inner {

        margin: 0 15px;

        padding: 45px 22px;

        border-radius: 24px;

        gap: 35px;

    }

    .clubs-development-heading span {

        font-size: 11px;

        letter-spacing: 1.5px;

        margin-bottom: 11px;

    }

    .clubs-development-heading h2 {

        font-size: 27px;

        line-height: 1.3;

        margin-bottom: 17px;

    }

    .clubs-development-heading p {

        font-size: 14px;

        line-height: 1.85;

    }

    .clubs-development-button {

        width: 100%;

        margin-top: 25px;

        padding: 15px 18px;

        min-height: 50px;

    }

    .clubs-development-button span {

        font-size: 13px;

    }

    .clubs-development-points {

        grid-template-columns: 1fr;

        gap: 10px;

    }

    .clubs-development-point {

        padding: 19px 17px;

        gap: 13px;

    }

    .clubs-development-icon {

        width: 40px;

        height: 40px;

        border-radius: 11px;

    }

    .clubs-development-point h3 {

        font-size: 15px;

    }

    .clubs-development-point p {

        font-size: 12px;

        line-height: 1.7;

    }

}