/* ==========================================================================
   UJJWAL COACHING CENTER - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
    --primary-purple: #4B176B;
    --secondary-purple: #7026A3;
    --dark-purple: #2A093D;
    --gold: #FFC928;
    --gold-hover: #E5B217;
    --magenta: #D71968;
    --magenta-hover: #B51255;
    --cream: #FFFDF7;
    --dark-text: #25202A;
    --light-bg: #F8F9FD;
    --card-shadow: 0 10px 30px rgba(75, 23, 107, 0.08);
    --header-shadow: 0 4px 20px rgba(42, 9, 61, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;
    font-weight: 700;
    color: var(--primary-purple);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Helper Utilities */
.text-gold {
    color: var(--gold) !important;
}

.text-magenta {
    color: var(--magenta) !important;
}

.bg-purple-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

/* ==========================================================================
   SECTION TITLE SYSTEM — Use .section-title on every section heading
   ========================================================================== */

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--dark-text);
    margin-bottom: 0;
}

.section-title span {
    color: var(--secondary-purple);
}

.section-subtitle {
    font-size: 15px;
    color: #68616d;
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 0;
    max-width: 560px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.65rem;
    }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.top-bar {
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: #fff;
    font-size: 13.5px;
    position: relative;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.top-info-item:hover {
    color: var(--gold);
}

.top-info-item i {
    color: var(--gold);
    font-size: 14px;
}

.phone-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 600;
}

.phone-link:hover {
    color: var(--gold);
}

.phone-link i {
    color: var(--gold);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--primary-purple);
    border-color: var(--gold);
    transform: translateY(-2px);
}


/* ==========================================================================
   MAIN HEADER / NAVIGATION
   ========================================================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--header-shadow);
    transition: all 0.3s ease;
}

.navbar {
    padding: 12px 0;
}

/* Brand Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.brand-icon-box {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-purple), var(--magenta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(215, 25, 104, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 21px;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Nav Menu Links */
.navbar-nav {
    gap: 6px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #3a2b47 !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple) !important;
    background: rgba(75, 23, 107, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--magenta);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Admission Now CTA Button */
.btn-admission {
    background: linear-gradient(135deg, #FFC928 0%, #FF9800 100%);
    color: var(--primary-purple) !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-admission::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-admission:hover::before {
    left: 100%;
}

.btn-admission:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.5);
    color: #1a0229 !important;
}

.btn-admission i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-admission:hover i {
    transform: translateX(4px);
}

.navbar-toggler {
    border: 1px solid rgba(75, 23, 107, 0.2);
    padding: 6px 10px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(75, 23, 107, 0.15);
}

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */

.hero-carousel-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    background: #ffffff;
}

.hero-carousel .carousel-inner {
    width: 100%;
}

.hero-carousel .carousel-item {
    position: relative;
    width: 100%;
    background: #ffffff;



    overflow: hidden;
}


/* ==========================================================================
   FULL IMAGE
   ========================================================================== */

.hero-slide-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center center;

    background: #ffffff;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.hero-buttons {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 45px;

    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    padding: 0 20px;

    pointer-events: none;
}

.hero-btn {
    pointer-events: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 170px;

    padding: 13px 25px;

    border-radius: 50px;

    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* Admission Button */

.hero-btn-admission {
    border: none;

    background: #FFC928;

    color: #4B176B;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
}

.hero-btn-admission:hover {
    background: #4B176B;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(75, 23, 107, 0.28);
}


/* Courses Button */

.hero-btn-courses {
    border: 2px solid #4B176B;

    background: #ffffff;

    color: #4B176B;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
}

.hero-btn-courses:hover {
    background: #4B176B;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(75, 23, 107, 0.28);
}


/* ==========================================================================
   CAROUSEL CONTROLS
   ========================================================================== */

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 46px;
    height: 46px;

    top: 50%;

    transform: translateY(-50%);

    opacity: 1;

    z-index: 20;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

.carousel-control-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(75, 23, 107, 0.85);

    color: #ffffff;

    transition: all 0.25s ease;
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background: #FFC928;

    color: #4B176B;
}


/* ==========================================================================
   INDICATORS
   ========================================================================== */

.hero-carousel .carousel-indicators {
    bottom: 12px;

    z-index: 20;

    gap: 7px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;

    margin: 0;

    border: 0;

    border-radius: 50%;

    background: #4B176B;

    opacity: 0.35;

    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    width: 28px;

    border-radius: 10px;

    background: #FFC928;

    opacity: 1;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {


    .hero-buttons {
        bottom: 38px;
    }

    .hero-btn {
        min-width: 155px;

        padding: 12px 22px;

        font-size: 13px;
    }

    .hero-carousel .carousel-control-prev {
        left: 12px;
    }

    .hero-carousel .carousel-control-next {
        right: 12px;
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {


    .hero-buttons {
        bottom: 35px;

        gap: 9px;

        padding: 0 12px;
    }

    .hero-btn {
        min-width: 0;

        padding: 10px 17px;

        font-size: 12px;

        gap: 6px;
    }

    .carousel-control-icon {
        width: 36px;
        height: 36px;

        font-size: 12px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    .hero-carousel .carousel-control-prev {
        left: 6px;
    }

    .hero-carousel .carousel-control-next {
        right: 6px;
    }

    .hero-carousel .carousel-indicators {
        bottom: 8px;
    }
}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {



    .hero-buttons {
        bottom: 30px;

        gap: 7px;
    }

    .hero-btn {
        padding: 9px 13px;

        font-size: 11px;
    }

    .hero-btn i {
        font-size: 11px;
    }

    .carousel-control-icon {
        width: 32px;
        height: 32px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, #2A093D 0%, #170423 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-top: 70px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--magenta) 50%, var(--secondary-purple) 100%);
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 11px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-list i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-contact-list a:hover {
    color: var(--gold);
}

/* Footer Callback Box */
.footer-callback-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
}

.footer-callback-card h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-callback-card p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.callback-form .input-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13.5px;
    border-radius: 30px 0 0 30px;
    padding: 9px 15px;
}

.callback-form .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.callback-form .input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.callback-form .btn-submit {
    background: var(--gold);
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 13.5px;
    border-radius: 0 30px 30px 0;
    padding: 9px 18px;
    border: none;
}

.callback-form .btn-submit:hover {
    background: #ffb700;
}

/* Copyright Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 991.98px) {




    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-link {
        padding: 10px 14px !important;
    }

    .btn-admission {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .top-bar-inner {
        justify-content: center;
        padding: 6px 0;
    }

    .top-info-item.address {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar-inner {
        flex-wrap: wrap;
        gap: 6px;
    }

    .top-info,
    .phone-links,
    .social-links {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        border-left: none;
        padding-left: 0;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .hero-carousel .carousel-control-prev {
        left: 10px;
    }

    .hero-carousel .carousel-control-next {
        right: 10px;
    }

    .site-footer {
        padding-top: 50px;
    }
}



/* ==========================================================
   ADMISSION MODAL
=========================================================== */

.admission-modal .modal-dialog {
    max-width: 950px;
}

.admission-modal-content {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--card-shadow);
}


/* ==========================================================
   MODAL HEADER
=========================================================== */

.admission-modal-header {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 28px;

    background: var(--primary-purple);
    color: #fff;
}

.admission-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admission-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);
    color: var(--primary-purple);

    border-radius: 10px;
    font-size: 18px;
}

.admission-brand {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.admission-brand-subtitle {
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 4px;
}

.admission-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.admission-close:hover {
    opacity: 1;
}


/* ==========================================================
   MODAL BODY
=========================================================== */

.admission-modal-body {
    padding: 35px;
    background: var(--cream);
}


/* ==========================================================
   LEFT INFORMATION PANEL
=========================================================== */

.admission-info {
    height: 100%;
    padding: 28px;

    border-radius: 16px;

    background: linear-gradient(145deg,
            var(--primary-purple),
            var(--secondary-purple));

    color: #fff;
}

.admission-small-label {
    display: inline-block;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 10px;
}

.admission-info h2 {
    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;
    color: var(--cream);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;

    margin-bottom: 14px;
}

.admission-info h2 span {
    color: var(--gold);
}

.admission-description {
    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;
    line-height: 1.7;

    margin-bottom: 25px;
}


/* ==========================================================
   INFORMATION ITEMS
=========================================================== */

.admission-info-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 19px;
}

.admission-info-icon {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    color: var(--gold);

    border-radius: 9px;

    font-size: 14px;
}

.admission-info-item strong {
    display: block;

    color: #fff;

    font-size: 13px;

    margin-bottom: 3px;
}

.admission-info-item span {
    display: block;

    color: rgba(255, 255, 255, 0.70);

    font-size: 11px;

    line-height: 1.5;
}

.admission-info-item a {
    display: inline-block;

    color: #fff;

    font-size: 12px;

    text-decoration: none;

    margin-right: 8px;

    transition: 0.2s ease;
}

.admission-info-item a:hover {
    color: var(--gold);
}


/* ==========================================================
   FORM
=========================================================== */

.admission-form-wrapper {
    padding: 3px 5px;
}

.form-heading {
    margin-bottom: 22px;
}

.form-heading h3 {
    color: var(--dark-text);

    font-size: 21px;
    font-weight: 700;

    margin-bottom: 5px;
}

.form-heading p {
    color: #777;

    font-size: 13px;

    margin: 0;
}


/* ==========================================================
   FORM LABELS
=========================================================== */

.admission-form-wrapper .form-label {
    color: var(--dark-text);

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 7px;
}

.admission-form-wrapper .form-label span {
    color: var(--magenta);
}

.admission-form-wrapper .form-label small {
    color: #999;

    font-weight: 400;
}


/* ==========================================================
   INPUTS
=========================================================== */

.admission-input {
    position: relative;
}

.admission-input>i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--secondary-purple);

    font-size: 13px;

    z-index: 3;

    pointer-events: none;
}

.admission-input .form-control,
.admission-input .form-select {
    height: 45px;

    padding-left: 40px;

    border: 1px solid #e2dce5;

    border-radius: 9px;

    color: var(--dark-text);

    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;

    font-size: 12px;

    background-color: #fff;

    transition: all 0.2s ease;
}

.admission-input .form-select {
    cursor: pointer;
}

.admission-input .form-control:focus,
.admission-input .form-select:focus {
    border-color: var(--secondary-purple);

    box-shadow:
        0 0 0 3px rgba(112, 38, 163, 0.08);
}


/* ==========================================================
   TEXTAREA
=========================================================== */

.admission-textarea {
    border: 1px solid #e2dce5;

    border-radius: 9px;

    resize: vertical;

    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;

    font-size: 12px;

    padding: 12px 14px;

    color: var(--dark-text);

    background: #fff;
}

.admission-textarea:focus {
    border-color: var(--secondary-purple);

    box-shadow:
        0 0 0 3px rgba(112, 38, 163, 0.08);
}


/* ==========================================================
   SUBMIT BUTTON
=========================================================== */

.admission-submit-btn {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 10px;

    background: var(--gold);
    color: var(--primary-purple);

    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    cursor: pointer;

    transition: all 0.25s ease;

    margin-top: 4px;
}

.admission-submit-btn:hover {
    background: var(--gold-hover);
    color: var(--primary-purple);

    transform: translateY(-1px);

    box-shadow: var(--card-shadow);
}


/* ==========================================================
   SUCCESS STATE
=========================================================== */

.admission-success {
    display: none;

    text-align: center;

    padding: 50px 20px;
}

.admission-success.show {
    display: block;
}

.admission-form-wrapper.success-active #admissionForm,
.admission-form-wrapper.success-active .form-heading {
    display: none;
}

.success-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--light-bg);

    color: var(--secondary-purple);

    font-size: 25px;
}

.admission-success h4 {
    font-size: 23px;

    font-weight: 700;

    color: var(--dark-text);

    margin-bottom: 8px;
}

.admission-success p {
    color: #777;

    font-size: 13px;

    line-height: 1.6;

    max-width: 400px;

    margin: 0 auto 20px;
}

.success-close-btn {
    border: none;

    background: var(--primary-purple);

    color: #fff;

    padding: 10px 25px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.25s ease;
}

.success-close-btn:hover {
    background: var(--secondary-purple);
}


/* ==========================================================
   MOBILE
=========================================================== */

@media (max-width: 767px) {

    .admission-modal .modal-dialog {
        margin: 10px;
    }

    .admission-modal-body {
        padding: 20px;
    }

    .admission-modal-header {
        padding: 15px 18px;
    }

    .admission-info {
        padding: 22px;
    }

    .admission-info h2 {
        font-size: 25px;
    }

    .admission-form-wrapper {
        padding: 0;
    }

}


@media (max-width: 480px) {

    .admission-modal .modal-dialog {
        margin: 5px;
    }

    .admission-modal-body {
        padding: 15px;
    }

    .admission-info {
        padding: 20px;
    }

    .admission-info-item {
        margin-bottom: 15px;
    }

    .admission-info-item span {
        font-size: 10px;
    }

    .admission-form-wrapper .form-label {
        font-size: 11px;
    }

}

/* ==========================================
   ABOUT SECTION
========================================== */

.about-section {
    position: relative;

    padding: 50px 0;

    background: var(--cream);

    overflow: hidden;
}


/* ==========================================
   VISUAL AREA
========================================== */

.about-visual {
    position: relative;

    padding: 20px 35px 35px 15px;

    min-height: 500px;

    display: flex;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--light-bg);
    box-shadow: var(--card-shadow);
    z-index: 2;
}

.about-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(145deg,
            rgba(75, 23, 107, 0.08),
            rgba(215, 25, 104, 0.04));

    pointer-events: none;
}

.about-main-image2 {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ==========================================
   HIGHLIGHT CARD
========================================== */

.about-highlight-card {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;

    padding: 16px 20px;

    background: var(--primary-purple);

    border-radius: 14px;

    color: #fff;

    box-shadow: var(--card-shadow);
}

.about-highlight-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--primary-purple);

    border-radius: 11px;

    font-size: 18px;
}

.about-highlight-card strong {
    display: block;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 3px;
}

.about-highlight-card span {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
}


/* ==========================================
   DECORATIONS
========================================== */

.about-decoration {
    position: absolute;

    border-radius: 50%;

    z-index: 1;
}

.about-decoration-one {
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;

    border: 18px solid var(--gold);

    opacity: 0.35;
}

.about-decoration-two {
    width: 85px;
    height: 85px;

    right: 5px;
    bottom: 20px;

    background: var(--magenta);

    opacity: 0.10;
}


/* ==========================================
   CONTENT
========================================== */

.about-content {
    padding-left: 20px;
}


/* Section Label */

.section-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: var(--secondary-purple);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.section-label-line {
    width: 32px;
    height: 3px;

    border-radius: 5px;

    background: var(--gold);
}


/* ==========================================
   TITLE
========================================== */

.about-title {
    /* Typography handled by .section-title */
    margin-bottom: 20px;
}

.about-title span {
    color: var(--secondary-purple);
}


/* ==========================================
   TEXT
========================================== */

.about-lead {
    color: var(--dark-text);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 12px;
}

.about-description {
    color: var(--dark-text);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 28px;

}


/* ==========================================
   FEATURES
========================================== */

.about-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 30px;
}

.about-feature {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    border-radius: 12px;

    background: var(--light-bg);

    border: 1px solid rgba(75, 23, 107, 0.06);

    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-3px);

    box-shadow: var(--card-shadow);

    background: #fff;
}

.about-feature-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 201, 40, 0.18);

    color: var(--primary-purple);

    border-radius: 9px;

    font-size: 14px;
}

.about-feature h4 {
    color: var(--dark-text);

    font-size: 15px;

    font-weight: 700;

    margin: 0 0 4px;
}

.about-feature p {
    color: var(--dark-purple);

    font-size: 12px;

    margin: 0;
}


/* ==========================================
   ACTIONS
========================================== */

.about-actions {
    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

.about-primary-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 23px;

    border-radius: 50px;

    background: var(--primary-purple);

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.about-primary-btn:hover {
    background: var(--secondary-purple);

    color: #fff;

    transform: translateY(-2px);

    box-shadow: var(--card-shadow);
}


/* Contact Link */

.about-contact-link {
    display: flex;

    align-items: center;
    gap: 9px;

    color: var(--dark-text);

    text-decoration: none;
}

.about-contact-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--light-bg);

    color: var(--secondary-purple);

    font-size: 18px;
}

.about-contact-link small {
    display: block;

    color: var(--dark-purple);

    font-size: 16px;

    margin-bottom: 1px;
}

.about-contact-link strong {
    display: block;

    color: var(--primary-purple);

    font-size: 14px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .about-section {
        padding: 75px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 34px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .about-section {
        padding: 40px 0;
    }

    .about-visual {
        padding: 10px 15px 45px 10px;
    }


    .about-highlight-card {
        left: 0;
        bottom: 0;

        min-width: auto;

        padding: 12px 15px;
    }

    .about-highlight-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .about-title {
        font-size: 30px;
    }

    .about-lead {
        font-size: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .about-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .about-title {
        font-size: 27px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-highlight-card {
        max-width: 220px;
    }

    .about-highlight-card strong {
        font-size: 12px;
    }

    .about-highlight-card span {
        font-size: 10px;
    }

}

/* ==========================================
   UNIVERSITIES SECTION
========================================== */

.universities-section {
    position: relative;

    padding: 50px 0;

    background: var(--light-bg);

    overflow: hidden;
}


/* ==========================================
   SECTION HEADING
========================================== */

.universities-heading {
    margin-bottom: 48px;
}

.universities-title {
    /* Typography handled by .section-title */
    margin: 0;
}

.universities-title span {
    color: var(--secondary-purple);
}




/* ==========================================
   UNIVERSITY CARD
========================================== */

.university-card {
    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    background: #fff;

    border: 1px solid rgba(75, 23, 107, 0.07);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--card-shadow);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.university-card:hover {
    transform: translateY(-7px);

    border-color: rgba(75, 23, 107, 0.15);

    box-shadow:
        0 18px 45px rgba(75, 23, 107, 0.13);
}


/* ==========================================
   TOP ACCENT
========================================== */

.university-card-accent {
    height: 4px;

    width: 100%;

    background: linear-gradient(90deg,
            var(--primary-purple),
            var(--secondary-purple),
            var(--gold));
}


/* ==========================================
   LOGO AREA
========================================== */

.university-logo-area {
    height: 180px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        radial-gradient(circle at center,
            rgba(243, 234, 248, 0.8),
            rgba(248, 249, 253, 0.4));

    border-bottom: 1px solid rgba(75, 23, 107, 0.06);
}

.university-logo {
    width: 120px;
    height: 120px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 12px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(75, 23, 107, 0.10);

    transition: transform 0.35s ease;
}

.university-card:hover .university-logo {
    transform: scale(1.05);
}

.university-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* ==========================================
   CONTENT
========================================== */

.university-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 25px;
}

.university-type {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--secondary-purple);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.1px;

    margin-bottom: 10px;
}

.university-type i {
    color: var(--gold);

    font-size: 12px;
}

.university-content h3 {
    color: var(--dark-text);

    font-size: 18px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 10px;
}

.university-description {
    color: var(--dark-purple);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* ==========================================
   COURSE HEADING
========================================== */

.course-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

    padding-bottom: 8px;

    border-bottom: 1px dashed rgba(75, 23, 107, 0.12);
}

.course-heading span {
    color: var(--dark-text);

    font-size: 15px;

    font-weight: 600;
}

.course-heading i {
    color: var(--gold);

    font-size: 10px;
}


/* ==========================================
   COURSE PILLS
========================================== */

.course-pills {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 25px;
}

.course-pill {
    display: inline-flex;

    align-items: center;

    padding: 6px 11px;

    border-radius: 30px;

    background: var(--light-bg);

    border: 1px solid rgba(75, 23, 107, 0.07);

    color: var(--primary-purple);

    font-size: 13px;

    font-weight: 600;

    transition: all 0.25s ease;
}

.university-card:hover .course-pill {
    border-color: rgba(112, 38, 163, 0.15);
}


/* ==========================================
   CARD FOOTER
========================================== */

.university-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid rgba(75, 23, 107, 0.07);
}

.university-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary-purple);

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.university-link i {
    font-size: 10px;

    transition: transform 0.25s ease;
}

.university-link:hover {
    color: var(--secondary-purple);
}

.university-link:hover i {
    transform: translateX(4px);
}


/* ==========================================
   ADMISSION ICON BUTTON
========================================== */

.university-admission {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary-purple);

    cursor: pointer;

    transition: all 0.25s ease;
}

.university-admission:hover {
    background: var(--gold-hover);

    transform: translateY(-2px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .universities-section {
        padding: 75px 0;
    }

    .universities-title {
        font-size: 34px;
    }

    .university-logo-area {
        height: 160px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .universities-section {
        padding: 60px 0;
    }

    .universities-heading {
        margin-bottom: 35px;
    }

    .universities-title {
        font-size: 30px;
    }


    .university-card {
        border-radius: 17px;
    }

    .university-logo-area {
        height: 150px;
    }

    .university-content {
        padding: 21px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .universities-title {
        font-size: 27px;
    }

    .university-logo {
        width: 105px;
        height: 105px;
    }

    .university-content h3 {
        font-size: 19px;
    }

}

/* ==========================================
   FLOATING CONTACT BUTTONS
========================================== */

.floating-contact-buttons {
    position: fixed;

    right: 22px;
    bottom: 25px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 12px;
}


/* ==========================================
   COMMON BUTTON
========================================== */

.floating-contact-btn {
    display: flex;
    align-items: center;

    height: 52px;

    padding: 6px 18px 6px 7px;

    border-radius: 50px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(42, 9, 61, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    animation: floatingButtonIn 0.5s ease both;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(42, 9, 61, 0.25);
}


/* ==========================================
   ICON
========================================== */

.floating-btn-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 19px;
}


/* ==========================================
   TEXT
========================================== */

.floating-btn-text {
    padding-left: 10px;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;
}


/* ==========================================
   WHATSAPP
========================================== */

.floating-whatsapp {
    background: #25D366;

    color: #fff;
}

.floating-whatsapp:hover {
    color: #fff;

    background: #20BD5B;
}

.floating-whatsapp .floating-btn-icon {
    background: #fff;

    color: #25D366;
}


/* ==========================================
   CALL
========================================== */

.floating-call {
    background: var(--primary-purple);

    color: #fff;
}

.floating-call:hover {
    background: var(--secondary-purple);

    color: #fff;
}

.floating-call .floating-btn-icon {
    background: var(--gold);

    color: var(--primary-purple);
}


/* ==========================================
   ANIMATION
========================================== */

@keyframes floatingButtonIn {

    from {
        opacity: 0;

        transform: translateX(30px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .floating-contact-buttons {
        right: 15px;
        bottom: 18px;

        gap: 9px;
    }

    .floating-contact-btn {
        width: 48px;
        height: 48px;

        padding: 4px;

        justify-content: center;
    }

    .floating-btn-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 18px;
    }

    .floating-btn-text {
        display: none;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .floating-contact-buttons {
        right: 12px;
        bottom: 15px;
    }

    .floating-contact-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn-icon {
        width: 37px;
        height: 37px;

        flex-basis: 37px;

        font-size: 17px;
    }

}

/* ==========================================
   COURSES SECTION
========================================== */

.courses-section {
    position: relative;

    padding: 60px 0;

    background: var(--cream);

    overflow: hidden;
}


/* ==========================================
   HEADER
========================================== */

.courses-section-header {
    margin-bottom: 45px;
}

.courses-title {
    margin: 0;
}

.courses-title span {

    color: var(--secondary-purple);
}

.courses-intro {
    color: #68616d;

    font-size: 14px;

    line-height: 1.8;

    max-width: 500px;

    margin: 0;
}


/* ==========================================
   CAROUSEL
========================================== */

.courses-carousel-wrapper {
    position: relative;
}

.courses-carousel {
    padding: 10px 5px 25px;
}

.courses-carousel .owl-stage {
    display: flex;
}

.courses-carousel .owl-item {
    display: flex;
}

.course-item {
    width: 100%;

    padding: 5px;
}


/* ==========================================
   COURSE CARD
========================================== */

.course-card {
    position: relative;

    width: 100%;

    min-height: 355px;

    display: flex;

    flex-direction: column;

    padding: 28px 25px 22px;

    background: #fff;

    border: 1px solid rgba(75, 23, 107, 0.07);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--card-shadow);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.course-card:hover {
    transform: translateY(-7px);

    border-color: rgba(112, 38, 163, 0.18);

    box-shadow:
        0 18px 45px rgba(75, 23, 107, 0.14);
}


/* ==========================================
   COURSE NUMBER
========================================== */

.course-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: rgba(75, 23, 107, 0.07);

    font-size: 42px;

    font-weight: 800;

    line-height: 1;
}


/* ==========================================
   COURSE ICON
========================================== */

.course-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border-radius: 15px;

    background: rgba(255, 201, 40, 0.16);

    color: var(--primary-purple);

    font-size: 23px;

    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    background: var(--gold);

    transform: rotate(-4deg);
}


/* ==========================================
   CATEGORY
========================================== */

.course-category {
    display: inline-block;
    color: var(--secondary-purple);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 3px 10px;
    background: rgba(112, 38, 163, 0.07);
    border-radius: 20px;
}


/* ==========================================
   TITLE
========================================== */

.course-card h3 {
    color: var(--dark-text);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.course-card p {
    color: var(--dark-purple);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* ==========================================
   CARD BOTTOM
========================================== */

.course-card-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding-top: 17px;

    border-top: 1px solid rgba(75, 23, 107, 0.07);
}

.course-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-purple);
    font-size: 12px;
    font-weight: 600;
}

.course-status i {
    color: var(--gold);

    font-size: 9px;
}


/* ==========================================
   CARD ARROW
========================================== */

.course-arrow {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--primary-purple);

    color: #fff;

    cursor: pointer;

    transition: all 0.3s ease;
}

.course-arrow:hover {
    background: var(--gold);

    color: var(--primary-purple);

    transform: translateX(3px);
}


/* ==========================================
   FEATURED COURSE
========================================== */

.course-card-featured {
    border: 1px solid rgba(215, 25, 104, 0.20);

    background:
        linear-gradient(145deg,
            #fff 0%,
            #fff9fc 100%);
}

.course-card-featured::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            var(--magenta),
            var(--gold));
}


/* Featured badge */

.featured-badge {
    position: absolute;

    top: 17px;
    left: 20px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 9px;

    border-radius: 30px;

    background: rgba(215, 25, 104, 0.08);

    color: var(--magenta);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

.featured-badge i {
    color: var(--gold);

    font-size: 8px;
}


/* Move number lower on featured card */

.course-card-featured .course-number {
    top: 55px;

    color: rgba(215, 25, 104, 0.07);
}


/* Featured icon */

.course-card-featured .course-icon {
    background: rgba(215, 25, 104, 0.09);

    color: var(--magenta);

    margin-top: 25px;
}

.course-card-featured:hover .course-icon {
    background: var(--magenta);

    color: #fff;
}

.featured-status {
    color: var(--magenta);
}


/* ==========================================
   CUSTOM CONTROLS
========================================== */

.courses-carousel-controls {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 8px;
}

.courses-prev,
.courses-next {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(75, 23, 107, 0.12);

    border-radius: 50%;

    background: #fff;

    color: var(--primary-purple);

    cursor: pointer;

    transition: all 0.3s ease;
}

.courses-prev:hover,
.courses-next:hover {
    background: var(--primary-purple);

    border-color: var(--primary-purple);

    color: #fff;

    transform: translateY(-2px);
}

.courses-progress {
    min-width: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;
}

.courses-progress-current {
    color: var(--primary-purple);

    font-size: 12px;

    font-weight: 800;
}

.courses-progress-total {
    color: #aaa;

    font-size: 10px;

    font-weight: 600;
}

.courses-progress-line {
    width: 45px;
    height: 2px;

    background: var(--gold);

    border-radius: 5px;
}


/* ==========================================
   OWL DOTS
========================================== */

/* Owl native dots hidden — custom courses-carousel-controls used instead */
.courses-carousel .owl-dots {
    display: none !important;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .courses-section {
        padding: 75px 0;
    }

    .courses-title {
        font-size: 34px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .courses-section {
        padding: 60px 0;
    }

    .courses-section-header {
        margin-bottom: 30px;
    }

    .courses-title {
        font-size: 30px;
    }

    .courses-intro {
        font-size: 13px;
    }

    .course-card {
        min-height: 340px;

        padding: 25px 22px 20px;
    }

    .courses-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .course-item {
        padding: 3px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .courses-title {
        font-size: 27px;
    }

    .course-card {
        min-height: 330px;
    }

    .courses-carousel-controls {
        gap: 12px;
    }

    .courses-prev,
    .courses-next {
        width: 42px;
        height: 42px;
    }

}

/* ==========================================
   BRANCHES & CONTACT SECTION
========================================== */

.branches-contact-section {
    position: relative;

    padding: 50px 0;

    background: var(--light-bg);

    overflow: hidden;
}


/* ==========================================
   SECTION HEADING
========================================== */

.branches-section-heading {

    margin-bottom: 48px;
}



.branches-main-title span {
    color: var(--secondary-purple);
}

.branches-main-description {
    color: #000;


    font-size: 15px;

    line-height: 1.8;

    margin: 0;
}


/* ==========================================
   BRANCH WRAPPER
========================================== */

.branches-wrapper {
    height: 100%;
}


/* ==========================================
   HEAD OFFICE
========================================== */

.head-office-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px;

    margin-bottom: 35px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            var(--primary-purple),
            var(--secondary-purple));

    color: #fff;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(75, 23, 107, 0.16);
}

.head-office-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--gold);

    color: var(--primary-purple);

    font-size: 20px;
}

.head-office-content {
    position: relative;

    z-index: 2;
}

.head-office-label {
    display: block;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}

.head-office-content h3 {
    font-size: 20px;
    color: var(--cream);
    font-weight: 700;

    margin: 0 0 4px;
}

.head-office-content p {
    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    line-height: 1.5;

    margin: 0 0 8px;
}

.head-office-contact {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.head-office-contact a {
    color: #fff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;
}

.head-office-contact a i {
    color: var(--gold);

    margin-right: 5px;
}

.head-office-badge {
    position: absolute;

    right: 25px;
    top: 50%;

    transform: translateY(-50%);

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.14);

    font-size: 30px;
}


/* ==========================================
   BRANCH HEADING
========================================== */

.branch-list-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 20px;
}

.branch-list-heading>div:first-child>span {
    display: block;

    color: var(--secondary-purple);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 4px;
}

.branch-list-heading h3 {
    color: var(--dark-text);

    font-size: 22px;

    font-weight: 750;

    margin: 0;
}

.branch-count {
    display: flex;

    align-items: baseline;

    gap: 5px;
}

.branch-count strong {
    color: var(--primary-purple);

    font-size: 25px;

    font-weight: 800;
}

.branch-count span {
    color: var(--gold);

    font-size: 15px;
}


/* ==========================================
   BRANCH GRID
========================================== */

.branches-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.branch-card {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 55px;

    padding: 9px 12px;

    border-radius: 11px;

    background: #fff;

    border: 1px solid rgba(75, 23, 107, 0.06);

    box-shadow:
        0 4px 15px rgba(75, 23, 107, 0.035);

    text-decoration: none;

    transition: all 0.3s ease;
}

.branch-card:hover {
    border-color: rgba(112, 38, 163, 0.16);

    transform: translateX(4px);

    box-shadow: var(--card-shadow);
}

.branch-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255, 201, 40, 0.14);

    color: var(--primary-purple);

    font-size: 12px;

    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    background: var(--gold);
}

.branch-name {
    flex: 1;

    color: var(--dark-text);

    font-size: 15px;

    font-weight: 600;
}

.branch-arrow {
    color: #bbb;

    font-size: 9px;

    transition: all 0.3s ease;
}

.branch-card:hover .branch-arrow {
    color: var(--secondary-purple);

    transform: translateX(3px);
}


/* ==========================================
   CONTACT CARD
========================================== */

.contact-now-card {
    position: relative;

    height: 100%;

    min-height: 650px;

    padding: 4px;

    border-radius: 24px;

    background: linear-gradient(145deg,
            var(--primary-purple),
            var(--secondary-purple));

    box-shadow:
        0 20px 50px rgba(75, 23, 107, 0.18);

    overflow: hidden;
}

.contact-now-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border: 35px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.contact-now-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    left: -70px;
    bottom: -70px;

    background: var(--gold);

    opacity: 0.07;

    border-radius: 50%;
}

.contact-card-content {
    position: relative;

    z-index: 2;

    height: 100%;

    padding: 30px;

    border-radius: 21px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(8px);
}


/* ==========================================
   CONTACT HEADING
========================================== */

.contact-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: var(--gold);

    color: var(--primary-purple);

    font-size: 17px;
}

.contact-label {
    display: block;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;

    margin-bottom: 8px;
}

.contact-now-card h2 {
    color: #fff;

    font-size: 28px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 12px;
}

.contact-now-card h2 span {
    display: block;

    color: var(--gold);
}

.contact-now-card>.contact-card-content>p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* ==========================================
   FORM
========================================== */

.contact-form-group {
    margin-bottom: 13px;
}

.contact-form-group label {
    display: block;

    color: rgba(255, 255, 255, 0.9);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 6px;
}

.contact-form-group label span {
    color: var(--gold);
}

.contact-input {
    position: relative;
}

.contact-input>i {
    position: absolute;

    left: 13px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--secondary-purple);

    font-size: 12px;

    z-index: 2;

    pointer-events: none;
}

.contact-input input,
.contact-input select,
.contact-now-form textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.95);

    color: var(--dark-text);

    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;

    font-size: 11px;

    outline: none;

    transition: all 0.25s ease;
}

.contact-input input,
.contact-input select {
    height: 43px;

    padding: 0 12px 0 37px;
}

.contact-now-form textarea {
    min-height: 75px;

    padding: 11px 13px;

    resize: vertical;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-now-form textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(255, 201, 40, 0.12);
}


/* ==========================================
   SUBMIT
========================================== */

.contact-submit-btn {
    width: 100%;

    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 10px;

    background: var(--gold);

    color: var(--primary-purple);

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;

    margin-top: 5px;
}

.contact-submit-btn:hover {
    background: var(--gold-hover);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ==========================================
   DIRECT CONTACT
========================================== */

.direct-contact {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.direct-contact>span {
    color: rgba(255, 255, 255, 1);

    font-size: 15px;
}

.direct-contact>div {
    display: flex;

    gap: 8px;
}

.direct-contact a {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;
}

.direct-contact a:hover {
    color: var(--gold);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .branches-contact-section {
        padding: 75px 0;
    }

    .branches-main-title {
        font-size: 34px;
    }

    .contact-now-card {
        min-height: auto;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .branches-contact-section {
        padding: 60px 0;
    }

    .branches-section-heading {
        margin-bottom: 35px;
    }

    .branches-main-title {
        font-size: 30px;
    }

    .branches-main-description {
        font-size: 13px;
    }

    .head-office-card {
        padding: 18px;

        gap: 12px;
    }

    .head-office-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 17px;
    }

    .head-office-badge {
        display: none;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .contact-now-card {
        min-height: auto;

        border-radius: 20px;
    }

    .contact-card-content {
        padding: 24px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .branches-main-title {
        font-size: 27px;
    }

    .head-office-content h3 {
        font-size: 15px;
    }

    .head-office-contact {
        flex-direction: column;

        gap: 4px;
    }

    .branch-list-heading h3 {
        font-size: 19px;
    }

    .contact-now-card h2 {
        font-size: 25px;
    }

    .direct-contact {
        align-items: flex-start;

        flex-direction: column;
    }

}

/* ==========================================
   PAGE BANNER
========================================== */

.page-banner {
    position: relative;

    min-height: 290px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            var(--dark-purple) 0%,
            var(--primary-purple) 55%,
            var(--secondary-purple) 100%);

    isolation: isolate;
}


/* ==========================================
   CONTENT
========================================== */

.page-banner-content {
    position: relative;

    z-index: 5;

    padding: 65px 0 60px;
}


/* ==========================================
   SMALL LABEL
========================================== */

.page-banner-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.page-banner-label span {
    width: 28px;

    height: 2px;

    display: inline-block;

    background: var(--gold);

    border-radius: 5px;
}


/* ==========================================
   TITLE
========================================== */

.page-banner-title {
    margin: 0 0 16px;

    color: #fff;

    font-size: clamp(20px, 5vw, 35px);

    font-weight: 800;

    line-height: 1.1;

}


/* ==========================================
   BREADCRUMB
========================================== */

.page-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    margin: 0;

    padding: 0;
}

.page-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 1);

    font-size: 15px;

    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item a {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    transition: color 0.25s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";

    color: rgba(255, 255, 255, 0.3);

    padding-right: 7px;
}


/* ==========================================
   DECORATIVE CIRCLES
========================================== */

.banner-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}

.banner-circle-one {
    width: 390px;
    height: 390px;

    right: -100px;
    top: -170px;

    border: 70px solid rgba(255, 255, 255, 0.045);
}

.banner-circle-two {
    width: 230px;
    height: 230px;

    right: 17%;
    bottom: -170px;

    border: 45px solid rgba(255, 201, 40, 0.07);
}


/* ==========================================
   DECORATIVE DOT PATTERN
========================================== */

.banner-dots {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 180px;
    height: 130px;

    opacity: 0.3;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px,
            transparent 1px);

    background-size: 12px 12px;

    mask-image: linear-gradient(to top right,
            #000,
            transparent);

    -webkit-mask-image: linear-gradient(to top right,
            #000,
            transparent);

    z-index: 1;
}


/* ==========================================
   GOLD BOTTOM ACCENT
========================================== */

.page-banner::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            var(--gold),
            var(--magenta),
            var(--gold));

    z-index: 6;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .page-banner {
        min-height: 250px;
    }

    .page-banner-content {
        padding: 55px 0 50px;
    }

    .banner-circle-one {
        width: 300px;
        height: 300px;

        right: -100px;
        top: -130px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .page-banner {
        min-height: 220px;
    }

    .page-banner-content {
        padding: 48px 0 45px;
    }

    .page-banner-label {
        font-size: 8px;

        letter-spacing: 1.4px;
    }

    .page-banner-label span {
        width: 22px;
    }

    .page-banner-title {
        font-size: 34px;

        letter-spacing: -0.5px;

        margin-bottom: 13px;
    }

    .page-breadcrumb .breadcrumb-item {
        font-size: 10px;
    }

    .banner-circle-one {
        width: 230px;
        height: 230px;

        right: -110px;
        top: -100px;

        border-width: 40px;
    }

    .banner-circle-two {
        display: none;
    }

    .banner-dots {
        width: 130px;
        height: 90px;
    }

}




/* ==========================================
   MISSION & VISION SECTION
========================================== */

.mission-vision-section {
    position: relative;

    padding: 50px 0;

    background: var(--light-bg);

    overflow: hidden;
}


/* ==========================================
   HEADING
========================================== */

.mission-heading {

    margin: 0 auto 50px;
}



.mission-heading h2 span {
    color: var(--secondary-purple);
}



/* ==========================================
   MAIN CARD
========================================== */

.mission-vision-card {
    position: relative;

    min-height: 420px;

    padding: 38px;

    border-radius: 22px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.mission-vision-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(75, 23, 107, 0.13);
}


/* ==========================================
   MISSION CARD
========================================== */

.mission-card {
    background:
        linear-gradient(145deg,
            var(--primary-purple),
            var(--dark-purple));

    color: #fff;
}


.mission-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -140px;

    border: 55px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;
}


/* ==========================================
   VISION CARD
========================================== */

.vision-card {
    background: #fff;

    border: 1px solid rgba(75, 23, 107, 0.07);

    box-shadow:
        0 10px 30px rgba(75, 23, 107, 0.06);
}


.vision-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -120px;
    top: -120px;

    border: 45px solid rgba(255, 201, 40, 0.08);

    border-radius: 50%;
}


/* ==========================================
   NUMBER
========================================== */

.mv-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 70px;

    font-weight: 800;

    line-height: 1;

    opacity: 0.08;
}


.mission-card .mv-number {
    color: #fff;
}


.vision-card .mv-number {
    color: var(--primary-purple);
}


/* ==========================================
   ICON
========================================== */

.mv-icon {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 15px;

    font-size: 21px;
}


.mission-card .mv-icon {
    background: var(--gold);

    color: var(--primary-purple);
}


.vision-card .mv-icon {
    background: rgba(215, 25, 104, 0.08);

    color: var(--magenta);
}


/* ==========================================
   CONTENT
========================================== */

.mv-content {
    position: relative;

    z-index: 2;
}


.mv-label {
    display: block;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 9px;
}


.mission-card .mv-label {
    color: var(--gold);
}


.vision-card .mv-label {
    color: var(--magenta);
}


.mv-content h3 {
    font-size: 27px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 15px;
}


.mission-card .mv-content h3 {
    color: #fff;
}


.vision-card .mv-content h3 {
    color: var(--dark-text);
}


.mission-card .mv-content h3 span {
    color: var(--gold);
}


.vision-card .mv-content h3 span {
    color: var(--secondary-purple);
}


.mv-content p {
    max-width: 520px;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 23px;
}


.mission-card .mv-content p {
    color: rgba(255, 255, 255, 0.72);
}


.vision-card .mv-content p {
    color: var(--dark-purple);
}


/* ==========================================
   POINTS
========================================== */

.mv-points {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.mv-points div {
    display: flex;
    align-items: center;

    gap: 9px;
}


.mv-points i {
    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 8px;
}


.mission-card .mv-points i {
    background: rgba(255, 201, 40, 0.14);

    color: var(--gold);
}


.vision-card .mv-points i {
    background: rgba(112, 38, 163, 0.09);

    color: var(--secondary-purple);
}


.mv-points span {
    font-size: 14px;
    font-weight: 500;
}


.mission-card .mv-points span {
    color: rgba(255, 255, 255, 0.78);
}


.vision-card .mv-points span {
    color: #666;
}



/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 50px 0;
    }

    .mission-heading h2 {
        font-size: 35px;
    }

}


@media (max-width: 767px) {

    .mission-vision-section {
        padding: 40px 0;
    }

    .mission-heading {
        margin-bottom: 35px;
    }

    .mission-heading h2 {
        font-size: 30px;
    }

    .mission-vision-card {
        min-height: 390px;

        padding: 30px 25px;
    }

    .mv-content h3 {
        font-size: 24px;
    }



}


@media (max-width: 480px) {

    .mission-heading h2 {
        font-size: 27px;
    }

    .mission-vision-card {
        min-height: 370px;

        border-radius: 18px;
    }

    .mv-icon {
        width: 52px;
        height: 52px;

        font-size: 19px;
    }

    .mv-content h3 {
        font-size: 22px;
    }

    .mv-number {
        font-size: 58px;
    }

}

/* ==========================================
   ABOUT STORY SECTION
========================================== */

.about-story-section {
    position: relative;

    padding: 50px 0;

    background: var(--cream);

    overflow: hidden;
}


/* ==========================================
   IMAGE COMPOSITION
========================================== */

.about-image-wrapper {
    position: relative;

    min-height: 540px;

    width: 100%;
}


/* ==========================================
   MAIN IMAGE
========================================== */

.about-main-image {
    position: absolute;

    left: 25px;
    top: 20px;

    width: 76%;
    height: 455px;

    border-radius: 25px;

    overflow: hidden;

    background: var(--light-bg);

    box-shadow:
        0 20px 45px rgba(42, 9, 61, 0.14);

    z-index: 2;
}


.about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.about-main-image:hover img {
    transform: scale(1.04);
}


/* ==========================================
   IMAGE OVERLAY ICON
========================================== */

.about-image-overlay {
    position: absolute;

    left: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--gold);

    color: var(--primary-purple);

    font-size: 18px;

    box-shadow:
        0 8px 20px rgba(42, 9, 61, 0.18);
}


/* ==========================================
   SECOND IMAGE
========================================== */

.about-small-image {
    position: absolute;

    right: 0;
    bottom: 45px;

    width: 42%;
    height: 250px;

    padding: 7px;

    background: #fff;

    border-radius: 19px;

    box-shadow:
        0 18px 40px rgba(42, 9, 61, 0.14);

    z-index: 4;
}


.about-small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 14px;
}


/* ==========================================
   GOLD DECORATIVE SHAPE
========================================== */

.about-gold-shape {
    position: absolute;

    right: 7%;

    top: 0;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background: var(--gold);

    opacity: 0.15;

    z-index: 1;
}


/* ==========================================
   DOT PATTERN
========================================== */

.about-image-dots {
    position: absolute;

    left: 5px;
    top: 80px;

    width: 100px;
    height: 100px;

    background-image:
        radial-gradient(var(--secondary-purple) 1.4px,
            transparent 1.4px);

    background-size: 10px 10px;

    opacity: 0.3;

    z-index: 1;
}


/* ==========================================
   CONTENT
========================================== */

.about-story-content {
    padding-left: 20px;
}




.about-story-title span {

    color: var(--secondary-purple);
}





/* ==========================================
   FEATURES
========================================== */

.about-feature-list {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-top: 25px;

    margin-bottom: 27px;
}


.about-feature-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px 14px;

    background: var(--light-bg);

    border: 1px solid rgba(75, 23, 107, 0.06);

    border-radius: 11px;

    transition: all 0.3s ease;
}


.about-feature-item:hover {
    transform: translateX(5px);

    border-color: rgba(112, 38, 163, 0.15);

    box-shadow: var(--card-shadow);
}


.about-feature-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 201, 40, 0.15);

    color: var(--primary-purple);

    font-size: 14px;
}


.about-feature-item h4 {
    color: var(--dark-text);

    font-size: 15px;

    font-weight: 700;

    margin: 0 0 3px;
}


.about-feature-item p {
    color: var(--dark-text);

    font-size: 13px;

    line-height: 1.5;

    margin: 0;
}


/* ==========================================
   ACTION BUTTONS
========================================== */

.about-story-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 11px;
}


.about-story-primary,
.about-story-secondary {
    min-height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.about-story-primary {
    background: var(--primary-purple);

    color: #fff;
}


.about-story-primary:hover {
    background: var(--secondary-purple);

    color: #fff;

    transform: translateY(-2px);
}


.about-story-secondary {
    color: var(--primary-purple);

    background: transparent;

    border: 1px solid rgba(75, 23, 107, 0.16);
}


.about-story-secondary:hover {
    background: var(--primary-purple);

    color: #fff;

    border-color: var(--primary-purple);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .about-story-section {
        padding: 75px 0;
    }

    .about-story-content {
        padding-left: 0;
    }

    .about-story-title {
        font-size: 36px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .about-story-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        min-height: 470px;

        margin-bottom: 15px;
    }

    .about-main-image {
        left: 10px;
        top: 15px;

        width: 78%;
        height: 390px;

        border-radius: 20px;
    }

    .about-small-image {
        width: 42%;
        height: 190px;

        bottom: 50px;
    }


    .about-story-title {
        font-size: 31px;
    }


}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .about-image-wrapper {
        min-height: 400px;
    }

    .about-main-image {
        width: 82%;

        height: 335px;
    }

    .about-small-image {
        width: 43%;

        height: 160px;

        bottom: 35px;
    }


    .about-story-title {
        font-size: 28px;
    }

    .about-feature-item {
        padding: 11px;
    }

}