/* ====================================================
   MilanSport Official Website - style.css
   All rights reserved © 2010-2025 Milan Sport Technology
   ==================================================== */

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background: #f5f7fa;
    color: #1a1a2e;
    line-height: 1.7;
    transition: background 0.4s ease, color 0.4s ease;
    min-height: 100vh;
}

body.dark {
    background: #0f0f1a;
    color: #e0e0e0;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

input, textarea {
    font: inherit;
    outline: none;
}

/* ----- Container ----- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ----- Header & Navigation ----- */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo span {
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94560;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #e94560;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    padding: 5px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box input {
    padding: 8px 15px;
    border-radius: 25px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 180px;
    font-size: 14px;
    transition: background 0.3s ease, width 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
    background: rgba(255, 255, 255, 0.25);
    width: 220px;
}

.search-box button {
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.search-box button:hover {
    background: #c73652;
    transform: scale(1.02);
}

.dark-toggle {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dark-toggle:hover {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.2);
    transform: rotate(20deg);
}

/* ----- Breadcrumb ----- */
.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    font-size: 14px;
    color: #aaa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark .breadcrumb {
    background: rgba(255, 255, 255, 0.03);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.breadcrumb a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #f5a623;
}

.breadcrumb span {
    color: #888;
}

/* ----- Hero Section ----- */
.hero {
    background: linear-gradient(135deg, #0f3460, #1a1a2e, #16213e);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero h1 span {
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero-btns a {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btns .btn-primary {
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
}

.hero-btns .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.6);
}

.hero-btns .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
}

.hero-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e94560;
    transform: translateY(-3px);
}

/* ----- Section Shared ----- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

body.dark .section-title p {
    color: #aaa;
}

/* ----- Cards & Glass ----- */
.card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark .card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark .card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark .glass {
    background: rgba(26, 26, 46, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
}

.text-center {
    text-align: center;
}

/* ----- Grid Layouts ----- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

/* ----- Banner Slider ----- */
.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide:nth-child(1) {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
}

.banner-slide:nth-child(2) {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.banner-slide:nth-child(3) {
    background: linear-gradient(135deg, #16213e, #0f3460);
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.banner-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dots span.active {
    background: #e94560;
    transform: scale(1.3);
}

/* ----- FAQ ----- */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 0;
    cursor: pointer;
    transition: background 0.2s;
}

body.dark .faq-item {
    border-color: rgba(255, 255, 255, 0.08);
}

.faq-item:hover {
    background: rgba(233, 69, 96, 0.03);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    gap: 15px;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    transition: transform 0.3s ease;
    color: #e94560;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
    padding-top: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

body.dark .faq-answer {
    color: #bbb;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-top: 15px;
}

/* ----- HowTo Steps ----- */
.howto-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.howto-step .step-num {
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.howto-step .step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: inherit;
}

.howto-step .step-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

body.dark .howto-step .step-content p {
    color: #aaa;
}

/* ----- Team Grid ----- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
}

.team-card svg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    padding: 5px;
    transition: transform 0.3s;
}

.team-card:hover svg {
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card p {
    color: #888;
    font-size: 14px;
}

/* ----- Article Cards ----- */
.article-card {
    padding: 25px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

body.dark .article-card {
    background: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.03);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(233, 69, 96, 0.2);
}

.article-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.article-card:hover h3 {
    color: #e94560;
}

.article-card .date {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.article-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

body.dark .article-card p {
    color: #bbb;
}

.article-card .read-more {
    color: #e94560;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-card .read-more::after {
    content: '→';
    transition: transform 0.3s;
}

.article-card .read-more:hover {
    text-decoration: underline;
    color: #f5a623;
}

.article-card .read-more:hover::after {
    transform: translateX(4px);
}

/* ----- Testimonial Cards ----- */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

body.dark .testimonial-card {
    background: #1a1a2e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: #e94560;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

body.dark .testimonial-card p {
    color: #ccc;
}

.testimonial-card .author {
    font-weight: 600;
    color: #e94560;
    position: relative;
    z-index: 1;
}

/* ----- Client Logos ----- */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.client-logos svg {
    width: 120px;
    height: 60px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s;
}

.client-logos svg:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ----- Related Links ----- */
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.related-links a {
    background: rgba(233, 69, 96, 0.1);
    color: #e94560;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-links a:hover {
    background: #e94560;
    color: #fff;
    transform: translateY(-2px);
}

/* ----- Alt Image Placeholder ----- */
.alt-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 14px;
    color: #888;
    transition: all 0.6s ease;
}

body.dark .alt-img {
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    color: #666;
}

/* ----- Number Grid / Counter ----- */
.counter {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1.2;
}

.number-grid {
    text-align: center;
    padding: 20px;
}

.number-grid p {
    color: #888;
    font-size: 15px;
}

/* ----- Footer ----- */
.footer {
    background: #0f0f1a;
    color: #aaa;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #e94560;
    margin-top: 8px;
    border-radius: 2px;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s;
}

.footer a:hover {
    color: #e94560;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    align-items: center;
}

.footer-bottom p {
    line-height: 1.6;
}

.footer-qr {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-qr svg {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.footer-qr svg:hover {
    transform: scale(1.05);
}

/* ----- Back to Top ----- */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.6);
}

/* ----- Scroll Animations ----- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Dark Mode Specifics ----- */
body.dark .breadcrumb a {
    color: #f5a623;
}

body.dark .breadcrumb span {
    color: #777;
}

body.dark .article-card .date {
    color: #777;
}

body.dark .article-card .read-more {
    color: #f5a623;
}

body.dark .hero {
    background: linear-gradient(135deg, #0a0a1a, #1a1a2e, #0f0f1a);
}

body.dark .hero::before {
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
}

body.dark .faq-item:hover {
    background: rgba(233, 69, 96, 0.05);
}

/* ----- Responsive: Tablet & Mobile ----- */
@media (max-width: 1024px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 40px;
    }
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul.open {
        display: flex;
    }

    nav ul li a {
        padding: 10px 0;
        font-size: 16px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btns a {
        padding: 12px 28px;
        font-size: 15px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .search-box input {
        width: 120px;
    }

    .search-box input:focus {
        width: 150px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .banner-slider {
        height: 280px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .back-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .header-inner {
        gap: 10px;
    }

    .logo {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-btns a {
        padding: 10px 22px;
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .card {
        padding: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .search-box input {
        width: 100px;
        font-size: 13px;
        padding: 6px 12px;
    }

    .search-box button {
        padding: 6px 14px;
        font-size: 13px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .banner-slider {
        height: 220px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .howto-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .howto-step .step-num {
        margin-bottom: 5px;
    }

    .footer-qr svg {
        width: 80px;
        height: 80px;
    }
}

/* ----- Print Styles ----- */
@media print {
    body {
        background: #fff;
        color: #000;
    }
    header, footer, .back-top, .menu-toggle, .search-box, .dark-toggle {
        display: none !important;
    }
    .hero {
        padding: 40px 0;
        background: #f5f7fa !important;
        color: #1a1a2e !important;
    }
    .hero h1 span {
        -webkit-text-fill-color: #e94560;
    }
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
    .banner-slider {
        height: auto;
    }
    .banner-slide {
        position: relative;
        opacity: 1 !important;
        padding: 20px;
    }
    .banner-dots {
        display: none;
    }
}