
:root {
    --primary-gold: #c5a059;
    --text-main: #333;
    --text-secondary: #666;
    --bg-card: #fff;
    --bg-secondary: #f9f9f9;
    --border-color: #eee;
    --shadow-card: 0 5px 15px rgba(0,0,0,0.05);
}

.news-ticker-bar {
    background-color: #000;
    border-bottom: 1px solid #333;
    width: 100%;
    position: relative;
    z-index: 999;
    overflow: hidden;
    height: 45px;
    margin-top: 70px;
}

.news-ticker-bar .container {
    height: 100%;
    display: block;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.ticker-title {
    background-color: var(--primary-gold);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.ticker-content {
    flex: 1;
    background-color: #000;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.ticker-move {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    color: #f0f0f0;
    font-size: 0.95rem;
}

.ticker-item::after { 
    content: '|'; position: absolute; left: 0; color: #333; font-size: .8rem; 
}

.custom-star {
    color: var(--primary-gold); margin-left: 8px; font-size: 0.75rem;
}

@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(50%, 0, 0); } 
}

.hero {
    height: 90vh;
    min-height: 550px;
    background: url('../img/Hero.png') center center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,.85) 0, rgba(0,0,0,.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 90%;
    max-width: 800px;
    padding: 0 15px;
}
.hero-badge {
    background-color: var(--primary-gold); color: #fff; padding: 6px 18px;
    font-size: .9rem; font-weight: 700; border-radius: 50px;
    display: inline-block; margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212,175,55,.3);
}
.hero h1 {
    font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800;
}
.hero h1 span { color: var(--primary-gold); }
.hero p {
    font-size: 1.25rem; line-height: 1.7; margin-bottom: 35px; opacity: .9; max-width: 600px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.fade-in-up { animation: .8s ease-out forwards fadeInUp; opacity: 0; transform: translateY(30px); }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.stats-section {
    background-color: transparent; padding: 0; margin-top: -60px;
    position: relative; z-index: 10; width: 90%; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center;
}
.stat-item {
    background: linear-gradient(135deg, var(--primary-gold) 0, #b89628 100%);
    color: #fff; padding: 30px 20px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15); transition: transform .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.stat-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
.stat-item::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,.2) 0, transparent 60%);
    opacity: 0; transition: .5s;
}
.stat-item:hover::before { opacity: 1; }
.stat-num {
    display: block; font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.stat-label { font-size: 1.1rem; font-weight: 600; opacity: .95; }

.section-header-flex h3, .about-content h2, .video-text h2, .info-card h3 {
    position: relative; display: inline-block; padding-bottom: 10px; color: var(--text-main); font-weight: 800;
}
.section-header-flex h3::after, .about-content h2::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 60px; height: 4px;
    background-color: var(--primary-gold); border-radius: 2px; transition: width 0.3s;
}
.section-header-flex:hover h3::after, .about-content:hover h2::after { width: 100px; }
.section-header-flex h3 span, .about-content h2 span { color: var(--primary-gold); }

.sub-title {
    color: var(--primary-gold); font-size: 1rem; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
}
.sub-title::before {
    content: ''; width: 30px; height: 2px; background-color: var(--primary-gold); display: inline-block;
}

.about-wrapper { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.about-img, .video-container { flex: 1; min-width: 300px; position: relative; }
.about-img img { border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,.2); position: relative; z-index: 2; width: 100%; }
.img-pattern {
    position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
    border: 5px solid var(--primary-gold); border-radius: 10px; z-index: 1;
}
.about-content, .video-text { flex: 1; min-width: 300px; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.3; }
.about-features { display: flex; gap: 20px; margin: 30px 0; flex-wrap: wrap; }
.feat-box {
    text-align: center; background: var(--bg-card); padding: 15px; border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05); flex: 1; min-width: 120px; border: 1px solid var(--border-color);
}
.feat-box i { font-size: 1.5rem; color: var(--primary-gold); margin-bottom: 10px; display: block; }

.bg-secondary { background-color: var(--bg-secondary); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.info-card {
    background: var(--bg-card); padding: 40px 30px; border-radius: 10px;
    border-top: 3px solid transparent; height: 100%; box-shadow: var(--shadow-card); transition: .3s;
}
.info-card:hover { transform: translateY(-10px); border-top-color: var(--primary-gold); }
.info-card.featured { background: #222; color: #fff; border-top-color: var(--primary-gold); }
.info-card.featured h3, .info-card.featured p { color: #fff; }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-gold); }
.info-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.info-card p { opacity: .8; margin-bottom: 25px; line-height: 1.6; }
.card-link { font-weight: 700; gap: 10px; align-items: center; display: flex; color: var(--primary-gold); }

.video-section {
    padding: 100px 0; position: relative; color: #fff; background-color: #0a0a0a;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px; border-top: 1px solid rgba(197,160,89,.2); border-bottom: 1px solid rgba(197,160,89,.2); overflow: hidden;
}
.video-section::before {
    content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,.15) 0, transparent 70%); filter: blur(80px); z-index: 0; pointer-events: none;
}
.video-section::after {
    content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,.08) 0, transparent 70%); filter: blur(80px); z-index: 0; pointer-events: none;
}
.video-wrapper { gap: 80px; position: relative; z-index: 1; flex-wrap: wrap; align-items: center; display: flex; }
.video-text .tag {
    background: rgba(212,175,55,.1); padding: 8px 20px; font-size: .9rem;
    border: 1px solid var(--primary-gold); border-radius: 50px; display: inline-block;
    margin-bottom: 20px; letter-spacing: 1px; font-weight: 700; color: var(--primary-gold);
}
.video-text h2 {
    font-size: 3rem; margin: 10px 0 25px; line-height: 1.2; font-weight: 800;
    background: linear-gradient(to right, #fff 20%, #c5a059 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.video-text p { color: #ccc; font-size: 1.15rem; line-height: 1.8; margin-bottom: 30px; }
.video-text .btn-gold {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px;
    background: var(--primary-gold); color: #000; font-weight: 700; text-decoration: none; border-radius: 5px; transition: .3s;
}
.video-text .btn-gold:hover { background: #fff; transform: translateY(-3px); }
.video-container::before {
    content: ''; position: absolute; top: 20px; left: -20px; width: 100%; height: 100%;
    border: 2px solid var(--primary-gold); border-radius: 15px; z-index: -1; opacity: .3; transition: .3s;
}
.video-container video {
    border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,.5); width: 100%; display: block;
    border: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2;
}
.video-container:hover::before { top: 10px; left: -10px; opacity: .6; }

.section-header-flex {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; flex-wrap: wrap; gap: 15px;
}
.view-all-btn {
    color: var(--text-secondary); font-size: .9rem; border: 1px solid var(--border-color);
    padding: 8px 20px; border-radius: 20px; transition: .3s;
}
.view-all-btn:hover { background: var(--primary-gold); color: #fff; border-color: var(--primary-gold); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-item { background: var(--bg-card); border-radius: 10px; height: 100%; overflow: hidden; box-shadow: var(--shadow-card); transition: .3s; }
.news-item:hover { transform: translateY(-5px); }
.news-thumb { height: 200px; position: relative; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-item:hover .news-thumb img { transform: scale(1.05); }
.news-cat {
    position: absolute; bottom: 10px; right: 10px; background: var(--primary-gold); color: #fff; padding: 3px 10px; font-size: .75rem; border-radius: 3px;
}
.news-info { padding: 20px; }
.news-info .date { font-size: .8rem; color: var(--text-secondary); display: block; margin-bottom: 10px; }
.news-info h3 { font-size: 1.1rem; margin-bottom: 15px; line-height: 1.5; }
.news-info h3 a { color: var(--text-main); }
.news-info h3 a:hover { color: var(--primary-gold); }
.read-more { color: var(--primary-gold); font-size: .9rem; font-weight: 700; }

.newsletter-section { padding: 60px 0; margin-bottom: -50px; position: relative; z-index: 5; }
.newsletter-box {
    background: linear-gradient(45deg, #111, #222); color: #fff; padding: 50px;
    border-radius: 15px; display: flex; align-items: center; justify-content: space-between;
    gap: 30px; box-shadow: 0 20px 40px rgba(0,0,0,.3); border: 1px solid rgba(197,160,89,.3); flex-wrap: wrap;
}
.newsletter-box .content { flex: 1; min-width: 250px; }
.newsletter-box h3 { margin-bottom: 10px; color: var(--primary-gold); }
.newsletter-form { display: flex; gap: 10px; flex: 1; width: 100%; max-width: 500px; }
.newsletter-form input {
    flex: 1; padding: 15px; border-radius: 5px; border: 1px solid transparent; background: rgba(255,255,255,.1); color: #fff; transition: .3s;
}
.newsletter-form input:focus { border-color: var(--primary-gold); background: rgba(255,255,255,.2); outline: 0; }
.newsletter-form button {
    padding: 0 30px; border-radius: 5px; border: none; background: var(--primary-gold); color: #000; font-weight: 700; cursor: pointer; transition: .3s;
}

@media (max-width: 992px) {
    .video-section { padding: 60px 0; }
    .video-text h2 { font-size: 2.2rem; }
    
    .video-wrapper { 
        gap: 40px; 
        flex-direction: column; 
        text-align: center; 
    }
    
    .video-container::before { top: 10px; left: 10px; width: 100%; height: 100%; }
}

@media (max-width: 768px) {
    
    .news-ticker-bar {
        height: 35px;
        margin-top: 50px; 
        position: relative; 
    }

    .news-ticker-bar .container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .ticker-title {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        margin: 0;
        padding: 0 12px;
        font-size: 0.75rem;
        z-index: 100;
        border-radius: 0 0 0 15px;
    }

    .ticker-content {
        padding-right: 120px !important; 
    }
    
    .ticker-item { font-size: 0.8rem; padding: 0 15px; }

    .hero {
        min-height: 65vh; 
        height: auto;
        background-attachment: scroll; 
        background-position: top center; 
        background-size: cover;
        padding-top: 0 !important;
        padding-bottom: 40px;
        display: flex; 
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        margin-top: 60px; 
    }

    .hero-badge { font-size: .8rem; padding: 5px 15px; margin-bottom: 15px; }
    .hero h1 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 15px; }
    .hero p { font-size: .95rem; line-height: 1.6; margin-bottom: 25px; padding: 0 10px; }
    .hero-btns { justify-content: center; flex-direction: column; gap: 15px; padding: 0 20px; }
    .hero-btns a { display: block; width: 100%; text-align: center; }
    
    .stats-section { margin-top: 0; width: 100%; border-radius: 0; padding: 20px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-item { padding: 20px 10px; border-left: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 10px; margin-bottom: 10px; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; margin-bottom: 0; }
    .stat-num { font-size: 1.8rem; }
    .stat-label { font-size: .9rem; }
    .about-content h2, .video-text h2 { font-size: 1.8rem; }
    .about-wrapper, .newsletter-box { flex-direction: column; text-align: center; }
    .about-img, .video-container, .newsletter-form, .newsletter-form button, .newsletter-form input { width: 100%; }
    .about-img { min-width: auto; }
    .img-pattern { display: none; }
    .newsletter-section { padding: 40px 0; margin-bottom: 0; padding-bottom: 30px; }
    .newsletter-box { padding: 30px 20px; align-items: flex-start; }
    .newsletter-box .content { width: 100%; margin-bottom: 15px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { margin-bottom: 10px; }
    .newsletter-form button { padding: 12px 0; }

    .video-container {
        overflow: hidden; 
    }

    /* Support for Swiper Mobile Carousel */
    .home-news-swiper {
        padding-bottom: 50px !important;
    }
    .home-news-swiper .swiper-pagination-bullet-active {
        background: var(--primary-gold);
    }
    .news-grid.swiper {
        display: block; /* Override CSS grid when Swiper is active */
    }
}

html, body {
    overflow-x: hidden; 
    width: 100%;
    position: relative;
}