/* Soothing Color Palette: Soft Blues, Greens, Whites */
:root {
    --primary-color: #4A90E2; /* Soft Blue */
    --secondary-color: #7ED321; /* Soft Green */
    --accent-color: #50E3C2; /* Light Teal */
    --background-color: #F5F7FA; /* Light Gray-White */
    --text-color: #333333; /* Dark Gray */
    --light-text: #FFFFFF; /* White */
    --shadow: rgba(74, 144, 226, 0.2);
    --gradient: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
}

/* Performance Optimizations */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Fade-in animation for enhanced lazy loading */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.loaded {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in input fields */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient);
    color: var(--light-text);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 50px;
    z-index: 2;
}

.hero h1 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--light-text);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0 0 0 100px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}

/* Navigation */
nav {
    background-color: var(--light-text);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 40px;
}

.logo-mobile {
    display: none;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    padding: 15px 0;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    width: 100%;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 20px 25px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover, nav a.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
    background-color: var(--light-text);
}

.section:nth-child(even) {
    background-color: var(--background-color);
}

.section h2 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-50%);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Objectives Section */
.objectives-bg {
    background: var(--gradient);
    color: var(--light-text);
}

.objectives-bg h2 {
    color: var(--light-text);
}

.objectives-bg h2::after {
    background-color: var(--light-text);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.objective-card {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.objective-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.objective-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.objective-card p {
    color: var(--light-text);
}

/* Goals Section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.goal-card {
    background-color: var(--light-text);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--primary-color);
}

.goal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.goal-icon {
    font-size: 2em;
    margin-right: 15px;
}

.goal-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
}

.goal-card p {
    margin-bottom: 20px;
    color: #666;
}

.expand-btn {
    background: var(--gradient);
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    transform: scale(1.05);
}

.goal-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.goal-details.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.goal-details ul {
    margin-left: 20px;
}

.goal-details li {
    margin-bottom: 8px;
    color: #555;
}

/* Programs Section */
.programs-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--light-text);
}

.programs-bg h2 {
    color: var(--light-text);
}

.programs-bg p {
    color: var(--light-text);
}

.programs-bg h2::after {
    background-color: var(--light-text);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--light-text);
}

.program-card p {
    color: var(--light-text);
}

/* Trust Objects Section */
.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.tab-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px; /* Increased padding for better touch targets */
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
    font-size: 1rem;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.tab-content {
    display: none;
    background-color: var(--light-text);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.object-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.object-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #555;
}

.object-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Tab Content Grid */
.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.tab-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .tab-grid {
        grid-template-columns: 1fr;
    }
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
    /* General */
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }

    .hero-content {
        flex: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    /* Navigation */
    .nav-wrapper {
        padding-top: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        color: var(--text-color);
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        margin-bottom: 30px;
    }

    .about-image img {
        max-width: 300px;
    }

    /* Grids */
    .objectives-grid, .goals-grid, .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cards */
    .goal-card, .objective-card, .program-card {
        padding: 20px;
    }

    .goal-card h3, .objective-card h3, .program-card h3 {
        font-size: 1.3em;
    }

    /* Contact */
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        text-align: center;
    }

    /* Donation Form */
    #donationForm {
        padding: 30px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .donate-btn {
        width: 100%;
        padding: 15px;
    }

    /* UPI Section */
    .qr-code {
        width: 150px;
        height: 150px;
    }

    .upi-id {
        font-size: 1em;
    }

    /* Footer */
    footer {
        padding: 30px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .section h2 {
        font-size: 2em;
    }

    .goal-card, .objective-card, .program-card {
        padding: 15px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }
}

/* Parallax Effect */
.hero, .objectives-bg, .programs-bg, .donate-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/* About Section Parallax */
#about {
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
}

/* Contact Section Enhancement */
#contact {
    background-image: linear-gradient(rgba(245, 247, 250, 0.9), rgba(245, 247, 250, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
}

/* Enhanced Card Styling */
.goal-card, .objective-card, .program-card, .contact-item {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.goal-card:hover, .objective-card:hover, .program-card:hover, .contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Typography Enhancements */
h1, h2, h3 {
    letter-spacing: -0.5px;
}

p {
    font-size: 1.05em;
    color: #555;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Donate Section */
.donate-bg {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); /* Soothing Green Gradient */
    color: var(--light-text);
}

.donate-bg h2 {
    color: var(--light-text);
}

.donate-bg h2::after {
    background-color: var(--light-text);
}

.donate-bg p {
    color: var(--light-text);
}

#donationForm {
    max-width: 500px;
    margin: 50px auto 0;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

/* UPI Section */
.upi-container {
    text-align: center;
    margin-top: 30px;
    color: var(--light-text);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: rgba(255,255,255,0.7);
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.divider span {
    padding: 0 15px;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.qr-box:hover {
    transform: translateY(-5px);
}

.qr-code {
    width: 200px;
    height: 200px;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: contain;
}

.upi-id {
    font-size: 1.2em;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--light-text);
}

.upi-note {
    font-size: 0.9em;
    opacity: 0.9;
    color: var(--light-text);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light-text);
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background-color: rgba(255,255,255,0.1);
    color: var(--light-text);
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(126, 211, 33, 0.5);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.donate-btn {
    width: 100%;
    background: var(--gradient);
    color: var(--light-text);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--light-text);
    text-align: center;
    padding: 40px 0;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
    color: var(--light-text);
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-mobile {
        display: block;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .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);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0; /* Start from top */
        flex-direction: column;
        background-color: var(--light-text);
        width: 100%;
        height: 100vh; /* Full height */
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        justify-content: center; /* Center items vertically */
        padding-top: 60px; /* Space for header */
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero {
        flex-direction: column;
        height: auto;
        padding: 100px 0;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .hero-image img {
        height: 300px;
        border-radius: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2em;
    }
}

/* Google Translate Styling */
#google_translate_element {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.goog-te-gadget-simple {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-style: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 20px 25px !important; /* Exact match to nav a padding */
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
    width: 100% !important;
}


.goog-te-gadget-simple:hover {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: var(--text-color) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    color: #333333 !important; /* Force dark contrast color */
    font-weight: 600 !important; /* Make text bolder for better visibility */
    text-decoration: none !important;
    font-size: 1rem !important;
    background: transparent !important;
    width: 100% !important;
}

/* Hover effect to match nav links */
.goog-te-gadget-simple:hover .goog-te-menu-value span {
    color: var(--primary-color) !important;
    cursor: pointer;
}

/* Hide all icons and extra elements */
.goog-te-gadget-icon, 
.goog-te-gadget-simple img,
.goog-te-gadget-simple * img {
    display: none !important;
}

/* Hide Google Branding */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
}

/* Hide "Powered by Google" */
.goog-te-gadget > span {
    display: none !important;
}

/* Fix for mobile menu integration */
@media (max-width: 768px) {
    #google_translate_element {
        margin: 0;
        justify-content: center;
        width: auto;
        order: 2; /* Place after hamburger */
    }
    
    .goog-te-gadget-simple {
        padding: 15px 20px !important; /* Match mobile nav a padding */
        justify-content: center;
        width: auto;
        min-width: 120px;
    }

    .nav-wrapper {
        justify-content: flex-start;
        gap: 10px;
    }

    .logo-mobile {
        order: 1;
    }

    .hamburger {
        order: 3;
    }

    .nav-links {
        order: 4;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
    will-change: opacity, transform;
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}