@import "theme.css";


/* --- NAVBAR STYLES --- */
.navbar {
    height: 80px;
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
}

.navbar-brand {
    margin-left: 15px;
    padding: 0;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: var(--transition-base);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #1a1a1a;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-base);
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #f0f0f0 !important;
    height: 70px;
}

.navbar-scrolled .nav-link {
    color: #1a1a1a !important;
}

.navbar-toggler {
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Underline Animation */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 80%;
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background-color: rgba(26, 26, 26, 0.95);
        z-index: 99999 !important;
        backdrop-filter: blur(15px);
        height: auto;
        padding: 1.2rem 0;
    }

    .navbar-brand img {
        height: 45px !important;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Custom Toggler Icon Color */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-scrolled {
        background-color: var(--brand-white) !important;
    }

    .navbar-scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-collapse {
        background-color: var(--brand-white);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-collapse .nav-link {
        color: var(--brand-dark) !important;
        padding: 0.8rem 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1rem;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 0.2rem;
    }

    .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-collapse .nav-link.active,
    .navbar-collapse .nav-link:hover {
        background-color: rgba(196, 30, 58, 0.05);
        color: var(--brand-primary) !important;
    }

    .navbar-collapse .nav-link::after {
        display: none;
    }
}

/* --- HERO SECTION REDESIGN --- */
.hero-section {
    min-height: 100vh;
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #8B1528 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: min(600px, 100vw);
    height: min(600px, 100vw);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: min(300px, 100vw);
    height: min(300px, 100vw);
    bottom: 50px;
    left: -50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--brand-primary);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-explore:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    color: var(--brand-primary);
}

/* Right Column */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
}

.hero-person-img {
    width: 100%;
    height: auto;
    border-radius: 10%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}



/* Bottom Stats Row */
.hero-stats-row {
    margin-top: 80px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box.box-1 {
    background: #e6fffa;
}

.stat-box.box-2 {
    background: #f0f5ff;
}

.stat-box.box-3 {
    background: #f5f3ff;
}

.stat-box.box-4 {
    background: #fff5f5;
}

.stat-icon {
    font-size: 1.5rem;
    color: #1A1A1A;
}

.stat-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1A1A1A;
}

.stat-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        margin-top: 60px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: block;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

/* --- GENERAL SECTION STYLES --- */
.section-padding {
    padding: 3.5rem 0;
    overflow: hidden !important;
    width: 100%;
    position: relative;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
}

/* --- ABOUT SECTION (REDESIGNED) --- */
.about-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    /* Enlarge vertical space */
    min-height: 80vh;
    /* Ensure section feels substantial */
    display: flex;
    align-items: center;
}

/* Left: clean figure, no wrapper effects */
.about-figure {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-figure-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: cover;
    object-position: top center;
    display: block;
    /* No border-radius, no shadow — just the raw figure */
}

/* Right: content */
.about-content {
    padding-left: 0.5rem;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0.5rem 0 1.25rem;
}

.about-desc {
    font-size: 1.05rem;
    color: #5a5a72;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature list */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.about-feature-icon i {
    font-size: 1.3rem;
    color: var(--brand-primary);
}

.about-feature-item:hover .about-feature-icon {
    background: rgba(196, 30, 58, 0.15);
}

.about-feature-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.about-feature-body p {
    font-size: 0.92rem;
    color: #6C757D;
    margin: 0;
    line-height: 1.6;
}

/* CTA link — matches reference "DISCOVER MORE →" style */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.25s ease, gap 0.25s ease;
}

.about-cta:hover {
    border-bottom-color: var(--brand-primary);
    gap: 0.85rem;
    color: var(--brand-primary);
}

.about-cta i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.about-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .about-heading {
        font-size: 2rem;
    }

    .about-figure-img {
        max-width: 360px;
    }
}

@media (max-width: 767.98px) {
    .about-heading {
        font-size: 1.7rem;
    }

    .about-content {
        padding-left: 0;
    }
}

/* --- SERVICES SECTION --- */
.services-section {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(196, 30, 58, 0.04) 100%);
}

.section-description {
    color: #6C757D;
    font-size: 1.1rem;
}

.service-card {
    background: linear-gradient(to bottom, rgba(196, 30, 58, 0.02), #FFFFFF);
    border: 1px solid rgba(196, 30, 58, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
    border-color: var(--brand-primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), #8B1528);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    color: #6C757D;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Animations Reveal */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* --- COURSES SECTION --- */
.courses-section {
    background-color: #fafafa;
    /* Neutral warm bg */
    position: relative;
    padding: 80px 0;
}

.course-section-label {
    display: inline-block;
    color: var(--brand-primary);
    /* Use brand color */
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.25rem;
}

.course-section-title {
    color: #1e293b;
    /* Dark blue/slate */
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Course Card */
.course-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card.animate-entrance {
    animation: courseSlideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes courseSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.course-img-wrapper {
    position: relative;
    width: 40%;
    flex-shrink: 0;
    background: #e2e8f0;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-price {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-primary);
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.4);
    z-index: 2;
}

.course-content {
    padding: 1.5rem 1.8rem;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.course-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.08);
    color: var(--brand-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.course-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #475569;
    font-weight: 600;
    flex-wrap: wrap;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.course-meta i {
    color: var(--brand-primary);
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .course-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .course-card {
        flex-direction: column;
    }

    .course-img-wrapper {
        width: 100%;
        height: 220px;
    }

    .course-content {
        width: 100%;
    }
}

/* --- WHY CHOOSE US SECTION (REMASTERED) --- */
.why-us-section {
    background-color: #fdfdfd;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Decorations */
.why-us-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.why-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s infinite alternate;
    pointer-events: none;
    /* Ensure blobs don't interfere with clicks */
}

.why-blob-1 {
    width: min(400px, 80vw);
    height: min(400px, 80vw);
    top: -50px;
    right: -50px;
}

.why-blob-2 {
    width: min(300px, 60vw);
    height: min(300px, 60vw);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.why-blob-3 {
    width: min(250px, 50vw);
    height: min(250px, 50vw);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.2);
    }
}

.why-main-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-top: 0.5rem;
    position: relative;
}

/* Feature Card - Premium Glassmorphism */
.why-feat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 30, 58, 0.1);
    border-radius: 24px;
    padding: 3.5rem 2.5rem 2.5rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Faded Number */
.why-feat-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(196, 30, 58, 0.05);
    line-height: 1;
    font-family: var(--font-heading);
    transition: all 0.5s ease;
}

.why-feat-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 30px 60px rgba(196, 30, 58, 0.12);
}

.why-feat-card:hover .why-feat-number {
    color: rgba(196, 30, 58, 0.1);
    transform: scale(1.2) translateY(-10px);
}

/* Icon Modernization */
.why-feat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-primary), #8B1528);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.2);
    transition: all 0.5s ease;
    position: relative;
}

.why-feat-icon i {
    font-size: 2rem;
    color: #fff;
    transition: transform 0.5s ease;
}

.why-feat-card:hover .why-feat-icon {
    transform: rotateY(180deg);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.4);
}

.why-feat-card:hover .why-feat-icon i {
    transform: rotateY(-180deg);
}

/* Card Title */
.why-feat-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Card Description */
.why-feat-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 2rem;
}

/* Modern Button-style Link */
.why-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--brand-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}


@media (max-width: 991.98px) {
    .why-main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .why-main-heading {
        font-size: 1.7rem;
    }

    .why-feat-card {
        padding: 2rem 1.5rem;
    }
}

/* --- TESTIMONIALS SECTION (REDESIGNED) --- */
.testimonials-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf6f8 50%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

/* === LEFT PANEL === */
.testi-left {
    padding-right: 1rem;
}

.testi-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin: 0.5rem 0 1rem;
}

.testi-subtext {
    font-size: 1rem;
    color: #6C757D;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Image Stack */
.testi-image-stack {
    position: relative;
    height: 480px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* Teacher image — fills the full stack */
.testi-teacher-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* === RIGHT PANEL — CAROUSEL === */
.testi-carousel-wrap {
    padding-left: 1rem;
}

/* Remove Bootstrap default carousel controls/indicators */
#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next,
#testimonialsCarousel .carousel-indicators {
    display: none !important;
}

/* Testimonial card */
.testi-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.testi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.testi-quote-icon {
    font-size: 3rem;
    color: var(--brand-primary);
    line-height: 1;
    opacity: 0.9;
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: #FFB400;
    font-size: 1.15rem;
}

.testi-text {
    font-size: 1.02rem;
    color: #3d3d3d;
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 1.8rem;
}

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fdf6f8;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
}

.testi-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(196, 30, 58, 0.2);
}

.testi-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback initial circle */
.testi-author-initial {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C41E3A, #8B1528);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testi-author-info h6 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin: 0 0 0.15rem;
}

.testi-author-info span {
    font-size: 0.82rem;
    color: #6C757D;
}

/* === CONTROLS === */
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.8rem;
}

.testi-arrows {
    display: flex;
    gap: 0.75rem;
}

.testi-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #FFFFFF;
    color: #6C757D;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testi-arrow:hover,
.testi-arrow--active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
    transform: scale(1.08);
}

.testi-arrow:active {
    transform: scale(0.95);
}

.testi-counter {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.testi-counter #testiCurrent {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.testi-counter-sep {
    margin: 0 0.35rem;
    color: #adb5bd;
}

.testi-counter-total {
    color: #adb5bd;
}

/* === Carousel slide transition tweak === */
#testimonialsCarousel .carousel-item {
    transition: opacity 0.5s ease;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.03);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .testi-image-stack {
        height: 360px;
        margin-bottom: 2rem;
    }

    .testi-carousel-wrap {
        padding-left: 0;
    }

    .testi-heading {
        font-size: 1.9rem;
    }
}

@media (max-width: 767.98px) {
    .testi-card {
        padding: 1.8rem 1.5rem;
    }

    .testi-carousel-wrap {
        padding: 0 1.2rem;
    }

    .testi-controls {
        padding: 0 0.5rem 2.5rem;
        margin-top: 1.5rem;
    }

    .testi-heading {
        font-size: 1.6rem;
    }

    .testi-image-stack {
        height: 280px;
    }
}

/* --- GALLERY SECTION (NEW) --- */
.gallery-section {
    background: #F8F9FA;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gal-item {
    display: block;
}

/* Removed featured span for masonry compatibility */

.gal-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    aspect-ratio: 4 / 3;
}

/* Removed explicit height constraints for Pinterest look */

.gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(196, 30, 58, 0.2);
}

.gal-card:hover img {
    transform: scale(1.07);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gal-card:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay-label {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.gal-overlay-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.gal-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(196, 30, 58, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.gal-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.4rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gal-card:hover .gal-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gal-placeholder {
    background: linear-gradient(135deg, #C41E3A 0%, #881428 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: default;
    min-height: 200px;
    border-radius: 16px;
    aspect-ratio: 4/3;
}

.gal-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.gal-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    padding: 0 1rem;
}

.gal-placeholder small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Lightbox */
.gal-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 80px 2rem 2rem;
    animation: fadeIn 0.4s ease;
}

.gal-lightbox-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gal-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gal-lightbox-overlay.active .gal-lightbox-img {
    transform: scale(1);
}

.gal-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gal-lightbox-close:hover {
    background: var(--brand-primary);
}

/* CTA strip */
.gallery-cta-strip {
    background: linear-gradient(135deg, #C41E3A 0%, #881428 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.gallery-cta-strip h4 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.gallery-cta-strip p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
}

.btn-gallery-cta {
    background: #FFFFFF;
    color: var(--brand-primary);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-gallery-cta:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* --- LOCATION & SOCIAL SECTION --- */
.location-section {
    background: #fff;
    position: relative;
}

.location-section .map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.social-links-section {
    padding: 3rem 0;
    background: #F8F9FA;
    border-radius: 20px;
}

.social-links-section h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-primary);
}

.contact-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.contact-info-wrapper {
    height: 100%;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.12);
    border-color: rgba(196, 30, 58, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--brand-primary), #8B1528);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.2);
}

.contact-card h5 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 0.75rem;
}

.contact-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-primary);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #8B1528;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: #6C757D;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.contact-address {
    font-size: 1rem;
    color: #2C2C2C;
    margin-bottom: 0;
}

/* Social Links */
.social-links {
    margin-top: 2.5rem;
}

.social-links h6 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--dark-primary);
    position: relative;
    display: inline-block;
}

.social-links h6::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--brand-primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(196, 30, 58, 0.1);
}

.social-icon:hover {
    background: var(--brand-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.social-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
}

.social-icon.whatsapp-icon:hover {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-primary);
}

.form-header p {
    color: #6C757D;
    font-size: 1rem;
}

.form-group label {
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--brand-primary);
}

.custom-input {
    border: 2px solid #F0F0F0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #FBFBFB;
}

.custom-input:focus {
    border-color: var(--brand-primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.08);
}

.contact-form .btn-primary-custom {
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-map {
    filter: grayscale(20%) contrast(110%);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* --- NEW LIGHT FOOTER STYLES --- */
.footer {
    background: #fff;
    border-top: 1px solid #eee;
    display: block;
    margin-top: 0;
}

.footer-main {
    background: #fff !important;
    padding: 5rem 0 3.5rem !important;
    color: #333 !important;
}

.footer-description {
    color: #666 !important;
    font-weight: 400 !important;
    margin-bottom: 2rem !important;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-heading {
    color: #1a1a1a !important;
    font-size: 1.1rem !important;
    font-weight: 700;
    margin-bottom: 1.8rem !important;
    position: relative;
    padding-bottom: 0;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--brand-primary);
}

.footer-menu a {
    color: #666 !important;
    font-size: 0.95rem;
    transition: all 0.3s ease !important;
    font-weight: 400 !important;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.footer-menu a:hover {
    color: var(--brand-primary) !important;
    transform: translateX(5px) !important;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    color: #333 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--brand-primary) !important;
    color: #fff !important;
    border-color: var(--brand-primary) !important;
}

/* Contact List with Icons */
.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 0.95rem;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--brand-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: var(--brand-primary);
}

/* App Buttons Look */
.footer-app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--brand-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-app-btn i {
    font-size: 1.8rem;
}

.footer-app-btn.dark {
    background: #1a1a1a;
}

.footer-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.footer-app-btn .btn-info span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-app-btn .btn-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.footer-bottom {
    background: #F0F4F8 !important;
    /* Light blue/grey bottom bar */
    padding: 1.5rem 0 !important;
    border-top: 1px solid #e1e8ef !important;
    color: #666 !important;
}

.footer-bottom strong {
    color: var(--brand-primary);
}

@media (max-width: 991.98px) {
    .footer-main {
        padding: 4rem 0 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .footer-heading {
        margin-bottom: 1.2rem !important;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-app-btns {
        align-items: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top:hover {
    background: #8B1528;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

@media (max-width: 991.98px) {
    .footer-main {
        padding: 4rem 0 2rem;
    }

    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        margin-top: 1rem;
        justify-content: center;
        display: flex;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 20px;
    }
}

/* --- OVERFLOW FIXES --- */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}

section,
header,
footer,
.navbar {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
    box-sizing: border-box;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 992px) {
    .row {
        padding: 0 35px;
    }
}

.container,
.container-fluid {
    max-width: 100% !important;
    overflow: hidden !important;
}

/* --- 4K & ULTRA WIDE RESPONSIVENESS --- */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (min-width: 1921px) {
    .container {
        max-width: 1600px !important;
    }
    
    html {
        font-size: 18px; /* Scales all rem-based units */
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 2561px) {
    .container {
        max-width: 2000px !important;
    }
    
    html {
        font-size: 22px;
    }

    .navbar {
        height: 100px;
    }
}

@media (min-width: 3840px) {
    .container {
        max-width: 2800px !important;
    }
    
    html {
        font-size: 26px;
    }
}

/* --- ADMISSION MODAL STYLES --- */
.custom-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.modal-banner img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: block;
}

.modal-footer-custom {
    background: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.modal-footer-custom .btn-primary-custom {
    font-size: 1.1rem;
    padding: 14px 40px;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

.btn-close-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-close-custom:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: rotate(90deg);
}

.btn-primary-custom {
    background: var(--brand-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #8B1528;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}