/* =====================================================
   BORN SINGERS OF INDIA HEADER
===================================================== */

:root {
    --born-black: #070707;
    --born-dark: #11100c;
    --born-navy: #07152f;
    --born-gold: #f4c344;
    --born-gold-dark: #d59800;
    --born-white: #ffffff;
}


/* Basic Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}


body.born-menu-open {
    overflow: hidden;
}


a {
    text-decoration: none;
}


button {
    font: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.born-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 100%;

    background: #080808;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.32);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.born-header.scrolled {
    background: rgba(7, 7, 7, 0.97);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.44);
}


/* Animated Bottom Line */

.born-header-line {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 40;

    width: 100%;
    height: 2px;

    overflow: hidden;

    background: rgba(244, 195, 68, 0.25);
}


.born-header-line::before {
    content: "";

    position: absolute;
    top: 0;
    left: -35%;

    width: 35%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        var(--born-gold),
        transparent
    );

    animation: bornHeaderLine 5s linear infinite;
}


@keyframes bornHeaderLine {

    from {
        left: -35%;
    }

    to {
        left: 100%;
    }

}


/* =====================================================
   CONTAINER
===================================================== */

.born-container {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto;
    padding: 0 28px;
}


/* =====================================================
   TOP BAR
===================================================== */

.born-topbar {
    min-height: 42px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    background: linear-gradient(
        90deg,
        #171106 0%,
        #0d0d0b 50%,
        #070707 100%
    );
}


.born-topbar-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}


/* Contact */

.born-topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}


.born-topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 500;

    transition: color 0.3s ease;
}


.born-topbar-contact a i {
    color: var(--born-gold);
}


.born-topbar-contact a:hover {
    color: var(--born-gold);
}


/* Highlight */

.born-topbar-highlight {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    font-weight: 600;
}


.born-live-dot {
    position: relative;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--born-gold);

    box-shadow: 0 0 12px rgba(244, 195, 68, 0.75);
}


.born-live-dot::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(244, 195, 68, 0.45);
    border-radius: 50%;

    animation: bornLivePulse 1.8s infinite;
}


@keyframes bornLivePulse {

    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }

}


/* Social */

.born-topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}


.born-topbar-social > span {
    margin-right: 4px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
}


.born-topbar-social a {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;

    font-size: 11px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.born-topbar-social a:hover {
    transform: translateY(-2px);

    background: var(--born-gold);
    color: var(--born-navy);
}


/* =====================================================
   NAVBAR
===================================================== */

.born-navbar {
    min-height: 112px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(244, 195, 68, 0.11),
            transparent 27%
        ),
        linear-gradient(
            90deg,
            #121008 0%,
            #0c0c0b 46%,
            #070707 100%
        );
}


.born-navbar-inner {
    min-height: 112px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =====================================================
   LARGE LOGO
===================================================== */

.born-logo {
    position: relative;
    z-index: 20;

    flex: 0 0 245px;

    width: 245px;
    height: 104px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.born-logo img {
    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    max-width: 100%;
    height: 96px;

    object-fit: contain;
    object-position: left center;

    filter:
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.38))
        drop-shadow(0 0 10px rgba(244, 195, 68, 0.12));

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}


.born-logo:hover img {
    transform: scale(1.04);

    filter:
        drop-shadow(0 10px 19px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 15px rgba(244, 195, 68, 0.2));
}


.born-logo-glow {
    position: absolute;
    top: 50%;
    left: 43%;

    width: 220px;
    height: 110px;

    border-radius: 50%;

    background: radial-gradient(
        ellipse,
        rgba(244, 195, 68, 0.16),
        transparent 72%
    );

    filter: blur(10px);

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* =====================================================
   DESKTOP MENU
===================================================== */

.born-navigation {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}


.born-mobile-heading,
.born-mobile-contact,
.born-mobile-register {
    display: none;
}


.born-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.born-menu li {
    list-style: none;
}


.born-menu a {
    position: relative;

    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.born-menu a::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 6px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: var(--born-gold);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.born-menu a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 7px;
    height: 7px;

    border: 2px solid var(--born-gold);
    border-radius: 50%;

    background: #080808;

    opacity: 0;

    transform: translateX(-50%) scale(0.5);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.born-menu a:hover,
.born-menu a.active {
    color: var(--born-gold);
    transform: translateY(-1px);
}


.born-menu a:hover::before,
.born-menu a.active::before {
    width: 44px;
}


.born-menu a:hover::after,
.born-menu a.active::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.born-header-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 12px;
}


/* Register Button */

.born-register-button {
    min-width: 225px;
    min-height: 63px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 7px 16px 7px 8px;

    border: 1px solid rgba(255, 222, 110, 0.8);
    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ffdf70,
        var(--born-gold) 48%,
        var(--born-gold-dark)
    );

    color: #080808;

    box-shadow: 0 12px 28px rgba(244, 195, 68, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.born-register-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 17px 36px rgba(244, 195, 68, 0.32);
}


.born-register-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #07101f;
    color: var(--born-gold);

    font-size: 16px;
}


.born-register-text {
    flex: 1;

    display: flex;
    flex-direction: column;
}


.born-register-text small {
    color: rgba(8, 8, 8, 0.72);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.born-register-text strong {
    color: #080808;

    font-size: 16px;
    font-weight: 800;
}


.born-register-arrow {
    font-size: 13px;

    transition: transform 0.3s ease;
}


.born-register-button:hover .born-register-arrow {
    transform: translateX(5px);
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.born-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(244, 195, 68, 0.35);
    border-radius: 12px;

    background: rgba(244, 195, 68, 0.08);

    cursor: pointer;
}


.born-menu-button span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    border-radius: 5px;

    background: var(--born-gold);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.born-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.born-menu-button.active span:nth-child(2) {
    opacity: 0;
}


.born-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Overlay hidden on desktop */

.born-menu-overlay {
    display: none;
}


/* =====================================================
   SMALL DESKTOP
===================================================== */

@media (max-width: 1250px) {

    .born-container {
        padding: 0 20px;
    }


    .born-logo {
        flex-basis: 205px;
        width: 205px;
    }


    .born-logo img {
        height: 86px;
    }


    .born-navbar,
    .born-navbar-inner {
        min-height: 104px;
    }


    .born-menu {
        gap: 2px;
    }


    .born-menu a {
        padding: 10px;
        font-size: 13px;
    }


    .born-register-button {
        min-width: 205px;
    }

}


/* =====================================================
   RESPONSIVE MOBILE MENU
===================================================== */

@media (max-width: 991px) {

    .born-topbar {
        display: none;
    }


    .born-navbar,
    .born-navbar-inner {
        min-height: 88px;
    }


    .born-container {
        padding: 0 16px;
    }


    .born-navbar-inner {
        gap: 14px;
    }


    /* Mobile Logo */

    .born-logo {
        flex: 0 0 170px;

        width: 170px;
        height: 82px;
    }


    .born-logo img {
        height: 72px;
    }


    .born-logo-glow {
        width: 150px;
        height: 85px;
    }


    /* Hide Desktop Register */

    .born-register-button {
        display: none;
    }


    /* Show Menu Button */

    .born-menu-button {
        position: relative;
/*      z-index: 10003;*/
        display: block;
    }


    /* Overlay */

    .born-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 10000;

        display: block;

        background: rgba(0, 0, 0, 0.72);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
    }


    .born-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    /* Off Canvas Menu */

    .born-navigation {
        position: fixed;
        top: 0;
        right: -430px;
        z-index: 10002;

        width: min(88%, 390px);
        height: 100vh;
        height: 100dvh;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        overflow-y: auto;

        padding: 0 20px 28px;

        border-left: 1px solid rgba(244, 195, 68, 0.24);

        background:
            radial-gradient(
                circle at 85% 8%,
                rgba(244, 195, 68, 0.13),
                transparent 24%
            ),
            linear-gradient(
                160deg,
                #111008,
                #071326
            );

        box-shadow: -20px 0 55px rgba(0, 0, 0, 0.55);

        visibility: hidden;
        pointer-events: none;

        transition:
            right 0.38s ease,
            visibility 0.38s ease;
    }


    .born-navigation.active {
        right: 0;

        visibility: visible;
        pointer-events: auto;
    }


    /* Menu Heading */

    .born-mobile-heading {
        position: sticky;
        top: 0;
        z-index: 5;

        min-height: 82px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;

        margin: 0 -20px 18px;
        padding: 0 20px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        background: rgba(7, 13, 23, 0.98);
    }


    .born-mobile-heading > span {
        color: var(--born-gold);

        font-family: "Cinzel", serif;
        font-size: 20px;
        font-weight: 700;
    }


    .born-close-button {
        position: relative;
        z-index: 10;

      /*  width: 42px;
        height: 42px;*/

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(244, 195, 68, 0.3);
        border-radius: 10px;

        background: rgba(244, 195, 68, 0.08);
        color: var(--born-gold);

        font-size: 19px;

        cursor: pointer;
    }


    /* Mobile Menu */

    .born-menu {
        width: 100%;

        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 7px;
    }


    .born-menu li {
        width: 100%;
    }


    .born-menu a {
        width: 100%;
        min-height: 52px;

        justify-content: flex-start;

        padding: 13px 15px;

        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;

        background: rgba(255, 255, 255, 0.035);

        color: rgba(255, 255, 255, 0.88);

        font-size: 14px;
    }


    .born-menu a::before,
    .born-menu a::after {
        display: none;
    }


    .born-menu a:hover,
    .born-menu a.active {
        transform: none;

        border-color: rgba(244, 195, 68, 0.42);

        background: rgba(244, 195, 68, 0.1);
        color: var(--born-gold);
    }


    /* Mobile Contact */

    .born-mobile-contact {
        display: block;

        margin-top: 22px;
        padding: 18px;

        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 15px;

        background: rgba(255, 255, 255, 0.035);
    }


    .born-mobile-contact h4 {
        margin: 0 0 13px;

        color: #ffffff;

        font-size: 16px;
    }


    .born-mobile-contact a {
        display: flex;
        align-items: flex-start;
        gap: 10px;

        margin-top: 11px;

        color: rgba(255, 255, 255, 0.66);

        font-size: 12px;
        line-height: 1.5;

        overflow-wrap: anywhere;
    }


    .born-mobile-contact a i {
        width: 17px;
        margin-top: 2px;

        color: var(--born-gold);
    }


    /* Mobile Register */

    .born-mobile-register {
        display: block;

        margin-top: 18px;
    }


    .born-mobile-register a {
        width: 100%;
        min-height: 53px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 12px 18px;

        border-radius: 12px;

        background: linear-gradient(
            135deg,
            #ffdc67,
            var(--born-gold-dark)
        );

        color: var(--born-navy);

        font-size: 14px;
        font-weight: 800;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .born-navbar,
    .born-navbar-inner {
        min-height: 82px;
    }


    .born-logo {
        flex-basis: 155px;

        width: 155px;
        height: 76px;
    }


    .born-logo img {
        height: 66px;
    }


    .born-menu-button {
        width: 43px;
        height: 43px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .born-container {
        padding: 0 12px;
    }


    .born-navbar,
    .born-navbar-inner {
        min-height: 76px;
    }


    .born-logo {
        flex-basis: 138px;

        width: 138px;
        height: 70px;
    }


    .born-logo img {
        height: 60px;
    }


    .born-menu-button {
        width: 41px;
        height: 41px;
    }


    .born-navigation {
        width: 92%;

        padding-left: 16px;
        padding-right: 16px;
    }


    .born-mobile-heading {
        margin-left: -16px;
        margin-right: -16px;

        padding-left: 16px;
        padding-right: 16px;
    }

}


/* Very Small Mobile */

@media (max-width: 360px) {

    .born-logo {
        flex-basis: 125px;
        width: 125px;
    }


    .born-logo img {
        height: 55px;
    }

}
/* =====================================================
   TALENT ACADEMY PREMIUM RESPONSIVE BANNER
===================================================== */

.talent-banner-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #07122f;
}


/* Main Slider */

.talent-banner-slider {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


/* Slides */

.talent-banner-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #07122f;
}


/* Picture Wrapper */

.talent-banner-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}


/* Banner Image */

.talent-banner-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.035);
    transition: transform 6s ease;
}


/* Active Slide Zoom Effect */

.talent-banner-slider .swiper-slide-active img {
    transform: scale(1);
}


/* =====================================================
   PREMIUM NAVIGATION ARROWS
===================================================== */

.talent-banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(7, 18, 47, 0.55);
    color: #ffffff;

    font-size: 18px;
    cursor: pointer;

    transform: translateY(-50%);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* Previous Arrow */

.talent-banner-prev {
    left: 28px;
}


/* Next Arrow */

.talent-banner-next {
    right: 28px;
}


/* Arrow Hover */

.talent-banner-arrow:hover {
    background: #ffc400;
    color: #07122f;
    border-color: #ffc400;

    transform: translateY(-50%) scale(1.08);
}


/* Arrow Focus */

.talent-banner-arrow:focus-visible {
    outline: 3px solid rgba(255, 196, 0, 0.45);
    outline-offset: 3px;
}


/* =====================================================
   PAGINATION
===================================================== */

.talent-banner-pagination {
    position: absolute !important;
    left: 50% !important;
    bottom: 22px !important;
    z-index: 20;

    width: auto !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;

    background: rgba(7, 18, 47, 0.48);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transform: translateX(-50%);
}


/* Normal Dot */

.talent-banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.75);
    opacity: 1;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


/* Active Dot */

.talent-banner-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #ffc400;
}


/* =====================================================
   PROGRESS BAR
===================================================== */

.talent-banner-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 25;

    width: 100%;
    height: 3px;

    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}


.talent-progress-line {
    display: block;
    width: 0;
    height: 100%;
    background: #ffc400;
}


.talent-banner-slider.progress-active .talent-progress-line {
    animation: talentProgress 5s linear forwards;
}


@keyframes talentProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .talent-banner-image img {
        max-height: 780px;
        object-fit: cover;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .talent-banner-arrow {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .talent-banner-prev {
        left: 16px;
    }

    .talent-banner-next {
        right: 16px;
    }

    .talent-banner-pagination {
        bottom: 16px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .talent-banner-section,
    .talent-banner-slider,
    .talent-banner-slider .swiper-wrapper,
    .talent-banner-slider .swiper-slide {
        width: 100%;
        height: auto;
    }

    .talent-banner-image {
        width: 100%;
        height: auto;
    }

    .talent-banner-image img {
        width: 100%;
        height: auto;
        min-height: auto;
        object-fit: cover;
        object-position: center center;
    }


    /* Mobile Arrows */

    .talent-banner-arrow {
        width: 38px;
        height: 38px;

        font-size: 13px;

        background: rgba(7, 18, 47, 0.68);
    }

    .talent-banner-prev {
        left: 10px;
    }

    .talent-banner-next {
        right: 10px;
    }


    /* Mobile Pagination */

    .talent-banner-pagination {
        bottom: 12px !important;

        gap: 6px;
        padding: 6px 9px;
    }

    .talent-banner-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .talent-banner-pagination .swiper-pagination-bullet-active {
        width: 23px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .talent-banner-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .talent-banner-prev {
        left: 7px;
    }

    .talent-banner-next {
        right: 7px;
    }

    .talent-banner-pagination {
        bottom: 9px !important;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .talent-banner-image img {
        transform: none;
        transition: none;
    }

    .talent-banner-slider.progress-active .talent-progress-line {
        animation: none;
    }

}

/* =========================================================
   SAFEENA PARVEEN ENTERTAINMENT
   PREMIUM RESPONSIVE ABOUT SECTION
========================================================= */

:root {
    --about-violet: #7a22d3;
    --about-violet-dark: #380061;
    --about-violet-light: #b86cff;

    --about-gold: #f4bd32;
    --about-gold-light: #ffe18a;
    --about-gold-dark: #b97805;

    --about-heading: #17111d;
    --about-text: #5f5965;
    --about-white: #ffffff;

    --about-border: rgba(122, 34, 211, 0.13);
    --about-shadow: 0 22px 60px rgba(56, 0, 97, 0.13);
}


/* =========================================================
   SECTION
========================================================= */

.safeena-about-section {
    position: relative;
    width: 100%;
    padding: 65px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 25%,
            rgba(122, 34, 211, 0.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(244, 189, 50, 0.08),
            transparent 23%
        ),
        #faf9fc;
}


/* Decorative background line */

.safeena-about-section::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(122, 34, 211, 0.07);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.safeena-about-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -110px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(244, 189, 50, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.safeena-about-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1280px);
    margin: 0 auto;
}


/* =========================================================
   GRID
========================================================= */

.safeena-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 65px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.safeena-about-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Round image container */

.safeena-about-image-wrap {
    position: relative;
    width: 425px;
    height: 425px;
    max-width: 100%;
    border-radius: 50%;
    padding: 12px;
    background:
        linear-gradient(
            145deg,
            var(--about-gold-light),
            var(--about-gold),
            var(--about-violet)
        );

    box-shadow:
        var(--about-shadow),
        0 0 0 12px rgba(122, 34, 211, 0.045);
}


/* Inner circular white spacing */

.safeena-about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 1;
    border: 6px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
}


/* Round image */

.safeena-about-image {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}


/* Rotating ring */

.safeena-image-ring {
    position: absolute;
    inset: -20px;
    z-index: -1;
    border: 1px dashed rgba(122, 34, 211, 0.36);
    border-radius: 50%;
    animation: safeenaRingRotate 22s linear infinite;
}

.safeena-image-ring::before,
.safeena-image-ring::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid #faf9fc;
    border-radius: 50%;
    background: var(--about-gold);
    box-shadow: 0 0 18px rgba(244, 189, 50, 0.45);
}

.safeena-image-ring::before {
    top: 50px;
    left: 35px;
}

.safeena-image-ring::after {
    right: 30px;
    bottom: 60px;
}

@keyframes safeenaRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Image badge */

.safeena-image-badge {
    position: absolute;
    right: -16px;
    bottom: 62px;
    z-index: 4;
    min-height: 45px;
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 3px solid #faf9fc;
    border-radius: 50px;
    background:
        linear-gradient(
            135deg,
            var(--about-gold-light),
            var(--about-gold-dark)
        );

    color: #170d00;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(185, 120, 5, 0.22);
}

.safeena-image-badge i {
    font-size: 11px;
}


/* Floating card */

.safeena-floating-card {
    position: absolute;
    left: 0;
    bottom: 42px;
    z-index: 5;
    min-width: 215px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(13px);
    box-shadow: 0 18px 42px rgba(56, 0, 97, 0.16);
    animation: safeenaCardFloat 3.5s ease-in-out infinite alternate;
}

@keyframes safeenaCardFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-9px);
    }
}

.safeena-floating-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            var(--about-violet-light),
            var(--about-violet-dark)
        );

    color: #ffffff;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(122, 34, 211, 0.25);
}

.safeena-floating-content {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.safeena-floating-content strong {
    color: var(--about-heading);
    font-size: 13px;
    font-weight: 800;
}

.safeena-floating-content small {
    color: var(--about-text);
    font-size: 10px;
}


/* Decorative circles */

.safeena-image-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decoration-one {
    top: 45px;
    right: 45px;
    width: 70px;
    height: 70px;
    border: 15px solid rgba(244, 189, 50, 0.1);
}

.decoration-two {
    left: 30px;
    top: 90px;
    width: 35px;
    height: 35px;
    background: rgba(122, 34, 211, 0.1);
}


/* =========================================================
   CONTENT AREA
========================================================= */

.safeena-about-content {
    min-width: 0;
}


/* Small section label */

.safeena-section-label {
    width: fit-content;
    min-height: 36px;
    margin-bottom: 16px;
    padding: 4px 14px 4px 5px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(122, 34, 211, 0.18);
    border-radius: 50px;
    background: rgba(122, 34, 211, 0.055);
    color: var(--about-violet);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.safeena-label-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            var(--about-gold-light),
            var(--about-gold-dark)
        );

    color: #171000;
    font-size: 10px;
}


/* Heading */

.safeena-about-content h2 {
    max-width: 760px;
    margin: 0;
    color: var(--about-heading);
    font-family: "Cinzel", serif;
    font-size: clamp(31px, 3.2vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.safeena-about-content h2 span {
    display: block;
    margin-top: 5px;
    color: var(--about-violet);
    background:
        linear-gradient(
            90deg,
            var(--about-violet-dark),
            var(--about-violet),
            var(--about-gold-dark)
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Paragraphs */

.safeena-about-content > p {
    max-width: 750px;
    margin: 13px 0 0;
    color: var(--about-text);
    font-size: 15px;
    line-height: 1.8;
}

.safeena-about-content .safeena-about-lead {
    margin-top: 19px;
    color: #37303d;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}


/* =========================================================
   MISSION BOX
========================================================= */

.safeena-mission-box {
    max-width: 760px;
    margin-top: 23px;
    padding: 17px 19px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid var(--about-border);
    border-left: 4px solid var(--about-violet);
    border-radius: 14px;
    background:
        linear-gradient(
            110deg,
            rgba(122, 34, 211, 0.065),
            rgba(244, 189, 50, 0.045)
        );
}

.safeena-mission-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            var(--about-violet-light),
            var(--about-violet-dark)
        );

    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 9px 22px rgba(122, 34, 211, 0.2);
}

.safeena-mission-content h3 {
    margin: 0 0 4px;
    color: var(--about-heading);
    font-size: 16px;
    font-weight: 800;
}

.safeena-mission-content p {
    margin: 0;
    color: var(--about-text);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FEATURE ITEMS
========================================================= */

.safeena-about-features {
    max-width: 760px;
    margin-top: 23px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.safeena-feature-item {
    min-height: 52px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(23, 17, 29, 0.08);
    border-radius: 12px;
    background: #ffffff;
    color: #37303d;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(56, 0, 97, 0.045);
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.safeena-feature-item:hover {
    border-color: rgba(122, 34, 211, 0.24);
    transform: translateY(-3px);
    box-shadow: 0 13px 30px rgba(56, 0, 97, 0.09);
}

.safeena-feature-icon {
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(122, 34, 211, 0.08);
    color: var(--about-violet);
    font-size: 12px;
}


/* =========================================================
   BUTTON
========================================================= */

.safeena-about-action {
    margin-top: 27px;
}

.safeena-about-button {
    position: relative;
    min-width: 165px;
    min-height: 53px;
    padding: 12px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    border: 1px solid var(--about-violet);
    border-radius: 50px;
    background:
        linear-gradient(
            135deg,
            var(--about-violet-light),
            var(--about-violet),
            var(--about-violet-dark)
        );

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(122, 34, 211, 0.23);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.safeena-about-button::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -60%;
    width: 35px;
    height: 240%;
    background: rgba(255, 255, 255, 0.42);
    transform: rotate(25deg);
    animation: safeenaButtonShine 4s ease-in-out infinite;
}

@keyframes safeenaButtonShine {
    0%,
    58% {
        left: -60%;
    }

    85%,
    100% {
        left: 135%;
    }
}

.safeena-about-button span,
.safeena-about-button i {
    position: relative;
    z-index: 2;
}

.safeena-about-button i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.safeena-about-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 17px 36px rgba(122, 34, 211, 0.32);
}

.safeena-about-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE: TABLET
========================================================= */

@media screen and (max-width: 1050px) {

    .safeena-about-section {
        padding: 58px 0;
    }

    .safeena-about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 42px;
    }

    .safeena-about-visual {
        min-height: 410px;
    }

    .safeena-about-image-wrap {
        width: 360px;
        height: 360px;
    }

    .safeena-floating-card {
        left: -10px;
        bottom: 25px;
    }

    .safeena-image-badge {
        right: -12px;
        bottom: 42px;
    }

    .safeena-about-content h2 {
        font-size: clamp(30px, 4vw, 39px);
    }

}


/* =========================================================
   RESPONSIVE: SMALL TABLET
========================================================= */

@media screen and (max-width: 820px) {

    .safeena-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .safeena-about-visual {
        min-height: 410px;
        order: 2;
    }

    .safeena-about-content {
        order: 1;
        text-align: center;
    }

    .safeena-section-label {
        margin-right: auto;
        margin-left: auto;
    }

    .safeena-about-content h2,
    .safeena-about-content > p,
    .safeena-mission-box,
    .safeena-about-features {
        margin-right: auto;
        margin-left: auto;
    }

    .safeena-about-action {
        text-align: center;
    }

    .safeena-mission-box {
        text-align: left;
    }

    .safeena-feature-item {
        text-align: left;
    }

}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .safeena-about-section {
        padding: 45px 0;
    }

    .safeena-about-container {
        width: 91%;
    }

    .safeena-about-grid {
        gap: 37px;
    }

    .safeena-about-content h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .safeena-about-content .safeena-about-lead {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .safeena-about-content > p {
        font-size: 13px;
        line-height: 1.75;
    }

    .safeena-mission-box {
        margin-top: 20px;
        padding: 15px;
    }

    .safeena-mission-content p {
        font-size: 12px;
    }

    .safeena-about-features {
        grid-template-columns: 1fr;
        margin-top: 19px;
        gap: 9px;
    }

    .safeena-feature-item {
        min-height: 49px;
        font-size: 12px;
    }

    .safeena-about-action {
        margin-top: 23px;
    }

    .safeena-about-visual {
        min-height: 350px;
    }

    .safeena-about-image-wrap {
        width: 305px;
        height: 305px;
        padding: 9px;
    }

    .safeena-about-image-wrap::before {
        inset: 6px;
        border-width: 4px;
    }

    .safeena-image-ring {
        inset: -14px;
    }

    .safeena-image-badge {
        right: -2px;
        bottom: 32px;
        min-height: 39px;
        padding: 7px 11px;
        font-size: 10px;
    }

    .safeena-floating-card {
        left: 0;
        bottom: 10px;
        min-width: 188px;
        padding: 10px;
    }

    .safeena-floating-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }

    .safeena-floating-content strong {
        font-size: 11px;
    }

    .safeena-floating-content small {
        font-size: 9px;
    }

}


/* =========================================================
   RESPONSIVE: SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .safeena-about-section {
        padding: 40px 0;
    }

    .safeena-about-content h2 {
        font-size: 27px;
    }

    .safeena-about-visual {
        min-height: 315px;
    }

    .safeena-about-image-wrap {
        width: 270px;
        height: 270px;
    }

    .safeena-floating-card {
        min-width: 170px;
    }

    .safeena-image-badge {
        right: -4px;
        max-width: 150px;
    }

    .safeena-about-button {
        width: 100%;
    }

}

/* =========================================================
   OUR PROGRAMS
   PREMIUM VIOLET RESPONSIVE SLIDER
========================================================= */

:root {
    --program-violet: #7a22d3;
    --program-violet-light: #aa5af2;
    --program-violet-dark: #35005f;

    --program-gold: #f4bd32;
    --program-gold-light: #ffe18a;
    --program-gold-dark: #b97805;

    --program-white: #ffffff;
    --program-text: rgba(255, 255, 255, 0.78);
    --program-border: rgba(255, 255, 255, 0.13);
}


/* =========================================================
   SECTION
========================================================= */

.programs-section {
    position: relative;
    width: 100%;
    padding: 54px 0 57px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(244, 189, 50, 0.14),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(255, 255, 255, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #26003f 0%,
            #54108f 48%,
            #7a22d3 100%
        );
}


/* Decorative circles */

.programs-section::before {
    content: "";
    position: absolute;
    top: -105px;
    right: -95px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.programs-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -115px;
    width: 235px;
    height: 235px;
    border: 1px solid rgba(244, 189, 50, 0.13);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.programs-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1320px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.programs-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.programs-heading-content {
    max-width: 790px;
}


/* Small label */

.programs-subtitle {
    width: fit-content;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 6px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(244, 189, 50, 0.34);
    border-radius: 50px;

    background: rgba(244, 189, 50, 0.1);

    color: var(--program-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.programs-subtitle i {
    color: var(--program-gold);
    font-size: 10px;
}


/* Heading */

.programs-heading h2 {
    margin: 0;

    color: var(--program-white);

    font-family: "Cinzel", serif;
    font-size: clamp(30px, 3.4vw, 45px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.4px;
}

.programs-heading h2 span {
    display: block;
    margin-top: 4px;

    background:
        linear-gradient(
            90deg,
            var(--program-gold-light),
            var(--program-gold),
            #ffffff
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Heading paragraph */

.programs-heading p {
    max-width: 720px;
    margin: 10px 0 0;

    color: var(--program-text);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   NAVIGATION BUTTONS
========================================================= */

.programs-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.programs-arrow {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;
    font-size: 13px;

    cursor: pointer;
    backdrop-filter: blur(9px);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.programs-arrow:hover {
    color: #16001f;

    background:
        linear-gradient(
            135deg,
            var(--program-gold-light),
            var(--program-gold)
        );

    border-color: var(--program-gold);
    transform: translateY(-2px);
}


/* =========================================================
   SWIPER
========================================================= */

.programsSwiper {
    width: 100%;
    padding: 4px 3px 43px;
    overflow: hidden;
}

.programsSwiper .swiper-wrapper {
    align-items: stretch;
}

.programsSwiper .swiper-slide {
    height: auto;
}


/* =========================================================
   PROGRAM CARD
========================================================= */

.program-card {
    position: relative;

    height: 100%;
    min-height: 305px;

    padding: 21px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--program-border);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.055)
        );

    box-shadow:
        0 17px 40px rgba(20, 0, 35, 0.2);

    backdrop-filter: blur(13px);

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Card glow */

.program-card::before {
    content: "";

    position: absolute;
    top: -65px;
    right: -65px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 189, 50, 0.2),
            transparent 68%
        );

    transition: transform 0.4s ease;
}


/* Card bottom line */

.program-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--program-gold-light),
            var(--program-gold)
        );

    transition: width 0.35s ease;
}

.program-card:hover {
    border-color: rgba(244, 189, 50, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.18),
            rgba(244, 189, 50, 0.07)
        );

    transform: translateY(-6px);

    box-shadow:
        0 23px 48px rgba(20, 0, 35, 0.3);
}

.program-card:hover::before {
    transform: scale(1.25);
}

.program-card:hover::after {
    width: 100%;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.program-number {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;

    color: rgba(255, 255, 255, 0.18);

    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}


/* =========================================================
   PROGRAM ICON
========================================================= */

.program-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 189, 50, 0.38);
    border-radius: 17px;

    background: rgba(244, 189, 50, 0.1);

    color: var(--program-gold);
    font-size: 21px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.program-card:hover .program-icon {
    color: #190021;

    background:
        linear-gradient(
            145deg,
            var(--program-gold-light),
            var(--program-gold-dark)
        );

    transform: rotate(-5deg) scale(1.04);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.program-card-content {
    position: relative;
    z-index: 2;

    height: 100%;
    margin-top: 21px;

    display: flex;
    flex-direction: column;
}


/* Category */

.program-category {
    margin-bottom: 7px;

    color: var(--program-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}


/* Title */

.program-card-content h3 {
    margin: 0;

    color: var(--program-white);

    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}


/* Paragraph */

.program-card-content p {
    margin: 10px 0 0;

    color: var(--program-text);
    font-size: 12px;
    line-height: 1.7;
}


/* Card link */

.program-link {
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--program-gold-light);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.program-link i {
    font-size: 10px;
}

.program-link:hover {
    color: #ffffff;
    gap: 12px;
}


/* =========================================================
   PAGINATION
========================================================= */

.programs-pagination {
    bottom: 4px !important;
}

.programs-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;

    margin: 0 4px !important;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.31);

    opacity: 1;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.programs-pagination .swiper-pagination-bullet-active {
    width: 30px;

    background:
        linear-gradient(
            90deg,
            var(--program-gold-light),
            var(--program-gold)
        );
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .programs-section {
        padding: 49px 0 52px;
    }

    .program-card {
        min-height: 295px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .programs-section {
        padding: 42px 0 45px;
    }

    .programs-container {
        width: 91%;
    }

    .programs-heading {
        margin-bottom: 23px;
        display: block;
        text-align: center;
    }

    .programs-subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .programs-heading h2 {
        font-size: 30px;
        line-height: 1.24;
    }

    .programs-heading p {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.7;
    }

    .programs-navigation {
        display: none;
    }

    .programsSwiper {
        padding-bottom: 39px;
    }

    .program-card {
        min-height: 275px;
        padding: 19px;
        border-radius: 16px;
    }

    .program-icon {
        width: 53px;
        height: 53px;
        flex-basis: 53px;
        font-size: 19px;
    }

    .program-card-content {
        margin-top: 18px;
    }

    .program-card-content h3 {
        font-size: 17px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .programs-section {
        padding: 38px 0 41px;
    }

    .programs-heading h2 {
        font-size: 27px;
    }

    .program-card {
        min-height: 285px;
        padding: 17px;
    }

    .program-card-content h3 {
        font-size: 16px;
    }

}
/* =========================================================
   WHY CHOOSE US
   PREMIUM RESPONSIVE SECTION
========================================================= */

:root {
    --why-purple: #7423cf;
    --why-purple-dark: #35005d;
    --why-purple-light: #a958f2;

    --why-gold: #f4bd32;
    --why-gold-light: #ffe18a;
    --why-gold-dark: #b97805;

    --why-heading: #1c1522;
    --why-text: #625b67;
    --why-white: #ffffff;
    --why-soft-white: #faf9fc;

    --why-border: rgba(116, 35, 207, 0.11);
    --why-shadow: 0 12px 32px rgba(53, 0, 93, 0.07);
}


/* =========================================================
   SECTION
========================================================= */

.why-choose-section {
    position: relative;
    width: 100%;
    padding: 52px 0 56px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 20%,
            rgba(116, 35, 207, 0.055),
            transparent 24%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(244, 189, 50, 0.07),
            transparent 23%
        ),
        var(--why-soft-white);
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: 38px;
    right: -75px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(116, 35, 207, 0.07);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-choose-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1320px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.why-choose-heading {
    max-width: 790px;
    margin: 0 auto 29px;
    text-align: center;
}

.why-choose-label {
    width: fit-content;
    min-height: 34px;
    margin: 0 auto 12px;
    padding: 6px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(116, 35, 207, 0.17);
    border-radius: 50px;
    background: rgba(116, 35, 207, 0.055);
    color: var(--why-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.why-choose-label i {
    color: var(--why-gold-dark);
    font-size: 10px;
}

.why-choose-heading h2 {
    margin: 0;
    color: var(--why-heading);
    font-family: "Cinzel", serif;
    font-size: clamp(30px, 3.4vw, 45px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.4px;
}

.why-choose-heading h2 span {
    display: block;
    margin-top: 4px;
    background:
        linear-gradient(
            90deg,
            var(--why-purple-dark),
            var(--why-purple),
            var(--why-gold-dark)
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-heading p {
    max-width: 720px;
    margin: 11px auto 0;
    color: var(--why-text);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FEATURES GRID
========================================================= */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.why-choose-card {
    position: relative;
    min-height: 145px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    border: 1px solid rgba(28, 21, 34, 0.075);
    border-radius: 15px;
    background: var(--why-white);
    box-shadow: var(--why-shadow);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.why-choose-card::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(116, 35, 207, 0.1),
            transparent 68%
        );

    transition: transform 0.4s ease;
}

.why-choose-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--why-purple),
            var(--why-gold)
        );

    transition: width 0.35s ease;
}

.why-choose-card:hover {
    border-color: rgba(116, 35, 207, 0.22);
    box-shadow: 0 17px 38px rgba(53, 0, 93, 0.11);
    transform: translateY(-4px);
}

.why-choose-card:hover::before {
    transform: scale(1.3);
}

.why-choose-card:hover::after {
    width: 100%;
}


/* Last card centered across the row */

.why-choose-card-wide {
    grid-column: 2 / 3;
}


/* =========================================================
   ICON
========================================================= */

.why-choose-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(116, 35, 207, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(116, 35, 207, 0.1),
            rgba(244, 189, 50, 0.08)
        );

    color: var(--why-purple);
    font-size: 18px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--why-purple-light),
            var(--why-purple-dark)
        );

    transform: rotate(-5deg) scale(1.04);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.why-choose-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.why-choose-content h3 {
    margin: 1px 0 0;
    color: var(--why-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.why-choose-content p {
    margin: 7px 0 0;
    color: var(--why-text);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE: TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .why-choose-section {
        padding: 48px 0 51px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-choose-card-wide {
        grid-column: auto;
    }

}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media screen and (max-width: 650px) {

    .why-choose-section {
        padding: 41px 0 44px;
    }

    .why-choose-container {
        width: 91%;
    }

    .why-choose-heading {
        margin-bottom: 23px;
    }

    .why-choose-heading h2 {
        font-size: 30px;
        line-height: 1.24;
    }

    .why-choose-heading p {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.7;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .why-choose-card {
        min-height: auto;
        padding: 16px;
        gap: 12px;
        border-radius: 13px;
    }

    .why-choose-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
        font-size: 16px;
    }

    .why-choose-content h3 {
        font-size: 15px;
    }

    .why-choose-content p {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.65;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .why-choose-section {
        padding: 37px 0 40px;
    }

    .why-choose-heading h2 {
        font-size: 27px;
    }

    .why-choose-card {
        padding: 14px;
    }

    .why-choose-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

}

/* =========================================================
   UPCOMING EVENTS PREMIUM SLIDER
========================================================= */

:root {
    --events-violet: #7a22d3;
    --events-violet-light: #aa5af2;
    --events-violet-dark: #35005f;

    --events-gold: #f4bd32;
    --events-gold-light: #ffe18a;
    --events-gold-dark: #b97805;

    --events-white: #ffffff;
    --events-text: rgba(255, 255, 255, 0.78);
    --events-border: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   SECTION
========================================================= */

.upcoming-events-section {
    position: relative;
    width: 100%;
    padding: 54px 0 57px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(244, 189, 50, 0.14),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(255, 255, 255, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #26003f 0%,
            #54108f 48%,
            #7a22d3 100%
        );
}

.upcoming-events-section::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 245px;
    height: 245px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.upcoming-events-section::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(244, 189, 50, 0.12);
    border-radius: 50%;
}


/* =========================================================
   CONTAINER
========================================================= */

.upcoming-events-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1320px);
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.events-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.events-heading-content {
    max-width: 780px;
}

.events-label {
    width: fit-content;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 6px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(244, 189, 50, 0.34);
    border-radius: 50px;
    background: rgba(244, 189, 50, 0.1);
    color: var(--events-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.events-label i {
    color: var(--events-gold);
    font-size: 11px;
}

.events-heading h2 {
    margin: 0;
    color: var(--events-white);
    font-family: "Cinzel", serif;
    font-size: clamp(30px, 3.4vw, 45px);
    font-weight: 700;
    line-height: 1.18;
}

.events-heading h2 span {
    display: block;
    margin-top: 4px;
    color: var(--events-gold);
    background:
        linear-gradient(
            90deg,
            var(--events-gold-light),
            var(--events-gold),
            #ffffff
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.events-heading p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--events-text);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   NAVIGATION
========================================================= */

.events-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.events-arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.events-arrow:hover {
    color: #120018;
    background: var(--events-gold);
    border-color: var(--events-gold);
    transform: translateY(-2px);
}


/* =========================================================
   SWIPER
========================================================= */

.upcomingEventsSwiper {
    width: 100%;
    padding: 4px 3px 42px;
    overflow: hidden;
}

.upcomingEventsSwiper .swiper-slide {
    height: auto;
}


/* =========================================================
   EVENT CARD
========================================================= */

.event-card {
    position: relative;
    height: 100%;
    min-height: 305px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--events-border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.055)
        );

    box-shadow: 0 17px 40px rgba(20, 0, 35, 0.2);
    backdrop-filter: blur(13px);
    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.event-card::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(244, 189, 50, 0.2),
            transparent 68%
        );

    transition: transform 0.4s ease;
}

.event-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--events-gold-light),
            var(--events-gold)
        );

    transition: width 0.35s ease;
}

.event-card:hover {
    border-color: rgba(244, 189, 50, 0.35);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.17),
            rgba(244, 189, 50, 0.07)
        );

    transform: translateY(-6px);
    box-shadow: 0 23px 48px rgba(20, 0, 35, 0.3);
}

.event-card:hover::before {
    transform: scale(1.25);
}

.event-card:hover::after {
    width: 100%;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.event-card-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255, 255, 255, 0.17);
    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}


/* =========================================================
   ICON
========================================================= */

.event-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 50, 0.38);
    border-radius: 17px;
    background: rgba(244, 189, 50, 0.1);
    color: var(--events-gold);
    font-size: 21px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.event-card:hover .event-icon {
    color: #190021;
    background:
        linear-gradient(
            145deg,
            var(--events-gold-light),
            var(--events-gold-dark)
        );

    transform: rotate(-5deg) scale(1.04);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.event-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    margin-top: 21px;
    display: flex;
    flex-direction: column;
}

.event-type {
    margin-bottom: 7px;
    color: var(--events-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.event-card-content h3 {
    margin: 0;
    color: var(--events-white);
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.event-card-content p {
    margin: 10px 0 0;
    color: var(--events-text);
    font-size: 12px;
    line-height: 1.7;
}

.event-link {
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--events-gold-light);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.event-link i {
    font-size: 10px;
}

.event-link:hover {
    color: #ffffff;
    gap: 12px;
}


/* =========================================================
   PAGINATION
========================================================= */

.events-pagination {
    bottom: 4px !important;
}

.events-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 4px !important;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.events-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background:
        linear-gradient(
            90deg,
            var(--events-gold-light),
            var(--events-gold)
        );
}


/* =========================================================
   MAIN BUTTON
========================================================= */

.events-main-action {
    margin-top: 5px;
    text-align: center;
}

.view-events-button {
    position: relative;
    min-width: 185px;
    min-height: 54px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    border: 1px solid var(--events-gold);
    border-radius: 50px;
    background:
        linear-gradient(
            135deg,
            var(--events-gold-light),
            var(--events-gold),
            var(--events-gold-dark)
        );

    color: #16001f;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(244, 189, 50, 0.22);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.view-events-button::before {
    content: "";
    position: absolute;
    top: -65%;
    left: -60%;
    width: 38px;
    height: 230%;
    background: rgba(255, 255, 255, 0.65);
    transform: rotate(25deg);
    animation: eventButtonShine 4s ease-in-out infinite;
}

@keyframes eventButtonShine {
    0%,
    58% {
        left: -60%;
    }

    85%,
    100% {
        left: 135%;
    }
}

.view-events-button span,
.view-events-button i {
    position: relative;
    z-index: 2;
}

.view-events-button i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.view-events-button:hover {
    color: #16001f;
    transform: translateY(-3px);
    box-shadow: 0 18px 39px rgba(244, 189, 50, 0.32);
}

.view-events-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .upcoming-events-section {
        padding: 49px 0 52px;
    }

    .event-card {
        min-height: 295px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .upcoming-events-section {
        padding: 42px 0 45px;
    }

    .upcoming-events-container {
        width: 91%;
    }

    .events-heading {
        margin-bottom: 23px;
        display: block;
        text-align: center;
    }

    .events-label {
        margin-right: auto;
        margin-left: auto;
    }

    .events-heading h2 {
        font-size: 30px;
        line-height: 1.24;
    }

    .events-heading p {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.7;
    }

    .events-navigation {
        display: none;
    }

    .upcomingEventsSwiper {
        padding-bottom: 39px;
    }

    .event-card {
        min-height: 275px;
        padding: 19px;
        border-radius: 16px;
    }

    .event-icon {
        width: 53px;
        height: 53px;
        font-size: 19px;
    }

    .event-card-content {
        margin-top: 18px;
    }

    .event-card-content h3 {
        font-size: 17px;
    }

    .view-events-button {
        width: 100%;
    }

}

/* =========================================================
   MEET OUR LEADERSHIP
   PREMIUM SOFT-WHITE RESPONSIVE SECTION
========================================================= */

:root {
    --leader-purple: #7423cf;
    --leader-purple-dark: #35005d;
    --leader-purple-light: #a958f2;

    --leader-gold: #f4bd32;
    --leader-gold-light: #ffe18a;
    --leader-gold-dark: #b97805;

    --leader-heading: #1c1522;
    --leader-text: #625b67;
    --leader-white: #ffffff;
    --leader-soft-white: #faf9fc;

    --leader-border: rgba(116, 35, 207, 0.12);
    --leader-shadow: 0 15px 38px rgba(53, 0, 93, 0.08);
}


/* =========================================================
   SECTION
========================================================= */

.leadership-section {
    position: relative;
    width: 100%;
    padding: 52px 0 56px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 7% 18%,
            rgba(116, 35, 207, 0.055),
            transparent 24%
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(244, 189, 50, 0.07),
            transparent 22%
        ),
        var(--leader-soft-white);
}

.leadership-section::before {
    content: "";
    position: absolute;
    top: 35px;
    right: -80px;
    width: 195px;
    height: 195px;
    border: 1px solid rgba(116, 35, 207, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.leadership-section::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -100px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(244, 189, 50, 0.1);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.leadership-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1180px);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.leadership-heading {
    max-width: 790px;
    margin: 0 auto 30px;
    text-align: center;
}

.leadership-label {
    width: fit-content;
    min-height: 34px;
    margin: 0 auto 12px;
    padding: 6px 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid rgba(116, 35, 207, 0.17);
    border-radius: 50px;

    background: rgba(116, 35, 207, 0.055);

    color: var(--leader-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.leadership-label i {
    color: var(--leader-gold-dark);
    font-size: 11px;
}

.leadership-heading h2 {
    margin: 0;

    color: var(--leader-heading);

    font-family: "Cinzel", serif;
    font-size: clamp(30px, 3.4vw, 45px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.4px;
}

.leadership-heading h2 span {
    display: block;
    margin-top: 4px;

    background:
        linear-gradient(
            90deg,
            var(--leader-purple-dark),
            var(--leader-purple),
            var(--leader-gold-dark)
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leadership-heading p {
    max-width: 720px;
    margin: 11px auto 0;

    color: var(--leader-text);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   LEADERSHIP GRID
========================================================= */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   LEADER CARD
========================================================= */

.leader-card {
    position: relative;
    min-height: 305px;
    padding: 24px;

    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 24px;

    overflow: hidden;

    border: 1px solid rgba(28, 21, 34, 0.075);
    border-radius: 20px;

    background: var(--leader-white);

    box-shadow: var(--leader-shadow);

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.leader-card::before {
    content: "";
    position: absolute;
    top: -75px;
    right: -75px;
    width: 165px;
    height: 165px;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(116, 35, 207, 0.11),
            transparent 68%
        );

    transition: transform 0.4s ease;
}

.leader-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--leader-purple),
            var(--leader-gold)
        );

    transition: width 0.4s ease;
}

.leader-card:hover {
    border-color: rgba(116, 35, 207, 0.23);

    box-shadow:
        0 21px 46px rgba(53, 0, 93, 0.12);

    transform: translateY(-5px);
}

.leader-card:hover::before {
    transform: scale(1.25);
}

.leader-card:hover::after {
    width: 100%;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.leader-image-area {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image-ring {
    position: relative;
    width: 155px;
    height: 155px;
    padding: 7px;
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--leader-gold-light),
            var(--leader-gold),
            var(--leader-purple)
        );

    box-shadow:
        0 14px 32px rgba(53, 0, 93, 0.14),
        0 0 0 8px rgba(116, 35, 207, 0.045);
}

.leader-image-ring::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px dashed rgba(116, 35, 207, 0.25);
    border-radius: 50%;
    animation: leaderRingRotate 20s linear infinite;
}

@keyframes leaderRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.leader-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    border: 5px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.leader-star {
    position: absolute;
    right: 2px;
    bottom: 10px;
    z-index: 4;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 4px solid #ffffff;
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--leader-gold-light),
            var(--leader-gold-dark)
        );

    color: #1b1000;
    font-size: 12px;

    box-shadow: 0 8px 20px rgba(185, 120, 5, 0.22);
}


/* =========================================================
   LEADER CONTENT
========================================================= */

.leader-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.leader-role {
    width: fit-content;
    min-height: 28px;
    margin-bottom: 8px;
    padding: 5px 11px;

    display: inline-flex;
    align-items: center;

    border: 1px solid rgba(116, 35, 207, 0.16);
    border-radius: 50px;

    background: rgba(116, 35, 207, 0.06);

    color: var(--leader-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.leader-content h3 {
    margin: 0;
    color: var(--leader-heading);
    font-family: "Cinzel", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.leader-content p {
    margin: 10px 0 0;
    color: var(--leader-text);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FOCUS TAGS
========================================================= */

.leader-focus {
    margin-top: 15px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.leader-focus span {
    min-height: 32px;
    padding: 6px 10px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    border: 1px solid rgba(28, 21, 34, 0.08);
    border-radius: 8px;

    background: #faf9fc;

    color: #4e4653;
    font-size: 10px;
    font-weight: 700;
}

.leader-focus span i {
    color: var(--leader-purple);
    font-size: 10px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.leader-socials {
    margin-top: 16px;

    display: flex;
    align-items: center;
    gap: 8px;
}

.leader-socials a {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(116, 35, 207, 0.15);
    border-radius: 50%;

    background: rgba(116, 35, 207, 0.055);

    color: var(--leader-purple);
    font-size: 11px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.leader-socials a:hover {
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--leader-purple-light),
            var(--leader-purple-dark)
        );

    border-color: var(--leader-purple);
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE: TABLET
========================================================= */

@media screen and (max-width: 1050px) {

    .leadership-section {
        padding: 48px 0 51px;
    }

    .leader-card {
        grid-template-columns: 135px 1fr;
        gap: 20px;
        padding: 21px;
    }

    .leader-image-ring {
        width: 130px;
        height: 130px;
    }

    .leader-content h3 {
        font-size: 21px;
    }

}


/* =========================================================
   RESPONSIVE: SMALL TABLET
========================================================= */

@media screen and (max-width: 820px) {

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

    .leader-card {
        grid-template-columns: 160px 1fr;
    }

    .leader-image-ring {
        width: 150px;
        height: 150px;
    }

}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .leadership-section {
        padding: 41px 0 44px;
    }

    .leadership-container {
        width: 91%;
    }

    .leadership-heading {
        margin-bottom: 23px;
    }

    .leadership-heading h2 {
        font-size: 30px;
        line-height: 1.24;
    }

    .leadership-heading p {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.7;
    }

    .leadership-grid {
        gap: 15px;
    }

    .leader-card {
        min-height: auto;
        padding: 20px;

        grid-template-columns: 1fr;
        gap: 20px;

        text-align: center;
    }

    .leader-image-ring {
        width: 145px;
        height: 145px;
    }

    .leader-role {
        margin-right: auto;
        margin-left: auto;
    }

    .leader-content h3 {
        font-size: 22px;
    }

    .leader-content p {
        font-size: 12px;
        line-height: 1.7;
    }

    .leader-focus,
    .leader-socials {
        justify-content: center;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .leadership-section {
        padding: 37px 0 40px;
    }

    .leadership-heading h2 {
        font-size: 27px;
    }

    .leader-card {
        padding: 17px;
    }

    .leader-image-ring {
        width: 132px;
        height: 132px;
    }

    .leader-content h3 {
        font-size: 20px;
    }

}

/* =========================================================
   TESTIMONIALS
   PREMIUM VIOLET RESPONSIVE SLIDER
========================================================= */

:root {
    --testimonial-violet: #7a22d3;
    --testimonial-violet-light: #aa5af2;
    --testimonial-violet-dark: #35005f;

    --testimonial-gold: #f4bd32;
    --testimonial-gold-light: #ffe18a;
    --testimonial-gold-dark: #b97805;

    --testimonial-white: #ffffff;
    --testimonial-text: rgba(255, 255, 255, 0.8);
    --testimonial-border: rgba(255, 255, 255, 0.13);
}


/* =========================================================
   SECTION
========================================================= */

.testimonial-section {
    position: relative;
    width: 100%;
    padding: 54px 0 57px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(244, 189, 50, 0.14),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(255, 255, 255, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #26003f 0%,
            #54108f 48%,
            #7a22d3 100%
        );
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    left: -85px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(244, 189, 50, 0.13);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.testimonial-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1320px);
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-heading-content {
    max-width: 780px;
}

.testimonial-label {
    width: fit-content;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 6px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(244, 189, 50, 0.34);
    border-radius: 50px;

    background: rgba(244, 189, 50, 0.1);

    color: var(--testimonial-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-label i {
    color: var(--testimonial-gold);
    font-size: 10px;
}

.testimonial-heading h2 {
    margin: 0;

    color: var(--testimonial-white);

    font-family: "Cinzel", serif;
    font-size: clamp(30px, 3.4vw, 45px);
    font-weight: 700;
    line-height: 1.18;
}

.testimonial-heading h2 span {
    display: block;
    margin-top: 4px;

    background:
        linear-gradient(
            90deg,
            var(--testimonial-gold-light),
            var(--testimonial-gold),
            #ffffff
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-heading p {
    max-width: 720px;
    margin: 10px 0 0;

    color: var(--testimonial-text);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   NAVIGATION
========================================================= */

.testimonial-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-arrow {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;
    font-size: 13px;
    cursor: pointer;

    backdrop-filter: blur(9px);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.testimonial-arrow:hover {
    color: #16001f;

    background:
        linear-gradient(
            135deg,
            var(--testimonial-gold-light),
            var(--testimonial-gold)
        );

    border-color: var(--testimonial-gold);
    transform: translateY(-2px);
}


/* =========================================================
   SWIPER
========================================================= */

.testimonialSwiper {
    width: 100%;
    padding: 4px 3px 43px;
    overflow: hidden;
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 24px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--testimonial-border);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.055)
        );

    box-shadow: 0 17px 40px rgba(20, 0, 35, 0.2);
    backdrop-filter: blur(13px);

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 140px;
    height: 140px;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 189, 50, 0.2),
            transparent 68%
        );

    transition: transform 0.4s ease;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--testimonial-gold-light),
            var(--testimonial-gold)
        );

    transition: width 0.35s ease;
}

.testimonial-card:hover {
    border-color: rgba(244, 189, 50, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.18),
            rgba(244, 189, 50, 0.07)
        );

    transform: translateY(-6px);
    box-shadow: 0 23px 48px rgba(20, 0, 35, 0.3);
}

.testimonial-card:hover::before {
    transform: scale(1.25);
}

.testimonial-card:hover::after {
    width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.testimonial-number {
    position: absolute;
    top: 19px;
    right: 20px;
    z-index: 2;

    color: rgba(255, 255, 255, 0.17);
    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}


/* =========================================================
   CARD TOP
========================================================= */

.testimonial-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.testimonial-quote-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            var(--testimonial-gold-light),
            var(--testimonial-gold-dark)
        );

    color: #190021;
    font-size: 22px;

    box-shadow: 0 12px 28px rgba(244, 189, 50, 0.2);
}

.testimonial-rating {
    margin-right: 42px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-rating i {
    color: var(--testimonial-gold);
    font-size: 12px;
}


/* =========================================================
   QUOTE TEXT
========================================================= */

.testimonial-card blockquote {
    position: relative;
    z-index: 2;

    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;

    font-style: italic;
}


/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 23px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 189, 50, 0.34);
    border-radius: 50%;

    background: rgba(244, 189, 50, 0.1);

    color: var(--testimonial-gold);
    font-size: 15px;
}

.testimonial-author-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-author-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.testimonial-author-content span {
    margin-top: 2px;
    color: var(--testimonial-gold-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* =========================================================
   PAGINATION
========================================================= */

.testimonial-pagination {
    bottom: 4px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 4px !important;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.31);

    opacity: 1;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 30px;

    background:
        linear-gradient(
            90deg,
            var(--testimonial-gold-light),
            var(--testimonial-gold)
        );
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .testimonial-section {
        padding: 49px 0 52px;
    }

    .testimonial-card {
        min-height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .testimonial-section {
        padding: 42px 0 45px;
    }

    .testimonial-container {
        width: 91%;
    }

    .testimonial-heading {
        margin-bottom: 23px;
        display: block;
        text-align: center;
    }

    .testimonial-label {
        margin-right: auto;
        margin-left: auto;
    }

    .testimonial-heading h2 {
        font-size: 30px;
        line-height: 1.24;
    }

    .testimonial-heading p {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.7;
    }

    .testimonial-navigation {
        display: none;
    }

    .testimonialSwiper {
        padding-bottom: 39px;
    }

    .testimonial-card {
        min-height: 285px;
        padding: 20px;
        border-radius: 16px;
    }

    .testimonial-quote-icon {
        width: 53px;
        height: 53px;
        flex-basis: 53px;
        font-size: 19px;
    }

    .testimonial-card blockquote {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.78;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .testimonial-section {
        padding: 38px 0 41px;
    }

    .testimonial-heading h2 {
        font-size: 27px;
    }

    .testimonial-card {
        min-height: 295px;
        padding: 18px;
    }

    .testimonial-rating {
        margin-right: 32px;
    }

}
/* =========================================================
   BORN SINGERS OF INDIA
   PREMIUM RESPONSIVE FOOTER
========================================================= */


/* =========================================================
   FOOTER VARIABLES
========================================================= */

:root {
    --footer-black: #030303;
    --footer-dark: #090909;
    --footer-card: #101010;
    --footer-card-light: #161616;

    --footer-gold: #f4bd32;
    --footer-gold-light: #ffe18a;
    --footer-gold-dark: #b97805;

    --footer-white: #ffffff;
    --footer-text: #d3d3d3;
    --footer-muted: #9a9a9a;

    --footer-border: rgba(244, 189, 50, 0.18);
    --footer-light-border: rgba(255, 255, 255, 0.075);

    --footer-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.born-footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 30%,
            rgba(244, 189, 50, 0.09),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 72%,
            rgba(244, 189, 50, 0.06),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #070707 0%,
            #020202 55%,
            #0a0804 100%
        );

    color: var(--footer-text);
    font-family: "Poppins", sans-serif;
    border-top: 1px solid rgba(244, 189, 50, 0.2);
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.footer-container {
    position: relative;
    z-index: 3;
    width: min(92%, 1380px);
    margin: 0 auto;
}


/* =========================================================
   DECORATIVE GLOW
========================================================= */

.footer-glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.footer-glow-one {
    top: 20px;
    left: -150px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(
            circle,
            rgba(244, 189, 50, 0.11),
            transparent 68%
        );

    animation: footerGlowOne 8s ease-in-out infinite alternate;
}

.footer-glow-two {
    right: -180px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    background:
        radial-gradient(
            circle,
            rgba(244, 189, 50, 0.08),
            transparent 68%
        );

    animation: footerGlowTwo 9s ease-in-out infinite alternate;
}

@keyframes footerGlowOne {
    from {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.5;
    }

    to {
        transform: translate(45px, 20px) scale(1.12);
        opacity: 1;
    }
}

@keyframes footerGlowTwo {
    from {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.45;
    }

    to {
        transform: translate(-40px, -25px) scale(1.1);
        opacity: 0.9;
    }
}


/* =========================================================
   MUSICAL DECORATIONS
========================================================= */

.footer-music-note {
    position: absolute;
    z-index: 1;
    color: rgba(244, 189, 50, 0.07);
    pointer-events: none;
}

.footer-note-one {
    top: 185px;
    right: 5%;
    font-size: 100px;
    transform: rotate(-15deg);
}

.footer-note-two {
    bottom: 105px;
    left: 3%;
    font-size: 76px;
    transform: rotate(15deg);
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta-wrapper {
    position: relative;
    z-index: 4;
    padding: 42px 0 0;
}

.footer-cta {
    position: relative;
    min-height: 145px;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    overflow: hidden;
    border: 1px solid rgba(244, 189, 50, 0.35);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(255, 225, 138, 0.19),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            rgba(244, 189, 50, 0.19),
            rgba(244, 189, 50, 0.07) 52%,
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -15%;
    width: 150px;
    height: 260%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );

    transform: rotate(25deg);
    animation: footerCtaShine 6s ease-in-out infinite;
}

@keyframes footerCtaShine {
    0%,
    58% {
        left: -20%;
    }

    85%,
    100% {
        left: 120%;
    }
}

.footer-cta-icon {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 50, 0.55);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            var(--footer-gold-light),
            var(--footer-gold),
            var(--footer-gold-dark)
        );

    color: #080808;
    font-size: 30px;
    box-shadow:
        0 15px 35px rgba(244, 189, 50, 0.22);
    transform: rotate(-4deg);
}

.footer-cta-content {
    position: relative;
    z-index: 2;
}

.footer-cta-subtitle {
    display: block;
    margin-bottom: 5px;
    color: var(--footer-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.footer-cta-content h2 {
    margin: 0;
    color: var(--footer-white);
    font-family: "Cinzel", serif;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 1.25;
}

.footer-cta-content p {
    max-width: 700px;
    margin: 8px 0 0;
    color: #bebebe;
    font-size: 14px;
    line-height: 1.75;
}

.footer-cta-action {
    position: relative;
    z-index: 2;
}

.footer-register-btn {
    min-width: 175px;
    min-height: 56px;
    padding: 13px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--footer-gold);
    border-radius: 50px;
    background:
        linear-gradient(
            135deg,
            var(--footer-gold-light),
            var(--footer-gold),
            var(--footer-gold-dark)
        );

    color: #080808;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    box-shadow:
        0 12px 30px rgba(244, 189, 50, 0.2);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.footer-register-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-register-btn:hover {
    color: #080808;
    transform: translateY(-3px);
    box-shadow:
        0 17px 36px rgba(244, 189, 50, 0.32);
}

.footer-register-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   MAIN FOOTER CONTENT
========================================================= */

.footer-main {
    position: relative;
    z-index: 2;
    padding: 60px 0 46px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.72fr 0.82fr 1.25fr;
    gap: 48px;
}


/* =========================================================
   COMMON COLUMN
========================================================= */

.footer-column {
    min-width: 0;
}

.footer-title {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 13px;
    color: var(--footer-white);
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    border-radius: 20px;
    background:
        linear-gradient(
            90deg,
            var(--footer-gold),
            var(--footer-gold-light)
        );
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: -2px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--footer-gold);
    border-radius: 50%;
}


/* =========================================================
   ABOUT COLUMN
========================================================= */

.footer-column-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 5px 12px;
    border: 1px solid rgba(244, 189, 50, 0.25);
    border-radius: 50px;
    background: rgba(244, 189, 50, 0.07);
    color: var(--footer-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-about h3 {
    max-width: 390px;
    margin: 0 0 15px;
    color: var(--footer-white);
    font-family: "Cinzel", serif;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 700;
    line-height: 1.35;
}

.footer-about p {
    max-width: 450px;
    margin: 0;
    color: var(--footer-muted);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(244, 189, 50, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    color: var(--footer-gold);
    font-size: 14px;
    text-decoration: none;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.footer-socials a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            var(--footer-gold-light),
            var(--footer-gold-dark)
        );

    transform: scale(0);
    transition: transform 0.35s ease;
}

.footer-socials a i {
    position: relative;
    z-index: 2;
}

.footer-socials a:hover {
    color: #080808;
    border-color: var(--footer-gold);
    transform: translateY(-4px);
}

.footer-socials a:hover::before {
    transform: scale(1);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b9b9b9;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a i {
    color: var(--footer-gold);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-gold-light);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(2px);
}


/* =========================================================
   CONTACT COLUMN
========================================================= */

.footer-contact {
    min-width: 0;
}

.footer-contact-item {
    width: 100%;
    min-width: 0;
    margin-bottom: 13px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--footer-light-border);
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    color: var(--footer-white);
    text-decoration: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--footer-white);
    border-color: rgba(244, 189, 50, 0.32);
    background:
        linear-gradient(
            135deg,
            rgba(244, 189, 50, 0.1),
            rgba(255, 255, 255, 0.018)
        );

    transform: translateY(-2px);
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 189, 50, 0.3);
    border-radius: 11px;
    background: rgba(244, 189, 50, 0.08);
    color: var(--footer-gold);
    font-size: 14px;
}

.footer-contact-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.footer-contact-content small {
    margin-bottom: 3px;
    color: var(--footer-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer-contact-content strong {
    max-width: 100%;
    color: var(--footer-white);
    font-size: 13px;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   SUPPORT MESSAGE
========================================================= */

.footer-support {
    margin-top: 17px;
    padding-top: 17px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px dashed rgba(244, 189, 50, 0.2);
}

.footer-support i {
    margin-top: 3px;
    color: var(--footer-gold);
    font-size: 15px;
}

.footer-support span {
    color: var(--footer-muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(244, 189, 50, 0.15);
    background: rgba(0, 0, 0, 0.32);
}

.footer-bottom-inner {
    min-height: 68px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: #989898;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom p strong {
    color: var(--footer-gold);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.footer-bottom-links a {
    color: #a8a8a8;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--footer-gold);
}

.footer-bottom-links span {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: var(--footer-gold-dark);
}


/* =========================================================
   RESPONSIVE: LARGE TABLET
========================================================= */

@media screen and (max-width: 1100px) {

    .footer-cta {
        grid-template-columns: auto 1fr;
    }

    .footer-cta-action {
        grid-column: 2;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 0.8fr 0.9fr;
        gap: 38px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 13px;
    }

    .footer-contact .footer-title {
        grid-column: 1 / -1;
        margin-bottom: 5px;
    }

    .footer-contact-item {
        margin-bottom: 0;
    }

    .footer-support {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE: TABLET
========================================================= */

@media screen and (max-width: 850px) {

    .footer-cta-wrapper {
        padding-top: 32px;
    }

    .footer-cta {
        padding: 26px;
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .footer-cta-icon {
        width: 66px;
        height: 66px;
        font-size: 25px;
    }

    .footer-cta-action {
        grid-column: 1 / -1;
    }

    .footer-register-btn {
        min-width: 175px;
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 42px 34px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .footer-container {
        width: 91%;
    }

    .footer-cta-wrapper {
        padding-top: 24px;
    }

    .footer-cta {
        min-height: auto;
        padding: 23px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-radius: 18px;
    }

    .footer-cta-icon {
        width: 59px;
        height: 59px;
        border-radius: 17px;
        font-size: 22px;
    }

    .footer-cta-subtitle {
        font-size: 10px;
        line-height: 1.6;
    }

    .footer-cta-content h2 {
        font-size: 23px;
        line-height: 1.35;
    }

    .footer-cta-content p {
        margin-top: 7px;
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-cta-action {
        width: 100%;
    }

    .footer-register-btn {
        width: 100%;
        min-height: 54px;
    }

    .footer-main {
        padding: 43px 0 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-about h3 {
        font-size: 24px;
    }

    .footer-about p {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer-title {
        margin-bottom: 21px;
        font-size: 17px;
    }

    .footer-links li + li {
        margin-top: 11px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact {
        grid-column: auto;
        display: block;
    }

    .footer-contact-item {
        margin-bottom: 12px;
    }

    .footer-contact-content strong {
        font-size: 12px;
    }

    .footer-note-one {
        display: none;
    }

    .footer-note-two {
        font-size: 55px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom-links {
        gap: 9px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

}


/* =========================================================
   RESPONSIVE: EXTRA SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .footer-container {
        width: 90%;
    }

    .footer-cta {
        padding: 21px 17px;
    }

    .footer-cta-content h2 {
        font-size: 21px;
    }

    .footer-socials {
        gap: 8px;
    }

    .footer-socials a {
        width: 39px;
        height: 39px;
    }

    .footer-contact-item {
        padding: 10px;
    }

    .footer-contact-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .footer-bottom-links span {
        display: none;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 6px;
    }

}

/* =====================================================
   PREMIUM CONTACT PAGE
===================================================== */

.born-contact-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 190, 0, 0.09),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(73, 54, 255, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #020915 0%,
            #06152d 50%,
            #020914 100%
        );
}


/* Bootstrap Container Support */

.born-contact-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Decorative Glows */

.born-contact-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(5px);
}


.born-contact-glow-one {
    top: 8%;
    left: -130px;
    width: 300px;
    height: 300px;
    background: rgba(255, 188, 0, 0.08);
}


.born-contact-glow-two {
    right: -150px;
    bottom: 12%;
    width: 380px;
    height: 380px;
    background: rgba(56, 86, 255, 0.1);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.born-contact-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}


.born-contact-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 191, 0, 0.38);
    border-radius: 30px;

    background: rgba(255, 191, 0, 0.08);
    color: #ffc400;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.born-contact-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
}


.born-contact-heading h2 span {
    display: block;
    color: #ffc400;
}


.born-contact-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT GRID
===================================================== */

.born-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}


/* =====================================================
   LEFT CONTACT INFO
===================================================== */

.born-contact-info {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255, 196, 0, 0.22);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 196, 0, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}


.born-contact-info::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;

    width: 220px;
    height: 220px;

    border-radius: 50%;
    background: rgba(255, 196, 0, 0.08);
}


.born-contact-info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 42px;
}


.born-info-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #ffc400;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.born-contact-info h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}


.born-contact-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
    line-height: 1.75;
}


/* Contact Detail List */

.born-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}


.born-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
    padding: 15px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.035);

    color: inherit;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


a.born-contact-item:hover {
    transform: translateX(6px);
    border-color: rgba(255, 196, 0, 0.45);
    background: rgba(255, 196, 0, 0.07);
}


.born-contact-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ffc400,
        #d99800
    );

    color: #06142d;

    font-size: 18px;

    box-shadow: 0 10px 25px rgba(255, 196, 0, 0.16);
}


.born-contact-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}


.born-contact-text small {
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.born-contact-text strong {
    color: #ffffff;

    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;

    overflow-wrap: anywhere;
}


/* Social Media */

.born-social-area {
    margin-top: 34px;
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.born-social-area > span {
    display: block;
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


.born-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


.born-social-links a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;

    font-size: 16px;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.born-social-links a:hover {
    transform: translateY(-4px);
    background: #ffc400;
    color: #06142d;
    border-color: #ffc400;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.born-contact-form-wrapper {
    padding: 42px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}


.born-contact-form-heading span {
    display: inline-block;
    margin-bottom: 9px;

    color: #ffc400;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.born-contact-form-heading h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}


.born-contact-form-heading p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.7;
}


/* Form */

.born-contact-form {
    margin-top: 30px;
}


.born-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


.born-form-group {
    margin-bottom: 20px;
}


.born-form-group label {
    display: block;
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    font-weight: 700;
}


.born-input-wrapper {
    position: relative;
}


.born-input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;

    color: #ffc400;

    font-size: 14px;

    transform: translateY(-50%);
}


.born-input-wrapper input,
.born-input-wrapper select,
.born-input-wrapper textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;

    outline: none;

    background: rgba(2, 9, 21, 0.68);
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.born-input-wrapper input,
.born-input-wrapper select {
    height: 54px;
    padding: 0 16px 0 46px;
}


.born-input-wrapper textarea {
    min-height: 145px;
    padding: 16px 16px 16px 46px;
    resize: vertical;
}


.born-message-wrapper > i {
    top: 20px;
    transform: none;
}


.born-input-wrapper input::placeholder,
.born-input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}


.born-input-wrapper select {
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}


.born-input-wrapper select option {
    background: #07162f;
    color: #ffffff;
}


.born-input-wrapper input:focus,
.born-input-wrapper select:focus,
.born-input-wrapper textarea:focus {
    border-color: #ffc400;

    background: rgba(2, 9, 21, 0.9);

    box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.09);
}


/* Submit Button */

.born-contact-submit {
    width: 100%;
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 14px 25px;

    border: 0;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ffd52b,
        #e6a500
    );

    color: #06142d;

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 14px 32px rgba(255, 190, 0, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.born-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(255, 190, 0, 0.27);
}


.born-contact-submit i {
    transition: transform 0.3s ease;
}


.born-contact-submit:hover i {
    transform: translateX(5px);
}


/* =====================================================
   GOOGLE MAP
===================================================== */

.born-map-wrapper {
    margin-top: 34px;
    padding: 26px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;

    background: rgba(255, 255, 255, 0.045);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}


.born-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 20px;
}


.born-map-heading span {
    display: inline-block;
    margin-bottom: 5px;

    color: #ffc400;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.born-map-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;
    line-height: 1.3;
}


.born-direction-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 47px;
    padding: 10px 19px;

    border: 1px solid rgba(255, 196, 0, 0.35);
    border-radius: 12px;

    background: rgba(255, 196, 0, 0.08);
    color: #ffc400;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.born-direction-btn:hover {
    background: #ffc400;
    color: #06142d;
    transform: translateY(-2px);
}


.born-map-frame {
    width: 100%;
    height: 390px;
    overflow: hidden;

    border-radius: 18px;
}


.born-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;

    filter: grayscale(0.2) contrast(1.05);
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .born-contact-section {
        padding: 75px 0;
    }

    .born-contact-grid {
        grid-template-columns: 1fr;
    }

    .born-contact-info-content,
    .born-contact-form-wrapper {
        padding: 35px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .born-contact-section {
        padding: 60px 0;
    }

    .born-contact-section .container {
        padding: 0 15px;
    }

    .born-contact-heading {
        margin-bottom: 35px;
    }

    .born-contact-heading h2 {
        font-size: 35px;
    }

    .born-contact-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .born-contact-grid {
        gap: 20px;
    }

    .born-contact-info,
    .born-contact-form-wrapper {
        border-radius: 21px;
    }

    .born-contact-info-content,
    .born-contact-form-wrapper {
        padding: 27px 20px;
    }

    .born-contact-info h3,
    .born-contact-form-heading h3 {
        font-size: 27px;
    }

    .born-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .born-map-wrapper {
        margin-top: 22px;
        padding: 18px;
        border-radius: 20px;
    }

    .born-map-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .born-direction-btn {
        width: 100%;
    }

    .born-map-frame {
        height: 320px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .born-contact-heading h2 {
        font-size: 30px;
    }

    .born-contact-info-content,
    .born-contact-form-wrapper {
        padding: 24px 16px;
    }

    .born-contact-item {
        align-items: flex-start;
        padding: 13px;
    }

    .born-contact-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .born-contact-text strong {
        font-size: 14px;
    }

    .born-map-heading h3 {
        font-size: 23px;
    }

    .born-map-frame {
        height: 285px;
    }

}

/* =====================================================
   PREMIUM ENQUIRY PAGE
   VIOLET + GOLD THEME
===================================================== */

:root {
    --enquiry-violet-dark: #13051f;
    --enquiry-violet: #250b42;
    --enquiry-violet-light: #3e1067;
    --enquiry-gold: #f4c344;
    --enquiry-gold-light: #ffe18d;
    --enquiry-gold-dark: #d79a00;
    --enquiry-white: #ffffff;
    --enquiry-navy: #091837;
    --enquiry-text: #687083;
    --enquiry-border: #dfe3e9;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.academy-enquiry-section {
    position: relative;
    width: 100%;
    padding: 72px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(244, 195, 68, 0.11),
            transparent 24%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(175, 80, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--enquiry-violet-dark) 0%,
            var(--enquiry-violet) 48%,
            var(--enquiry-violet-light) 100%
        );

    font-family: "Poppins", sans-serif;
}


.academy-enquiry-section::before {
    content: "";

    position: absolute;
    top: -150px;
    left: -130px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: rgba(244, 195, 68, 0.07);

    pointer-events: none;
}


.academy-enquiry-section::after {
    content: "";

    position: absolute;
    right: -190px;
    bottom: -170px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(172, 80, 255, 0.1);

    pointer-events: none;
}


.academy-enquiry-section .container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   OPTIONAL GRID PATTERN
===================================================== */

.academy-enquiry-pattern {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0.045;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    pointer-events: none;
}


/* =====================================================
   PAGE HEADING
===================================================== */

.academy-enquiry-heading {
    position: relative;
    z-index: 3;

    max-width: 860px;
    margin: 0 auto 38px;

    text-align: center;
}


.academy-enquiry-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 209, 83, 0.4);
    border-radius: 30px;

    background: rgba(244, 195, 68, 0.1);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.academy-enquiry-heading h1 {
    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(36px, 5vw, 57px);
    line-height: 1.1;
    font-weight: 800;
}


.academy-enquiry-heading h1 span {
    background: linear-gradient(
        90deg,
        var(--enquiry-gold-light),
        var(--enquiry-gold),
        var(--enquiry-gold-dark)
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.academy-enquiry-heading p {
    max-width: 750px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.75;
}


/* =====================================================
   ENQUIRY STEPS
===================================================== */

.academy-enquiry-steps {
    position: relative;
    z-index: 3;

    max-width: 930px;
    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.academy-step-card {
    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 190px;
    padding: 12px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.academy-step-number {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 195, 68, 0.35);
    border-radius: 50%;

    background: rgba(244, 195, 68, 0.1);
    color: var(--enquiry-gold);

    font-size: 12px;
    font-weight: 800;
}


.academy-step-card.active .academy-step-number {
    background: var(--enquiry-gold);
    color: var(--enquiry-violet);
}


.academy-step-card strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
}


.academy-step-card small {
    display: block;
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;
}


.academy-step-line {
    width: 55px;
    height: 1px;

    margin: 0 10px;

    background: rgba(244, 195, 68, 0.38);
}


/* =====================================================
   MAIN ENQUIRY CARD
===================================================== */

.academy-enquiry-card {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 0.86fr 1.14fr;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 30px 75px rgba(7, 0, 18, 0.35);
}


/* =====================================================
   LEFT PROGRAM PANEL
===================================================== */

.academy-program-panel {
    position: relative;
    padding: 40px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(244, 195, 68, 0.14),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            rgba(15, 4, 28, 0.96),
            rgba(45, 12, 78, 0.94)
        );
}


.academy-program-panel::before {
    content: "";

    position: absolute;
    top: -90px;
    right: -90px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 1px solid rgba(244, 195, 68, 0.12);
}


.academy-panel-label {
    position: relative;
    z-index: 2;

    display: inline-block;
    margin-bottom: 10px;

    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.academy-program-panel h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}


.academy-program-panel > p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   PROGRAM OPTIONS
===================================================== */

.academy-program-list {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 27px;
}


.academy-program-option {
    position: relative;

    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 78px;
    padding: 13px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.055);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.academy-program-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.academy-program-icon {
    flex: 0 0 47px;

    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(244, 195, 68, 0.12);
    color: var(--enquiry-gold);

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.academy-program-content {
    min-width: 0;
    flex: 1;
}


.academy-program-content strong {
    display: block;
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 14px;
}


.academy-program-content small {
    display: block;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;
    line-height: 1.45;
}


.academy-program-check {
    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: transparent;

    font-size: 10px;
}


.academy-program-option:hover {
    transform: translateX(4px);

    border-color: rgba(244, 195, 68, 0.5);
}


.academy-program-option:has(input:checked) {
    border-color: var(--enquiry-gold);

    background: rgba(244, 195, 68, 0.11);
}


.academy-program-option:has(input:checked)
.academy-program-icon {
    background: var(--enquiry-gold);
    color: var(--enquiry-violet);
}


.academy-program-option:has(input:checked)
.academy-program-check {
    border-color: var(--enquiry-gold);

    background: var(--enquiry-gold);
    color: var(--enquiry-violet);
}


/* =====================================================
   SUPPORT BOX
===================================================== */

.academy-support-box {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-top: 26px;
    padding: 18px 0 0;

    border-top: 1px solid rgba(255, 255, 255, 0.11);
}


.academy-support-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--enquiry-gold);
    color: var(--enquiry-violet);
}


.academy-support-box small {
    display: block;
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
}


.academy-support-box strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
}


.academy-support-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 6px;
}


.academy-support-links a {
    color: var(--enquiry-gold);

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


.academy-support-links span {
    color: rgba(255, 255, 255, 0.25);
}


/* =====================================================
   RIGHT FORM PANEL
===================================================== */

.academy-form-panel {
    padding: 40px;

    background: rgba(255, 255, 255, 0.98);
}


.academy-form-heading span {
    display: inline-block;
    margin-bottom: 7px;

    color: #b88200;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.academy-form-heading h2 {
    margin: 0 0 9px;

    color: var(--enquiry-navy);

    font-size: 31px;
    line-height: 1.25;
    font-weight: 800;
}


.academy-form-heading p {
    margin: 0;

    color: #7a8291;

    font-size: 14px;
    line-height: 1.65;
}


.academy-enquiry-form {
    margin-top: 27px;
}


/* =====================================================
   FORM SECTIONS
===================================================== */

.academy-form-section {
    margin-bottom: 25px;
    padding-bottom: 25px;

    border-bottom: 1px solid #edf0f3;
}


.academy-form-section:last-of-type {
    margin-bottom: 19px;
}


.academy-form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;
}


.academy-form-section-title > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff4ce;
    color: #b47d00;

    font-size: 13px;
}


.academy-form-section-title h3 {
    margin: 0;

    color: #1a2338;

    font-size: 17px;
    font-weight: 800;
}


/* =====================================================
   FORM GRID
===================================================== */

.academy-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}


.academy-form-group label {
    display: block;
    margin-bottom: 7px;

    color: #3a4252;

    font-size: 13px;
    font-weight: 700;
}


.academy-form-group label b {
    color: #c58d00;
}


.academy-form-group input,
.academy-form-group select,
.academy-form-group textarea {
    width: 100%;

    border: 1px solid var(--enquiry-border);
    border-radius: 10px;

    outline: none;

    background: #fafbfc;
    color: #182238;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.academy-form-group input,
.academy-form-group select {
    height: 50px;
    padding: 0 14px;
}


.academy-form-group textarea {
    min-height: 120px;
    padding: 14px;

    resize: vertical;
}


.academy-form-group input::placeholder,
.academy-form-group textarea::placeholder {
    color: #a2a8b2;
}


.academy-form-group select {
    cursor: pointer;
}


.academy-form-group input:focus,
.academy-form-group select:focus,
.academy-form-group textarea:focus {
    border-color: #c89412;

    background: #ffffff;

    box-shadow: 0 0 0 4px rgba(200, 148, 18, 0.08);
}


.academy-full-width {
    width: 100%;
}


/* =====================================================
   CONSENT CHECKBOX
===================================================== */

.academy-form-consent {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #747c8a;

    font-size: 12px;
    line-height: 1.55;

    cursor: pointer;
}


.academy-form-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.academy-custom-checkbox {
    position: relative;
    flex: 0 0 19px;

    width: 19px;
    height: 19px;
    margin-top: 1px;

    border: 1px solid #cfd4dc;
    border-radius: 4px;

    background: #ffffff;
}


.academy-form-consent input:checked +
.academy-custom-checkbox {
    border-color: #c49113;
    background: #c49113;
}


.academy-form-consent input:checked +
.academy-custom-checkbox::after {
    content: "\f00c";

    position: absolute;
    top: 50%;
    left: 50%;

    color: #ffffff;

    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;

    transform: translate(-50%, -50%);
}


/* =====================================================
   FORM FOOTER AND BUTTON
===================================================== */

.academy-form-footer {
    margin-top: 22px;
}


.academy-enquiry-submit {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 12px 24px;

    border: 0;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        var(--enquiry-violet),
        var(--enquiry-violet-light)
    );

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 12px 27px rgba(37, 11, 66, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.academy-enquiry-submit:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #d19b19,
        #f4c344
    );

    color: var(--enquiry-violet);

    box-shadow: 0 16px 32px rgba(37, 11, 66, 0.18);
}


.academy-enquiry-submit i {
    transition: transform 0.3s ease;
}


.academy-enquiry-submit:hover i {
    transform: translateX(5px);
}


.academy-form-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin: 12px 0 0;

    color: #9a9fab;

    font-size: 11px;
}


.academy-form-footer p i {
    color: #b78200;
}


/* =====================================================
   BOTTOM CONTACT STRIP
===================================================== */

.academy-enquiry-contact-strip {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 24px;
    padding: 22px 25px;

    border: 1px solid rgba(244, 195, 68, 0.3);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 18px 40px rgba(7, 0, 18, 0.24);
}


.academy-strip-title {
    display: flex;
    align-items: center;
    gap: 12px;
}


.academy-strip-title > span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--enquiry-gold);
    color: var(--enquiry-violet);
}


.academy-strip-title small {
    display: block;
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
}


.academy-strip-title strong {
    color: #ffffff;

    font-size: 15px;
}


.academy-strip-links {
    display: flex;
    align-items: center;
    gap: 10px;
}


.academy-strip-links a {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 155px;
    padding: 11px 13px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;
    text-decoration: none;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


.academy-strip-links a > i {
    color: var(--enquiry-gold);

    font-size: 17px;
}


.academy-strip-links small {
    display: block;
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


.academy-strip-links strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}


.academy-strip-links a:hover {
    transform: translateY(-2px);

    border-color: var(--enquiry-gold);

    background: rgba(244, 195, 68, 0.1);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .academy-enquiry-section {
        padding: 62px 0;
    }


    .academy-enquiry-card {
        grid-template-columns: 1fr;
    }


    .academy-enquiry-contact-strip {
        align-items: flex-start;
        flex-direction: column;
    }


    .academy-strip-links {
        width: 100%;
    }


    .academy-strip-links a {
        flex: 1;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .academy-enquiry-section {
        padding: 52px 0;
    }


    .academy-enquiry-section .container {
        padding: 0 15px;
    }


    .academy-enquiry-heading {
        margin-bottom: 30px;
    }


    .academy-enquiry-heading h1 {
        font-size: 33px;
    }


    .academy-enquiry-heading p {
        font-size: 14px;
    }


    .academy-enquiry-steps {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
    }


    .academy-step-card {
        width: 100%;
        min-width: 0;
    }


    .academy-step-line {
        display: none;
    }


    .academy-enquiry-card {
        border-radius: 20px;
    }


    .academy-program-panel,
    .academy-form-panel {
        padding: 28px 20px;
    }


    .academy-program-panel h2,
    .academy-form-heading h2 {
        font-size: 27px;
    }


    .academy-form-grid {
        grid-template-columns: 1fr;
    }


    .academy-enquiry-contact-strip {
        padding: 20px;
    }


    .academy-strip-links {
        flex-direction: column;
    }


    .academy-strip-links a {
        width: 100%;
        min-width: 0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .academy-enquiry-heading h1 {
        font-size: 29px;
    }


    .academy-program-panel,
    .academy-form-panel {
        padding: 24px 16px;
    }


    .academy-program-option {
        align-items: flex-start;
    }


    .academy-program-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }


    .academy-support-links {
        align-items: flex-start;
        flex-direction: column;
    }


    .academy-support-links > span {
        display: none;
    }


    .academy-enquiry-contact-strip {
        padding: 18px 16px;
    }

}

/* =====================================================
   PREMIUM GALLERY PAGE
   VIOLET + GOLD THEME
===================================================== */

:root {
    --gallery-violet-dark: #13051f;
    --gallery-violet: #250b42;
    --gallery-violet-light: #3e1067;
    --gallery-gold: #f4c344;
    --gallery-gold-light: #ffe18d;
    --gallery-gold-dark: #d79a00;
    --gallery-white: #ffffff;
    --gallery-muted: rgba(255, 255, 255, 0.67);
}


/* =====================================================
   MAIN GALLERY SECTION
===================================================== */

.singing-gallery-page {
    position: relative;
    width: 100%;
    padding: 72px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(244, 195, 68, 0.11),
            transparent 24%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(175, 80, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--gallery-violet-dark) 0%,
            var(--gallery-violet) 48%,
            var(--gallery-violet-light) 100%
        );

    font-family: "Poppins", sans-serif;
}


.singing-gallery-page::before {
    content: "";

    position: absolute;
    top: -150px;
    left: -130px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: rgba(244, 195, 68, 0.07);

    pointer-events: none;
}


.singing-gallery-page::after {
    content: "";

    position: absolute;
    right: -190px;
    bottom: -170px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(172, 80, 255, 0.1);

    pointer-events: none;
}


.singing-gallery-page .container {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   DECORATIVE GLOWS
===================================================== */

.gallery-page-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(8px);
}


.gallery-glow-one {
    top: 100px;
    left: -160px;

    width: 340px;
    height: 340px;

    background: rgba(244, 195, 68, 0.07);
}


.gallery-glow-two {
    right: -180px;
    bottom: 80px;

    width: 420px;
    height: 420px;

    background: rgba(172, 80, 255, 0.09);
}


/* =====================================================
   PAGE HEADING
===================================================== */

.singing-gallery-heading {
    max-width: 880px;
    margin: 0 auto 40px;

    text-align: center;
}


.singing-gallery-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 209, 83, 0.4);
    border-radius: 30px;

    background: rgba(244, 195, 68, 0.1);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.singing-gallery-heading h1 {
    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
}


.singing-gallery-heading h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        var(--gallery-gold-light),
        var(--gallery-gold),
        var(--gallery-gold-dark)
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.singing-gallery-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: var(--gallery-muted);

    font-size: 15px;
    line-height: 1.75;
}


/* =====================================================
   FILTER BUTTONS
===================================================== */

.singing-gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 30px;
}


.gallery-filter-btn {
    min-height: 42px;

    padding: 9px 17px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    transform: translateY(-2px);

    border-color: var(--gallery-gold);

    background: var(--gallery-gold);
    color: var(--gallery-violet);
}


/* =====================================================
   FEATURED GALLERY
===================================================== */

.singing-featured-gallery {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.65fr;
    grid-template-rows: repeat(2, 235px);
    gap: 15px;

    margin-bottom: 22px;
}


.featured-gallery-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.05);

    box-shadow: 0 18px 42px rgba(7, 0, 18, 0.28);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.featured-gallery-large {
    grid-row: span 2;
}


.featured-gallery-card:hover {
    transform: translateY(-5px);

    border-color: rgba(244, 195, 68, 0.52);

    box-shadow:
        0 24px 50px rgba(7, 0, 18, 0.36),
        0 0 22px rgba(244, 195, 68, 0.08);
}


.featured-gallery-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}


.featured-gallery-card:hover img {
    transform: scale(1.07);
}


.gallery-card-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 19px;

    background:
        linear-gradient(
            to top,
            rgba(20, 5, 36, 0.95),
            rgba(20, 5, 36, 0.18) 62%,
            rgba(20, 5, 36, 0.06)
        );
}


.gallery-category-label {
    align-self: flex-start;

    padding: 7px 11px;

    border: 1px solid rgba(255, 213, 91, 0.37);
    border-radius: 25px;

    background: rgba(37, 11, 66, 0.68);
    color: #ffd15a;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.gallery-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}


.gallery-card-bottom h2,
.gallery-card-bottom h3 {
    margin: 0;

    color: #ffffff;

    font-weight: 800;
}


.gallery-card-bottom h2 {
    font-size: 27px;
}


.gallery-card-bottom h3 {
    font-size: 17px;
}


.gallery-card-bottom p {
    max-width: 470px;
    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
    line-height: 1.55;
}


.gallery-view-btn {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.gallery-view-btn:hover {
    transform: scale(1.08);

    background: var(--gallery-gold);
    color: var(--gallery-violet);
}


/* =====================================================
   GALLERY GRID
===================================================== */

.singing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


.singing-gallery-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.03)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 16px 38px rgba(7, 0, 18, 0.25);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.singing-gallery-card:hover {
    transform: translateY(-7px);

    border-color: rgba(244, 195, 68, 0.5);

    box-shadow:
        0 24px 48px rgba(7, 0, 18, 0.35),
        0 0 20px rgba(244, 195, 68, 0.07);
}


.singing-gallery-image {
    position: relative;

    height: 255px;

    overflow: hidden;
}


.singing-gallery-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.55s ease;
}


.singing-gallery-card:hover
.singing-gallery-image img {
    transform: scale(1.08);
}


.singing-gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;

    padding: 16px;

    background:
        linear-gradient(
            to top,
            rgba(23, 6, 42, 0.94),
            transparent 68%
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}


.singing-gallery-card:hover
.singing-gallery-overlay {
    opacity: 1;
}


.singing-gallery-overlay span {
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.singing-gallery-overlay button {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--gallery-gold);
    color: var(--gallery-violet);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.singing-gallery-overlay button:hover {
    transform: scale(1.08);

    box-shadow: 0 10px 22px rgba(244, 195, 68, 0.24);
}


.singing-gallery-content {
    padding: 18px;
}


.singing-gallery-content span {
    display: inline-block;
    margin-bottom: 6px;

    color: #ffd15a;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.singing-gallery-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
}


/* =====================================================
   VIDEO HIGHLIGHTS
===================================================== */

.gallery-video-section {
    margin-top: 55px;
    padding: 31px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(244, 195, 68, 0.11),
            transparent 24%
        ),
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 22px 55px rgba(7, 0, 18, 0.28);
}


.gallery-video-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;

    margin-bottom: 23px;
}


.gallery-video-heading span {
    display: inline-block;
    margin-bottom: 7px;

    color: #ffd15a;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.gallery-video-heading h2 {
    max-width: 620px;
    margin: 0;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}


.gallery-view-all-btn {
    flex-shrink: 0;

    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 17px;

    border: 1px solid rgba(244, 195, 68, 0.4);
    border-radius: 10px;

    background: rgba(244, 195, 68, 0.08);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.gallery-view-all-btn:hover {
    transform: translateY(-2px);

    background: var(--gallery-gold);
    color: var(--gallery-violet);
}


.gallery-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}


.gallery-video-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}


.gallery-video-card:hover {
    transform: translateY(-5px);

    border-color: rgba(244, 195, 68, 0.45);
}


.gallery-video-thumbnail {
    position: relative;

    height: 205px;

    overflow: hidden;
}


.gallery-video-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.55s ease;
}


.gallery-video-card:hover
.gallery-video-thumbnail img {
    transform: scale(1.07);
}


.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--gallery-gold);
    color: var(--gallery-violet);

    font-size: 17px;

    cursor: pointer;

    transform: translate(-50%, -50%);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.gallery-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);

    box-shadow: 0 16px 35px rgba(244, 195, 68, 0.22);
}


.gallery-video-content {
    padding: 17px;
}


.gallery-video-content span {
    display: inline-block;
    margin-bottom: 6px;

    color: #ffd15a;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.gallery-video-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
}


/* =====================================================
   FINAL CTA
===================================================== */

.gallery-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    margin-top: 28px;
    padding: 30px;

    border: 1px solid rgba(244, 195, 68, 0.35);
    border-radius: 21px;

    background:
        linear-gradient(
            110deg,
            rgba(244, 195, 68, 0.13),
            rgba(255, 255, 255, 0.055)
        );

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    box-shadow: 0 18px 42px rgba(7, 0, 18, 0.25);
}


.gallery-cta-content {
    max-width: 700px;
}


.gallery-cta-content > span {
    display: inline-block;
    margin-bottom: 6px;

    color: #ffd15a;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.gallery-cta-content h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: 29px;
    line-height: 1.25;
}


.gallery-cta-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 13px;
    line-height: 1.7;
}


.gallery-cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


.gallery-cta-primary,
.gallery-cta-secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 19px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.gallery-cta-primary {
    background: var(--gallery-gold);
    color: var(--gallery-violet);
}


.gallery-cta-primary:hover {
    transform: translateY(-2px);

    box-shadow: 0 13px 26px rgba(244, 195, 68, 0.22);
}


.gallery-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}


.gallery-cta-secondary:hover {
    transform: translateY(-2px);

    border-color: var(--gallery-gold);

    background: rgba(244, 195, 68, 0.1);
    color: var(--gallery-gold);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .singing-gallery-page {
        padding: 62px 0;
    }


    .singing-featured-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 320px 215px 215px;
    }


    .featured-gallery-large {
        grid-column: span 2;
        grid-row: auto;
    }


    .singing-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .gallery-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .gallery-video-card:last-child {
        grid-column: span 2;
    }


    .gallery-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .singing-gallery-page {
        padding: 52px 0;
    }


    .singing-gallery-page .container {
        padding: 0 15px;
    }


    .singing-gallery-heading {
        margin-bottom: 30px;
    }


    .singing-gallery-heading h1 {
        font-size: 33px;
    }


    .singing-gallery-heading p {
        font-size: 14px;
    }


    .singing-gallery-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;

        margin-right: -15px;
        padding-right: 15px;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .singing-gallery-filters::-webkit-scrollbar {
        display: none;
    }


    .gallery-filter-btn {
        flex: 0 0 auto;
    }


    .singing-featured-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }


    .featured-gallery-card,
    .featured-gallery-large {
        grid-column: auto;
        grid-row: auto;

        height: 265px;
    }


    .featured-gallery-large {
        height: 350px;
    }


    .gallery-card-bottom h2 {
        font-size: 23px;
    }


    .singing-gallery-grid {
        grid-template-columns: 1fr;
    }


    .singing-gallery-image {
        height: 270px;
    }


    .singing-gallery-overlay {
        opacity: 1;
    }


    .gallery-video-section {
        margin-top: 45px;
        padding: 24px 18px;
    }


    .gallery-video-heading {
        align-items: flex-start;
        flex-direction: column;
    }


    .gallery-video-heading h2 {
        font-size: 27px;
    }


    .gallery-view-all-btn {
        width: 100%;
    }


    .gallery-video-grid {
        grid-template-columns: 1fr;
    }


    .gallery-video-card:last-child {
        grid-column: auto;
    }


    .gallery-final-cta {
        padding: 24px 20px;
    }


    .gallery-cta-content h2 {
        font-size: 26px;
    }


    .gallery-cta-buttons {
        width: 100%;
    }


    .gallery-cta-primary,
    .gallery-cta-secondary {
        flex: 1;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .singing-gallery-heading h1 {
        font-size: 29px;
    }


    .featured-gallery-card {
        height: 240px;
        border-radius: 16px;
    }


    .featured-gallery-large {
        height: 315px;
    }


    .gallery-card-overlay {
        padding: 16px;
    }


    .gallery-card-bottom p {
        display: none;
    }


    .singing-gallery-image {
        height: 235px;
    }


    .gallery-video-thumbnail {
        height: 185px;
    }


    .gallery-cta-buttons {
        flex-direction: column;
    }


    .gallery-cta-primary,
    .gallery-cta-secondary {
        width: 100%;
    }

}
/* =====================================================
   PREMIUM VIOLET ABOUT SECTION
===================================================== */

.violet-about-section {
    position: relative;
    width: 100%;
    padding: 95px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255, 197, 67, 0.16),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(172, 95, 255, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #170828 0%,
            #2a0d4d 46%,
            #451274 100%
        );

    font-family: "Poppins", sans-serif;
}


/* Container */

.violet-about-section .container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   DECORATIVE ELEMENTS
===================================================== */

.violet-about-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}


.violet-orb-one {
    top: 80px;
    left: -130px;

    width: 310px;
    height: 310px;

    background: rgba(255, 196, 58, 0.08);
}


.violet-orb-two {
    right: -180px;
    bottom: 30px;

    width: 430px;
    height: 430px;

    background: rgba(154, 63, 255, 0.12);
}


.violet-music-symbol {
    position: absolute;

    color: rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


.violet-symbol-one {
    top: 10%;
    right: 7%;

    font-size: 90px;

    transform: rotate(-12deg);
}


.violet-symbol-two {
    left: 4%;
    bottom: 8%;

    font-size: 110px;

    transform: rotate(14deg);
}


/* =====================================================
   MAIN GRID
===================================================== */

.violet-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;
    align-items: center;
}


/* =====================================================
   IMAGE AREA
===================================================== */

.violet-about-visual {
    position: relative;
}


.violet-image-frame {
    position: relative;
    min-height: 610px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;

    background: #1d0b34;

    box-shadow:
        0 35px 75px rgba(5, 0, 15, 0.42),
        0 0 0 1px rgba(255, 196, 58, 0.08) inset;
}


.violet-image-frame::before {
    content: "";

    position: absolute;
    inset: 18px;
    z-index: 3;

    border: 1px solid rgba(255, 196, 58, 0.28);
    border-radius: 23px;

    pointer-events: none;
}


.violet-image-frame img {
    display: block;
    width: 100%;
    height: 610px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}


.violet-image-frame:hover img {
    transform: scale(1.045);
}


.violet-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18, 6, 36, 0.88),
            rgba(18, 6, 36, 0.1) 55%,
            rgba(18, 6, 36, 0.08)
        );
}


/* Image Badge */

.violet-image-badge {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px 19px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;

    background: rgba(26, 8, 49, 0.68);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.violet-badge-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ffd963,
        #d69b00
    );

    color: #210b3c;

    font-size: 18px;
}


.violet-image-badge small {
    display: block;
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.violet-image-badge strong {
    color: #ffffff;

    font-size: 15px;
    line-height: 1.4;
}


/* Floating Card */

.violet-floating-card {
    position: absolute;
    top: 55px;
    right: -38px;
    z-index: 6;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 245px;
    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.11);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 18px 40px rgba(9, 0, 25, 0.3);
}


.violet-floating-card > span {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #f4c344;
    color: #2b0c4d;

    font-size: 17px;
}


.violet-floating-card strong {
    display: block;
    margin-bottom: 3px;

    color: #ffffff;

    font-size: 14px;
}


.violet-floating-card small {
    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}


/* =====================================================
   CONTENT AREA
===================================================== */

.violet-about-content {
    position: relative;
}


.violet-about-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
    padding: 8px 17px;

    border: 1px solid rgba(255, 207, 77, 0.4);
    border-radius: 30px;

    background: rgba(255, 196, 58, 0.1);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.violet-about-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
}


.violet-about-content h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffe18b,
        #f4c344,
        #dba000
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.violet-about-lead {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 19px;
    line-height: 1.65;
    font-weight: 600;
}


.violet-about-copy {
    padding-left: 22px;

    border-left: 2px solid rgba(244, 195, 68, 0.55);
}


.violet-about-copy p {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.8;
}


.violet-about-copy p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   FEATURE CARDS
===================================================== */

.violet-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    margin-top: 30px;
}


.violet-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    min-height: 130px;
    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.violet-feature-card:hover {
    transform: translateY(-5px);

    border-color: rgba(244, 195, 68, 0.5);

    background: rgba(244, 195, 68, 0.1);
}


.violet-feature-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ffd963,
        #d89b00
    );

    color: #2a0c4c;

    font-size: 17px;
}


.violet-feature-card h3 {
    margin: 1px 0 6px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}


.violet-feature-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.57);

    font-size: 12px;
    line-height: 1.6;
}


/* =====================================================
   BOTTOM ACTIONS
===================================================== */

.violet-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 30px;
}


.violet-about-primary {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 13px 23px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #ffdc68,
        #dca000
    );

    color: #260b45;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 15px 30px rgba(244, 195, 68, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.violet-about-primary:hover {
    transform: translateY(-3px);

    box-shadow: 0 20px 38px rgba(244, 195, 68, 0.28);
}


.violet-about-primary i {
    transition: transform 0.3s ease;
}


.violet-about-primary:hover i {
    transform: translateX(5px);
}


.violet-about-trust {
    display: flex;
    align-items: center;
    gap: 11px;
}


.violet-trust-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #f4c344;
}


.violet-about-trust small {
    display: block;

    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;
    text-transform: uppercase;
}


.violet-about-trust strong {
    color: #ffffff;

    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .violet-about-section {
        padding: 75px 0;
    }

    .violet-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .violet-about-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .violet-floating-card {
        right: 20px;
    }

    .violet-about-content {
        text-align: center;
    }

    .violet-about-copy {
        padding-left: 0;

        border-left: 0;
    }

    .violet-about-actions {
        justify-content: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .violet-about-section {
        padding: 58px 0;
    }

    .violet-about-section .container {
        padding: 0 15px;
    }

    .violet-image-frame,
    .violet-image-frame img {
        min-height: 450px;
        height: 450px;
    }

    .violet-floating-card {
        position: relative;
        top: auto;
        right: auto;

        width: calc(100% - 30px);
        min-width: 0;

        margin: -28px auto 0;
    }

    .violet-about-content h2 {
        font-size: 36px;
    }

    .violet-about-lead {
        font-size: 17px;
    }

    .violet-about-features {
        grid-template-columns: 1fr;
    }

    .violet-feature-card {
        min-height: auto;
    }

    .violet-about-actions {
        flex-direction: column;
    }

    .violet-about-primary {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .violet-image-frame,
    .violet-image-frame img {
        min-height: 390px;
        height: 390px;
    }

    .violet-image-frame {
        border-radius: 23px;
    }

    .violet-image-frame::before {
        inset: 12px;
        border-radius: 17px;
    }

    .violet-image-badge {
        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 14px;
    }

    .violet-about-content h2 {
        font-size: 31px;
    }

    .violet-about-copy p {
        font-size: 14px;
    }

    .violet-feature-card {
        padding: 16px;
    }

}

/* =====================================================
   DIFFERENT PREMIUM VISION & MISSION DESIGN
===================================================== */

.purpose-section {
    position: relative;
    width: 100%;
    padding: 95px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(255, 196, 58, 0.11),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(158, 74, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #140723 0%,
            #25103f 48%,
            #3a1265 100%
        );

    font-family: "Poppins", sans-serif;
}


.purpose-section .container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* Decorative Shapes */

.purpose-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.purpose-shape-one {
    top: -150px;
    left: -120px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(255, 196, 58, 0.12);
}


.purpose-shape-two {
    right: -160px;
    bottom: -170px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255, 255, 255, 0.07);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.purpose-heading {
    max-width: 860px;
    margin: 0 auto 58px;
    text-align: center;
}


.purpose-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
    padding: 8px 19px;

    border: 1px solid rgba(255, 205, 73, 0.38);
    border-radius: 30px;

    background: rgba(255, 196, 58, 0.09);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.purpose-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 800;
}


.purpose-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffe18d,
        #f4c344,
        #d79b00
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.purpose-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.67);

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   MAIN PURPOSE LAYOUT
===================================================== */

.purpose-layout {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 24px;
    align-items: center;
}


/* Panels */

.purpose-panel {
    position: relative;
    min-height: 470px;
    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow: 0 28px 65px rgba(8, 0, 22, 0.34);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}


.purpose-panel:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 195, 68, 0.5);
}


.purpose-panel-number {
    position: absolute;
    top: 25px;
    right: 28px;

    color: rgba(255, 255, 255, 0.07);

    font-size: 78px;
    line-height: 1;
    font-weight: 800;
}


.purpose-panel-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #ffdc67,
        #d89b00
    );

    color: #250b42;

    font-size: 28px;

    box-shadow: 0 15px 30px rgba(244, 195, 68, 0.2);
}


.purpose-panel-label {
    display: inline-block;
    margin-bottom: 11px;

    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.purpose-panel h3 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: 29px;
    line-height: 1.3;
    font-weight: 800;
}


.purpose-panel p {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 15px;
    line-height: 1.8;
}


.purpose-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 8px;

    color: #ffd15a;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}


.purpose-link i {
    transition: transform 0.3s ease;
}


.purpose-link:hover i {
    transform: translateX(5px);
}


/* =====================================================
   CENTER PURPOSE CIRCLE
===================================================== */

.purpose-center {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.purpose-center::before,
.purpose-center::after {
    content: "";

    position: absolute;
    left: 50%;

    width: 1px;
    height: 115px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(244, 195, 68, 0.58),
        transparent
    );

    transform: translateX(-50%);
}


.purpose-center::before {
    top: -120px;
}


.purpose-center::after {
    bottom: -120px;
}


.purpose-center-ring {
    position: relative;

    width: 250px;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 195, 68, 0.45);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 195, 68, 0.15),
            rgba(255, 255, 255, 0.04) 52%,
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 0 0 16px rgba(244, 195, 68, 0.035),
        0 0 60px rgba(244, 195, 68, 0.12);

    animation: purposeFloat 4s ease-in-out infinite;
}


@keyframes purposeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


.purpose-center-ring::before {
    content: "";

    position: absolute;
    inset: 15px;

    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    animation: purposeRotate 18s linear infinite;
}


@keyframes purposeRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.purpose-center-content {
    position: relative;
    z-index: 2;

    text-align: center;
}


.purpose-center-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 13px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ffdc67,
        #d89b00
    );

    color: #250b42;

    font-size: 22px;
}


.purpose-center-content small {
    display: block;
    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.purpose-center-content strong {
    display: block;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: 21px;
    line-height: 1.45;
}


.purpose-center-content strong span {
    display: block;
    color: #f4c344;
}


/* =====================================================
   GOALS GRID
===================================================== */

.purpose-goals {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;

    margin-top: 48px;
}


.purpose-goal-card {
    position: relative;
    min-height: 245px;
    padding: 22px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.purpose-goal-card:hover {
    transform: translateY(-6px);

    border-color: rgba(244, 195, 68, 0.48);
    background: rgba(244, 195, 68, 0.09);
}


.purpose-goal-number {
    position: absolute;
    top: 16px;
    right: 17px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 38px;
    font-weight: 800;
}


.purpose-goal-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 15px;

    background: rgba(244, 195, 68, 0.12);
    color: #f4c344;

    font-size: 19px;
}


.purpose-goal-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}


.purpose-goal-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .purpose-layout {
        grid-template-columns: 1fr;
    }

    .purpose-center {
        order: -1;
        margin-bottom: 15px;
    }

    .purpose-center::before,
    .purpose-center::after {
        display: none;
    }

    .purpose-panel {
        min-height: auto;
    }

    .purpose-goals {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .purpose-section {
        padding: 58px 0;
    }

    .purpose-section .container {
        padding: 0 15px;
    }

    .purpose-heading {
        margin-bottom: 38px;
    }

    .purpose-heading h2 {
        font-size: 34px;
    }

    .purpose-heading p {
        font-size: 14px;
    }

    .purpose-center-ring {
        width: 210px;
        height: 210px;
    }

    .purpose-panel {
        padding: 27px 20px;
        border-radius: 22px;
    }

    .purpose-panel-number {
        font-size: 58px;
    }

    .purpose-panel h3 {
        font-size: 25px;
    }

    .purpose-goals {
        grid-template-columns: 1fr;
    }

    .purpose-goal-card {
        min-height: auto;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .purpose-heading h2 {
        font-size: 29px;
    }

    .purpose-center-ring {
        width: 185px;
        height: 185px;
    }

    .purpose-center-content strong {
        font-size: 18px;
    }

    .purpose-panel {
        padding: 24px 16px;
    }

    .purpose-panel-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

}

/* =====================================================
   PREMIUM WHAT WE DO SECTION
===================================================== */

.born-services-section {
    position: relative;
    width: 100%;
    padding: 95px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(255, 196, 58, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 15%,
            rgba(155, 75, 255, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #160725 0%,
            #281047 48%,
            #43136f 100%
        );

    font-family: "Poppins", sans-serif;
}


.born-services-section .container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* Background Orbs */

.services-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.services-orb-one {
    top: 150px;
    left: -170px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(244, 195, 68, 0.12);
}


.services-orb-two {
    right: -210px;
    bottom: 70px;

    width: 460px;
    height: 460px;

    background: rgba(161, 70, 255, 0.07);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.services-section-heading {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}


.services-section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
    padding: 8px 19px;

    border: 1px solid rgba(255, 210, 85, 0.38);
    border-radius: 30px;

    background: rgba(244, 195, 68, 0.09);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.services-section-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(38px, 5vw, 61px);
    line-height: 1.08;
    font-weight: 800;
}


.services-section-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffe18d,
        #f4c344,
        #d89c00
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.services-section-heading p {
    max-width: 780px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   FEATURED SERVICE
===================================================== */

.featured-service-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    margin-bottom: 25px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.07);

    box-shadow: 0 30px 75px rgba(8, 0, 22, 0.35);
}


.featured-service-content {
    position: relative;
    padding: 48px;
}


.featured-service-number {
    position: absolute;
    top: 25px;
    right: 35px;

    color: rgba(255, 255, 255, 0.06);

    font-size: 90px;
    line-height: 1;
    font-weight: 800;
}


.featured-service-icon {
    width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 21px;

    background: linear-gradient(
        135deg,
        #ffdc68,
        #d89b00
    );

    color: #260b44;

    font-size: 29px;
}


.featured-service-label {
    display: inline-block;
    margin-bottom: 8px;

    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.featured-service-content h3 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
}


.featured-service-content > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.85;
}


.featured-service-highlights {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 25px;
}


.featured-service-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 12px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.82);

    font-size: 11px;
    font-weight: 700;
}


.featured-service-highlights i {
    color: #f4c344;
}


.featured-service-button {
    min-height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 27px;
    padding: 12px 21px;

    border-radius: 11px;

    background: linear-gradient(
        135deg,
        #ffdb65,
        #d89b00
    );

    color: #250b43;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.featured-service-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 16px 30px rgba(244, 195, 68, 0.22);
}


.featured-service-button i {
    transition: transform 0.3s ease;
}


.featured-service-button:hover i {
    transform: translateX(5px);
}


/* Featured Image */

.featured-service-visual {
    position: relative;
    min-height: 525px;
    overflow: hidden;
}


.featured-service-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.65s ease;
}


.featured-service-card:hover
.featured-service-visual img {
    transform: scale(1.045);
}


.featured-service-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(27, 8, 48, 0.88),
        rgba(27, 8, 48, 0.08) 60%
    );
}


.featured-service-image-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 17px;

    background: rgba(24, 7, 44, 0.7);

    backdrop-filter: blur(14px);
}


.featured-service-image-card > span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #f4c344;
    color: #260b44;
}


.featured-service-image-card small {
    display: block;

    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;
    text-transform: uppercase;
}


.featured-service-image-card strong {
    color: #ffffff;

    font-size: 14px;
}


/* =====================================================
   SERVICES GRID
===================================================== */

.born-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


.born-service-card {
    position: relative;
    min-height: 430px;
    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.065);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.born-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(244, 195, 68, 0.45);
    background: rgba(255, 255, 255, 0.09);
}


.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}


.service-card-number {
    color: rgba(255, 255, 255, 0.13);

    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}


.service-card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    font-size: 21px;
}


.service-icon-pink {
    background: rgba(255, 55, 135, 0.14);
    color: #ff4f9b;
}


.service-icon-blue {
    background: rgba(47, 174, 255, 0.14);
    color: #45c1ff;
}


.service-icon-orange {
    background: rgba(255, 143, 48, 0.14);
    color: #ff9c48;
}


.service-icon-green {
    background: rgba(88, 214, 114, 0.14);
    color: #68de7e;
}


.service-icon-purple {
    background: rgba(187, 106, 255, 0.15);
    color: #c17cff;
}


.born-service-card h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 25px;
    line-height: 1.35;
    font-weight: 800;
}


.born-service-card > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 14px;
    line-height: 1.8;
}


/* Benefit List */

.service-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;

    margin: 24px 0 0;
    padding: 0;

    list-style: none;
}


.service-benefit-list li {
    position: relative;
    padding-left: 23px;

    color: rgba(255, 255, 255, 0.77);

    font-size: 12px;
    line-height: 1.55;
}


.service-benefit-list li::before {
    content: "";

    position: absolute;
    top: 7px;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #f4c344;

    box-shadow: 0 0 8px rgba(244, 195, 68, 0.6);
}


/* Talent Tags */

.talent-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 22px;
}


.talent-tags span {
    padding: 8px 11px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.77);

    font-size: 11px;
    font-weight: 700;
}


.service-card-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 22px;
    padding: 14px;

    border-left: 3px solid #f4c344;
    border-radius: 0 12px 12px 0;

    background: rgba(244, 195, 68, 0.08);
}


.service-card-note i {
    margin-top: 3px;
    color: #f4c344;
}


.service-card-note p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
    line-height: 1.6;
}


/* Personality Programs */

.personality-program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    margin-top: 22px;
}


.personality-program-grid span {
    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 44px;
    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.76);

    font-size: 11px;
    font-weight: 600;
}


.personality-program-grid i {
    color: #ff9c48;
}


/* Sports Benefits */

.sports-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    margin-top: 23px;
}


.sports-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);
}


.sports-benefits i {
    color: #68de7e;
}


.sports-benefits span {
    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    font-weight: 700;
}


/* Community List */

.community-list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 22px 0 0;
    padding: 0;

    list-style: none;
}


.community-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;
}


.community-list i {
    color: #c17cff;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.services-bottom-cta {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 25px;
    padding: 25px 28px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;

    background:
        linear-gradient(
            120deg,
            rgba(244, 195, 68, 0.14),
            rgba(255, 255, 255, 0.06)
        );
}


.services-cta-icon {
    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #f4c344;
    color: #260b44;

    font-size: 21px;
}


.services-cta-content {
    flex: 1;
}


.services-cta-content span {
    display: block;

    color: #ffd15a;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.services-cta-content h3 {
    margin: 4px 0 0;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.35;
}


.services-cta-button {
    flex-shrink: 0;

    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 19px;

    border-radius: 10px;

    background: #ffffff;
    color: #2b0c4c;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.services-cta-button:hover {
    transform: translateY(-2px);

    background: #f4c344;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .born-services-section {
        padding: 75px 0;
    }

    .featured-service-card {
        grid-template-columns: 1fr;
    }

    .featured-service-visual {
        min-height: 450px;
    }

    .born-services-grid {
        grid-template-columns: 1fr;
    }

    .born-service-card {
        min-height: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .born-services-section {
        padding: 58px 0;
    }

    .born-services-section .container {
        padding: 0 15px;
    }

    .services-section-heading {
        margin-bottom: 36px;
    }

    .services-section-heading h2 {
        font-size: 34px;
    }

    .services-section-heading p {
        font-size: 14px;
    }

    .featured-service-content {
        padding: 30px 21px;
    }

    .featured-service-number {
        font-size: 62px;
    }

    .featured-service-content h3 {
        font-size: 29px;
    }

    .featured-service-visual {
        min-height: 360px;
    }

    .born-service-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .born-service-card h3 {
        font-size: 23px;
    }

    .services-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-cta-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .services-section-heading h2 {
        font-size: 29px;
    }

    .featured-service-card {
        border-radius: 21px;
    }

    .featured-service-highlights {
        align-items: stretch;
        flex-direction: column;
    }

    .featured-service-highlights span {
        width: 100%;
    }

    .featured-service-button {
        width: 100%;
    }

    .featured-service-visual {
        min-height: 310px;
    }

    .service-benefit-list,
    .personality-program-grid,
    .sports-benefits {
        grid-template-columns: 1fr;
    }

    .services-bottom-cta {
        padding: 22px 18px;
    }

    .services-cta-content h3 {
        font-size: 19px;
    }

}

/* =====================================================
   PREMIUM WHY CHOOSE US SECTION
===================================================== */

.born-why-section {
    position: relative;
    width: 100%;
    padding: 85px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(244, 195, 68, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 88% 14%,
            rgba(189, 74, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #13051f 0%,
            #250b42 48%,
            #3e1067 100%
        );

    font-family: "Poppins", sans-serif;
}


.born-why-section .container {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   DECORATIVE ELEMENTS
===================================================== */

.born-why-light {
    position: absolute;
    top: -150px;

    width: 220px;
    height: 550px;

    background: linear-gradient(
        to bottom,
        rgba(181, 83, 255, 0.28),
        transparent 75%
    );

    clip-path: polygon(
        45% 0,
        55% 0,
        100% 100%,
        0 100%
    );

    pointer-events: none;

    filter: blur(8px);
}


.born-why-light-one {
    left: 15%;
    transform: rotate(-8deg);
}


.born-why-light-two {
    right: 12%;
    transform: rotate(9deg);
}


.born-why-note {
    position: absolute;

    color: rgba(244, 195, 68, 0.08);

    pointer-events: none;
}


.born-why-note-one {
    top: 12%;
    left: 4%;

    font-size: 80px;

    transform: rotate(-15deg);
}


.born-why-note-two {
    right: 4%;
    bottom: 10%;

    font-size: 100px;

    transform: rotate(14deg);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.born-why-heading {
    max-width: 880px;
    margin: 0 auto 45px;

    text-align: center;
}


.born-why-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 210, 83, 0.4);
    border-radius: 30px;

    background: rgba(244, 195, 68, 0.1);
    color: #ffd25b;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.born-why-heading h2 {
    margin: 0 0 17px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
}


.born-why-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffe390,
        #f4c344,
        #d79500
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.born-why-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   FEATURE GRID
===================================================== */

.born-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}


/* Feature Card */

.born-why-card {
    position: relative;
    min-height: 285px;

    display: flex;
    align-items: center;
    flex-direction: column;

    padding: 28px 21px;

    overflow: hidden;

    border: 1px solid rgba(255, 215, 94, 0.38);
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );

    text-align: center;

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    box-shadow: 0 18px 42px rgba(7, 0, 18, 0.25);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.born-why-card::before {
    content: "";

    position: absolute;
    top: -80px;
    left: 50%;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: rgba(244, 195, 68, 0.08);

    transform: translateX(-50%);

    transition: transform 0.4s ease;
}


.born-why-card:hover {
    transform: translateY(-8px);

    border-color: #f4c344;

    background:
        linear-gradient(
            145deg,
            rgba(244, 195, 68, 0.13),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 24px 50px rgba(7, 0, 18, 0.34),
        0 0 22px rgba(244, 195, 68, 0.08);
}


.born-why-card:hover::before {
    transform: translateX(-50%) scale(1.3);
}


/* Card Number */

.born-card-number {
    position: absolute;
    top: 15px;
    right: 17px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 31px;
    line-height: 1;
    font-weight: 800;
}


/* Feature Icon */

.born-why-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 19px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    font-size: 26px;

    box-shadow:
        0 13px 25px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(255, 255, 255, 0.025);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.born-why-card:hover .born-why-icon {
    transform: scale(1.08) rotate(-4deg);
}


/* Icon Colours */

.born-icon-gold {
    background: rgba(244, 195, 68, 0.16);
    color: #f4c344;
}


.born-icon-purple {
    background: rgba(181, 89, 255, 0.16);
    color: #c57dff;
}


.born-icon-pink {
    background: rgba(255, 72, 159, 0.16);
    color: #ff5ca8;
}


.born-icon-blue {
    background: rgba(47, 178, 255, 0.16);
    color: #4fc3ff;
}


.born-icon-orange {
    background: rgba(255, 146, 49, 0.16);
    color: #ff9b43;
}


.born-icon-green {
    background: rgba(89, 219, 117, 0.16);
    color: #69e181;
}


.born-icon-violet {
    background: rgba(171, 102, 255, 0.17);
    color: #bf82ff;
}


.born-icon-yellow {
    background: rgba(255, 217, 71, 0.17);
    color: #ffda48;
}


/* Card Content */

.born-why-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 11px;

    color: #f6cf57;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}


.born-why-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   BOTTOM MESSAGE
===================================================== */

.born-why-message {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 25px;
    padding: 24px 27px;

    border: 1px solid rgba(244, 195, 68, 0.38);
    border-radius: 20px;

    background:
        linear-gradient(
            110deg,
            rgba(244, 195, 68, 0.13),
            rgba(255, 255, 255, 0.055)
        );

    box-shadow: 0 18px 40px rgba(7, 0, 18, 0.22);
}


.born-message-icon {
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #ffdc67,
        #d79800
    );

    color: #260b44;

    font-size: 23px;
}


.born-message-content {
    flex: 1;
}


.born-message-content span {
    display: block;

    margin-bottom: 4px;

    color: #ffd25b;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.born-message-content h3 {
    max-width: 720px;
    margin: 0;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}


.born-why-button {
    flex-shrink: 0;

    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 20px;

    border-radius: 11px;

    background: #ffffff;
    color: #2a0b4a;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.born-why-button:hover {
    transform: translateY(-3px);

    background: #f4c344;
}


.born-why-button i {
    transition: transform 0.3s ease;
}


.born-why-button:hover i {
    transform: translateX(5px);
}


/* =====================================================
   SMALL DESKTOP
===================================================== */

@media (max-width: 1100px) {

    .born-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .born-why-section {
        padding: 72px 0;
    }

    .born-why-card {
        min-height: 260px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .born-why-section {
        padding: 56px 0;
    }

    .born-why-section .container {
        padding: 0 15px;
    }

    .born-why-heading {
        margin-bottom: 34px;
    }

    .born-why-heading h2 {
        font-size: 34px;
    }

    .born-why-heading p {
        font-size: 14px;
    }

    .born-why-grid {
        grid-template-columns: 1fr;
    }

    .born-why-card {
        min-height: auto;
        padding: 26px 20px;
    }

    .born-why-message {
        align-items: flex-start;
        flex-direction: column;

        padding: 22px 20px;
    }

    .born-why-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .born-why-heading h2 {
        font-size: 29px;
    }

    .born-why-card {
        border-radius: 18px;
    }

    .born-why-icon {
        width: 62px;
        height: 62px;

        font-size: 23px;
    }

    .born-message-content h3 {
        font-size: 18px;
    }

}

/*=====================================
LEADERSHIP SECTION
=====================================*/

.leadership-section{

    padding:100px 0;

    background:
    linear-gradient(135deg,#160725,#291047,#43136f);

    position:relative;

    overflow:hidden;

}

.leadership-section::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(244,195,68,.08);

    border-radius:50%;

    top:-150px;
    left:-150px;

}

.leadership-heading{

    text-align:center;

    max-width:800px;

    margin:auto auto 60px;

}

.leadership-badge{

    display:inline-block;

    padding:8px 22px;

    border-radius:30px;

    background:rgba(244,195,68,.12);

    color:#f4c344;

    border:1px solid rgba(244,195,68,.35);

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.leadership-heading h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:18px;

    line-height:1.2;

}

.leadership-heading h2 span{

    display:block;

    color:#f4c344;

}

.leadership-heading p{

    color:#ddd;

    font-size:17px;

    line-height:1.8;

}

.leadership-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.leader-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:40px;

    text-align:center;

    transition:.35s;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.leader-card:hover{

    transform:translateY(-10px);

    border-color:#f4c344;

}

.leader-image{

    width:170px;
    height:170px;

    margin:auto auto 25px;

    border-radius:50%;

    padding:6px;

    background:linear-gradient(135deg,#f4c344,#d89b00);

}

.leader-image img{

    width:100%;
    height:100%;

    border-radius:50%;

    object-fit:cover;

}

.leader-role{

    display:inline-block;

    padding:7px 20px;

    border-radius:30px;

    background:#f4c344;

    color:#222;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.leader-card h3{

    color:#fff;

    font-size:30px;

    margin-bottom:18px;

    font-weight:700;

}

.leader-card p{

    color:#ddd;

    font-size:16px;

    line-height:1.9;

}

/*====================
Responsive
====================*/

@media(max-width:991px){

.leadership-grid{

grid-template-columns:1fr;

}

.leadership-heading h2{

font-size:38px;

}

}

@media(max-width:576px){

.leadership-section{

padding:70px 0;

}

.leader-card{

padding:28px;

}

.leader-image{

width:140px;
height:140px;

}

.leadership-heading h2{

font-size:30px;

}

.leader-card h3{

font-size:24px;

}

.leader-card p{

font-size:15px;

}

}

/* =====================================================
   PREMIUM JOIN OUR JOURNEY SECTION
===================================================== */

.join-journey-section {
    position: relative;
    width: 100%;
    padding: 85px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(244, 195, 68, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(175, 79, 255, 0.2),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #12051f 0%,
            #260b45 50%,
            #42116e 100%
        );

    font-family: "Poppins", sans-serif;
}


.join-journey-section .container {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   DECORATIVE ELEMENTS
===================================================== */

.journey-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.journey-glow-one {
    top: -130px;
    left: -120px;

    width: 330px;
    height: 330px;

    background: rgba(244, 195, 68, 0.08);
}


.journey-glow-two {
    right: -170px;
    bottom: -150px;

    width: 420px;
    height: 420px;

    background: rgba(172, 80, 255, 0.1);
}


.journey-note {
    position: absolute;

    color: rgba(244, 195, 68, 0.07);

    pointer-events: none;
}


.journey-note-one {
    top: 12%;
    right: 5%;

    font-size: 85px;

    transform: rotate(-12deg);
}


.journey-note-two {
    left: 4%;
    bottom: 8%;

    font-size: 70px;

    transform: rotate(14deg);
}


/* =====================================================
   MAIN CARD
===================================================== */

.join-journey-card {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 0;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 32px 75px rgba(8, 0, 22, 0.38);
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.join-journey-content {
    padding: 52px;
}


.journey-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 210, 83, 0.4);
    border-radius: 30px;

    background: rgba(244, 195, 68, 0.1);
    color: #ffd15a;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.join-journey-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;
}


.join-journey-content h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffe28d,
        #f4c344,
        #d89a00
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.journey-lead {
    margin: 0 0 17px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}


.journey-text {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.journey-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;

    margin-top: 28px;
}


.journey-highlight-item {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 82px;
    padding: 13px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.055);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.journey-highlight-item:hover {
    transform: translateY(-4px);

    border-color: rgba(244, 195, 68, 0.45);

    background: rgba(244, 195, 68, 0.09);
}


.journey-highlight-item > span {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #ffdc67,
        #d79a00
    );

    color: #260b45;

    font-size: 15px;
}


.journey-highlight-item strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
}


.journey-highlight-item small {
    display: block;
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;
    line-height: 1.35;
}


/* =====================================================
   BUTTONS
===================================================== */

.journey-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}


.journey-primary-button,
.journey-secondary-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 22px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.journey-primary-button {
    background: linear-gradient(
        135deg,
        #ffdc67,
        #d99a00
    );

    color: #260b45;

    box-shadow: 0 15px 30px rgba(244, 195, 68, 0.2);
}


.journey-primary-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 20px 36px rgba(244, 195, 68, 0.28);
}


.journey-primary-button i {
    transition: transform 0.3s ease;
}


.journey-primary-button:hover i {
    transform: translateX(5px);
}


.journey-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}


.journey-secondary-button:hover {
    transform: translateY(-3px);

    border-color: #f4c344;

    background: rgba(244, 195, 68, 0.1);
    color: #f4c344;
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.join-journey-visual {
    position: relative;
    min-height: 620px;
}


.journey-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
}


.journey-image-frame img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 620px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}


.join-journey-card:hover
.journey-image-frame img {
    transform: scale(1.045);
}


.journey-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(24, 6, 43, 0.92),
            rgba(24, 6, 43, 0.12) 58%,
            rgba(24, 6, 43, 0.08)
        );
}


/* Quote Card */

.journey-quote-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;

    padding: 21px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;

    background: rgba(23, 7, 42, 0.72);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.journey-quote-icon {
    display: block;
    margin-bottom: 8px;

    color: #f4c344;

    font-size: 23px;
}


.journey-quote-card p {
    margin: 0;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}


/* Floating Badge */

.journey-floating-badge {
    position: absolute;
    top: 28px;
    right: 28px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;

    border: 1px solid rgba(255, 215, 92, 0.4);
    border-radius: 30px;

    background: rgba(24, 7, 42, 0.7);
    color: #ffd15a;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;

    backdrop-filter: blur(12px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .join-journey-section {
        padding: 72px 0;
    }

    .join-journey-card {
        grid-template-columns: 1fr;
    }

    .join-journey-visual,
    .journey-image-frame,
    .journey-image-frame img {
        min-height: 500px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .join-journey-section {
        padding: 56px 0;
    }

    .join-journey-section .container {
        padding: 0 15px;
    }

    .join-journey-card {
        border-radius: 22px;
    }

    .join-journey-content {
        padding: 31px 21px;
        text-align: center;
    }

    .join-journey-content h2 {
        font-size: 34px;
    }

    .journey-lead {
        font-size: 15px;
    }

    .journey-text {
        font-size: 14px;
    }

    .journey-highlights {
        grid-template-columns: 1fr;
    }

    .journey-highlight-item {
        text-align: left;
    }

    .journey-buttons {
        flex-direction: column;
    }

    .journey-primary-button,
    .journey-secondary-button {
        width: 100%;
    }

    .join-journey-visual,
    .journey-image-frame,
    .journey-image-frame img {
        min-height: 410px;
    }

    .journey-quote-card p {
        font-size: 17px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .join-journey-content h2 {
        font-size: 29px;
    }

    .join-journey-content {
        padding: 27px 17px;
    }

    .join-journey-visual,
    .journey-image-frame,
    .journey-image-frame img {
        min-height: 350px;
    }

    .journey-quote-card {
        left: 17px;
        right: 17px;
        bottom: 17px;

        padding: 16px;
    }

    .journey-floating-badge {
        top: 17px;
        right: 17px;
    }

}

/* =========================================
PREMIUM SERVICES SECTION
========================================== */

.bsi-services-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(255, 255, 255, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(236, 72, 153, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #240046 0%,
            #4c1d95 48%,
            #7c3aed 100%
        );
}

.bsi-services-section .container {
    position: relative;
    z-index: 2;
}


/* Background Decoration */

.bsi-services-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bsi-glow-one {
    width: 360px;
    height: 360px;
    top: -170px;
    right: -100px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.05);
}

.bsi-glow-two {
    width: 280px;
    height: 280px;
    bottom: -130px;
    left: -90px;
    background: rgba(236, 72, 153, 0.12);
}


/* Section Heading */

.bsi-services-heading {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.bsi-services-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 20px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
}

.bsi-services-badge i {
    color: #ffd166;
}

.bsi-services-heading h2 {
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.17;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.bsi-services-heading p {
    max-width: 750px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.75;
}


/* Services Grid */

.bsi-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* Service Card */

.bsi-service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 50px rgba(18, 3, 40, 0.25);
    backdrop-filter: blur(12px);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.bsi-service-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 34px 65px rgba(18, 3, 40, 0.38);
    transform: translateY(-8px);
}


/* Service Image */

.bsi-service-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.bsi-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 3, 55, 0.76),
        transparent 65%
    );
}

.bsi-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bsi-service-card:hover .bsi-service-image img {
    transform: scale(1.08);
}

.bsi-service-number {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    padding: 7px 11px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background: rgba(31, 4, 61, 0.55);
    backdrop-filter: blur(8px);
}

.bsi-service-icon {
    position: absolute;
    right: 20px;
    bottom: -25px;
    z-index: 3;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #5b21b6;
    font-size: 20px;
    border: 5px solid #55219b;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(18, 3, 40, 0.26);
}


/* Service Content */

.bsi-service-content {
    padding: 31px 22px 23px;
}

.bsi-service-label {
    display: block;
    margin-bottom: 8px;
    color: #ffd166;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.bsi-service-content h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 760;
}

.bsi-service-content > p {
    min-height: 78px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}


/* Expandable Details */

.bsi-service-details {
    margin-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bsi-service-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 17px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.bsi-service-details summary::-webkit-details-marker {
    display: none;
}

.bsi-service-details summary i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    color: #5b21b6;
    font-size: 12px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.bsi-service-details[open] summary i {
    transform: rotate(45deg);
}

.bsi-details-content {
    padding-top: 19px;
}

.bsi-details-content h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
}

.bsi-details-content h4:not(:first-child) {
    margin-top: 20px;
}

.bsi-details-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bsi-details-content li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 1.5;
}

.bsi-details-content li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #ffd166;
    font-weight: 800;
}


/* Tags */

.bsi-service-tags,
.bsi-language-list,
.bsi-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bsi-service-tags span,
.bsi-language-list span,
.bsi-benefit-list span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.09);
}

.bsi-language-list span::before,
.bsi-benefit-list span::before {
    content: "✓";
    margin-right: 6px;
    color: #ffd166;
    font-weight: 800;
}

.bsi-small-description {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.65;
}

.bsi-highlight-text {
    margin: 18px 0 0;
    padding: 13px 15px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
    border-left: 3px solid #ffd166;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}


/* Tablet */

@media (max-width: 1199px) {

    .bsi-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 991px) {

    .bsi-services-section {
        padding: 68px 0;
    }

    .bsi-services-heading {
        margin-bottom: 40px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .bsi-services-section {
        padding: 55px 0;
    }

    .bsi-services-heading {
        margin-bottom: 32px;
    }

    .bsi-services-heading h2 {
        font-size: 31px;
    }

    .bsi-services-heading p {
        font-size: 15px;
        line-height: 1.68;
    }

    .bsi-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bsi-service-image {
        height: 230px;
    }

    .bsi-service-content > p {
        min-height: auto;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .bsi-services-section {
        padding: 48px 0;
    }

    .bsi-services-heading h2 {
        font-size: 27px;
    }

    .bsi-service-card {
        border-radius: 20px;
    }

    .bsi-service-image {
        height: 215px;
    }

    .bsi-service-content {
        padding: 30px 18px 20px;
    }

    .bsi-service-content h3 {
        font-size: 21px;
    }

    .bsi-details-content ul {
        grid-template-columns: 1fr;
    }

}
/*========================================
PREMIUM HOME GALLERY SECTION
=========================================*/

.premium-gallery-section {
    position: relative;
    width: 100%;
    padding: 75px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(236, 72, 153, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #240046 0%,
            #4c1d95 48%,
            #7c3aed 100%
        );
}

.premium-gallery-section .container {
    position: relative;
    z-index: 2;
}


/*========================================
DECORATIVE BACKGROUND GLOWS
=========================================*/

.gallery-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.gallery-glow-one {
    width: 330px;
    height: 330px;
    top: -150px;
    right: -100px;
    background: rgba(255, 255, 255, 0.08);
}

.gallery-glow-two {
    width: 270px;
    height: 270px;
    bottom: -120px;
    left: -100px;
    background: rgba(236, 72, 153, 0.16);
}


/*========================================
GALLERY HEADING
=========================================*/

.premium-gallery-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 42px;
    text-align: center;
}

.gallery-heading-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.gallery-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 20px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-subtitle i {
    color: #ffd166;
}

.gallery-heading-content h2 {
    max-width: 800px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.gallery-heading-content p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}


/*========================================
GALLERY NAVIGATION
=========================================*/

.gallery-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 27px;
}

.gallery-navigation button {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    font-size: 17px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.gallery-navigation button:hover {
    color: #4c1d95;
    border-color: #ffffff;
    background: #ffffff;
    transform: translateY(-3px);
}

.gallery-navigation button:focus-visible {
    outline: 3px solid rgba(255, 209, 102, 0.65);
    outline-offset: 3px;
}


/*========================================
SWIPER SLIDER
=========================================*/

.premiumGallerySlider {
    width: 100%;
    padding: 8px 4px 48px;
    overflow: hidden;
}

.premiumGallerySlider .swiper-wrapper {
    align-items: stretch;
}

.premiumGallerySlider .swiper-slide {
    height: auto;
}


/*========================================
GALLERY CARD
=========================================*/

.premium-gallery-card {
    position: relative;
    width: 100%;
    height: 410px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 55px rgba(18, 4, 40, 0.30);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.premium-gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(18, 3, 39, 0.96) 0%,
        rgba(18, 3, 39, 0.68) 28%,
        rgba(18, 3, 39, 0.20) 62%,
        transparent 82%
    );
}

.premium-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.10),
        transparent 55%
    );
    transition: opacity 0.4s ease;
}

.premium-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.premium-gallery-card:hover {
    border-color: rgba(255, 255, 255, 0.40);
    box-shadow: 0 34px 70px rgba(18, 4, 40, 0.42);
    transform: translateY(-9px);
}

.premium-gallery-card:hover::after {
    opacity: 1;
}

.premium-gallery-card:hover img {
    transform: scale(1.09);
}


/*========================================
CARD OVERLAY CONTENT
=========================================*/

.gallery-card-overlay {
    position: absolute;
    right: 22px;
    bottom: 24px;
    left: 22px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.gallery-card-overlay span {
    display: block;
    margin-bottom: 7px;
    color: #ffd166;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-card-overlay h3 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 750;
}

.gallery-view-button {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0 auto;
    color: #4c1d95;
    font-size: 16px;
    cursor: pointer;
    border: 0;
    border-radius: 50%;
    outline: none;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.gallery-view-button:hover {
    color: #ffffff;
    background: #ec4899;
    transform: rotate(8deg) scale(1.07);
}

.gallery-view-button:focus-visible {
    outline: 3px solid rgba(255, 209, 102, 0.75);
    outline-offset: 3px;
}


/*========================================
SWIPER PAGINATION
=========================================*/

.gallery-pagination {
    bottom: 0 !important;
    text-align: center;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px !important;
    opacity: 0.48;
    border-radius: 50%;
    background: #ffffff;
    transition:
        width 0.3s ease,
        opacity 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
    width: 28px;
    opacity: 1;
    border-radius: 20px;
    background: #ffd166;
}


/*========================================
IMAGE PREVIEW MODAL
=========================================*/

.gallery-image-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    background: rgba(10, 2, 22, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-image-modal.active {
    visibility: visible;
    opacity: 1;
}

.gallery-image-modal img {
    width: auto;
    max-width: min(100%, 1050px);
    max-height: 85vh;
    display: block;
    object-fit: contain;
    border: 4px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.gallery-modal-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    font-size: 21px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.gallery-modal-close:hover {
    color: #4c1d95;
    background: #ffffff;
    transform: rotate(90deg);
}

.gallery-modal-close:focus-visible {
    outline: 3px solid rgba(255, 209, 102, 0.75);
    outline-offset: 3px;
}


/*========================================
TABLET RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .premium-gallery-section {
        padding: 65px 0 70px;
    }

    .premium-gallery-heading {
        margin-bottom: 36px;
    }

    .gallery-heading-content h2 {
        font-size: 38px;
    }

    .gallery-heading-content p {
        font-size: 16px;
    }

    .premium-gallery-card {
        height: 370px;
    }

    .gallery-card-overlay h3 {
        font-size: 22px;
    }

}


/*========================================
MOBILE RESPONSIVE
=========================================*/

@media (max-width: 767px) {

    .premium-gallery-section {
        padding: 55px 0 60px;
    }

    .premium-gallery-heading {
        margin-bottom: 30px;
    }

    .gallery-subtitle {
        padding: 8px 17px;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .gallery-heading-content h2 {
        margin-bottom: 13px;
        font-size: 30px;
        line-height: 1.22;
        letter-spacing: -0.4px;
    }

    .gallery-heading-content p {
        font-size: 15px;
        line-height: 1.68;
    }

    .gallery-navigation {
        gap: 11px;
        margin-top: 22px;
    }

    .gallery-navigation button {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .premiumGallerySlider {
        padding-bottom: 43px;
    }

    .premium-gallery-card {
        height: 350px;
        border-radius: 20px;
    }

    .gallery-card-overlay {
        right: 18px;
        bottom: 20px;
        left: 18px;
    }

    .gallery-card-overlay h3 {
        margin-bottom: 15px;
        font-size: 21px;
    }

    .gallery-view-button {
        width: 43px;
        height: 43px;
    }

}


/*========================================
SMALL MOBILE RESPONSIVE
=========================================*/

@media (max-width: 480px) {

    .premium-gallery-section {
        padding: 48px 0 52px;
    }

    .gallery-heading-content h2 {
        font-size: 27px;
    }

    .gallery-heading-content p {
        font-size: 14px;
    }

    .premium-gallery-card {
        height: 320px;
    }

    .gallery-card-overlay span {
        font-size: 11px;
    }

    .gallery-card-overlay h3 {
        font-size: 20px;
    }

    .gallery-image-modal {
        padding: 14px;
    }

    .gallery-image-modal img {
        max-height: 80vh;
        border-radius: 14px;
    }

    .gallery-modal-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

}


/*========================================
REDUCED MOTION ACCESSIBILITY
=========================================*/

@media (prefers-reduced-motion: reduce) {

    .premium-gallery-card,
    .premium-gallery-card img,
    .gallery-navigation button,
    .gallery-view-button,
    .gallery-modal-close,
    .gallery-image-modal {
        transition: none;
    }

}

/* =========================================
FIX MOBILE HORIZONTAL SCROLL / WHITE SPACE
========================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

.container,
.container-fluid,
.row,
section {
    max-width: 100%;
}


/* Bootstrap Row Overflow Fix */

.row {
    margin-left: 0;
    margin-right: 0;
}


/* Swiper Overflow Fix */

.swiper,
.swiper-wrapper,
.swiper-slide {
    max-width: 100%;
}

.premiumGallerySlider,
.gallerySlider {
    width: 100%;
    overflow: hidden;
}


/* Services Section Fix */

.bsi-services-section,
.premium-singing-service,
.singing-service-intro,
.premium-gallery-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* Prevent Floating Cards Going Outside Screen */

.singing-floating-card,
.service-experience-card,
.service-student-card {
    max-width: calc(100% - 20px);
}


/* Mobile Fix */

@media (max-width: 767px) {

    .singing-floating-card {
        right: 10px;
        left: auto;
    }

    .service-experience-card {
        right: 10px;
        left: auto;
    }

    .service-student-card {
        right: 10px;
        left: auto;
    }

    .singing-service-image::before {
        right: 0;
        left: 10px;
    }

    .gallery-glow-one,
    .gallery-glow-two,
    .singing-shape-one,
    .singing-shape-two,
    .bsi-glow-one,
    .bsi-glow-two {
        max-width: 100%;
    }

}
/*==============================
    PREMIUM WHATSAPP BUTTON
===============================*/

.whatsapp-float{
    position:fixed;
    left:22px;
    bottom:22px;
    z-index:9999;
}

.whatsapp-float a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    padding:12px 22px 12px 12px;
    border-radius:60px;
    box-shadow:0 15px 35px rgba(37,211,102,.35);
    transition:.35s;
    overflow:hidden;
    position:relative;
}

.whatsapp-float a::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-70%;
    width:50%;
    height:220%;
    background:rgba(255,255,255,.18);
    transform:rotate(25deg);
    transition:.6s;
}

.whatsapp-float a:hover::before{
    left:130%;
}

.whatsapp-float a:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(37,211,102,.45);
}

.whatsapp-icon{
    width:48px;
    height:48px;
    background:#fff;
    color:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    animation:whatsappPulse 2s infinite;
    flex-shrink:0;
}

.whatsapp-text{
    display:flex;
    flex-direction:column;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:700;
    letter-spacing:.3px;
    white-space:nowrap;
}

.whatsapp-text::after{
    content:"Online Now";
    font-size:11px;
    font-weight:500;
    color:#dfffe9;
    margin-top:2px;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(255,255,255,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(255,255,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }

}

/* Mobile */

@media(max-width:576px){

    .whatsapp-float{
        left:15px;
        bottom:15px;
    }

    .whatsapp-float a{
        padding:10px 18px 10px 10px;
        gap:10px;
    }

    .whatsapp-icon{
        width:44px;
        height:44px;
        font-size:24px;
    }

    .whatsapp-text{
        font-size:14px;
    }

    .whatsapp-text::after{
        font-size:10px;
    }

}

.enquiry-success-message {
    display: none;
    position: relative;
    align-items: center;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto 25px;
    padding: 20px 55px 20px 20px;
    background: linear-gradient(135deg, #f5f3ff, #ffffff);
    border: 1px solid #ddd6fe;
    border-left: 5px solid #7c3aed;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.13);
    animation: successMessageOpen 0.45s ease;
}

.enquiry-success-message.show {
    display: flex;
}

.success-message-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 21px;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.25);
}

.success-message-content h3 {
    margin: 0 0 5px;
    color: #2e1065;
    font-size: 21px;
    font-weight: 800;
}

.success-message-content p {
    margin: 0;
    color: #5b5268;
    font-size: 15px;
    line-height: 1.6;
}

.enquiry-success-message button {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #6b5b83;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.enquiry-success-message button:hover {
    color: #ffffff;
    background: #7c3aed;
}

@keyframes successMessageOpen {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .enquiry-success-message {
        align-items: flex-start;
        padding: 18px 45px 18px 16px;
    }

    .success-message-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .success-message-content h3 {
        font-size: 19px;
    }

    .success-message-content p {
        font-size: 14px;
    }
}

.born-contact-success {
    position: relative;
    display: none;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin: 0 0 25px;
    padding: 22px 60px 22px 22px;
    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #181105 55%,
            #2f1d02 100%
        );
    border: 1px solid #c99016;
    border-radius: 16px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.born-contact-success::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #ff8c1a 0%,
            #ff8c1a 33.33%,
            #ffffff 33.33%,
            #ffffff 66.66%,
            #138808 66.66%,
            #138808 100%
        );
}

.born-contact-success.show {
    display: flex;
    animation: bornSuccessOpen 0.5s ease forwards;
}

.born-success-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080603;
    font-size: 22px;
    background: linear-gradient(135deg, #f8d46b, #bd7c08);
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(201, 144, 22, 0.3);
}

.born-success-content span {
    display: block;
    margin-bottom: 4px;
    color: #e3b847;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.born-success-content h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.born-success-content p {
    margin: 0;
    color: #eee4cf;
    font-size: 15px;
    line-height: 1.6;
}

.born-success-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #e3b847;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.born-success-close:hover {
    color: #050505;
    background: #e3b847;
}

@keyframes bornSuccessOpen {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .born-contact-success {
        align-items: flex-start;
        gap: 13px;
        padding: 20px 45px 20px 15px;
        border-radius: 13px;
    }

    .born-success-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .born-success-content h3 {
        font-size: 18px;
    }

    .born-success-content p {
        font-size: 14px;
    }
}

.born-contact-form-area {
    display: block;
}

.born-contact-form-area.form-hidden {
    display: none !important;
}

.born-contact-success {
    display: none;
}

.born-contact-success.show {
    display: flex;
}

/* Contact form heading visibility fix */
#bornContactFormArea .born-form-heading {
    position: relative;
    z-index: 5;
    margin-bottom: 25px;
}

#bornContactFormArea .born-form-heading span {
    display: block;
    margin-bottom: 8px;
    color: #e3b847 !important;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#bornContactFormArea .born-form-heading h2 {
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

#bornContactFormArea .born-form-heading h2 span {
    display: inline;
    margin: 0;
    color: #e3b847 !important;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: none;
}

/* Leadership image fix */
.born-leader-photo {
    position: relative;
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    padding: 7px;
    background: linear-gradient(
        135deg,
        #ffd75a 0%,
        #f5a900 50%,
        #fff0a3 100%
    );
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow:
        0 12px 30px rgba(35, 10, 60, 0.28),
        0 0 0 3px rgba(255, 255, 255, 0.9);
    overflow: visible;
}

.born-leader-photo::before {
    position: absolute;
    content: "";
    inset: 12px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 0;
}

.born-leader-photo img {
    position: relative !important;
    z-index: 1;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: center top;
    background: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 50% !important;
    box-sizing: border-box;
}

/* Individual image positioning */
.safeena-photo img {
    object-position: center 20% !important;
}

.pallab-photo img {
    object-position: center 18% !important;
}

/* Star badge */
.born-leader-badge {
    position: absolute;
    z-index: 5;
    right: -7px;
    bottom: 20px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #281037;
    font-size: 14px;
    background: linear-gradient(135deg, #ffd75a, #f2a900);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(28, 6, 45, 0.25);
}
@media (max-width: 767px) {
    .born-leader-photo {
        flex-basis: 135px;
        width: 135px;
        height: 135px;
        margin: 0 auto 20px;
    }

    .born-leader-badge {
        right: -5px;
        bottom: 16px;
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

.born-square-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 30px auto;
    padding: 12px;
}

/* Decorative background */
.born-square-visual::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 42px;
    background:
        radial-gradient(circle at top left,
            rgba(132, 52, 219, 0.16),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(255, 193, 7, 0.18),
            transparent 42%);
    z-index: 0;
}

/* Square image frame */
.born-square-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 7px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        #ffcf4a 0%,
        #f5a900 45%,
        #8d31c7 100%
    );
    box-shadow:
        0 22px 55px rgba(25, 12, 50, 0.22),
        0 8px 20px rgba(245, 169, 0, 0.18);
}

/* Actual image */
.born-square-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 26px;
    border: 5px solid #ffffff;
    background: #ffffff;
}

/* Floating badges */
.born-image-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 30px rgba(28, 13, 46, 0.18);
}

.badge-left {
    left: -22px;
    bottom: 42px;
    padding: 11px 18px 11px 11px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #21172e;
}

.badge-left .badge-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #a443e5, #6422ad);
}

.badge-left strong,
.badge-left small {
    display: block;
}

.badge-left strong {
    font-size: 14px;
    font-weight: 800;
}

.badge-left small {
    margin-top: 2px;
    font-size: 11px;
    color: #77717d;
}

.badge-right {
    right: -18px;
    bottom: 95px;
    padding: 12px 19px;
    border-radius: 50px;
    color: #19121e;
    background: linear-gradient(135deg, #ffe07a, #f4b42e);
}

.badge-right i {
    font-size: 12px;
}

.badge-right strong {
    font-size: 13px;
    font-weight: 800;
}

/* Mobile */
@media (max-width: 575px) {
    .born-square-visual {
        max-width: 360px;
        padding: 8px;
        margin: 20px auto 75px;
    }

    .born-square-frame {
        padding: 5px;
        border-radius: 24px;
    }

    .born-square-frame img {
        border-width: 4px;
        border-radius: 19px;
    }

    .badge-left {
        left: 14px;
        bottom: -52px;
    }

    .badge-right {
        right: 14px;
        bottom: -4px;
    }

    .badge-left strong {
        font-size: 12px;
    }

    .badge-right strong {
        font-size: 11px;
    }
}

/* =========================================
   BORN SINGERS GRAND COMPETITION SECTION
========================================= */

.bsi-competition-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(219, 162, 46, 0.18), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(115, 37, 93, 0.20), transparent 32%),
        linear-gradient(135deg, #09031b 0%, #17062e 45%, #340b3e 100%);
    font-family: "Poppins", sans-serif;
}

.bsi-competition-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 45px 45px;
}

.bsi-competition-section .container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* Decorative Glows */

.bsi-competition-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.bsi-glow-one {
    width: 340px;
    height: 340px;
    top: -160px;
    left: -110px;
    background: rgba(245, 178, 47, 0.14);
}

.bsi-glow-two {
    width: 420px;
    height: 420px;
    right: -190px;
    bottom: -200px;
    background: rgba(190, 48, 133, 0.16);
}


/* Main Layout */

.bsi-competition-wrapper {
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: 65px;
    align-items: center;
}


/* Poster Design */

.bsi-poster-column {
    position: relative;
}

.bsi-poster-frame {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        #fff1a6,
        #bf7419 30%,
        #ffde71 55%,
        #6b2a12 100%
    );
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 0 8px rgba(255, 210, 91, 0.07);
    transform: rotate(-1.5deg);
    transition: 0.45s ease;
}

.bsi-poster-frame:hover {
    transform: rotate(0deg) translateY(-8px);
}

.bsi-poster-frame::before {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -1;
    border-radius: 35px;
    border: 1px solid rgba(255, 215, 104, 0.28);
}

.bsi-poster-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.bsi-poster-badge {
    position: absolute;
    top: 28px;
    left: -18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 0 30px 30px 0;
    color: #261100;
    background: linear-gradient(135deg, #fff0a3, #e6a52d);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.bsi-poster-badge i {
    color: #721740;
}

.bsi-poster-shine {
    position: absolute;
    inset: 10px;
    overflow: hidden;
    border-radius: 20px;
    pointer-events: none;
}

.bsi-poster-shine::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 150%;
    top: -25%;
    left: -60%;
    transform: rotate(20deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.8s ease;
}

.bsi-poster-frame:hover .bsi-poster-shine::before {
    left: 120%;
}


/* Right Content */

.bsi-competition-content {
    color: #ffffff;
}

.bsi-small-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #f6c653;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.bsi-small-heading span {
    width: 45px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #f4c551, #db4f92);
}

.bsi-competition-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1px;
}

.bsi-competition-content h2 span {
    display: block;
    color: transparent;
    background: linear-gradient(
        90deg,
        #fff1a7 0%,
        #e9aa33 40%,
        #ffdd6e 70%,
        #dd6da7 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
}

.bsi-competition-content h3 {
    margin: 20px 0 12px;
    color: #f5d87e;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
}

.bsi-intro {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.85;
}


/* Mission Box */

.bsi-mission-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(245, 194, 76, 0.25);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );
    backdrop-filter: blur(12px);
}

.bsi-mission-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #2a092d;
    background: linear-gradient(135deg, #fff0a3, #d89422);
    font-size: 23px;
    box-shadow: 0 12px 28px rgba(228, 163, 42, 0.25);
}

.bsi-mission-box span {
    display: block;
    margin-bottom: 5px;
    color: #f5c85d;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bsi-mission-box p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.65;
}


/* Event Details */

.bsi-event-information {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 16px;
    margin-top: 20px;
}

.bsi-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 110px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    transition: 0.3s ease;
}

.bsi-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 192, 72, 0.35);
    background: rgba(255, 255, 255, 0.085);
}

.bsi-info-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #f6ca5f;
    background: rgba(239, 180, 55, 0.13);
    font-size: 18px;
}

.bsi-info-card span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bsi-info-card strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.bsi-info-card small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.6;
}


/* Highlights */

.bsi-highlights {
    margin-top: 22px;
}

.bsi-highlights h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.bsi-highlights h4 i {
    color: #f5c652;
}

.bsi-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.bsi-highlight-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.83);
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    line-height: 1.45;
}

.bsi-highlight-item i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #30102e;
    background: linear-gradient(135deg, #f9d878, #dca038);
}


/* Footer and Button */

.bsi-competition-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bsi-contact-details > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.bsi-contact-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.bsi-contact-numbers a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.bsi-contact-numbers a i {
    color: #f3bf4c;
}

.bsi-contact-numbers a:hover {
    color: #f3bf4c;
}

.bsi-register-btn {
    min-width: 210px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px 14px 21px;
    border-radius: 16px;
    color: #271020;
    background: linear-gradient(135deg, #ffe995, #d89827);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(225, 157, 39, 0.24);
    transition: 0.35s ease;
}

.bsi-register-btn span {
    line-height: 1.2;
}

.bsi-register-btn small {
    display: block;
    margin-bottom: 3px;
    color: rgba(39, 16, 32, 0.68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.bsi-register-btn > i {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: #5e173f;
    transition: 0.3s ease;
}

.bsi-register-btn:hover {
    color: #271020;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(225, 157, 39, 0.35);
}

.bsi-register-btn:hover > i {
    transform: translateX(4px);
}


/* Bottom Message */

.bsi-bottom-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 24px;
    padding: 12px 18px;
    border-radius: 14px;
    color: #f9dc87;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(236, 179, 55, 0.12),
        transparent
    );
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.bsi-bottom-message i {
    color: #d85b9b;
}


/* =========================================
   RESPONSIVE CSS
========================================= */

@media (max-width: 1100px) {

    .bsi-competition-wrapper {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 38px;
    }

    .bsi-competition-section {
        padding: 75px 0;
    }

    .bsi-competition-content h2 {
        font-size: 48px;
    }

    .bsi-event-information {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {

    .bsi-competition-wrapper {
        grid-template-columns: 1fr;
    }

    .bsi-poster-frame {
        max-width: 570px;
        transform: none;
    }

    .bsi-poster-frame:hover {
        transform: translateY(-5px);
    }

    .bsi-competition-content {
        max-width: 720px;
        margin: 0 auto;
    }
}


@media (max-width: 650px) {

    .bsi-competition-section {
        padding: 55px 0;
    }

    .bsi-competition-section .container {
        width: min(100% - 24px, 1320px);
    }

    .bsi-competition-wrapper {
        gap: 38px;
    }

    .bsi-poster-frame {
        padding: 6px;
        border-radius: 20px;
    }

    .bsi-poster-frame img,
    .bsi-poster-shine {
        border-radius: 15px;
    }

    .bsi-poster-badge {
        top: 17px;
        left: -7px;
        padding: 9px 14px;
        font-size: 11px;
    }

    .bsi-small-heading {
        align-items: flex-start;
        font-size: 11px;
        line-height: 1.5;
    }

    .bsi-small-heading span {
        width: 30px;
        margin-top: 7px;
    }

    .bsi-competition-content h2 {
        font-size: 38px;
    }

    .bsi-competition-content h3 {
        margin-top: 16px;
        font-size: 19px;
    }

    .bsi-intro {
        font-size: 14px;
        line-height: 1.75;
    }

    .bsi-mission-box {
        align-items: flex-start;
        padding: 17px;
    }

    .bsi-mission-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
        font-size: 19px;
    }

    .bsi-mission-box p {
        font-size: 14px;
    }

    .bsi-highlight-grid {
        grid-template-columns: 1fr;
    }

    .bsi-competition-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .bsi-contact-numbers {
        flex-direction: column;
        gap: 9px;
    }

    .bsi-register-btn {
        width: 100%;
    }

    .bsi-bottom-message {
        font-size: 14px;
        line-height: 1.5;
    }
}