:root {
    /* Holographic Dream Color Palette */
    --color-pink-start: #ff00ff; /* Bright Pink */
    --color-pink-end: #da00da;   /* Darker Pink */
    --color-purple-end: #4b0082;  /* Indigo */
    --color-teal-start: #00ffff; /* Aqua */
    --color-teal-end: #008080;   /* Teal */
    --color-silver-start: #e0e0e0; /* Light Silver */
    --color-silver-end: #a0a0a0;  /* Dark Silver */

    --gradient-1: linear-gradient(135deg, var(--color-pink-start), var(--color-purple-start));
    --gradient-2: linear-gradient(45deg, var(--color-teal-start), var(--color-silver-end));
    --gradient-3: linear-gradient(225deg, var(--color-purple-end), var(--color-pink-end));
    --gradient-4: linear-gradient(90deg, var(--color-silver-start), var(--color-teal-end));

    --bg-primary: #1a0033; /* Darker base for depth */
    --text-light: #e0e0e0;
    --text-accent: var(--color-teal-start);
    --text-hover: var(--color-pink-start);
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --modal-bg: rgba(0, 0, 0, 0.8);
    --accent-glow: 0 0 15px var(--color-teal-start), 0 0 25px var(--color-pink-start);
    --text-shadow: 0 0 5px rgba(255,255,255,0.7), 0 0 10px rgba(0,255,255,0.5); /* Shimmer effect */
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif; /* Primary font */
    color: var(--text-light);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from effects */
}

a {
    color: var(--text-accent);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--text-hover);
    text-shadow: var(--text-shadow);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syncopate', sans-serif; /* For headings */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8em;
    text-shadow: var(--text-shadow);
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 1em;
    font-family: 'Raleway', sans-serif; /* For body text */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 1em;
}

.section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 3em auto;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

/* Global Holographic Effects */
body::before, body::after {
    content: '';
    position: fixed;
    width: 200vw;
    height: 200vw;
    border-radius: 50%;
    opacity: 1;.15;
    pointer-events: none;
    z-index: -1;
    animation: gradientShift 20s infinite alternate ease-in-out;
}

body::before {
    top: -50vw;
    left: -50vw;
    background: var(--gradient-1);
    transform: rotate(0deg);
}

body::after {
    bottom: -50vw;
    right: -50vw;
    background: var(--gradient-2);
    transform: rotate(180deg);
    animation-delay: 10s;
}

@keyframes gradientShift {
    0% { transform: rotate(0deg) scale(1); opacity: 1;.15; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 1;.25; }
    100% { transform: rotate(360deg) scale(1); opacity: 1;.15; }
}

/* Shimmer effect for text */
h1, h2, h3 {
    background: linear-gradient(90deg, var(--color-teal-start), var(--color-pink-start), var(--color-purple-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s infinite linear;
    background-size: 200% auto;
}

@keyframes shimmerText {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}


/* Header & Navigation */
.main-header {
    position: fixed;
    width: 100%;
    background: rgba(10, 0, 20, 0.7); /* Dark semi-transparent background */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: var(--text-shadow);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoShine 8s infinite linear;
    background-size: 200% auto;
}

@keyframes logoShine {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2em;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-1); /* Subtle iridescent underline */
    transition: width 0.3s ease-out, left 0.3s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Sections */
section {
    padding: 6em 0; /* Standard section padding */
    position: relative;
    overflow: hidden;
}

section:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.03); /* Lighter translucent background for contrast */
}

/* HERO SECTION: FULLSCREEN CENTERED */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('images/image_19.jpg') no-repeat center center/cover;
    overflow: hidden; /* Hide any overflow from pseudo-elements */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%), var(--gradient-3); /* Dark overlay + subtle gradient for holographic feel */
    opacity: 1;.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1em;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 0.5em;
    line-height: 1.1;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s infinite linear;
    background-size: 200% auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); /* Soft glow */
}

.hero-content p {
    font-size: 1.8em;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

/* ABOUT SECTION: STATS FOCUS */
.about-section h2 {
    text-align: center;
}

.about-section .section-description {
    margin-bottom: 3em;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2em;
    margin: 4em auto;
    text-align: center;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1), 0 0 30px rgba(255, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1); /* Iridescent shimmer */
    opacity: 1;.05;
    transform: rotate(45deg);
    pointer-events: none;
}

.stat-card h3 {
    font-size: 3em;
    color: var(--text-accent);
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s infinite linear;
    background-size: 200% auto;
    text-shadow: var(--accent-glow);
    margin-bottom: 0.2em;
}

.stat-card p {
    font-size: 1.2em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--accent-glow);
}

.supporting-text {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 2em auto 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

/* FEATURES SECTION: VISUAL SHOWCASE */
.features-section h2 {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive 3-card layout */
    gap: 2em;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05), 0 0 25px rgba(255, 0, 255, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-3); /* Another iridescent shimmer */
    opacity: 1;.03;
    transform: rotate(135deg);
    pointer-events: none;
}

.feature-card img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
    filter: brightness(0.8) grayscale(0.2);
}

.feature-card:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1) grayscale(0) drop-shadow(var(--accent-glow));
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 0.8em;
    color: var(--text-light);
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 6s infinite linear;
    background-size: 200% auto;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.feature-card p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Raleway', sans-serif;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--accent-glow);
}

/* GALLERY SECTION: SLIDESHOW */
.gallery-section {
    text-align: center;
}
.slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--accent-glow);
    border: 2px solid var(--border-color);
}

.mySlides {
    display: none;
    background-color: var(--card-bg); /* Fallback */
}

.mySlides img {
    vertical-align: middle;
    border-radius: 18px; /* Slightly smaller than container for inset look */
    object-fit: cover;
    height: 600px; /* Fixed height for slideshow images */
    filter: brightness(0.7) contrast(1.1); /* Dreamy photo effect */
    transition: filter 0.5s ease-out;
}

.slideshow-container:hover .mySlides img {
     filter: brightness(1) contrast(1);
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.8em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    opacity: 1;.7;
    z-index: 10;
    text-shadow: var(--text-shadow);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little more opacity */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    opacity: 1;
    color: var(--text-hover);
    text-shadow: var(--accent-glow);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.active-dot, .dot:hover {
    background: var(--gradient-1);
    box-shadow: var(--accent-glow);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* TEAM SECTION: INTERACTIVE PROFILES */
.team-section h2 {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive 3-card layout */
    gap: 2em;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2em;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05), 0 0 25px rgba(255, 0, 255, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-4); /* Iridescent shimmer */
    opacity: 1;.03;
    transform: rotate(225deg);
    pointer-events: none;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5em;
    border: 3px solid var(--color-teal-start);
    box-shadow: 0 0 10px var(--color-teal-start), 0 0 20px rgba(255, 0, 255, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-member h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    color: var(--text-light);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s infinite linear;
    background-size: 200% auto;
}

.team-member p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Raleway', sans-serif;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--accent-glow);
}

.team-member:hover img {
    border-color: var(--color-pink-start);
    transform: scale(1.05);
}

/* Team Member Modals (Informational, not input forms) */
.team-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001; /* Above header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modal-bg);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    background-image: var(--gradient-1);
    background-blend-mode: overlay;
    margin: auto;
    padding: 2.5em;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--accent-glow);
    position: relative;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 1; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5em;
    border: 4px solid var(--color-pink-start);
    box-shadow: 0 0 15px var(--color-pink-start), 0 0 30px var(--color-purple-start);
}

.modal-content h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s infinite linear;
    background-size: 200% auto;
}

.modal-content p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1em;
    font-family: 'Raleway', sans-serif;
}

.close-button {
    color: var(--color-silver-start);
    font-size: 2.5em;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--color-pink-start);
    text-shadow: var(--accent-glow);
}

/* FAQ SECTION: TABBED INTERFACE */
.faq-section h2 {
    text-align: center;
}

.faq-tabs {
    max-width: 900px;
    margin: 3em auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--accent-glow);
    padding: 2em;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
    gap: 1em;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    border: 2px solid var(--color-teal-start);
    color: var(--text-light);
    padding: 0.8em 1.5em;
    font-size: 1.1em;
    font-family: 'Exo 2', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 1;.3;
}

.tab-button:hover::before,
.tab-button.active::before {
    left: 0;
    opacity: 1;
}

.tab-button.active {
    border-color: var(--color-pink-start);
    color: #fff;
    box-shadow: 0 0 15px var(--color-pink-start);
    text-shadow: 0 0 8px rgba(255,255,255,0.7);
}

.tab-content {
    display: none;
    padding: 1.5em 0;
    animation: fadeInContent 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInContent {
    from { opacity: 1; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    margin-bottom: 1.5em;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5em;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.2em;
    color: var(--text-accent);
    margin-bottom: 0.5em;
    font-family: 'Exo 2', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmerText 6s infinite linear;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Raleway', sans-serif;
}

/* NEWSLETTER SECTION (STATIC INFORMATIONAL) */
.updates-section {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.updates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 1;.3;
    z-index: -1;
    animation: glowPulse 10s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    0% { transform: scale(1); opacity: 1;.3; }
    50% { transform: scale(1.05); opacity: 1;.4; }
    100% { transform: scale(1); opacity: 1;.3; }
}


.updates-section h2 {
    color: var(--text-accent);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s infinite linear;
    background-size: 200% auto;
}

.updates-info {
    max-width: 700px;
    margin: 2em auto 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5em;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), 0 0 30px rgba(255, 0, 255, 0.15);
}

.updates-info p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    margin-bottom: 1.5em;
}

.updates-info p:last-child {
    font-style: italic;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Footer */
.main-footer {
    background: rgba(10, 0, 20, 0.9);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1em;
    }
    .nav-links {
        margin-top: 1em;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 0.5em 1em;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1.3em;
    }

    h2 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.5em;
    }

    .stats-grid, .feature-grid, .team-grid {
        grid-template-columns: 1fr; /* Stacks cards on mobile */
    }

    .slideshow-container .mySlides img {
        height: 350px; /* Adjust height for smaller screens */
    }

    .prev, .next {
        font-size: 1.2em;
        padding: 10px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .modal-content {
        padding: 1.5em;
    }
    .modal-content img {
        width: 120px;
        height: 120px;
    }
    .modal-content h3 {
        font-size: 1.5em;
    }
    .modal-content p {
        font-size: 1em;
    }
    .close-button {
        font-size: 2em;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .logo {
        font-size: 1.5em;
    }
    .nav-links li {
        margin: 0.3em 0.8em;
    }
    .stat-card {
        min-width: unset;
    }
    .slideshow-container .mySlides img {
        height: 250px;
    }
}
/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
