/* Theme Colors */
:root {
    --primary-color: #0b2c3d;
    --secondary-color: #f9a826;
    --bg-light: #f4f4f4;
    --text-color: #333;
    --accent-color: #1c4966;
}

/* General */
body {
    font-family: "Segoe UI", sans-serif;
    /* background-color: var(--bg-light); */
    /* background-color: #ffffff;  */
    background-color: #f0f6ff !important;
    color: var(--text-color);
}

/* Navbar */
.navbar-custom {
    background-color: var(--primary-color);
}
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #fff !important;
}
.navbar-custom .nav-link:hover {
    color: var(--secondary-color) !important;
}
.navbar-scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.hero-section {
    position: relative;
    color: white;
    padding: 150px 0;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/images/image_5.jpg") no-repeat center center/cover;
    filter: blur(3px) brightness(0.5);
    z-index: 0;
}

.hero-section > div {
    position: relative;
    z-index: 1;
}

/* Section Titles */
.section-title {
    margin: 50px 0 20px;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Navbar animation on scroll */
.navbar-scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
    opacity: 0.95;
    transform: translateY(0);
}

.navbar-custom {
    transition: all 0.4s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-custom .nav-link.active {
    color: var(--secondary-color) !important;
    border-bottom: 2px solid var(--secondary-color);
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 4px 0;
}

.footer-link:hover {
    color: #0dcaf0;
    transform: translateX(4px);
}

.social-icon {
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #0dcaf0;
    transform: scale(1.2);
}
