/* Font Awesome Support */
.fas,
.far,
.fab,
.fa {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}

.fab {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

.far {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 400 !important;
}


/* Orientation Hero Section */
.orientation-hero {
    position: relative;
    /* overflow: hidden; Removed to allow dots to float freely */
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 120px 20px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle background shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    background: #2c4c9c;
    top: -150px;
    right: -150px;
    animation: morphShape 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: #2c4c9c;
    bottom: -100px;
    left: -100px;
    animation: morphShape 25s ease-in-out infinite reverse;
}

/* Floating shapes around content */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.shape-float {
    position: absolute;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.08), rgba(44, 76, 156, 0.12));
    opacity: 0.6;
}

.shape-1 {
    width: 180px;
    height: 180px;
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
    top: 10%;
    left: 8%;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-2 {
    width: 140px;
    height: 140px;
    border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
    top: 15%;
    right: 10%;
    animation: floatShape 18s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    bottom: 20%;
    left: 12%;
    animation: floatShape 20s ease-in-out infinite;
    animation-delay: 4s;
}

.shape-4 {
    width: 160px;
    height: 160px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    right: 15%;
    animation: floatShape 22s ease-in-out infinite reverse;
    animation-delay: 6s;
}

/* Minimal dots decoration */
.dot-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.15;
    animation: dotFloat 8s ease-in-out infinite;
}

.dot:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.dot:nth-child(3) {
    bottom: 25%;
    left: 18%;
    animation-delay: 4s;
}

.dot:nth-child(4) {
    bottom: 35%;
    right: 25%;
    animation-delay: 6s;
}

.dot:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

/* Corner accents */
.corner-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    pointer-events: none;
}

.corner-top-left {
    top: 40px;
    left: 40px;
    border-top: 2px solid rgba(44, 76, 156, 0.15);
    border-left: 2px solid rgba(44, 76, 156, 0.15);
    animation: expandCorner 3s ease-in-out infinite;
}

.corner-bottom-right {
    bottom: 40px;
    right: 40px;
    border-bottom: 2px solid rgba(44, 76, 156, 0.15);
    border-right: 2px solid rgba(44, 76, 156, 0.15);
    animation: expandCorner 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Decorative wavy line */
.wave-decoration {
    width: 180px;
    opacity: 0.15;
    margin: 0 auto 20px;
    display: block;
}

/* Tagline */
.hero-tagline {
    font-size: 12px;
    font-weight: 600;
    color: #2c4c9c;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: fadeInDown 1s ease-out;
}

/* Main heading */
.orientation-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.orientation-hero h1 span {
    color: #2c4c9c;
    position: relative;
    display: inline-block;
}

.orientation-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2c4c9c, transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

/* Description */
.orientation-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Buttons styling */
.orientation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}



/* Animations */
@keyframes morphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        transform: scale(1.05);
    }

    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        transform: scale(0.95);
    }
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes dotFloat {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.3;
    }
}

@keyframes expandCorner {

    0%,
    100% {
        width: 80px;
        height: 80px;
        opacity: 0.15;
    }

    50% {
        width: 100px;
        height: 100px;
        opacity: 0.25;
    }
}

@keyframes lineGrow {

    0%,
    100% {
        transform: scaleX(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .orientation-hero {
        padding: 80px 20px;
        min-height: 70vh;
    }

    .orientation-hero h1 {
        font-size: 36px;
    }

    .orientation-description {
        font-size: 16px;
    }

    .orientation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 12px 28px;
    }

    .floating-shapes {
        display: none;
    }

    .dot-decoration {
        display: none;
    }

    .corner-accent {
        width: 60px;
        height: 60px;
    }

    .corner-top-left {
        top: 20px;
        left: 20px;
    }

    .corner-bottom-right {
        bottom: 20px;
        right: 20px;
    }
}


.video-rundown-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    /* overflow: hidden; */
    /* isolation: isolate; */
}

/* Background decorative shapes */
.rundown-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.rundown-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.rundown-shape-1 {
    width: 350px;
    height: 350px;
    background: #2c4c9c;
    top: 150px;
    right: -100px;
    animation: rundownMorphShape 20s ease-in-out infinite;
}

.rundown-shape-2 {
    width: 280px;
    height: 280px;
    background: #2c4c9c;
    bottom: 200px;
    left: -80px;
    animation: rundownMorphShape 25s ease-in-out infinite reverse;
}

.rundown-shape-3 {
    width: 220px;
    height: 220px;
    background: #2c4c9c;
    top: 40%;
    left: 45%;
    animation: rundownMorphShape 30s ease-in-out infinite;
    animation-delay: 5s;
}

/* Section header */
.rundown-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.rundown-line-accent {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            #2c4c9c 50%,
            transparent 100%);
    margin: 0 auto 20px;
    opacity: 0.3;
    animation: rundownLineExpand 3s ease-in-out infinite;
}

.rundown-badge-wrapper {
    margin-bottom: 20px;
}

.rundown-badge-pill {
    display: inline-block;
    padding: 12px 28px;
    background: #2c4c9c;
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: rundownBadgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
}

.rundown-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

/* Video Container */
.rundown-video-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.rundown-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 76, 156, 0.15);
    background: #f0f0f0;
}

.rundown-video-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.rundown-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 76, 156, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rundown-video-container:hover .rundown-video-overlay {
    background: rgba(44, 76, 156, 0.5);
}

.rundown-video-container:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.rundown-play-btn {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #2c4c9c;
    font-size: 28px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rundown-play-btn i {
    margin-left: 5px;
}

.rundown-play-btn:hover {
    transform: scale(1.1);
    background: #2c4c9c;
    color: #ffffff;
}

.rundown-play-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    opacity: 0.6;
    animation: rundownPulse 2s ease-out infinite;
}

/* Accordion Container */
.rundown-accordion-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rundown-accordion-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rundown-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(44, 76, 156, 0.15);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.rundown-accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
}

.rundown-accordion-header:hover {
    background: #f8f9fa;
}

.rundown-accordion-header[aria-expanded="true"] {
    background: #2c4c9c;
    color: #ffffff;
}

.rundown-accordion-header[aria-expanded="true"] .rundown-accordion-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.rundown-accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: inherit;
    flex: 1;
}

.rundown-accordion-icon {
    font-size: 14px;
    color: #2c4c9c;
    transition: all 0.3s ease;
}

.rundown-accordion-collapse {
    transition: height 0.3s ease;
}

.rundown-accordion-body {
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.rundown-accordion-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c8f;
    margin: 0;
}

/* Floating dots */
.rundown-floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.rundown-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.1;
}

.rundown-dot-1 {
    top: 15%;
    left: 10%;
    animation: rundownFloatDot 6s ease-in-out infinite;
}

.rundown-dot-2 {
    top: 25%;
    right: 15%;
    animation: rundownFloatDot 7s ease-in-out infinite;
    animation-delay: 1s;
}

.rundown-dot-3 {
    bottom: 30%;
    left: 20%;
    animation: rundownFloatDot 8s ease-in-out infinite;
    animation-delay: 2s;
}

.rundown-dot-4 {
    bottom: 20%;
    right: 25%;
    animation: rundownFloatDot 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Fix for Leaders Message Section z-index */
.leaders-message-section {
    position: relative;
    z-index: 1 !important;
    isolation: isolate;
}

.leaders-messages-container {
    position: relative;
    z-index: 2 !important;
}

.leader-message-card {
    position: relative;
    z-index: 3 !important;
}

/* Ensure proper stacking context */
.leaders-bg-shapes,
.leaders-floating-dots {
    z-index: 0 !important;
}

/* Fix for sections above leaders message */
.video-rundown-section,
.campus-tour,
.about-us-section,
.journey-section {
    position: relative;
    z-index: auto !important;
}

/* Ensure background shapes don't overlap */
.rundown-bg-shapes,
.campus-bg-shapes,
.about-bg-shapes,
.journey-bg-shapes {
    z-index: 0 !important;
}

/* Fix accordion when expanding */
.rundown-accordion-container {
    position: relative;
    z-index: 2 !important;
}

.accordion-item,
.rundown-accordion-item {
    position: relative;
    z-index: 3 !important;
}

.accordion-collapse {
    position: relative;
    z-index: 4 !important;
}

/* Fix stacking context for all sections */
.video-rundown-section,
.leaders-message-section,
.campus-tour,
.about-us-section,
.journey-section,
.faq-section {
    position: relative;
    z-index: auto !important;
    isolation: auto !important;
}

/* Remove isolation from leaders section */
.leaders-message-section {
    isolation: auto !important;
}

/* Reset z-index for background shapes */
.leaders-bg-shapes,
.rundown-bg-shapes,
.campus-bg-shapes,
.about-bg-shapes,
.journey-bg-shapes {
    z-index: -1 !important;
    position: absolute !important;
}

/* Fix for floating dots */
.leaders-floating-dots,
.rundown-floating-dots,
.campus-floating-dots,
.about-floating-dots,
.journey-floating-dots {
    z-index: 0 !important;
    position: absolute !important;
}

/* Ensure content is properly stacked */
.leaders-section-header,
.leaders-filter-tabs,
.leaders-messages-container,
.rundown-section-header,
.rundown-video-wrapper,
.rundown-accordion-container {
    position: relative;
    z-index: 1 !important;
}

/* Fix for accordion expansion */
.accordion-collapse.show {
    z-index: 10 !important;
}

/* Fixed Modal Styles */
.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.85;
    z-index: var(--bs-backdrop-zindex) !important;
    background-color: rgba(0, 0, 0, var(--bs-backdrop-opacity));
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.video-modal,
#rundownVideoModal,
#videoModal,
#founderVideoModal,
#deansVideoModal {
    --bs-modal-zindex: 1055;
    z-index: var(--bs-modal-zindex) !important;
}

.video-modal .modal-dialog,
#rundownVideoModal .modal-dialog,
#videoModal .modal-dialog,
#founderVideoModal .modal-dialog,
#deansVideoModal .modal-dialog {
    z-index: 1060;
    max-width: 90% !important;
    width: 1000px !important;
    margin: 30px auto !important;
}

.video-modal .modal-content,
#rundownVideoModal .modal-content,
#videoModal .modal-content,
#founderVideoModal .modal-content,
#deansVideoModal .modal-content {
    z-index: 1061;
    background-color: #000 !important;
    position: relative;
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.video-modal iframe,
#rundownVideoModal iframe,
#videoModal iframe,
#founderVideoModal iframe,
#deansVideoModal iframe {
    z-index: 1062;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

.video-modal .modal-dialog,
#rundownVideoModal .modal-dialog,
#videoModal .modal-dialog {
    max-width: 90%;
    width: 1000px;
    margin: 30px auto;
    pointer-events: all;
}

.video-modal .modal-content,
#rundownVideoModal .modal-content,
#videoModal .modal-content {
    background-color: #000 !important;
    border: none !important;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal .modal-body,
#rundownVideoModal .modal-body,
#videoModal .modal-body {
    padding: 0;
    background: #000;
    min-height: 400px !important;
}

.video-modal .btn-close-white,
#rundownVideoModal .btn-close-white,
#videoModal .btn-close-white {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    filter: brightness(200%);
    background-size: 20px;
    z-index: 9999;
}

.video-modal .ratio,
#rundownVideoModal .ratio,
#videoModal .ratio {
    background: #000;
    position: relative !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden !important;
}

.video-modal iframe,
#rundownVideoModal iframe,
#videoModal iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Additional fix for all video modals */
#founderVideoModal .modal-dialog,
#deansVideoModal .modal-dialog {
    max-width: 90%;
    width: 1000px;
    margin: 30px auto;
    pointer-events: all;
}

#founderVideoModal .modal-content,
#deansVideoModal .modal-content {
    background-color: #000 !important;
    border: none !important;
    border-radius: 8px;
    overflow: hidden;
}

#founderVideoModal .modal-body,
#deansVideoModal .modal-body {
    padding: 0;
    background: #000;
    min-height: 400px !important;
}

#founderVideoModal .btn-close-white,
#deansVideoModal .btn-close-white {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    filter: brightness(200%);
    background-size: 20px;
    z-index: 9999;
}

#founderVideoModal .ratio,
#deansVideoModal .ratio {
    background: #000;
    position: relative !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden !important;
}

#founderVideoModal iframe,
#deansVideoModal iframe {
    border: none;
    width: 100%;
    height: 100%;
}

@-webkit-keyframes rundownMorphShape {

    0%,
    100% {
        border-radius: 50%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}

@keyframes rundownMorphShape {

    0%,
    100% {
        border-radius: 50%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}

@keyframes rundownFloatDot {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes rundownLineExpand {

    0%,
    100% {
        width: 80px;
        opacity: 0.3;
    }

    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes rundownBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes rundownPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes badgePulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(44, 76, 156, 0.3);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
    }
}

@media (max-width: 768px) {
    .video-rundown-section {
        padding: 60px 0;
    }

    .rundown-section-header h2 {
        font-size: 32px;
    }

    .rundown-badge-pill {
        font-size: 12px;
        padding: 10px 20px;
    }

    .rundown-accordion-header {
        padding: 18px 20px;
    }

    .rundown-accordion-title {
        font-size: 16px;
    }

    .rundown-accordion-body {
        padding: 20px;
    }

    .rundown-accordion-body p {
        font-size: 15px;
    }

    .rundown-play-btn {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .rundown-play-pulse {
        width: 70px;
        height: 70px;
    }

    .rundown-shape,
    .rundown-floating-dots {
        display: none;
    }
}

.about-us-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    /* overflow: hidden; */
    /* isolation: isolate; */

}

/* Background decorative shapes */
.about-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.about-shape-1 {
    width: 350px;
    height: 350px;
    background: #2c4c9c;
    top: 100px;
    left: -100px;
    animation: aboutMorphShape 20s ease-in-out infinite;
}

.about-shape-2 {
    width: 280px;
    height: 280px;
    background: #2c4c9c;
    bottom: 150px;
    right: -80px;
    animation: aboutMorphShape 25s ease-in-out infinite reverse;
}

.about-shape-3 {
    width: 220px;
    height: 220px;
    background: #2c4c9c;
    top: 50%;
    right: 30%;
    animation: aboutMorphShape 30s ease-in-out infinite;
    animation-delay: 5s;
}

/* Section header */
.about-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-line-accent {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2c4c9c 50%, transparent 100%);
    margin: 0 auto 20px;
    opacity: 0.3;
    animation: aboutLineExpand 3s ease-in-out infinite;
}

.about-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
}

/* About content layout */
.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left side - Image */
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 76, 156, 0.15);
    transition: transform 0.4s ease;
}

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

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(44, 76, 156, 0.15);
    backdrop-filter: blur(10px);
    z-index: 2;
    animation: aboutBadgeFloat 3s ease-in-out infinite;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #2c4c9c;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #5a6c8f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-decoration {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.1), rgba(44, 76, 156, 0.05));
    border-radius: 20px;
    z-index: -1;
}

/* Right side - Info */
.about-info {
    flex: 1;
}

.about-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c4c9c;
    margin-bottom: 20px;
}

.about-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c8f;
    margin-bottom: 35px;
}

/* Stats cards */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(44, 76, 156, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(44, 76, 156, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(44, 76, 156, 0.08);
    border-color: rgba(44, 76, 156, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 76, 156, 0.15);
}

.stat-icon {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    color: #2c4c9c;
}

.stat-card h4 {
    font-size: 28px;
    font-weight: 800;
    color: #2c4c9c;
    margin: 10px 0;
}

.stat-card p {
    font-size: 13px;
    color: #5a6c8f;
    margin: 0;
    font-weight: 500;
}

/* Learn More Button */
.btn-learn-more {
    display: inline-block;
    padding: 14px 35px;
    background: #2c4c9c;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
}

.btn-learn-more:hover {
    background: #1a3a7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 76, 156, 0.3);
    color: #ffffff;
}

/* Floating dots */
.about-floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.about-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.1;
}

.about-dot-1 {
    top: 25%;
    left: 15%;
    animation: aboutFloatDot 6s ease-in-out infinite;
}

.about-dot-2 {
    bottom: 30%;
    right: 20%;
    animation: aboutFloatDot 8s ease-in-out infinite;
    animation-delay: 2s;
}

.about-dot-3 {
    top: 60%;
    left: 50%;
    animation: aboutFloatDot 7s ease-in-out infinite;
    animation-delay: 4s;
}

/* ============================================
CAMPUS TOUR SECTION
============================================ */
.campus-tour {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    /* overflow: hidden; */
    /* isolation: isolate; */
}

/* Background decorative shapes */
.campus-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.campus-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.campus-shape-1 {
    width: 320px;
    height: 320px;
    background: #2c4c9c;
    top: 120px;
    right: -80px;
    animation: campusMorphShape 22s ease-in-out infinite;
}

.campus-shape-2 {
    width: 260px;
    height: 260px;
    background: #2c4c9c;
    bottom: 100px;
    left: -60px;
    animation: campusMorphShape 28s ease-in-out infinite reverse;
}

/* Campus tour content layout */
.campus-tour-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left side - Text */
.campus-tour-info {
    flex: 1;
}

.campus-line-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2c4c9c, transparent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.campus-tour-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c4c9c;
    margin-bottom: 20px;
}

.campus-tour-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c8f;
    margin-bottom: 30px;
}

/* Right side - Video */
.campus-tour-video {
    flex: 1;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 76, 156, 0.15);
}

.video-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 76, 156, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    background: rgba(44, 76, 156, 0.5);
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c4c9c;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.play-btn i {
    margin-left: 3px;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #2c4c9c;
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(44, 76, 156, 0.3);
}

.play-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    opacity: 0.6;
    animation: leadersPulse 2s ease-out infinite;
}

.video-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.1), rgba(44, 76, 156, 0.05));
    border-radius: 20px;
    z-index: -1;
}

/* Floating dots */
.campus-floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.campus-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.1;
}

.campus-dot-1 {
    top: 20%;
    right: 25%;
    animation: campusFloatDot 7s ease-in-out infinite;
}

.campus-dot-2 {
    bottom: 25%;
    left: 20%;
    animation: campusFloatDot 9s ease-in-out infinite;
    animation-delay: 3s;
}

.campus-dot-3 {
    top: 55%;
    right: 40%;
    animation: campusFloatDot 8s ease-in-out infinite;
    animation-delay: 5s;
}

/* ============================================
ANIMATIONS
============================================ */
@keyframes aboutMorphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        transform: scale(1.1);
    }

    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        transform: scale(0.95);
    }
}

@keyframes campusMorphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: scale(1);
    }

    33% {
        border-radius: 45% 55% 60% 40% / 55% 60% 40% 45%;
        transform: scale(1.08);
    }

    66% {
        border-radius: 55% 45% 40% 60% / 65% 35% 65% 35%;
        transform: scale(0.92);
    }
}

@keyframes aboutFloatDot {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes campusFloatDot {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-25px) translateX(-10px);
        opacity: 0.2;
    }
}

@keyframes aboutLineExpand {

    0%,
    100% {
        width: 80px;
        opacity: 0.3;
    }

    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes aboutBadgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes leadersPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================
RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {

    .about-content,
    .campus-tour-content {
        flex-direction: column;
        gap: 40px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .about-us-section,
    .campus-tour {
        padding: 60px 0;
    }

    .about-section-header h2,
    .campus-tour-info h3 {
        font-size: 32px;
    }

    .about-info h3 {
        font-size: 28px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-shape,
    .campus-shape {
        display: none;
    }

    .about-floating-dots,
    .campus-floating-dots {
        display: none;
    }

    .image-badge {
        top: 10px;
        right: 10px;
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 24px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
}

/* Orientation Page Specific Styles */
.orientation-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.orientation-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 40px;
    line-height: 1.6;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: #f8f9fa;
    border: none !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1530;
}

.section-header .badge {
    font-size: 14px;
    color: #666;
    margin: 0 auto;
    line-height: 1.8;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: none !important;
}

.image-item:hover {
    transform: translateY(-5px);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: none !important;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
    border: none !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none !important;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: none !important;
}

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

.btn-learn-more {
    background: #2c4c9c;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none !important;
}

.btn-learn-more:hover {
    background: #93BFCF;
    transform: translateY(-2px);
}

/* Campus Tour */
.campus-tour {
    padding: 80px 0;
    background: #f8f9fa;
    border: none !important;
}

.campus-tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.campus-tour-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: none !important;
}

.campus-tour-video img {
    width: 100%;
    border-radius: 15px;
    border: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

/* Ensure no borders on all elements */
.container,
.row,
.col,
[class*="col-"] {
    border: none !important;
}

img,
.img-fluid {
    border: none !important;
    outline: none !important;
}

section,
div {
    border: none !important;
}



/* Journey Section Styling */
.journey-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f9fafb 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Background decorative shapes - strictly contained within journey section */
.journey-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.journey-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.journey-shape-1 {
    width: 300px;
    height: 300px;
    background: #2c4c9c;
    top: 200px;
    right: -80px;
    animation: journeyMorphShape 20s ease-in-out infinite;
}

.journey-shape-2 {
    width: 250px;
    height: 250px;
    background: #2c4c9c;
    bottom: 150px;
    left: -60px;
    animation: journeyMorphShape 25s ease-in-out infinite reverse;
}

.journey-shape-3 {
    width: 200px;
    height: 200px;
    background: #2c4c9c;
    top: 50%;
    left: 40%;
    animation: journeyMorphShape 30s ease-in-out infinite;
    animation-delay: 5s;
}

/* Section header styling */
.journey-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.journey-line-accent {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2c4c9c 50%, transparent 100%);
    margin: 0 auto 20px;
    opacity: 0.3;
    animation: journeyLineExpand 3s ease-in-out infinite;
}

.journey-badge-wrapper {
    margin-bottom: 25px;
}

.journey-badge-pill {
    display: inline-block;
    padding: 12px 28px;
    background: #2c4c9c;
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: journeyBadgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
}

.journey-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.journey-section-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c8f;
    margin: 0;
}

/* Image gallery grid */
.journey-image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Image item - Fixed size */
.journey-image-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    animation: journeyFadeInUp 0.8s ease-out backwards;
    cursor: pointer;
}

/* Staggered animation for images */
.journey-image-item[data-index="1"] {
    animation-delay: 0.1s;
}

.journey-image-item[data-index="2"] {
    animation-delay: 0.2s;
}

.journey-image-item[data-index="3"] {
    animation-delay: 0.3s;
}

.journey-image-item[data-index="4"] {
    animation-delay: 0.4s;
}

.journey-image-item[data-index="5"] {
    animation-delay: 0.5s;
}

.journey-image-item[data-index="6"] {
    animation-delay: 0.6s;
}

.journey-image-item[data-index="7"] {
    animation-delay: 0.7s;
}

.journey-image-item[data-index="8"] {
    animation-delay: 0.8s;
}

.journey-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 76, 156, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.journey-image-item:hover .journey-image-wrapper::after {
    opacity: 1;
}

.journey-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.journey-image-item:hover .journey-image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 76, 156, 0.25);
}

.journey-image-item:hover .journey-image-wrapper img {
    transform: scale(1.1);
}

/* Floating dots decoration */
.journey-floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.journey-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.1;
}

.journey-dot-1 {
    top: 20%;
    left: 10%;
    animation: journeyFloatDot 6s ease-in-out infinite;
}

.journey-dot-2 {
    top: 30%;
    right: 15%;
    animation: journeyFloatDot 7s ease-in-out infinite;
    animation-delay: 1s;
}

.journey-dot-3 {
    bottom: 25%;
    left: 20%;
    animation: journeyFloatDot 8s ease-in-out infinite;
    animation-delay: 2s;
}

.journey-dot-4 {
    bottom: 35%;
    right: 25%;
    animation: journeyFloatDot 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Animations - Unique names to avoid conflicts */
@keyframes journeyFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes journeyMorphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        transform: scale(1.1);
    }

    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        transform: scale(0.95);
    }
}

@keyframes journeyFloatDot {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes journeyBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes journeyLineExpand {

    0%,
    100% {
        width: 80px;
        opacity: 0.3;
    }

    50% {
        width: 120px;
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .journey-image-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 60px 0;
    }

    .journey-section-header h2 {
        font-size: 32px;
    }

    .journey-section-header {
        margin-bottom: 40px;
    }

    .journey-image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .journey-shape {
        display: none;
    }

    .journey-floating-dots {
        display: none;
    }

    .journey-badge-pill {
        font-size: 12px;
        padding: 10px 20px;
    }
}

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



.rundown-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.event-description {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-description p {
    color: #2c4c9c;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.event-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-timeline li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(44, 76, 156, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #2c4c9c;
}

.event-timeline li:hover {
    transform: translateX(5px);
    background: rgba(44, 76, 156, 0.1);
}

.event-name {
    color: #2c4c9c;
    font-weight: 500;
    margin-left: 8px;
}

.event-location {
    float: right;
    color: #666;
    font-size: 0.9em;
}

.rundown-accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rundown-accordion-header.accordion-button {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #2c4c9c;
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.rundown-accordion-header.accordion-button:hover {
    background: rgba(44, 76, 156, 0.05);
}

.rundown-accordion-header.accordion-button::after {
    display: none;
}

.rundown-accordion-title {
    font-size: 1.1em;
    pointer-events: none;
    user-select: none;
}

.rundown-accordion-icon {
    float: right;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.rundown-accordion-header.accordion-button:not(.collapsed) .rundown-accordion-icon {
    transform: rotate(180deg);
}

.accordion-item {
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .event-location {
        display: block;
        float: none;
        margin-top: 5px;
        margin-left: 28px;
    }
}



/* Leaders Message Section */
.leaders-message-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Background decorative shapes */
.leaders-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.leaders-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.leaders-shape-1 {
    width: 320px;
    height: 320px;
    background: #2c4c9c;
    top: 100px;
    left: -80px;
    animation: leadersMorphShape 22s ease-in-out infinite;
}

.leaders-shape-2 {
    width: 280px;
    height: 280px;
    background: #2c4c9c;
    bottom: 150px;
    right: -70px;
    animation: leadersMorphShape 26s ease-in-out infinite reverse;
}

.leaders-shape-3 {
    width: 220px;
    height: 220px;
    background: #2c4c9c;
    top: 50%;
    right: 35%;
    animation: leadersMorphShape 28s ease-in-out infinite;
    animation-delay: 5s;
}

/* Section Header */
.leaders-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.leaders-line-accent {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2c4c9c 50%, transparent 100%);
    margin: 0 auto 20px;
    opacity: 0.3;
    animation: leadersLineExpand 3s ease-in-out infinite;
}

.leaders-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.leaders-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #5a6c8f;
    margin: 0;
}

/* Filter Tabs */
.leaders-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.leaders-tab {
    padding: 12px 30px;
    background: rgba(44, 76, 156, 0.06);
    border: 1px solid rgba(44, 76, 156, 0.15);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2c4c9c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leaders-tab:hover {
    background: rgba(44, 76, 156, 0.1);
    border-color: rgba(44, 76, 156, 0.25);
    transform: translateY(-2px);
}

.leaders-tab.active {
    background: #2c4c9c;
    color: #ffffff;
    border-color: #2c4c9c;
}

/* Messages Container */
.leaders-messages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Leader Message Card */
.leader-message-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 76, 156, 0.1);
    transition: all 0.4s ease;
    animation: leadersFadeIn 0.8s ease-out;
}

.leader-message-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(44, 76, 156, 0.15);
}

/* Video Wrapper */
.leader-video-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.leader-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-message-card:hover .leader-video-wrapper img {
    transform: scale(1.05);
}

.leader-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 76, 156, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.leader-message-card:hover .leader-video-overlay {
    background: rgba(44, 76, 156, 0.4);
}

.leader-play-btn {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c4c9c;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.leader-play-btn i {
    margin-left: 3px;
}

.leader-play-btn:hover {
    transform: scale(1.1);
    background: #2c4c9c;
    color: #ffffff;
}

.leader-play-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    opacity: 0.6;
    animation: leadersPulse 2s ease-out infinite;
}

/* Badges */
.congratulations-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: leadersGlow 2s ease-in-out infinite;
}

.ranking-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2c4c9c;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.3);
}

.rank-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.rank-number sup {
    font-size: 16px;
}

.rank-text {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
}

/* Message Content */
.leader-message-content {
    padding: 30px;
}

.leader-message-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.leader-designation {
    font-size: 14px;
    color: #5a6c8f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leader-designation i {
    color: #2c4c9c;
}

.leader-quote {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c8f;
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid #2c4c9c;
    margin: 0;
}

/* Floating dots */
.leaders-floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.leaders-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.1;
}

.leaders-dot-1 {
    top: 20%;
    left: 10%;
    animation: leadersFloatDot 6s ease-in-out infinite;
}

.leaders-dot-2 {
    top: 35%;
    right: 12%;
    animation: leadersFloatDot 7s ease-in-out infinite;
    animation-delay: 1s;
}

.leaders-dot-3 {
    bottom: 25%;
    left: 15%;
    animation: leadersFloatDot 8s ease-in-out infinite;
    animation-delay: 2s;
}

.leaders-dot-4 {
    bottom: 40%;
    right: 18%;
    animation: leadersFloatDot 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes leadersMorphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: scale(1);
    }

    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        transform: scale(1.1);
    }

    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        transform: scale(0.95);
    }
}

@keyframes leadersFloatDot {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes leadersLineExpand {

    0%,
    100% {
        width: 80px;
        opacity: 0.3;
    }

    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes leadersPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes leadersGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6);
    }
}

@keyframes leadersFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .leaders-messages-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leaders-filter-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .leaders-message-section {
        padding: 60px 0;
    }

    .leaders-section-header h2 {
        font-size: 32px;
    }

    .leaders-subtitle {
        font-size: 18px;
    }

    .leaders-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .leader-video-wrapper {
        height: 250px;
    }

    .leader-message-content {
        padding: 25px 20px;
    }

    .leaders-shape,
    .leaders-floating-dots {
        display: none;
    }
}



/* FAQ Section - Enhanced with Shapes and Animations */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e8f0f7 0%, #f5f8fb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Floating Shapes */
.faq-section::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(147, 191, 207, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatShape 22s ease-in-out infinite;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 150, 180, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatShape 18s ease-in-out infinite reverse;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-left .badge {
    background: #2C4C9C;
    color: #fff;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-description {
    font-size: 1rem;
    color: #5a6c8f;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-description a {
    color: #2C4C9C;
    text-decoration: none;
    font-weight: 600;
}

.faq-description a:hover {
    text-decoration: underline;
}

.faq-cta {
    display: inline-block;
    color: #2C4C9C;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-cta::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.faq-cta:hover::after {
    margin-left: 12px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(44, 76, 156, 0.05);
    border: 1px solid rgba(44, 76, 156, 0.08);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(44, 76, 156, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(44, 76, 156, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(44, 76, 156, 0.1);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* --- Button Styles --- */
a.btn-hero {
    display: inline-block;
    background: #2C4C9C;
    color: #fff;
    padding: 14px 36px;
    border-radius: 5px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    font-family: 'Inter';
    text-align: center
}

a.btn-hero:hover {
    background: #0c58c0 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(216, 235, 214, 0.4);
    transform: translateY(-3px);
}

a.btn-hero-filled {
    display: inline-block;
    background: #fff;
    color: #2C4C9C;
    padding: 14px 36px;
    border-radius: 5px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Inter';
}

a.btn-hero-filled:hover {
    background: #0c58c0 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(216, 235, 214, 0.4);
    transform: translateY(-3px);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2C4C9C;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle {
    background: #2C4C9C;
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: #fff;
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #5a6c8f;
    line-height: 1.8;
    margin: 0;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-section::before,
    .faq-section::after {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .faq-container {
        padding: 0 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

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



/* Enhanced Video Modal Styles */
.modal.fade {
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1055;
}

.modal-dialog {
    position: relative;
    z-index: 1056;
}

.modal-content {
    background: #000 !important;
    border: none !important;
    position: relative;
    z-index: 1057;
}

.modal .modal-body {
    padding: 0;
    position: relative;
    z-index: 1058;
}

.modal .ratio {
    background: #000;
    position: relative;
    z-index: 1059;
}

.modal iframe {
    border: 0;
    position: relative;
    z-index: 1060;
    width: 100%;
    height: 100%;
}

.modal .btn-close-white {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    filter: brightness(200%);
    z-index: 1061;
}

.leaders-message-section {
    position: relative;
    z-index: 1;
}

/* Reset backdrop to work with our custom styling */
.modal-backdrop {
    display: none;
}

/* Global overflow protection */
body {
    overflow-x: hidden;
}