.scroll-track {
    position: fixed;
    right: 30px;
    top: 100px;
    width: 4px;
    height: 300px;
    background: #d6d6d6;
    border-radius: 10px;
    z-index: 9999;
}

.scroll-dot {
    width: 14px;
    height: 14px;
    background: #002b8f;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 0;
}

/* Top Bar */
.top-bar {
    background: #180DE0;
    color: white;
    padding: 5px 0;
    font-size: 15px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}
/* Navbar */
.logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
}
.navbar-brand {
    font-size: 30px;
}

.nav-item
{
  font-size: 20px;
  text-decoration-color: blue;
  color: blue;
}

.navbar {
    background-color: #ffffff;
    padding-top: 7px;
    padding-bottom: 5px;
}

.navbar .nav-link {
    color: #003366 !important;
    font-weight: 600;
    margin-left: 15px;
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    color: #0056b3 !important;
}

/* Hero Slider */
#heroCarousel{
    position: relative;
}

.hero-stats{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:20px;

    z-index:10;

    background:rgba(0,43,143,0.85);

    padding:15px 25px;

    border-radius:15px;

    backdrop-filter:blur(5px);
}

.stat-box{
    text-align:center;
    color:white;
    min-width:140px;
}

.stat-box h3{
    font-size:32px;
    font-weight:700;
    margin:0;
    color:#d4af37;
}

.stat-box p{
    margin:0;
    font-size:14px;
}

.carousel-item img {
    height: 700px;
    object-fit: cover;
}

.carousel-caption {
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}


.about-container {

    max-width: 1100px;

}

.about-image {

    width: 550px;
    height: 380px;

    object-fit: cover;

    border-radius: 60px;

    display: block;

    margin: auto;

}

.about-section {
    background-color: #f8f9fa;
}

.about-section h2 {
    color: #002b8f;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    text-align:justify;
}

.about-section li {
    margin-bottom: 10px;
    font-weight: 500;

}

.why-us {
    padding: 50px 0;
    background: #ffffff;
    position: relative;  

}

.why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 70, 0.75);
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.value-card {
    background: #ffffff;

    padding: 25px 15px;

    border-radius: 12px;

    height: 100%;

    min-height: 260px;

    transition: all 0.3s ease;

    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 38px;

    color: #002b8f;

    margin-bottom: 15px;

    display: block;
}

.value-card h3 {
    font-size: 18px;

    color: #333;

    margin-bottom: 12px;

    font-weight: 600;
}

.value-card p {
    color: #666;

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 0;
}

.section-title {

    font-size: 36px;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;

    color: #e0e0e0;

    max-width: 750px;

    margin: auto;

    line-height: 1.6;
}
.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #0d6efd;
    margin: 15px auto 0;
    border-radius: 2px;
}
/*  ---------------- */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
}

.dropdown-item:hover {
    background: #002b8f;
    color: #fff;
}

/* Desktop Hover Dropdown */
@media all and (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* test */


