/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #081120;
    --card: #101827;
    --soft: #1d2a44;
    --text: #ffffff;
    --muted: #cbd5e6;
    --primary: #7c5cff;
    --secondary: #42c5ff;
    --accent: #10b981;
    --radius: 24px;
    --transition: 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, #7c5cff33 0%, transparent 35%),
        radial-gradient(circle at bottom right, #42c5ff22 0%, transparent 35%),
        linear-gradient(180deg, #081120, #0b1324);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 15px;
    min-height: 100vh;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }

/* ===== NAVIGATION ===== */
.nav-wrap {
    position: sticky;
    top: 20px;
    z-index: 999;
    padding: 20px;
}

.navbar-modern {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}
.logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active {
    opacity: 1;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-modern {
    border: none;
    border-radius: 40px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 6px 20px rgba(124, 92, 255, 0.3);
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-modern:hover { transform: translateY(-2px); opacity: 0.95; }

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 10px 22px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 40px;
    padding: 10px 22px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}
.btn-outline:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    padding: 40px 20px 80px;
}
.hero-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.gradient {
    background: linear-gradient(90deg, #7c5cff, #42c5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
    height: 320px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #7c5cff22, #42c5ff22), #101827;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
}
.container-modern {
    max-width: 1200px;
    margin: auto;
}
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-title p {
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.6;
}
.page-header {
    padding: 40px 20px 20px;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}
.page-header p {
    color: var(--muted);
    max-width: 650px;
    margin: 12px auto 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}
.service-features li {
    padding: 6px 0;
    color: var(--muted);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-features li::before {
    content: '✓ ';
    color: var(--accent);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
    text-align: center;
}
.pricing-card.popular {
    border: 1px solid var(--primary);
    transform: scale(1.02);
}
.pricing-card .tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
}
.pricing-card .speed {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-card .price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.pricing-card li {
    padding: 6px 0;
    color: var(--muted);
    font-size: 0.8rem;
}
.pricing-card .btn-modern {
    width: 100%;
    padding: 8px;
    font-size: 0.8rem;
}

/* ===== GALLERY ===== */
.gallery-category {
    margin-bottom: 48px;
}
.gallery-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 8px;
    border-left: 3px solid var(--primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 4 / 3;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card.wide { grid-column: span 2; }
.gallery-card.tall { aspect-ratio: 3 / 4; grid-row: span 2; }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-image {
    height: 320px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #7c5cff22, #42c5ff22), #101827;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}
.about-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.stat {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ===== CONTACT ===== */
.contact-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 40px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info-item .icon {
    font-size: 1.2rem;
    width: 40px;
    text-align: center;
}
.contact-info-item a {
    color: var(--secondary);
    text-decoration: none;
}
.contact-info-item a:hover { text-decoration: underline; }

.input-modern {
    width: 100%;
    background: #121c2f;
    border: none;
    border-radius: 14px;
    padding: 12px 16px;
    color: white;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.input-modern:focus {
    outline: 2px solid var(--primary);
}
.input-modern::placeholder {
    color: #6a7a94;
}
textarea.input-modern { height: 100px; resize: vertical; }

/* ===== FOOTER ===== */
.footer {
    padding: 40px 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}
.footer-links a:hover { color: white; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    color: white;
}
.whatsapp-float:hover { transform: scale(1.05); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 20px 20px 0;
    max-width: 1200px;
    margin: auto;
    font-size: 0.8rem;
    color: var(--muted);
}
.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(16, 24, 39, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--radius);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 16px;
        z-index: 1000;
    }
    .nav-links.active { display: flex; }
    .hero-inner, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card.wide, .gallery-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .section { padding: 40px 16px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .contact-box { padding: 20px; }
}

@media(max-width:480px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .navbar-modern { padding: 12px 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-modern,
    .hero-buttons .btn-glass {
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */

/* 1. Fade In Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 2. Floating/Bobbing Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* 3. Gradient Flow Animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 4. Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(124, 92, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 92, 255, 0.5);
    }
}

/* 5. Slide In From Bottom */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 6. Shimmer Effect for Cards */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* 7. Typing effect for hero */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blinkCursor {
    0%, 100% { border-right-color: var(--secondary); }
    50% { border-right-color: transparent; }
}

/* ===== ANIMATION CLASSES ===== */

/* Fade In Classes */
.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scale {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

/* Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* Floating Elements */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-slow {
    animation: floatSlow 4s ease-in-out infinite;
}

/* Gradient Animation */
.gradient-animate {
    background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    animation: gradientFlow 6s ease infinite;
}

/* Glow Animation */
.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Shimmer */
.shimmer {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.05) 50%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* ===== HERO SPECIFIC ===== */

.hero h1 .gradient {
    background: linear-gradient(90deg, #7c5cff, #42c5ff, #10b981, #7c5cff);
    background-size: 300% 100%;
    animation: gradientFlow 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    animation: float 4s ease-in-out infinite;
}

/* ===== CARD HOVER ENHANCEMENTS ===== */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(124, 92, 255, 0.15);
}

.service-card .service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

/* ===== PRICING CARD ANIMATION ===== */

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card.popular {
    animation: glowPulse 3s ease-in-out infinite;
}

/* ===== COUNTER ANIMATION (for stats) ===== */

.counter-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ===== SCROLL REVEAL (Intersection Observer) ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PARTICLE / SPARKLE EFFECT ===== */

.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ===== BUTTON ANIMATIONS ===== */

.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-modern:hover::after {
    width: 300px;
    height: 300px;
}

.btn-glass {
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* ===== NAVBAR ANIMATION ===== */

.navbar-modern {
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    background: rgba(8, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ===== LOADING SPINNER ===== */

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SUCCESS CHECK ANIMATION ===== */

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* ===== RESPONSIVE ANIMATION ADJUSTMENTS ===== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}