body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: #333;
}

/* Gradient backgrounds */
.bg-gradient {
    background: linear-gradient(135deg, #FD2C72 0%, #FF7B00 100%);
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #FD2C72 0%, #FF7B00 100%);
    color: #fff;
    border: none;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #FF7B00 0%, #FD2C72 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Cards Hover */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll To Top */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FD2C72;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}

#scrollToTop.show {
    display: flex;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 2rem 0;
}

footer a {
    color: #FF7B00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
