/* DRBA Logo styling */
.drba-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #07294d;
}

.drba-logo span {
    font-size: 12px;
    display: block;
    color: #555;
}

/* Header top styling */
.header-top {
    background-color: #07294d;
    color: #ffffff;
    padding: 10px 0;
}

.header-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-contact ul li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
}

.header-contact ul li:last-child {
    margin-right: 0;
}

.header-contact ul li i {
    color: #ffc600;
    margin-right: 5px;
}

/* White navigation */
.navigation {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Make dropdown menus work properly */
.navigation .navbar-nav>li {
    position: relative;
}

.navigation .navbar-nav>li>a {
    color: #07294d;
    font-weight: 500;
    padding: 25px 15px;
}

.navigation .navbar-nav>li:hover>a,
.navigation .navbar-nav>li>a.active {
    color: #ffc600;
}

.navigation .navbar-nav>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navigation .navbar-nav .sub-menu {
    position: absolute;
    width: 200px;
    background: #fff;
    z-index: 99;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    top: 110%;
    transition: all 0.3s ease;
    padding: 0;
}

.navigation .navbar-nav .sub-menu li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
}

.navigation .navbar-nav .sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #07294d;
    transition: all 0.3s ease;
}

.navigation .navbar-nav .sub-menu li a:hover {
    background: #ffc600;
    color: #fff;
}

/* Facility box specific styling */
.facility-box a {
    color: #07294d;
    text-decoration: none;
}

.facility-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-box:hover a {
    color: #0056b3;
}

/* Vision and Mission styling */
.vision-mission h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #07294d;
    border-bottom: 2px solid #ffc600;
    display: inline-block;
    padding-bottom: 5px;
}

.rounded-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc600;
}

.rounded-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #07294d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-circle i {
    color: #ffc600;
    font-size: 24px;
}

.vision-content,
.mission-content,
.objectives-content {
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc600;
}

.vision-content:hover,
.mission-content:hover,
.objectives-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-content .text,
.mission-content .text,
.objectives-content .text,
.stream-box .text {
    flex-grow: 1;
}

.vision-content .title,
.mission-content .title,
.objectives-content .title,
.stream-box .title {
    color: #07294d;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Stream boxes specific styling */
.stream-box,
.facility-box {
    text-align: left;
    min-height: 80px;
    align-items: center;
}

.stream-box .title,
.facility-box .title {
    margin-bottom: 0;
}

.vision-content p,
.mission-content p,
.objectives-content p {
    margin: 0;
    line-height: 1.5;
    color: #505050;
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 1s ease-in-out;
}

.fade-in-down {
    animation: fadeInDown 1s ease-in-out;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-in-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-in-out;
}

.zoom-in {
    animation: zoomIn 1s ease-in-out;
}

/* Animation delay classes */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
