:root {
    --primary-dark: #394052;
    --footer-dark: #2f3547;
    --accent-red: #e05b63;
    --accent-green: #0a572b;
    --text-dark: #3e4657;
    --muted-text: #5c6270;
    --bg-light: #f4f4f4;
    --card-bg: #f8f8f8;
    --border-soft: #d7d7d7;
}



body {
    font-family: 'Poppins', sans-serif;
    background: #efefef;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.text-success {
  color: #0a572b!important;
}

.text-danger {
  color: #e51d25!important;
}


/* HEADER */
.top-header {
    background: #ececec;
}

.logo-img {
    max-height: 80px;
}

.logo-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 1.15rem;
    color: #4b4b4b;
    margin-top: 4px;
    font-weight: 300;
}

.logo-mark {
    position: relative;
    width: 78px;
    height: 78px;
}

.logo-mark .mark-red,
.logo-mark .mark-green {
    position: absolute;
    display: block;
    border-radius: 6px;
}

.logo-mark .mark-red {
    width: 52px;
    height: 24px;
    border: 6px solid var(--accent-red);
    border-left: 0;
    transform: rotate(-15deg);
    top: 6px;
    left: 10px;
}

.logo-mark .mark-green {
    width: 24px;
    height: 58px;
    border-left: 6px solid var(--accent-green);
    border-bottom: 6px solid var(--accent-green);
    transform: rotate(35deg);
    top: 12px;
    left: 18px;
}

.btn-login,
.btn-primary,
.btn-info,
.btn-danger,
.btn-search {
    min-width: 110px;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
}

.btn-login {
    background: var(--accent-red);
}

.btn-login:hover {
    background: #d14b55;
    color: #fff;
}

.btn-search {
    background: var(--accent-green);
}

.btn-info {
    background: var(--accent-green);
}

.btn-primary {
    background: var(--accent-red);
}
.btn-primary:hover {
    background: #d14b55;
    color: #fff;
}



.btn-search:hover {
    background: #4f7a61;
    color: #fff;
}

/* NAVBAR */
.custom-navbar {
    background: var(--primary-dark);
}

.custom-navbar .nav-link {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 400;
    padding: 0.4rem 1rem;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #dfe5ef;
}

.nav-separator {
    color: #fff;
    opacity: 0.8;
    font-size: 1.2rem;
    margin: 0 2px;
}

/* HERO */
.hero-slider {
    background-image: url('../img/Slider-Back.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    min-height: 360px;
    padding: 80px 0;
    position: relative;

    border-bottom: 1px solid #8c8f97;
}

.hero-slider h1 {
    font-weight: 700;
    font-size: 28px;
    color: #3c4353;
}

.hero-slider p {
    font-size: 20px;
    color: #4d5261;
}

.hero-red-line {
    width: 100%;
    height: 2px;
    background: red;
    margin: 10px 0 20px 0;
}
.hero-red-line-spacer {
    width: 100%;
    height: 2px;
    margin: 10px 0 20px 0;
}

/* INFO SECTION */
.info-section {
    background: linear-gradient(to bottom, #efefef 0%, #ebebeb 100%);
    padding: 70px 0 90px;
    position: relative;
}

.info-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid #cfcfcf;
    border-radius: 28px;
    padding: 28px 26px;
    min-height: 230px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.info-card h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.45;
    color: #4f5563;
    margin-bottom: 0;
}

.active-card h3 {
    color: var(--accent-green);
    text-decoration: underline;
}

/* FOOTER */
.main-footer {
    background: var(--footer-dark);
    color: #fff;
    padding: 28px 0;
}

.main-footer p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .logo-title {
        font-size: 2.4rem;
    }

    .hero-text-box h1 {
        font-size: 2rem;
    }

    .hero-text-box p {
        font-size: 1.15rem;
    }
}

@media (max-width: 991.98px) {
    .logo-title {
        font-size: 2rem;
    }

    .logo-subtitle {
        font-size: 0.95rem;
    }

    .hero-overlay {
        padding: 45px 0 55px;
    }

    .hero-text-box h1 {
        font-size: 1.8rem;
    }

    .hero-text-box p {
        font-size: 1rem;
    }

    .custom-navbar .nav-link {
        padding: 0.7rem 0;
    }

    .nav-separator {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .logo-title {
        font-size: 1.6rem;
    }

    .logo-mark {
        width: 58px;
        height: 58px;
    }

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

    .hero-red-line {
        width: 100%;
    }

    .hero-text-box h1 {
        font-size: 1.5rem;
    }

    .hero-text-box p {
        font-size: 0.95rem;
    }

    .info-card {
        min-height: auto;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 1rem;
    }

    .main-footer p {
        font-size: 0.95rem;
    }
}