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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #174a84;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-start;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 5%;
}

.top-bar-contact .divider {
    opacity: 0.7;
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 9999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo-placeholder h2 {
    font-size: 20px;
    font-weight: 700;
    color: #cc252c;
    line-height: 1;
}

.logo-placeholder p {
    font-size: 16px;
    color: #174a84;
    font-weight: 600;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #cc252c;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #174a84;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, rgba(239, 247, 250, 1) 0%, rgba(226, 242, 238, 1) 35%, rgba(254, 233, 239, 1) 100%);

    /* rough approx minus header */
    position: relative;
    overflow: hidden;
    padding: 60px 0 0 0;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.banner-left {
    flex: 0 0 40%;
    max-width: 40%;
    z-index: 3;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #333;
    font-weight: 400;
    margin-bottom: 5px;
}

.sub-title {
    font-size: 46px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.courses-list {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
}

.admission-btn-wrapper {
    margin-bottom: 40px;
}

.btn-admissions {
    display: inline-block;
    background-color: #cc252c;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(204, 37, 44, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-admissions:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 37, 44, 0.4);
}

.rankings-box {
    background: white;
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.rankings-box img {
    height: 90px;
    width: 450px;
    object-fit: cover;
}

/* Middle Image */
.banner-middle {
    flex: 0 0 25%;
    position: absolute;
    bottom: -4px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 1;
}

.girl-img {
    height: 500px;
    object-fit: contain;
}

/* Right Content (Form) */
.banner-right {
    flex: 0 0 35%;
    max-width: 380px;
    z-index: 3;
    margin-left: auto;
}

.form-container {
    background: white;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.tab.active {
    color: #333;
    border-bottom: 2px solid #333;
}

.registration-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #555;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #174a84;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    width: 30%;
}

.phone-group input {
    width: 70%;
}

.row-group {
    display: flex;
    gap: 10px;
}

.row-group select {
    width: 50%;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    background-color: #1f456e;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #133252;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-left,
    .banner-right {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .banner-right {
        margin: 0 auto;
    }

    .banner-middle {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-bottom: -60px;
        /* pull down slightly */
    }

    .girl-img {
        height: 400px;
    }

    .top-bar-contact {
        justify-content: center;
        margin-left: 0;
    }
}

.logo-placeholder img {
    width: 250px;
}

/* Recognition Section */
.recognition-section {
    background-image: url('../images/IMG_20210913_160614-PANO.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.recognition-content {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    color: #222;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    line-height: 62px;
}

.recognition-section .section-title {
    color: #000 !important;
}

/* Slick Slider Adjustments */
.rankings-slider {
    padding: 0 40px;
    margin: 0 -15px;
    /* Offset slide padding */
}

.ranking-slide {
    padding: 20px 15px;
    /* Give space for zoom out and shadow */
    outline: none;
}

.ranking-card {
    background: #fdfdfd;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Zoom out effect on hover */
.ranking-card:hover {
    transform: scale(0.93);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ranking-card:hover .ranking-text-wrapper {
    background: #e0e5ed;
}

.ranking-img-wrapper {
    background: white;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Semi circle bottom shape overlapping text */
.ranking-img-wrapper::after {
    /* content: ""; */
    position: absolute;
    bottom: -30px;
    left: -10%;
    width: 120%;
    height: 60px;
    background: white;
    border-radius: 50%;
    z-index: -1;
}

.ranking-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    width: 100%;
}

/* Flip effect on image when card is hovered */
.ranking-card:hover .ranking-img-wrapper img {
    transform: rotateY(180deg);
}

.ranking-text-wrapper {
    background: #f0f2f5;
    padding: 45px 20px 30px;
    /* high top padding because the curve protrudes into it */
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.ranking-text-wrapper p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin: 0;
}

/* Arrows styling */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6);
    z-index: 5;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.slide-arrow:hover {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.slide-arrow svg {
    margin-left: 2px;
    /* slight visual center alignment */
}

.slick-prev svg {
    margin-left: -2px;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.text-red {
    color: #c92f2c;
}

/* Tabs */
.courses-tabs-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.courses-tabs {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 40px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.course-tab {
    padding: 12px 35px;
    border-radius: 35px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.course-tab.active {
    background: #e6e6e6;
    color: #222;
}

/* Courses Sliders */
.courses-slider-wrapper {
    margin-bottom: 20px;
}

.courses-slider {
    padding: 0 40px;
    margin: 0 -15px;
}

.course-slide {
    padding: 20px 15px;
    outline: none;
}

.course-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.course-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zoom out effect on hovering */
.course-card:hover {
    transform: scale(0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Dark Arrow variant for courses section */
.slick-arrow-dark {
    border: 2px solid #ddd;
    color: #aaa;
    background: #fff;
    width: 46px;
    height: 46px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slick-arrow-dark:hover {
    color: #666;
    border-color: #bbb;
    background: #fafafa;
}

/* About Section */
.about-section {
    padding: 100px 0 200px 0;
    background: #f4f5f7;
    /* Very light grey */
    overflow: hidden;
    position: relative;
}

.about-section .container {
    position: relative;
}

.about-content {
    display: block;
    /* position: relative; */
    z-index: 2;
}

.about-text-column {
    width: 60%;
    padding-right: 20px;
}

.about-text-column p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.about-image-column {
    position: absolute;
    bottom: -220px;
    right: 0px;
    width: 75%;
    z-index: 1;
    pointer-events: none;
}

.about-image-column img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slide Down Effect */
.slide-down-text {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-down-text.delay-1 {
    transition-delay: 0.3s;
}

.slide-down-text.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .about-text-column {
        width: 100%;
    }

    .about-image-column {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0;
        text-align: center;
    }
}

.about-section h2.section-title {
    margin-bottom: 100px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* very soft grey shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #fafafa;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card p {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Flip Out Entrance Animation */
.flip-out {
    opacity: 0;
    transform: perspective(800px) rotateY(-90deg) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-out.animate {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) scale(1);
}

/* Delays */
.flip-out.delay-1 {
    transition-delay: 0.1s;
}

.flip-out.delay-2 {
    transition-delay: 0.2s;
}

.flip-out.delay-3 {
    transition-delay: 0.3s;
}

.flip-out.delay-4 {
    transition-delay: 0.4s;
}

.flip-out.delay-5 {
    transition-delay: 0.5s;
}

.flip-out.delay-6 {
    transition-delay: 0.6s;
}

.flip-out.delay-7 {
    transition-delay: 0.7s;
}

.flip-out.delay-8 {
    transition-delay: 0.8s;
}

.flip-out.delay-9 {
    transition-delay: 0.9s;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Learners Section */
.learners-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #edf5fc 55%, #ffffff 55%);
    overflow: hidden;
}

.learners-slider {
    margin: 40px -15px 0 -15px;
    padding: 0 40px;
}

.learner-slide {
    padding: 20px 15px;
    outline: none;
}

.learner-card {
    background: #ffffff;
    border-radius: 20px;
    border: 8px solid transparent;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.learner-card:hover {
    transform: translateY(-5px);
}

.border-maroon {
    border-color: #7b1f24;
}

.border-maroon .learner-name {
    color: #7b1f24;
}

.border-maroon .learner-desc {
    color: #7b1f24;
}

.border-blue {
    border-color: #1c3078;
}

.border-blue .learner-name {
    color: #1c3078;
}

.border-blue .learner-desc {
    color: #1c3078;
}

.border-red {
    border-color: #c92f2c;
}

.border-red .learner-name {
    color: #c92f2c;
}

.border-red .learner-desc {
    color: #c92f2c;
}

.learner-video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.vimeo-thumb {
    width: 100%;
    height: auto;
    min-height: 250px;
    display: block;
    background: #ccc;
    /* placeholder while loading */
}

.play-icon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.play-icon-overlay svg {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    transition: transform 0.3s;
}

.learner-card:hover .play-icon-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.learner-card:hover .play-icon-overlay svg {
    transform: scale(1.1);
}

.learner-info {
    padding: 20px 15px;
    text-align: center;
    min-height: 100px;
}

.learner-name {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.learner-desc {
    font-size: 14px;
    font-weight: 500;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: black;
    border-radius: 8px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.video-close:hover {
    color: #ccc;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Admission Journey Section */
.admission-journey-section {
    padding: 80px 0;
    background: #f4f5f7;
    overflow: hidden;
}

.journey-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

.journey-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.journey-mobile {
    display: none !important;
    /* Hidden on desktop */
}

@media (max-width: 768px) {
    .journey-desktop {
        display: none !important;
        /* Hide desktop image */
    }

    .journey-mobile {
        display: block !important;
        /* Show mobile image */
    }
}

/* Recruiting Partners Section */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.partners-slider-wrapper {
    margin-top: 50px;
}

.partner-slide {
    padding: 0 40px;
    outline: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-slide img {
    max-width: 100%;
    max-height: 80px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.partner-slide:hover img {
    transform: scale(1.05);
}

/* Panorama / Stats Section */
.panorama-section {
    padding: 70px 0;
    background: url('../images/Landing\ Page\ Banner\ Panorama\ Background.jpg') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}
.panorama-section .container {
    position: relative;
    z-index: 2;
}

.panorama-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 55px;
    font-family: 'Roboto', sans-serif;
}

.panorama-section h2.section-title {
    color: #fff;
    margin-bottom: 60px;
}

.panorama-stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0 10px;
}

.stat-icon {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.stat-icon img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    /* make icons white */
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #f5a623;
    /* golden/orange color like screenshot */
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
    align-self: stretch;
    min-height: 120px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .panorama-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .panorama-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 45%;
        flex: none;
    }

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1c2957 0%, #2d4a8a 50%, #1a3a6b 100%);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.cta-bg-image {
    width: 100%;
    line-height: 0;
}

.cta-bg-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.cta-section .container.relative-z {
    position: relative;
    z-index: 2;
    padding: 70px 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-hashtag {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.cta-divider {
    width: 60px;
    height: 3px;
    background: #c92f2c;
    margin: 0 auto 25px auto;
}

.cta-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f1f1f1;
}

.cta-btn {
    display: inline-block;
    background: #c92f2c;
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #a82624;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-desc {
        font-size: 16px;
    }

    .cta-desc br {
        display: none;
    }

    .cta-bg-image img {
        max-height: 300px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f0f4f9;
}

.faq-section .section-title {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    gap: 15px;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

.faq-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
    padding: 4px 8px;
    flex-shrink: 0;
    opacity: 0;
    /* hidden when closed */
    transition: opacity 0.2s;
}

.faq-item.active .faq-close-btn {
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0;
}

.faq-item.active .faq-question span {
    color: #1c3078;
}

@media (max-width: 768px) {
    .faq-question span {
        font-size: 15px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }
}

/************************Responsive Styles *************************/

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
    z-index: 1100;
}

.hamburger:hover {
    background: #f5f5f5;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger span:not(:last-child) {
    margin-bottom: 5px;
}

/* Hamburger ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 125px;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 10px 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 28px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

.mobile-nav ul li a:hover {
    background: #fdf5f5;
    color: #c0392b;
    padding-left: 36px;
}

/* ===== BREAKPOINT: 1200px ===== */
@media (max-width: 1200px) {
    .main-nav {
        display: none;
        /* hide desktop nav */
    }

    .hamburger {
        display: flex;
        /* show hamburger */
    }

    .mobile-nav,
    .mobile-menu-overlay {
        display: block;
        /* enable mobile elements */
    }
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}
/* MODAL */
.mro-modal{
  /* display:none; */
  position:fixed;
  z-index:9999;
  right: -400px;
  top:0;
  /* background:rgba(0,0,0,0.6); */
  justify-content: end;
  align-items:center;
  transform: translateX(96%);
}
.registeropen {
    width: 500px !important;
    position: fixed;
    right: 400px;
    top: 1%;
    z-index: 99999999 !important
    z-index: 1111;
    width: auto;
    /* border: 1px solid #000; */
}

.mro-modal-content{
  background: transparent;
  padding:20px;
  border-radius:10px;
  max-width: 400px;
  width:90%;
  z-index: 9999999;
  position:relative;
}
/* CLOSE BUTTON */
.mro-close{
  position:absolute;
  top: 4% !important;
  right: -18px;
  font-size:20px;
  /* background: #fff; */
  cursor:pointer;
}
/* Responsive */
@media(max-width:768px){
  .mro-top-new{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }
  .mro-bottom-new{
    grid-template-columns:1fr;
    text-align:center;
  }
  .mro-big-new{
    font-size:28px;
  }
  .mro-logo-new{
    font-size:32px;
  }
}

.close-button {
    position: absolute;
    top: -48px !important;
}