
:root {
    --pc: #424242;
    --pc2: #616161;
    --sc: #006BA8;
    --tc: #FF5C00;
    --wc: #ffffff;
    --bc: #000000;
    --yc: #FBA828;
}


html {
    scroll-behavior: smooth;
}





body {

    font-weight: 400;
    font-size: 14px;
    color: var(--pc);
    background: var(--wc);

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

p {
    line-height: 24px;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--pc);
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: var(--pc);
}

button {
    border: none;
}


.custom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.custom-row::after {
    content: '';
    clear: both;
    display: table;
}

.section-title h4 {
    font-size: 35px;
    font-weight: 600;
    line-height: 42px;
    color: var(--sc);
}

.section-title p {
    max-width: 512px;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin: 0 auto;
}

.custom-btn {
    padding: 5px 15px;
    border-radius: 15px;
    border: 1px solid var(--sc);
    background: var(--wc);
    font-weight: 500;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.custom-btn:hover {
    color: var(--wc);
    background: var(--sc);
}

/*scrollup*/
.scrollup {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    background: var(--sc);
    cursor: pointer;
    display: none;
    border: 2px solid var(--sc);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;

}

.scrollup i {
    font-size: 20px;
    color: var(--wc);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.scrollup:hover {
    background: none;
}

.scrollup:hover i {
    color: var(--sc);
}

/* ═══════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.slider-section {
    position: relative;
    overflow: hidden;
}

.hero-img {
    max-height: 520px;
    object-fit: cover;
    object-position: center;
     
}

.hero-caption {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    text-align: left;
    padding: 0 5% 40px;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
}

.hero-badge {
    display: inline-block;
    background: var(--tc);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    max-width: 600px;
    margin-top: 8px;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    max-width: 480px;
    margin-top: 6px;
}

.hero-btn-primary {
    background: var(--sc);
    color: #fff;
    border: 2px solid var(--sc);
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 4px;
    transition: .25s;
}
.hero-btn-primary:hover {
    background: transparent;
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 4px;
    transition: .25s;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.stats-bar {
    background: var(--sc);
    padding: 18px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 10px 0;
    border-right: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 1.9rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

@media (max-width: 575px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.25); }
    .hero-img { max-height: 300px; }
    .hero-caption { padding: 0 4% 20px; }
}

/* ═══════════════════════════════════════════════
   NEWS TICKER
═══════════════════════════════════════════════ */
.news-ticker {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 42px;
}

.ticker-label {
    flex-shrink: 0;
    background: var(--tc);
    color: #fff;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    padding-left: 100%;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-content a {
    color: var(--pc);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.ticker-content a:hover {
    color: var(--sc);
}

.ticker-sep {
    color: #ccc;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   FACEBOOK SOCIAL CARD
═══════════════════════════════════════════════ */
.fb-social-card {
    border: 1px solid #e4e6eb;
    border-radius: 8px;
    padding: 12px;
    background: #f0f2f5;
}

.fb-page-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--pc);
    padding: 6px;
    border-radius: 6px;
    transition: background .2s;
}
.fb-page-link:hover { background: #e4e6eb; }

.fb-page-link .fab.fa-facebook {
    font-size: 36px;
    color: #1877F2;
    flex-shrink: 0;
}

.fb-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
}

.fb-info small {
    font-weight: 400;
    color: #65676b;
    font-size: 11px;
}
