/* Custom CSS for RASIQ HASHMI Events - Premium Animated & Stylish Edition */
:root {
    --primary-color: #d4af37;
    /* Premium Gold */
    --primary-hover: #f0c950;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #f8fafc;
    --gray-text: #a1a1aa;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles & Smooth Scroll */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Stylish Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-dark {
    background-color: var(--darker-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.title-underline {
    height: 3px;
    width: 0;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    transition: width 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.show .title-underline,
.title-underline.show {
    width: 80px;
}

.title-underline.center {
    margin: 0 auto 20px;
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Buttons with Sweep Effect */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: btn-pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: #000;
    animation: none;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--darker-bg);
}

.btn-secondary:hover:after {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Sticky Glassmorphism Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: transparent;
    padding: 25px 0;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.7);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li a {
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.8;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--primary-color);
}

/* Mobile Menu Glassmorphism */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }
}

/* Hero Section with Parallax */
#hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header {
    background-attachment: fixed !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.6));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 6rem);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(to right, #d4af37 20%, #fff 50%, #d4af37 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0px 5px 15px rgba(212, 175, 55, 0.3);
}

.hero-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 45px;
    letter-spacing: 2px;
    font-weight: 300;
}

/* About Section Stylish Image */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: floatContainer 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatContainer {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
        box-shadow: 0 30px 50px rgba(212, 175, 55, 0.15);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
}

.about-image img {
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    pointer-events: none;
    transform: translateZ(20px);
    /* 3D effect within the container */
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}

/* Stylish Service Cards with Glow */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translateZ(-10px);
}

.service-card:hover {
    transform: translateY(-15px) rotateX(8deg) rotateY(-5deg);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: -15px 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.service-card:hover i {
    transform: translateZ(50px) scale(1.2) rotate(10deg);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card p {
    color: var(--gray-text);
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover h3 {
    transform: translateZ(30px);
}

.service-card:hover p {
    transform: translateZ(20px);
}

/* Why Us Hover Effects */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--darker-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.why-item:hover {
    background-color: #0f0f0f;
    transform: translateY(-10px) rotateX(-5deg) rotateY(5deg);
    box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.why-item:hover .icon-box {
    background: var(--primary-color);
    transform: translateZ(50px) rotateY(180deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.icon-box i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-item:hover .icon-box i {
    color: var(--darker-bg);
    transform: translateZ(20px) rotateY(-180deg);
}

.why-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-item p {
    color: var(--gray-text);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-item:hover h4 {
    transform: translateZ(30px);
}

.why-item:hover p {
    transform: translateZ(20px);
}

/* Stunning Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-overlay span {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Contact Modern Forms */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(145deg, #0a0a0a, #111);
    padding: 50px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 25px;
    margin-top: 5px;
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.contact-form {
    background: linear-gradient(145deg, #0a0a0a, #111);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background-color: #000;
    border: 1px solid #222;
    border-radius: 8px;
    color: var(--light-text);
    font-family: var(--body-font);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    background-color: #050505;
}

/* Footer Premium Upgrades */
.footer {
    background: linear-gradient(180deg, #050505 0%, #000 100%);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-col p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--light-text);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.social-links a:hover::before {
    top: 0;
}

.footer-col h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-col ul li:hover {
    transform: translateX(8px);
}

.footer-col ul li a {
    color: var(--gray-text);
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul li:hover {
        transform: translateY(-3px);
    }

    .footer-col ul li a::before {
        display: none;
    }
}


/* WhatsApp Animated Button */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #1ebe57;
    animation: none;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Advanced Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
}

/* Base states for animations */
.fade-up {
    transform: translateY(60px);
}

.slide-right {
    transform: translateX(-60px);
}

.slide-left {
    transform: translateX(60px);
}

.scale-in {
    transform: scale(0.8);
}

.zoom-in {
    transform: scale(0.85);
}

/* The show class applied by JS IntersectionObserver */
.animate-on-scroll.show {
    opacity: 1;
    transform: translate(0) scale(1);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Staggering fixes for multiple items showing at once */
.show:nth-child(1) {
    transition-delay: 0.1s;
}

.show:nth-child(2) {
    transition-delay: 0.2s;
}

.show:nth-child(3) {
    transition-delay: 0.3s;
}

.show:nth-child(4) {
    transition-delay: 0.4s;
}

.show:nth-child(5) {
    transition-delay: 0.5s;
}

.show:nth-child(6) {
    transition-delay: 0.6s;
}

/* Micro-animations for typography */
.hero-content h1 {
    animation: slideDownFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, textShine 4s linear infinite;
}

.hero-content h2 {
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.hero-content p {
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
    opacity: 0;
}

@keyframes slideDownFade {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}