

    /* CRITICAL: Force back-to-top button size and position */
html body .back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    background: linear-gradient(135deg, #2c4c9c, #1e3a8a) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    box-shadow: 0 4px 20px rgba(44, 76, 156, 0.3) !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    z-index: 1000 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

html body .back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

html body .back-to-top:hover {
    background: linear-gradient(135deg, #1e3a8a, #152c6b) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(44, 76, 156, 0.4) !important;
}

/* Reset any inherited styles that might affect size */
html body .back-to-top * {
    box-sizing: border-box !important;
}

html body .back-to-top i {
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* ========== GALLERY SECTION - ORIGIN DESIGN STYLE ========== */

.gallery-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f5f7ff 100%);
    overflow: hidden;
}

/* Background Shapes */
.gallery-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.gallery-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: #2c4c9c;
}

.gallery-shape-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: -100px;
    animation: galleryMorphShape 25s ease-in-out infinite;
}

.gallery-shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: -80px;
    animation: galleryMorphShape 30s ease-in-out infinite reverse;
}

.gallery-shape-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation: galleryMorphShape 35s ease-in-out infinite;
    animation-delay: 5s;
}

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

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

.gallery-dot-1 { top: 20%; left: 15%; animation-delay: 0s; }
.gallery-dot-2 { top: 15%; right: 18%; animation-delay: 2s; }
.gallery-dot-3 { bottom: 25%; left: 20%; animation-delay: 4s; }
.gallery-dot-4 { bottom: 18%; right: 22%; animation-delay: 6s; }

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

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

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

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

.gallery-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 18px;
    color: #5a6c8f;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Modern Gallery Grid */
.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    perspective: 1000px;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 76, 156, 0.1);
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(44, 76, 156, 0.15);
    border-color: rgba(44, 76, 156, 0.2);
}

/* Image Container */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

/* Image Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.8), rgba(74, 108, 212, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.gallery-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c4c9c;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-view-btn:hover {
    background: white;
    transform: scale(1.05);
    color: #2c4c9c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-like-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #ff4757;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-like-btn:hover {
    background: white;
    transform: scale(1.1);
    color: #ff3742;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

/* Image Decoration */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.gallery-card:hover .decoration-corner {
    opacity: 1;
    transform: scale(1.2);
}

/* Gallery Info */
.gallery-info {
    padding: 20px;
    background: white;
}

.image-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-date,
.image-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5a6c8f;
    font-weight: 500;
}

.image-date i,
.image-views i {
    opacity: 0.7;
}

/* View More Button */
.gallery-actions-footer {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.modern-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #2c4c9c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 76, 156, 0.3);
}

.modern-gallery-btn:hover {
    background: #1a3a7a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 76, 156, 0.4);
    color: white;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.modern-gallery-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.modern-gallery-btn:hover .btn-hover-effect {
    left: 100%;
}

/* Gallery Stats */
.gallery-stats {
    position: relative;
    z-index: 1;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2c4c9c;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #5a6c8f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Corner Accents */
.gallery-corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    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;
}

/* ========== ANIMATIONS ========== */

@keyframes galleryMorphShape {
    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 galleryFloatDot {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes galleryLineExpand {
    0%, 100% {
        width: 80px;
        opacity: 0.3;
    }
    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes galleryBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes expandCorner {
    0%, 100% {
        width: 60px;
        height: 60px;
        opacity: 0.15;
    }
    50% {
        width: 80px;
        height: 80px;
        opacity: 0.25;
    }
}

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

@media (max-width: 1200px) {
    .modern-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-main-title {
        font-size: 36px;
    }

    .modern-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .stats-container {
        gap: 40px;
    }

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

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

    .gallery-main-title {
        font-size: 32px;
    }

    .gallery-subtitle {
        font-size: 16px;
    }

    .modern-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

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

    .gallery-corner-accent {
        width: 40px;
        height: 40px;
    }

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

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

@media (max-width: 480px) {
    .gallery-main-title {
        font-size: 28px;
    }

    .gallery-badge-pill {
        padding: 8px 20px;
        font-size: 13px;
    }

    .gallery-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modern-gallery-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    .stats-container {
        gap: 20px;
    }

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

    .stat-label {
        font-size: 12px;
    }
}

/* ========== OVERVIEW SECTION - ORIGIN DESIGN STYLE ========== */

.overview-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7ff 100%);
    overflow: hidden;
}

/* Background Shapes */
.overview-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.overview-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: #2c4c9c;
}

.overview-shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: -100px;
    animation: overviewMorphShape 25s ease-in-out infinite;
}

.overview-shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: -80px;
    animation: overviewMorphShape 30s ease-in-out infinite reverse;
}

.overview-shape-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 40%;
    animation: overviewMorphShape 35s ease-in-out infinite;
    animation-delay: 5s;
}

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

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

.overview-dot-1 { top: 25%; left: 15%; animation-delay: 0s; }
.overview-dot-2 { top: 15%; right: 20%; animation-delay: 2s; }
.overview-dot-3 { bottom: 30%; left: 25%; animation-delay: 4s; }
.overview-dot-4 { bottom: 20%; right: 30%; animation-delay: 6s; }

/* Content Layout */
.overview-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.overview-text-content {
    flex: 1;
}

.overview-visual-content {
    flex: 1;
}

/* Section Header */
.overview-section-header {
    margin-bottom: 40px;
}

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

.overview-badge-wrapper {
    margin-bottom: 15px;
}

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

.overview-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.overview-subtitle {
    font-size: 16px;
    color: #5a6c8f;
    margin: 0;
    line-height: 1.5;
}

/* Modern Tabs */
.modern-tabs-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(44, 76, 156, 0.1);
}

.modern-tabs-header {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid rgba(44, 76, 156, 0.1);
}

.modern-tabs-nav {
    display: flex;
    padding: 0 20px;
}

.modern-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 15px;
    background: transparent;
    border: none;
    color: #5a6c8f;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.modern-tab-btn:hover {
    color: #2c4c9c;
}

.modern-tab-btn.active {
    color: #2c4c9c;
}

.tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.modern-tab-btn.active .tab-icon {
    transform: scale(1.1);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #2c4c9c, #4a6cd4);
    transition: all 0.3s ease;
    width: 33.333%;
}

/* Tab Content */
.modern-tabs-content {
    padding: 40px;
}

.modern-tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.modern-tab-pane.active {
    display: block;
}

.tab-content-inner {
    position: relative;
}

.content-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: rgba(44, 76, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c4c9c;
    font-size: 16px;
}

.modern-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c8f;
    margin: 0;
    text-align: justify;
}

/* Video Section */
.modern-video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.video-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-container:hover .video-banner {
    transform: scale(1.05);
}

.modern-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;
}

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

.modern-video-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.modern-video-btn:hover {
    transform: scale(1.05);
    color: white;
}

.play-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c4c9c;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.modern-video-btn:hover .play-icon-wrapper {
    background: #2c4c9c;
    color: white;
    transform: scale(1.1);
}

.play-pulse-effect {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: videoPulse 2s ease-out infinite;
}

.play-text {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Video Decoration */
.video-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    animation: floatCircle 6s ease-in-out infinite;
}

.circle-2 {
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
    animation: floatCircle 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 80%;
    animation: floatCircle 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Video Info */
.video-info {
    text-align: center;
}

.video-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.video-description {
    font-size: 14px;
    color: #5a6c8f;
    margin: 0;
}

/* Corner Accents */
.overview-corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    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;
}

/* ========== ANIMATIONS ========== */

@keyframes overviewMorphShape {
    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 overviewFloatDot {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes overviewBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes videoPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

@keyframes expandCorner {
    0%, 100% {
        width: 60px;
        height: 60px;
        opacity: 0.15;
    }
    50% {
        width: 80px;
        height: 80px;
        opacity: 0.25;
    }
}

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

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

@media (max-width: 992px) {
    .overview-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .overview-main-title {
        font-size: 32px;
    }

    .modern-tabs-nav {
        flex-direction: column;
    }

    .modern-tab-btn {
        padding: 15px;
    }

    .tab-indicator {
        display: none;
    }

    .modern-tabs-content {
        padding: 30px;
    }

    .video-banner {
        height: 250px;
    }
}

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

    .overview-main-title {
        font-size: 28px;
    }

    .modern-tabs-content {
        padding: 25px 20px;
    }

    .modern-paragraph {
        font-size: 15px;
    }

    .video-banner {
        height: 200px;
    }

    .play-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .play-pulse-effect {
        width: 60px;
        height: 60px;
    }

    .overview-corner-accent {
        width: 40px;
        height: 40px;
    }

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

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

/* ========== WINGS SECTION - SINGLE ROW LAYOUT ========== */

.wings-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f5f7ff 100%);
    overflow: hidden;
}

/* Background Shapes */
.wings-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.wings-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: #2c4c9c;
}

.wings-shape-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    left: -100px;
    animation: wingsMorphShape 25s ease-in-out infinite;
}

.wings-shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: -80px;
    animation: wingsMorphShape 30s ease-in-out infinite reverse;
}

.wings-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 45%;
    animation: wingsMorphShape 35s ease-in-out infinite;
    animation-delay: 5s;
}

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

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

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

.wings-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    margin-top: 15px;
}

.wings-subtitle {
    font-size: 18px;
    color: #5a6c8f;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Single Row Layout */
.wings-single-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 10px;
    margin: 0 -10px;
    position: relative;
    z-index: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.wings-single-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.wing-card-single {
    flex: 0 0 280px; /* Fixed width for each card */
    min-width: 280px;
    perspective: 1000px;
}

.modern-wing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(44, 76, 156, 0.1);
    min-height: 280px;
}

.modern-wing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 76, 156, 0.15);
    border-color: rgba(44, 76, 156, 0.2);
}

/* Card Decoration */
.wing-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c4c9c, #4a6cd4, #2c4c9c);
    background-size: 200% 100%;
    animation: wingGradientShift 3s ease-in-out infinite;
}

/* Icon/Image Styling */
.wing-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.wing-icon-frame {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(44, 76, 156, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-wing-card:hover .wing-icon-frame {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(44, 76, 156, 0.25);
}

.wing-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.wing-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(44, 76, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-wing-card:hover .wing-icon-glow {
    opacity: 1;
}

/* Content Styling */
.wing-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

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

.wing-description {
    font-size: 14px;
    color: #5a6c8f;
    line-height: 1.5;
    margin: 0;
}

/* Hover Effect */
.wing-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 76, 156, 0.03), transparent);
    transition: left 0.6s ease;
}

.modern-wing-card:hover .wing-hover-effect {
    left: 100%;
}

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

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

.wings-dot-1 { top: 20%; left: 12%; animation-delay: 0s; }
.wings-dot-2 { top: 15%; right: 18%; animation-delay: 2s; }
.wings-dot-3 { bottom: 25%; left: 20%; animation-delay: 4s; }
.wings-dot-4 { bottom: 18%; right: 22%; animation-delay: 6s; }

/* ========== ANIMATIONS ========== */

@keyframes wingsMorphShape {
    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 wingsFloatDot {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes wingsLineExpand {
    0%, 100% {
        width: 80px;
        opacity: 0.3;
    }
    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes wingsBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes wingGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@media (max-width: 1200px) {
    .wing-card-single {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .modern-wing-card {
        padding: 35px 20px;
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .wings-section {
        padding: 80px 0;
    }

    .wings-main-title {
        font-size: 36px;
    }

    .wing-card-single {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .modern-wing-card {
        padding: 30px 20px;
        min-height: 240px;
    }

    .wing-icon-frame {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .wing-icon {
        width: 30px;
        height: 30px;
    }

    .wing-title {
        font-size: 18px;
    }

    .wing-description {
        font-size: 13px;
    }
}

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

    .wings-main-title {
        font-size: 32px;
    }

    .wings-subtitle {
        font-size: 16px;
    }

    .wings-single-row {
        gap: 20px;
        justify-content: flex-start;
    }

    .wing-card-single {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .modern-wing-card {
        padding: 25px 15px;
        min-height: 220px;
    }

    .wing-title {
        font-size: 16px;
    }

    .wing-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .wings-main-title {
        font-size: 28px;
    }

    .wings-badge-pill {
        padding: 8px 20px;
        font-size: 13px;
    }

    .wing-card-single {
        flex: 0 0 200px;
        min-width: 200px;
    }

    .modern-wing-card {
        padding: 20px 15px;
        min-height: 200px;
    }

    .wing-icon-frame {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .wing-icon {
        width: 25px;
        height: 25px;
    }
}

/* ========== ADVISING PANEL - FIXED SIZING ========== */

.advising-panel-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7ff 100%);
    overflow: hidden;
}

/* Background Shapes */
.panel-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.panel-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: #2c4c9c;
}

.panel-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation: panelMorphShape 25s ease-in-out infinite;
}

.panel-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation: panelMorphShape 30s ease-in-out infinite reverse;
}

.panel-shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation: panelMorphShape 35s ease-in-out infinite;
    animation-delay: 5s;
}

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

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

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

.panel-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    margin-top: 15px;
}

.panel-subtitle {
    font-size: 18px;
    color: #5a6c8f;
    margin: 0;
}

/* Modern Breadcrumb */
.modern-breadcrumb {
    margin-bottom: 50px;
}

.modern-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 76, 156, 0.1);
}

/* Section Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(44, 76, 156, 0.1);
}

.label-icon {
    width: 50px;
    height: 50px;
    background: #2c4c9c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.3);
}

.section-label h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

/* ========== FIXED LEADERSHIP CARDS ========== */

.leadership-section {
    margin-bottom: 60px;
}

.leadership-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 280px; /* Fixed width */
    min-height: 320px; /* Fixed minimum height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c4c9c, #4a6cd4);
}

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

.convener-card::before {
    background: #2c4c9c);
}

.co-convener-card::before {
    background: #2c4c9c;
}

/* Fixed Image Sizing */
.leader-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.leader-image-frame {
    width: 120px; /* Fixed size */
    height: 120px; /* Fixed size */
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    flex-shrink: 0;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.08);
}

.leader-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.convener-badge {
    background: #2c4c9c;
}

.co-convener-badge {
    background: #2c4c9c;
}

.leader-info {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-name {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.leader-role {
    font-size: 14px;
    color: #2c4c9c;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.leader-decoration {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2c4c9c, transparent);
    margin: 0 auto;
}

/* ========== FIXED ADVISORS GRID ========== */

.advisors-section {
    margin-bottom: 40px;
}


.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

.advisor-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c4c9c, #4a6cd4);
}

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

/* Fixed Circular Advisor Images */
.advisor-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.advisor-image-frame {
    width: 140px; /* Fixed circular size */
    height: 140px; /* Fixed circular size */
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

/* Fixed Advisor Image Container */
.advisor-image-container {
    position: relative;
    overflow: hidden;
    height: 220px; /* Fixed height */
    flex-shrink: 0; /* Prevent shrinking */
}

.advisor-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Proper image cropping */
    transition: transform 0.4s ease;
}

.advisor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.8), rgba(74, 108, 212, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advisor-card:hover .advisor-overlay {
    opacity: 1;
}

.advisor-card:hover .advisor-image {
    transform: scale(1.08);
}

.advisor-card:hover .advisor-image-frame {
    box-shadow: 0 12px 35px rgba(44, 76, 156, 0.25);
}

.advisor-social {
    display: flex;
    gap: 12px;
}

.leader-card,
.advisor-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.leader-card::before,
.advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

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

/* Consistent image frame styling */
.leader-image-frame,
.advisor-image-frame {
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.leader-image,
.advisor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-image,
.advisor-card:hover .advisor-image {
    transform: scale(1.08);
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 14px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.advisor-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c4c9c, #4a6cd4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.advisor-info {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advisor-name {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.advisor-role {
    font-size: 14px;
    color: #2c4c9c;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.advisor-expertise {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.expertise-tag {
    background: rgba(44, 76, 156, 0.1);
    color: #2c4c9c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

/* Optional: Add different expertise tags */
.expertise-tag.technical {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.expertise-tag.academic {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
}

.expertise-tag.industry {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}


@media (max-width: 1200px) {
    .advisors-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .advisor-card {
        max-width: 260px;
        min-height: 300px;
        padding: 25px 20px;
    }

    .advisor-image-frame {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .advisors-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .advisor-card {
        max-width: 240px;
        min-height: 280px;
        padding: 20px;
    }

    .advisor-image-frame {
        width: 110px;
        height: 110px;
    }

    .advisor-name {
        font-size: 16px;
    }

    .advisor-role {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advisor-card {
        max-width: 300px;
        min-height: 280px;
        margin: 0 auto;
    }

    .advisor-image-frame {
        width: 100px;
        height: 100px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}


/* ========== FLOATING DOTS ========== */

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

.panel-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.1;
    animation: panelFloatDot 10s ease-in-out infinite;
}

.panel-dot-1 { top: 25%; left: 15%; animation-delay: 0s; }
.panel-dot-2 { top: 15%; right: 20%; animation-delay: 2s; }
.panel-dot-3 { bottom: 30%; left: 25%; animation-delay: 4s; }
.panel-dot-4 { bottom: 20%; right: 30%; animation-delay: 6s; }

/* ========== ANIMATIONS ========== */

@keyframes panelMorphShape {
    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 panelFloatDot {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.2;
    }
}

@keyframes panelLineExpand {
    0%, 100% {
        width: 80px;
        opacity: 0.3;
    }
    50% {
        width: 120px;
        opacity: 0.5;
    }
}

@keyframes panelBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

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

@media (max-width: 1200px) {
    .advisors-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    .leadership-cards {
        gap: 25px;
    }

    .leader-card {
        width: 250px;
        min-height: 300px;
    }

    .advisor-image-container {
        height: 200px;
    }
}

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

    .panel-main-title {
        font-size: 32px;
    }

    .leadership-cards {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .leader-card {
        width: 100%;
        max-width: 300px;
        min-height: 280px;
    }

    .leader-image-frame {
        width: 100px;
        height: 100px;
    }

    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advisor-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .section-label {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .label-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .section-label h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .leader-card {
        padding: 25px 20px;
        min-height: 260px;
    }

    .leader-image-frame {
        width: 90px;
        height: 90px;
    }

    .advisor-image-container {
        height: 180px;
    }

    .advisor-info {
        padding: 15px;
    }
}

/* ========== ENHANCED HERO WITH ORIGIN STYLING ========== */

/* Layout System for No Banner Case */
.club-hero.layout-right-content {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 120px 20px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Left Content Side */
.hero-text-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text-content .wave-decoration {
    width: 180px;
    opacity: 0.15;
    margin: 0 0 20px 0;
    display: block;
}

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

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

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

.hero-text-content 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;
}

.hero-text-content .orientation-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-text-content .orientation-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Right Image Side */
.hero-visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-club-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 76, 156, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(44, 76, 156, 0.1) 0%, transparent 70%);
    border-radius: 30px;
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-image-wrapper:hover .hero-club-image {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(44, 76, 156, 0.25);
}

/* Enhanced Slider Styles */
.enhanced-slider .herobannerarea__single__slider {
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

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

.slider-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.slider-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
}

.slider-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: floatShape 15s ease-in-out infinite;
}

.slider-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation: floatShape 20s ease-in-out infinite reverse;
}

.enhanced-slider-content .slider-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.enhanced-slider-content .slider-title span {
    color: #2c4c9c;
    position: relative;
}

.enhanced-slider-content .slider-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-buttons {
    margin-bottom: 30px;
}

.slider-social ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-social li a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-text-content .orientation-buttons {
        justify-content: center;
    }

    .hero-text-content .wave-decoration {
        margin: 0 auto 20px;
    }

    .hero-club-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .club-hero.layout-right-content {
        padding: 100px 20px 60px;
        min-height: 70vh;
    }

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

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

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

    .btn-hero, .btn-hero-filled {
        width: 100%;
        max-width: 280px;
    }

    .hero-club-image {
        max-width: 250px;
    }

    .enhanced-slider-content .slider-title {
        font-size: 32px;
    }
}

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

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

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

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

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

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

/* Ensure the row uses Flexbox */
body{
    background-color: #f8f9fa;
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}
.row {
    display: flex;
    justify-content: center;
    /* Center columns horizontally */
}

.about__button__wrap li button {
    padding: 10px 10px;

    background: #f3f2fb;
}
.aboutarea__content__tap__wraper .paragraph__1{
    text-align: justify;
}
.herobanner__video > img{
    height: 345px;
    border-radius: 40px;
}
@media (max-width: 768px) {
    .about__button__wrap {
        flex-direction: row;
        /* Stack the buttons vertically on smaller screens */
    }

    .nav-item {
        margin-right: 0;
        /* No horizontal space between buttons */
        margin-bottom: 10px;
        /* Add vertical space between buttons */
    }

    .nav-item:last-child {
        margin-bottom: 0;
        /* Remove space after the last button */
    }
}



.notices-section {
    background-color: #f8f9fa;
}

.section-title-button .badge {
    border-radius: 30px;
    font-size: 1.25rem;
    letter-spacing: 1px;
    background-color: #007bff;
}

.notice-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.notice-card h3 a:hover {
    color: #007bff;
}

.notice-footer .notice-author {
    font-size: 0.875rem;
}

.notice-footer .notice-date {
    font-size: 0.875rem;
}

.notice-highlight {
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notice-card:hover .notice-highlight {
    opacity: 1;
}

[data-aos="fade-up"] {
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
.custom-select-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.flagship-dropdown {
    appearance: none;
    width: 100%;
    padding: 12px 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s ease-in-out;
}

/* Dropdown Arrow Icon */
.flagship-dropdown::after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: #888;
    pointer-events: none;
}

.flagship-dropdown:hover,
.flagship-dropdown:focus {
    border-color: #007bff;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
    background-color: #f7f9fc;
}

@media (max-width: 767px) {
    .flagship-dropdown {
        font-size: 0.9rem;
        padding: 10px 15px;
        border-radius: 25px;
    }
}


.search__form input {
    /* width: 90%; */
    /* height: 60px; */
    border-radius: 50px;
    padding: 0 0 0 310px;
    border: 1px solid var(--borderColor);
    /* padding: 0 150px 0 260px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}
.search__form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* max-width: 800px; */
    width: 90%;
    max-width: 600px;
    margin: 0 auto; /* This will center the form horizontally */
}
.search__form .wide {
    width: 140px;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.search__form .search__form__categories {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 30px;
    align-items: center;
    cursor: pointer;
    /* border-right: 1px solid rgba(0, 0, 0, 0.2); */
}
.wide2{
    border: none;background: transparent;width:88px;
}
@media only screen and (max-width: 767px) {
    .search__form .wide {
        width: 62%;
        border: none;
        background: none;
        cursor: pointer;
    }
    .search__form input {
        /* width: 90%; */
        /* height: 60px; */
        border-radius: 50px;
        padding: 0 0 0 215px;
        border: 1px solid var(--borderColor);
        /* padding: 0 150px 0 260px; */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background-color: #f8f9fa;
    }
    .wide2{
        width: 84px;
        display: block;
    }
    .categories__box{
        width: 90px;
    }

}

.profile-header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.profile-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.profile-header .edit-icon {
    position: absolute;
    top: 50px;
    left: 50px;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-header .profile-info {
    flex-grow: 1;
}

.profile-header .profile-info .name {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.profile-header .profile-info .name .verified-icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.profile-header .profile-info .location {
    color: #6b7280;
    font-size: 14px;
}

.profile-header .actions {
    display: flex;
    align-items: center;
}

.profile-header .actions button {

    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.profile-header .actions button:first-child {
    padding: 8px 15px;
    background-color: transparent;
    color: var(--primaryColor);
    display: inline-block;
    text-align: center;
    border-radius: var(--borderRadius);
    font-size: 15px;
    border: 1px solid var(--primaryColor);
}

.btn btn-secondary {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.profile-header .actions button:first-child:hover {
    background-color: var(--primaryColor);
    color: #ffffff;
}

.profile-header .actions button:last-child:hover {
    background-color: transparent;
    color: var(--primaryColor);
;
}



.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
    z-index: -1;

}
.modal {
    backdrop-filter: blur(40px);
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;


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

.default__button {
    cursor: pointer;

    padding: 10px 40px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    display: inline-block;
    text-align: center;
    border-radius: 25px;
    font-size: 15px;
    border: 1px solid var(--primaryColor);
}
.blogsidebar__content__wraper__2 {
    padding: 30px 35px 30px 30px;
    border: 1px solid var(--borderColor2);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
    max-width: 1082px;
    margin: 0 auto;
}
.container-fluid.full__width__padding {
    padding: 0 30px;
    max-width: 1330px;
}
.aboutarea__img__2 img {
    width: 70%;
    float: right;
    margin-left: auto;
    display: block;
}
.herobannerarea__single__slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}
.aboutarea__content__tap__wraper .paragraph__1 {
    text-align: justify;
    padding: 16px;
}
@media (max-width: 768px) {
    .herobannerarea__single__slider {
        height: auto;
        min-height: 400px;
    }
    .aboutarea__img__2 img {
        display: none;
    }
    .blogsidebar__content__wraper__2 {
        padding: 0px 0 12px 0px;
    }
    .container-fluid.full__width__padding {
        padding: 0 10px;

    }
}
.sp_bottom_100 {

    margin-top: 36px;

}
/* General styling for the card */
.profile-card {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.profile-card__container {
    /* background: linear-gradient(135deg, #ffffff, #f8f9fa); */
    border-radius: 20px;
    /* box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.1); */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 360px;
    position: relative;
    border: none;
}

/* .profile-card__container:hover {
        transform: translateY(-15px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    } */

.profile-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    margin-top: -70px;
    border: 6px solid #ffffff;
    background: #f0f0f0;
    height: 130px;
    width: 130px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.profile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.profile-card__container:hover .profile-card__image img {
    transform: scale(1.1);
}

.profile-card__info {
    /* padding: 25px; */
    /* background-color: rgba(255, 255, 255, 0.9); */
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 1;
}

.profile-card__name {
    font-size: 1.6em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.profile-card__designation {
    font-weight: 600;
    color: #3498db;
    display: block;
    /* margin-bottom: 8px; */
    font-size: 1.1em;
}

.profile-card__id,
.profile-card__phone {
    font-size: 1em;
    color: #7f8c8d;
    /* margin-bottom: 6px; */
    display: block;
}

.profile-card__phone {
    color: #27ae60;
}
#ifempty{
    padding-top: 150px;
}


img.mfp-img {
    width: auto;
    max-width: 898px;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    img.mfp-img {

        max-width: 100%;

    }
    #ifempty{
        padding-top: 30px;
    }
    .profile-card__container {
        margin-bottom: 20px;
    }
    #committe_filter{
        justify-content: center;

    }
    .course__text__wraper .course__icon ul li.short__by__new {
        padding-left: 0px;
    }
    .course__text__wraper .course__icon ul li.short__by__new {
        /* padding-left: 80px; */
        padding-right: 10px;
    }
}

.profile-card__container:hover:before {
    background: radial-gradient(circle, rgba(255,255,255,0.25), rgba(0,0,0,0.25));
}

.profile-card__container:hover .profile-card__info {
    /* background-color: rgba(255, 255, 255, 1); */
}
.wide {

    background: transparent;
    width: 106px;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.herobannerarea.herobannerarea__2 {
    background: var(--lightGrey11);
    padding-top: 0px;
}
.service__content p {
    margin: 0;                /* Remove default margins */
    line-height: 1.5;         /* Adjust line height for readability */
    padding: 0;
    text-align: justify;
    word-break: break-word;
    overflow-wrap: break-word;    /* Remove padding if necessary */
}



/* Custom scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.row::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.row::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Background of the track */
    border-radius: 10px;
}

.row::-webkit-scrollbar-thumb {
    background-color: #007bff; /* Color of the thumb (scrollbar handle) */
    border-radius: 10px;
}

.row::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3; /* Color when hovering */
}

/* For Firefox */
.row {
    scrollbar-width: thin; /* Firefox property for scrollbar width */
    scrollbar-color: #dddddd #f1f1f1;
}


.wing-card {
    display: flex;           /* Make the card a flex container */
    flex-direction: column;  /* Stack children vertically */
    justify-content: space-between; /* Space items evenly */
    height: 88%;           /* Allow the card to take full height */
}

.service__content {
    flex-grow: 1;           /* Allow content to grow and fill the card */
}


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

.student-panel {
    margin: 0 auto;
    max-width: 1094px;
    text-align: center;
    padding: 16px;
    background-color: transparent;

    border-radius:30px;
}
.header {

    color: white;
    padding: 40px 20px;
}

.header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 1.5em;
    font-weight: 300;
}

.panel-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.center-profile {
    margin: 0 auto;
    width: 200px;
    text-align: center;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-in-out forwards;
    animation-delay: calc(0.1s * var(--i));
}

.center-profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.center-advising {
    margin: 0 auto;
    width: 200px;
    text-align: center;
}

.center-advising img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.top-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.top-row .profile {
    text-align: center;
    width: 200px;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-in-out forwards;
    animation-delay: calc(0.1s * var(--i));
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.1);
}

.profile h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.profile p {
    font-size: 1em;
    color: #5f2ded;
}
.advising img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.1);
}

.advising h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.advising p {
    font-size: 1em;
    color: #4d65ec;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.grid-container .profile {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-in-out forwards;
    animation-delay: calc(0.1s * var(--i));
}

/* Fade In and Slide Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Media query for mobile view */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* Show two cards in a row */
    }
}

/* Adjust grid for larger screens */
@media (min-width: 601px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Default for larger screens */
    }
}
@media (max-width: 600px) {
    .header h1 {
        font-size: 1.5em;
    }

    .header h2 {
        font-size: 1.2em;
    }

    .profile img {
        width: 100px;
        height: 100px;
    }
    .advising img {
        width: 100px;
        height: 100px;
    }
    .profile h3 {
        font-size: 1em;
    }
    .advising h3 {
        font-size: 1em;
    }
}


.session-label {
    margin-top: 10px;
    font-weight: bold;
}

.session-select {
    background: #6edfff;
    margin-top: 5px;
    /* padding: 8px 12px; */
    font-size: 16px;
    border: none;
    color: white;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
    font-weight: bold;
}

.session-select:focus {
    border-color: black; /* Change to your theme color */
}

/* Add responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .session-select {
        width: 100%;
    }
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
.highlight-link {
    background-color: rgba(0, 123, 255, 0.1); /* Light blue background */
    color: #007bff; /* Link color */
    padding: 2px 4px; /* Add some padding */
    border-radius: 3px; /* Slightly rounded corners */
    text-decoration: none; /* Remove underline */
}

.highlight-link:hover {
    text-decoration: underline; /* Underline on hover */
}

/* ///////////////////////////////////////// */
/* Set the max height for the gallery container */
.photo__gallery__img {
    max-height: 700px; /* Adjust the height as needed */
    overflow-y: scroll; /* Enable vertical scrolling */
    display: flex;
    flex-wrap: wrap; /* To allow images to wrap onto multiple lines */


    /* Hide the scrollbar */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: transparent transparent; /* Firefox */
}

/* Hide the scrollbar for Webkit browsers (Chrome, Safari, etc.) */
.photo__gallery__img::-webkit-scrollbar {
    width: 0;
    height: 0;
}


.footerarea__icon ul {
    display: flex
;
    justify-content: center!important;
    list-style: none;
}

