:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Open Sans', sans-serif; background: #f7fafc; overflow-x: hidden; 
     padding-top:50px; }

         /* GLASSMORPHISM NAVBAR */
.navbar-glass {
    
    background: linear-gradient(-45deg,rgba(50, 75, 122, 0.88),rgba(15, 15, 71, 0.7),rgb(0, 0, 0));
    backdrop-filter: blur(5px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(30, 30, 36, 0.37);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* SMOOTH NAV LINKS */
.smooth-nav {
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    margin: 0 0.25rem !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.smooth-nav::before {
    content: '';
    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;
}

.smooth-nav:hover::before {
    left: 100%;
}

.smooth-nav:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* GLASS DROPDOWN */
.glass-dropdown {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-top: 10px;
    animation: dropdownSlide 0.3s ease-out;
}

.dropdown-item {
    color: #333 !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    transform: translateX(5px);
}

/* SMOOTH TOGGLER */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color:white;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* ANIMATIONS */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* SCROLL TRANSPARENCY EFFECT */
@media (min-width: 992px) {
    .navbar-glass.scrolled {
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(25px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
}
       

        /* Hero */
        .hero { 
            min-height: 80vh; 
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #171318 80%); 
            display: flex; 
            align-items: center; 
            position: relative; 
            overflow: hidden; 
            
        }
        .hero::before { 
            content: ''; 
            position: absolute; 
            top: 0; 
            left: 0; 
            right: 0; 
            bottom: 0; 
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"><animate attributeName="cy" values="20;80;20" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"><animate attributeName="cy" values="80;20;80" dur="6s" repeatCount="indefinite"/></circle></svg>'); 
            animation: float 20s infinite linear; 
        }
        @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } }
        .hero-content { position: relative; z-index: 2; }
        .hero h1 { 
            font-size: clamp(3rem, 8vw, 6rem); 
            font-weight: 800; 
            background: rgba(255,255,255,0.9); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text; 
            margin-bottom: 2rem; 
            line-height: 1.1; 
        }
        .hero-lead { font-size: 1.4rem; color: rgba(255,255,255,0.9); margin-bottom: 3rem; max-width: 600px; }

/* Gallery Section */
.gallery-section { 
    padding: 4rem 0; 
    background: var(--glass-bg, #f8f9fa);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
}

/* Gallery Cards */
.gallery-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border-color: rgba(13,110,253,0.3);
}

.gallery-card:active {
    transform: translateY(-5px) scale(1.01);
}

/* Images Grid */
.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

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

/* Video List Items */
@media (min-width: 768px) {
    .video-item {
        min-height: 80px;
    }
}

/* Viewer Section */
#media-viewer {
    min-height: 400px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border: 2px dashed rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#media-viewer:hover {
    border-color: rgba(255,255,255,0.3);
}

#media-viewer.has-media {
    border-style: solid;
    border-color: rgba(13,110,253,0.5);
}

#viewer-image,
#viewer-video {
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#viewer-title {
    color: var(--text-primary, #333);
    font-weight: 600;
    min-height: 24px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .gallery-section { padding: 3rem 0; }
    
    #media-viewer {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .gallery-section { padding: 2rem 0; }
    
    h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    #media-viewer {
        min-height: 250px;
    }
    
    /* Stack sections vertically */
    .col-lg-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-section { padding: 1.5rem 0; }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    .gallery-img {
        height: 160px;
    }
    
    #media-viewer {
        min-height: 220px;
        padding: 1.5rem;
    }
    
    /* Video list full width */
    .video-item {
        flex-direction: column !important;
        gap: 0.75rem;
        text-align: center;
    }
    
    .video-item .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-card,
#media-viewer {
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-card:nth-child(odd) { animation-delay: 0.1s; }
.gallery-card:nth-child(even) { animation-delay: 0.2s; }

/* Loading states */
.gallery-card img {
    transition: opacity 0.3s ease;
}

.gallery-card img:not([src]) {
    opacity: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .gallery-card {
        background: rgba(30,30,40,0.95);
        border-color: rgba(255,255,255,0.1);
    }
    
    #media-viewer {
        background: #1a1a1a;
    }
    
    #viewer-title {
        color: #fff;
    }
}


        /* Modal */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(10px); }
        .modal.show { display: block !important; animation: modalFadeIn 0.5s ease-out; }
        @keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
        .modal-content { 
            background: rgba(255,255,255,0.95); 
            backdrop-filter: blur(20px); 
            margin: 5% auto; 
            padding: 0; 
            border-radius: 24px; 
            width: 90%; 
            color:white;
            max-width: 900px; 
            max-height: 90vh; 
            overflow-y: auto; 
            border: 1px solid rgba(255,255,255,0.3); 
            box-shadow: 0 30px 80px rgba(0,0,0,0.4); 
        }
        .modal-header { padding: 2.5rem 2.5rem 2rem; border-bottom: 1px solid rgba(0,0,0,0.1); text-align: center; position: relative; }
        .modal-title { font-size: 2rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0 0 1rem 0; }
        .close { position: absolute; right: 2rem; top: 2rem; color: #999; font-size: 2rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid rgba(0,0,0,0.1); }
        .close:hover { background: rgba(0,0,0,0.1); color: var(--text-primary); transform: rotate(90deg); }
        .modal-badge { display: inline-flex; background: var(--secondary-gradient); color: white; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
        .modal-body { padding: 2.5rem; }
        .modal-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }

        .footer { background: linear-gradient(135deg, #1a202c, #2d3748); color: white; padding: 4rem 0 2rem; }

        @media (max-width: 768px) { .gallery-img { height: 200px !important; } }

        .text-light {
    text-decoration: none !important;
}

/* TOP SECTION */
.footer-top {
    padding: 60px 20px 30px;
    
}


.aero-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #e0e6ed;
    position: relative;
    overflow: hidden;
}

.footer-top {
    background: linear-gradient(135deg, rgba(102,126,238,0.1) 0%, rgba(118,75,178,0.1) 100%);
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.03"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23a)"/><circle cx="80" cy="80" r="1.5" fill="url(%23a)"/><circle cx="60" cy="30" r="1" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

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

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(102,126,238,0.3);
}

.footer-logo {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.footer-links {
    font-size: 0.95rem;
}

.footer-link {
    color: #b8c1d4 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    line-height: 1.6;
}

.footer-link:hover {
    color: #667eee !important;
    padding-left: 8px;
}

.contact-link {
    color: #e0e6ed;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #667eee;
}



@media (max-width: 768px) {
    .footer-title {
        font-size: 1.75rem !important;
    }
    .social-icons {
        gap: 1rem;
    }
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


.footer-bottom {
    color: #ffffff !important;
}

.footer-bottom .contact-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom .contact-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

.footer-bottom .btn-primary-custom {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.footer-bottom .bi {
    color: #ffffff !important;
}


.smiley-movers {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%; /* 4x container width for seamless loop */
    height: 100%;
    display: flex;
    animation: slide-movers 20s linear infinite;
}

.mover {
    width: 25%; /* Each takes 1/4 of movers container */
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

@keyframes slide-movers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-75%); } /* Moves 3/4 width for loop */
}

/* Stagger entrance for layered effect */
.mover1 { animation-delay: 0s; }
.mover2 { animation-delay: 5s; }
.mover3 { animation-delay: 10s; }
.mover4 { animation-delay: 15s; }

/* Responsive */
@media (max-width: 768px) {
    .smiley-movers { animation-duration: 30s; } /* Slower on mobile */
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 220px;
    padding: 8px;
    opacity: 1.90;                                /* Overall element opacity */
    border-radius: 16px; 
   
}

/* HOVER - Enhanced Opacity Effect */
.logo-smooth:hover .logo-img {
    opacity: 4;                                  /* Full opacity on hover */
    transform: translateY(-6px) scale(1.04);     /* Lift animation */
    box-shadow: 0 20px 48px rgba(7, 18, 85, 0.8);
}
 /* modal styles */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(10px); }
        .modal.show { display: block !important; animation: modalFadeIn 0.5s ease-out; }
        @keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
        .modal-content {background: radial-gradient(circle at 30% 20%, rgba(230, 230, 230, 0.3), transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(139,92,246,0.3), transparent 50%),
                        linear-gradient(135deg, rgba(15,15,35,0.9), rgba(30,30,63,0.9)); backdrop-filter: blur(20px);
                         backdrop-filter: blur(20px); margin: 8% auto; padding: 0; border-radius: 24px; width: 90%; max-width: 550px; 
                         max-height: 85vh; overflow-y: auto; border: 1px solid rgba(2, 27, 252, 0.3); 
                         box-shadow: 0 30px 80px rgba(130, 15, 238, 0.4); 
                         animation: modalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
                         transform-origin: center top; }
        .modal.show .modal-content { transform: scale(1);
        color:white; }
        @keyframes modalSlideIn { from { opacity: 0; transform: scale(0.7) translateY(-30px); } to { opacity: 1; transform: scale(1) translateY(0); } }
        .modal-header { padding: 2.5rem 2.5rem 2rem; border-bottom: 1px solid rgba(0,0,0,0.1); text-align: center; position: relative; }
        .modal-title { font-size: 2rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0 0 1rem 0; }
        .modal-badge { display: inline-flex; background: var(--secondary-gradient); color: white; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
        .close { position: absolute; right: 2rem; top: 2rem; color: #999; font-size: 2rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid rgba(0,0,0,0.1); }
        .close:hover { background: rgba(0,0,0,0.1); color: var(--text-primary); transform: rotate(90deg); }
        .modal-body { 
            padding: 2.5rem; 
            width:500px;
            height:500px;
        }
        .urgency-text { background: linear-gradient(135deg, #18f5d0, #115bfa); color: white; padding: 1rem; border-radius: 16px; margin-bottom: 2rem; text-align: center; font-weight: 600; }


:root { --text-primary: #2c3e50; }
.gallery-card, .video-thumbnail {
  cursor: pointer; transition: all 0.3s ease; border-radius: 12px; 
  overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gallery-card:hover, .video-thumbnail:hover {
  transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.gallery-card img { height: 140px; width: 100%; object-fit: cover; }
.video-thumbnail {
  height: 140px; background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  display: flex; align-items: center; justify-content: center; color: white;
  font-weight: bold; position: relative;
}
.video-thumbnail::before { content: '▶️'; font-size: 2rem; }
.video-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.3); }
.video-info { z-index: 2; padding: 10px; text-align: center; }
.section-title { color: var(--text-primary); font-weight: 700; margin-bottom: 1.5rem; }

/* FULLSCREEN RESPONSIVE POPUP */
#fullscreen-popup {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.98); z-index: 9999; display: none;
  flex-direction: column; justify-content: center; align-items: center;
  padding: 20px;
}
#fullscreen-popup.active { display: flex !important; }
#fullscreen-popup img, #fullscreen-popup video {
  max-height: 90vh; max-width: 95vw; object-fit: contain; border-radius: 10px;
}
.popup-header {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.8); color: white; padding: 12px 24px;
  border-radius: 25px; font-weight: bold; font-size: 1.1rem;
}
.popup-close {
  position: absolute; top: 20px; right: 20px; width: 50px; height: 50px;
  border-radius: 50%; background: rgba(255,255,255,0.2); border: none;
  color: white; font-size: 1.5rem; cursor: pointer;
}
@media (max-width: 768px) {
  .popup-header { font-size: 1rem; padding: 10px 20px; top: 15px; }
  .popup-close { width: 45px; height: 45px; font-size: 1.3rem; top: 15px; right: 15px; }
}

