/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #c2dffc 0%, #9dd0f5 50%, #72b8e8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 1001;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo i {
    color: #dc3545;
    font-size: 1.5rem;
}

.nav-logo h2 {
    color: #003893;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-logo .tu-text {
    background: linear-gradient(135deg, #000000 0%, #000000 45%, #DAA520 55%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-logo .nsa-text {
    background: linear-gradient(135deg, #003893 0%, #dc3545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle .towson-text {
    color: #000000 !important;
}

.subtitle .university-text {
    color: #DAA520 !important;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc3545;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc3545;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger menu active state */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

/* Main Content */
main {
    margin-top: 70px;
}

/* Nepal Time Widget */
.nepal-time-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 180px;
    z-index: 100;
}

/* Mobile responsiveness for Nepal Time Widget */
@media (max-width: 768px) {
    .nepal-time-widget {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: none !important;
        order: 1 !important;
        display: block !important;
        border-radius: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0.3rem 1rem !important;
        z-index: auto !important;
    }
    
    .nepal-time-widget .time-header {
        display: none;
    }
    
    .nepal-time-widget .time-display {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0;
    }
    
    .nepal-time-widget .current-time {
        font-size: 1.1rem;
        margin-bottom: 0;
        font-weight: 700;
    }
    
    .nepal-time-widget .current-date {
        font-size: 0.9rem;
        margin-bottom: 0;
        font-weight: 600;
    }
    
    .nepal-time-widget .time-zone {
        display: none;
    }
    
    #home .container {
        flex-direction: column;
        display: flex;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0 0.5rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Override the universal CSS reset with more specific selectors */
    body .nepal-time-widget {
        order: 2;
        margin: 1rem 0 2rem 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    body #home .content-left {
        order: 3;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 3rem !important;
    }
    
    body #home .content-right {
        order: 4;
        margin-top: 5rem !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Add more spacing between top sections on mobile - HIGH SPECIFICITY */
    body #home .main-title {
        margin-bottom: 2rem !important;
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    body #home .subtitle {
        margin-bottom: 2rem !important;
        font-size: 1rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    body #home .description {
        margin-bottom: 2.5rem !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    
    body #home .cta-buttons {
        margin-bottom: 2.5rem !important;
        gap: 0.8rem !important;
        justify-content: center !important;
        display: flex !important;
    }
    
    /* Make home section more compact for mobile */
    #home .description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    #home .cta-buttons {
        gap: 0.8rem;
        justify-content: center;
        display: flex;
    }
    
    #home .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Reduce hero image size on mobile */
    #home .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    #home .hero-img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-image {
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-img {
        max-width: 100%;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    /* Fix container padding on mobile */
    .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    /* Center the home content on mobile */
    #home .container {
        text-align: center;
    }
    
    /* Fix news updates section padding */
    .news-updates-container {
        padding: 0 0.5rem;
    }
    
    /* Prevent zoom and ensure proper mobile layout */
    body {
        min-width: auto;
        max-width: 100vw;
        overflow-x: hidden;
        width: 100%;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure all elements respect viewport width */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Fix any potential horizontal overflow */
    .section, .container, .content-left, .content-right, .content-center {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Don't cut off header text */
    .navbar, .nav-container, .nav-logo, .nav-menu {
        max-width: 100%;
        overflow: visible;
    }
    
    /* Ensure carousel doesn't cause horizontal overflow */
    .carousel-wrapper, .eboard-carousel {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    /* Force all elements to respect viewport width */
    .eboard-member, .member-photo, .carousel-slide {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Force highlights section to be visible on mobile - MAXIMUM SPECIFICITY */
    body #events .highlights-section,
    body .highlights-section,
    html body #events .highlights-section,
    html body .highlights-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
        margin-top: 3rem !important;
        padding: 2rem 0 !important;
    }
    
    body #events .highlights-grid,
    body .highlights-grid,
    html body #events .highlights-grid,
    html body .highlights-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    body .highlight-image-container,
    html body .highlight-image-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.8rem !important;
    }
    
    body .highlight-img,
    html body .highlight-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
    }
    
    /* Make updates grid single column on mobile */
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Fix image grid for mobile */
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Adjust section padding for mobile */
    .section {
        padding: 3rem 0;
    }
    
    /* Fix navigation container padding */
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Mobile navigation menu - force dropdown behavior */
    .hamburger {
        display: flex !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        flex-direction: column !important;
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05) !important;
        padding: 1rem 0 !important;
        gap: 0.8rem !important;
        z-index: 1000 !important;
        transform: translateY(-100%) !important;
        max-height: 50vh !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-item {
        margin: 0 !important;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        padding: 0.3rem 0 !important;
        display: block !important;
    }
    
    /* Make facts grid single column on mobile */
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust font sizes for mobile */
    .main-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    

    
    /* Additional mobile optimizations */
    .quick-facts-section {
        margin: 2rem 0;
    }
    
    .fact-card {
        padding: 1rem;
    }
    
    .nepal-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .eboard-carousel {
        padding: 0 1rem;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .nepal-time-widget {
        padding: 0.2rem 0.8rem;
        max-width: none;
        order: 2;
        margin: 0.2rem 0 0.2rem 0;
    }
    
    /* Override margins for extra small mobile too */
    #home .main-title {
        margin-bottom: 0.2rem !important;
    }
    
    #home .subtitle {
        margin-bottom: 0.2rem !important;
    }
    
    .nepal-time-widget .current-time {
        font-size: 1rem;
    }
    
    .nepal-time-widget .current-date {
        font-size: 0.8rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 0.3rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .nav-container {
        padding: 0 0.3rem;
    }
    
    /* Fix any remaining right-side spacing issues */
    .news-updates-container {
        padding: 0 0.3rem;
    }
    
    /* Ensure highlights section is visible on mobile */
    .highlights-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 3rem !important;
        padding: 2rem 0 !important;
    }
    
    .highlights-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .highlight-image-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .highlight-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
    }
    
    .updates-grid {
        gap: 1rem;
    }
    
    .image-grid {
        gap: 0.8rem;
    }
    
    .fact-card {
        padding: 0.8rem;
    }
    
    .eboard-carousel {
        padding: 0 0.8rem;
    }
    
    .carousel-slide {
        padding: 0.8rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}



.time-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
    color: #003893;
    font-weight: 600;
    font-size: 0.8rem;
}

.time-header i {
    color: #dc3545;
    font-size: 0.9rem;
}

.time-display {
    margin-bottom: 0.6rem;
}

.current-time {
    font-size: 1.4rem;
    font-weight: 800;
    color: #dc3545;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.2rem;
    font-family: 'Courier New', monospace;
}

.current-date {
    font-size: 0.8rem;
    color: #003893;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

    .time-zone {
        font-size: 0.7rem;
        color: #666;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.15);
        padding: 0.2rem 0.6rem;
        border-radius: 8px;
        display: inline-block;
    }

/* News & Updates Section */
.news-updates-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
    margin: 2rem 0 1rem 0;
}

.news-updates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.subsection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subsection-header h3 {
    color: #003893;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.subsection-header h3 i {
    color: #dc3545;
    font-size: 1.8rem;
}

.subsection-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Updates Subsection */
.updates-subsection {
    margin-bottom: 4rem;
}

.updates-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-columns: 1fr 1fr;
    gap: 2rem;
}

.update-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.update-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.update-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.update-content h4 {
    color: #003893;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.update-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.update-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-status.new {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.update-status.active {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.update-status.ongoing {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.update-date {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}





.section {
    min-height: 100vh;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

.section:not(:last-child) {
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Fade Sections */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease 0.1s;
}

.content-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease 0.2s;
    position: relative;
}

.fade-section.visible .content-left,
.fade-section.visible .content-right {
    opacity: 1;
    transform: translateX(0);
}

/* Grid Items Initial State */
.feature, .highlight, .eboard-member, .event {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fade-section.visible .feature,
.fade-section.visible .highlight,
.fade-section.visible .eboard-member,
.fade-section.visible .event {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-triggered animations */
.fade-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-section.fade-out {
    opacity: 0.3;
    transform: translateY(20px);
}

.content-left.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.content-left.fade-out {
    opacity: 0.3;
    transform: translateX(-20px);
}

.content-right.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

.content-right.fade-out {
    opacity: 0.3;
    transform: translateX(20px);
}

/* Typography */
.main-title {
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #003893 0%, #dc3545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.section-title {
    font-size: 2.4rem;
    color: #003893;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Stats */
.stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc3545;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 26px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: 2px solid #dc3545;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #003893;
    border: 2px solid rgba(0, 56, 147, 0.5);
}

.btn-secondary:hover {
    background: rgba(0, 56, 147, 0.1);
    border-color: #003893;
    transform: translateY(-2px);
}

/* Images */
.hero-image, .about-image, .eboard-image, .events-image, .contact-image {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.hero-img, .about-img, .eboard-img, .events-img, .contact-img {
    width: 65%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-left: auto;
}

/* Make Nepal flag background transparent */
.hero-img[src="nepalflag.png"] {
    background: transparent;
    mix-blend-mode: multiply;
}

.hero-img:hover, .about-img:hover, .eboard-img:hover, .events-img:hover, .contact-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.location {
    font-size: 1rem;
    font-weight: 500;
}

/* Nepal Images Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-self: start;
    margin-top: 0;
}

.nepal-images {
    align-self: start;
    margin-top: 0;
    height: fit-content;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8rem;
}

#nepal .content-right {
    align-self: start;
    margin-top: 0;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.nepal-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    filter: blur(0px);
}

.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 1;
    transition: all 0.3s ease;
    line-height: 1.4;
    z-index: 2;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
    line-height: 1.4;
    z-index: 1;
}

/* Hover Effects */
.image-container:hover .nepal-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.image-container:hover .image-title {
    opacity: 0;
}

.image-container:hover .image-caption {
    opacity: 1;
    display: block;
}

/* Dim other images when one is hovered */
.image-grid:hover .image-container:not(:hover) .nepal-img {
    filter: brightness(0.7) saturate(0.8);
    transform: scale(0.95);
}

/* Mission Vision */
.mission-vision {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission, .vision {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #dc3545;
}

.mission h3, .vision h3 {
    color: #dc3545;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission h3 i, .vision h3 i {
    font-size: 1.05rem;
}

.mission p, .vision p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Features */
.features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature h3 {
    color: #003893;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Nepal Highlights */
.nepal-highlights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
    align-self: start;
    margin-top: 0;
}

/* Quick Facts Section */
.quick-facts-section {
    margin-top: 4rem;
    text-align: center;
}

.facts-title {
    font-size: 2rem;
    color: #003893;
    margin-bottom: 3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.facts-title i {
    color: #dc3545;
    font-size: 1.8rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.fact-content h4 {
    color: #003893;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fact-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}





.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #dc3545;
}

.highlight h3 {
    color: #dc3545;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight h3 i {
    font-size: 1.05rem;
}

.highlight p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}



/* E-Board Carousel */
.eboard-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    text-align: center;
}

.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* E-Board Section Specific Override */
#eboard .container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
}

#eboard .content-center {
    max-width: 1000px;
    margin: 0 auto;
}

#events .container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
}

#events .content-center {
    max-width: 1000px;
    margin: 0 auto;
}

#contact .container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
}

#contact .content-center {
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: 450px;
    max-width: 90vw;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.7);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
    pointer-events: auto;
}

.carousel-slide.prev {
    opacity: 0.7;
    transform: scale(0.85) translateX(-30vw);
    z-index: 2;
}

.carousel-slide.next {
    opacity: 0.7;
    transform: scale(0.85) translateX(30vw);
    z-index: 2;
}

.carousel-slide.hidden {
    opacity: 0;
    transform: scale(0.6);
    z-index: 1;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(51, 51, 51, 0.1);
    color: #333;
    transform: translateY(-2px);
    border-color: #dc3545;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot:hover {
    background: #999;
}

.dot.active {
    background: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 500px;
        width: 100%;
        overflow: hidden;
    }
    
    .carousel-slide {
        width: 90vw;
        max-width: 320px;
    }
    
    .carousel-slide.prev {
        transform: scale(0.7) translateX(-25vw);
        opacity: 0.2;
    }
    
    .carousel-slide.next {
        transform: scale(0.7) translateX(25vw);
        opacity: 0.2;
    }
    
    .eboard-member {
        height: 500px;
        width: 100%;
        max-width: 85vw;
        margin: 0 auto;
    }
    
    .member-photo {
        width: 70vw;
        max-width: 180px;
        height: 180px;
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .position-title {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .member-info {
        max-width: 85vw;
        padding: 1.2rem;
        text-align: center;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .member-info p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    /* Ensure e-board carousel is centered - use !important to override conflicts */
    .eboard-carousel {
        width: 100% !important;
        max-width: 80vw !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        overflow: hidden !important;
        margin: 0 auto !important;
    }
    
    .carousel-wrapper {
        width: 100% !important;
        max-width: 80vw !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }
    
    /* Force all e-board content to be centered and constrained */
    .eboard-carousel * {
        max-width: 80vw !important;
        box-sizing: border-box !important;
    }
    
    /* Override the main e-board carousel rule that's causing conflicts */
    #eboard .eboard-carousel {
        max-width: 80vw !important;
        width: 100% !important;
    }
    
    /* Ensure no horizontal overflow anywhere */
    .section, .container, .content-left, .content-right, .content-center {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Force home section to be centered - same as working sections */
    #home .container {
        text-align: center !important;
        max-width: 100% !important;
        overflow: hidden !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 auto !important;
    }
    
    #home .content-left {
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* Apply the same centering that works for other sections */
    #home {
        text-align: center !important;
    }
    
    #home * {
        text-align: center !important;
    }
}

.eboard-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    height: 500px;
}

.eboard-member:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.member-photo {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 7rem;
    flex-shrink: 0;
    border: none;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

/* Specific positioning for Sameer's photo */
.member-photo img[alt="Sameer Bilas Panta"] {
    object-position: center 30%;
}

/* Specific positioning for Vision's photo */
.member-photo img[alt="Vision Bhandari"] {
    object-position: center bottom;
}

  /* Specific positioning for Swastika's photo */
  .member-photo img[alt="Swastika Ghimire"] {
    object-position: center 70%;
  }

  /* Specific positioning for Rayjan's photo */
  .member-photo img[alt="Rayjan Khadka"] {
    object-position: center 90%;
  }

  /* Specific positioning for Manish's photo */
  .member-photo img[alt="Manish B.K."] {
    object-position: center 80%;
  }

  /* Specific positioning for Ruby's photo */
  .member-photo img[alt="Ruby Paudel"] {
    object-position: center 80%;
}

.member-photo i {
    display: none;
}

.position-title {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-align: center;
}

.member-info {
    background: transparent;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 100%;
    max-width: 300px;
}

.member-info h3 {
    color: #003893;
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.position {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.member-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.member-info p strong {
    color: #000;
}

.member-info p:not(:first-child) {
    color: #CD853F;
    white-space: nowrap;
    font-size: 0.9rem;
    text-align: center;
}

.member-info p[data-member="reehana"] {
    text-align: left;
}

/* Events */
.events-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    align-items: center;
}

.event:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.event-date {
    text-align: center;
    min-width: 80px;
    background: rgba(220, 53, 69, 0.1);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(220, 53, 69, 0.2);
    flex-shrink: 0;
}

.month {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.day {
    display: block;
    font-size: 1.5rem;
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.year {
    display: block;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: #003893;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.event-time, .event-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-time i, .event-location i {
    color: #dc3545;
    font-size: 0.8rem;
    width: 14px;
}

.event-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight-tag {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.event-status {
    text-align: center;
    min-width: 80px;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.status-upcoming {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.status-registration {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status-full {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

/* Past Events */
.past-events {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.past-events h3 {
    color: #003893;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.past-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.past-event {
    text-align: center;
}

.past-event-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 0.75rem;
}

.past-event h4 {
    color: #003893;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.past-event p {
    color: #666;
    font-size: 0.85rem;
}

/* Contact */
.contact-info {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #003893;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.contact-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Meeting Info */
.meeting-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #dc3545;
}

.meeting-info h3 {
    color: #dc3545;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meeting-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.meeting-note {
    color: #dc3545;
    font-weight: 500;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(220, 53, 69, 0.2);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4rem 0 2rem;
    color: #666;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #003893;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-section h3 .tu-text {
    background: linear-gradient(135deg, #000 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-section h3 .nsa-text {
    background: linear-gradient(135deg, #003893 0%, #dc3545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-section p {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc3545;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.footer-bottom p {
    margin-bottom: 0.75rem;
}

.footer-bottom p:last-child {
    color: #dc3545;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    

    
    .eboard-member {
        flex-direction: column;
        text-align: center;
    }
    
    .event {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .nepal-time-widget {
        padding: 0.5rem;
        width: 140px;
        top: 1rem;
        right: 1rem;
    }
    
    .current-time {
        font-size: 1rem;
    }
    
    .current-date {
        font-size: 0.6rem;
    }
    
    .time-header {
        font-size: 0.6rem;
    }
    
    .time-zone {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }
    
    .news-updates-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .news-updates-container {
        padding: 0 1.5rem;
    }
    
    .subsection-header h3 {
        font-size: 1.6rem;
    }
    
    .updates-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .update-card,
    .news-card {
        padding: 1rem;
    }
    
    .update-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fact-card {
        padding: 1.5rem;
    }
    
    .fact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .facts-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
} 

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder p {
    text-align: center;
    font-weight: 500;
} 

/* About Section Specific */
#about .container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
}

#about .content-left {
    max-width: 800px;
    margin: 0 auto;
}

/* Nepal Section Specific */
#nepal .container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
}

#nepal .content-center {
    max-width: 800px;
    margin: 0 auto;
} 

/* Home Section Specific */
#home .container {
    gap: 8rem;
}

#home .content-left {
    padding-right: 2rem;
}

#home .content-right {
    padding-left: 2rem;
} 

/* Contact Section Specific */
#contact .container {
    grid-template-columns: 1fr;
    gap: 0;
}

#contact .content-left {
    max-width: 800px;
    margin: 0 auto;
} 

/* Highlights Section */
.highlights-section {
    margin-top: 3rem;
    padding: 2rem 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.highlights-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.highlights-title i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop/tablet layout: 7 images as 3-2-2, centered */
@media (min-width: 769px) {
    #events .highlights-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 3rem !important;
        padding: 2rem 0 !important;
    }
    
    #events .highlights-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 2rem !important;
        justify-content: center !important;
        max-width: 1100px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Default to 3 per row */
    #events .highlight-image-container {
        flex: 1 1 calc((100% - 4rem) / 3) !important;
        max-width: calc((100% - 4rem) / 3) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Force rows 2 and 3 to be 2 items (3-2-2) */
    #events .highlight-image-container:nth-child(4),
    #events .highlight-image-container:nth-child(5),
    #events .highlight-image-container:nth-child(6),
    #events .highlight-image-container:nth-child(7) {
        flex: 1 1 calc((100% - 2rem) / 2) !important;
        max-width: calc((100% - 2rem) / 2) !important;
    }
    
    #events .highlight-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
    }
}

.highlight-image-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.highlight-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Move first 3 images up to show more of the top */
.highlight-image-container:nth-child(1) .highlight-img {
    object-position: center 20%;
}
.highlight-image-container:nth-child(2) .highlight-img {
    object-position: center 20%;
}
.highlight-image-container:nth-child(3) .highlight-img {
    object-position: center top;
}

.highlight-image-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.highlight-image-caption {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Mobile Responsiveness for Highlights */
@media (max-width: 768px) {
    .highlights-section {
        margin-top: 3rem !important;
        padding: 2rem 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .highlight-image-container {
        padding: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .highlight-img {
        height: 200px !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .highlights-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
} 
