/* ==========================================================================
   AeroStructure & Co. - Premium Construction & Infrastructure CSS Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-navy: #0B132B;
    --primary-dark: #070D1F;
    --primary-medium: #1C2541;
    --accent-orange: #FF6B00;
    --accent-orange-hover: #E05E00;
    --bg-light: #F4F6F9;
    --bg-dark: #070D1F;
    --text-main: #1D2A44;
    --text-muted: #6C7A9C;
    --white: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows & Glassmorphism */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(7, 13, 31, 0.15);
    --shadow-orange: 0 10px 30px rgba(255, 107, 0, 0.3);
    --glass-bg: rgba(11, 19, 43, 0.75);
    --glass-blur: blur(12px);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Basic Reset & Setup
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto; /* Handled by JS smoothly */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 {
    color: var(--white);
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-orange-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange-hover);
}



/* Particle Canvas Overlay */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Floating behind layout but above flat backgrounds */
}

/* Page Entry Loading Transition */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
    text-align: center;
    position: relative;
}

.loader-logo h2 {
    color: var(--white);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.loader-logo h2 span {
    color: var(--accent-orange);
}

.loader-bar {
    width: 150px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background-color: var(--accent-orange);
    position: absolute;
    top: 0;
    left: 0;
    animation: loadingBar 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Page Smooth Transitions */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 10002;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    pointer-events: none;
}

.page-transition-overlay.active {
    transform: translateY(0);
}

/* ==========================================================================
   Header / Navigation System
   ========================================================================= */
.navbar-custom {
    padding: 20px 0;
    transition: padding 0.4s, background-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-custom.scrolled,
.navbar-custom.menu-open {
    padding: 12px 0;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 991.98px) {
    .navbar-custom.menu-open {
        background-color: var(--primary-dark) !important;
    }
    
    .navbar-custom .navbar-collapse {
        margin-top: 15px !important;
        position: relative;
        z-index: 1;
    }
    
    .navbar-custom .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-dark);
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: -1;
        pointer-events: none;
    }

    .navbar-custom .navbar-nav {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem !important;
    }
    
    .navbar-custom .navbar-collapse > div.ms-lg-3 {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
    }
}

.navbar-brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white) !important;
    letter-spacing: 1px;
}

.navbar-brand-text span {
    color: var(--accent-orange);
}

.navbar-custom .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    margin: 0 10px;
    position: relative;
    padding: 8px 0;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width var(--transition-medium);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--white) !important;
}

.mobile-nav-icon {
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-nav-icon {
        display: inline-block;
        margin-right: 15px;
        width: 25px;
        text-align: center;
        color: inherit;
    }
}

/* Magnetic Buttons & Call to Actions */
.btn-premium {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: color 0.4s ease, transform 0.2s ease;
}

.btn-premium-orange {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-premium-orange::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--primary-navy);
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium-orange:hover {
    color: var(--white) !important;
    box-shadow: var(--shadow-orange);
}

.btn-premium-orange:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-premium-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent-orange);
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium-outline:hover {
    color: var(--white) !important;
    border-color: var(--accent-orange);
}

.btn-premium-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* ==========================================================================
   Hero & Home Page Sections
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 13, 31, 0.95) 0%, rgba(7, 13, 31, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Dynamic Floating Dots */
.floating-element {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
    animation: floatAnimation 15s infinite ease-in-out alternate;
}

.floating-1 { top: 15%; right: 10%; }
.floating-2 { bottom: 10%; left: 5%; animation-duration: 20s; }

/* Interactive 3D Cards */
.card-3d-wrapper {
    perspective: 1000px;
}

.card-3d {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease, transform 0.15s ease-out;
    transform-style: preserve-3d;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-3d:hover {
    box-shadow: var(--shadow-lg);
}

.card-3d-inner {
    padding: 40px;
    transform: translateZ(50px); /* Creates standard 3D lift */
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
    row-gap: 8px;
    text-align: left;
    align-items: start;
}

/* Service Card Layouts */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-icon {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 0;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    align-self: end;
}

.card-3d-inner p {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-bottom: 0;
}

/* Statistics Counters */
.stats-section {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
    display: inline-block;
}

.stats-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Client testimonial slider & carousel */
.testimonial-card {
    padding: 40px;
    border-radius: 8px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--accent-orange);
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
}

.testimonial-client {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Internal Pages Elements (Timeline, Filters, Lightbox)
   ========================================================================== */

/* Timeline styling for About page */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(11, 19, 43, 0.1);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--accent-orange);
    border: 4px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 20px;
        transform: none;
    }
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

@media (max-width: 768px) {
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
}

.timeline-date {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* Project Filter & Cards */
.filter-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    background: none;
    border: 1px solid rgba(11, 19, 43, 0.15);
    color: var(--primary-navy);
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition-medium);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

.project-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 13, 31, 0.9) 0%, rgba(7, 13, 31, 0.3) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.project-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.project-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Custom Lightbox Styles */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 13, 31, 0.95);
    z-index: 10005;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-lightbox.show {
    display: flex;
    opacity: 1;
}

.custom-lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.custom-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: block;
}

.custom-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Team Profile Cards */
.team-card {
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.team-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.team-social-icon:hover {
    transform: scale(1.15);
    background-color: var(--white);
    color: var(--accent-orange);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   Footer & Floating Elements
   ========================================================================== */
.footer-section {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: transform var(--transition-fast), color var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-icon {
    color: var(--accent-orange);
    margin-right: 8px;
    font-size: 0.9em;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.footer-social-btn:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.btn-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-medium);
    border: none;
}

.btn-floating-whatsapp {
    background-color: #25D366;
}

.btn-floating-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-5px);
}

.btn-floating-totop {
    background-color: var(--accent-orange);
    opacity: 0;
    visibility: hidden;
}

.btn-floating-totop.show {
    opacity: 1;
    visibility: visible;
}

.btn-floating-totop:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-5px);
}

/* Keyframes animations */
@keyframes loadingBar {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes floatAnimation {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

/* Section Header Utility */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}

/* Glass card design */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    padding: 35px;
}

/* General Animations classes (AOS emulation) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.reveal-fade.active {
    opacity: 1;
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}
