.who-we-are .title h1{
    text-align: center;
    font-weight: bold;
    margin: 4rem 0;
    color:#001e45;

}
.who-we-are .card .card-title{
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 25px;
    text-decoration: underline;
    color: #F36E21;

}

.who-we-are .card .card-text{
    font-size: 15px;
}

.who-we-are .card .card-text h3{
    font-size: 2rem;
    font-family: Roboto, sans-serif !important;
}
 ol {
    list-style-position: inside;
     font-family: Roboto, sans-serif !important;
}

 ol li::before {
    content: '• ';
    color: black;
    font-size: 1.2em;
}


/*carousel section*/


.carousel{
    margin: 5rem 0 ;
}
/* Hide carousel controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Center carousel indicators */
.carousel-indicators {
    bottom: -55px;
}
/* Style for carousel indicators */
.carousel-indicators li {
    background-color: gray;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.carousel-indicators .active {
    background-color: black;
}

.carousel .carousel-inner{
    height: 100%;
    max-height: 100%;
}
.carousel .carousel-item{
    height: 100%;
    max-height: 100%;
}

.carousel .carousel-item > .row{
    height: 100%;
    max-height: 100%;
}
.carousel .carousel-item .carousel-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-width: 100%;
    min-height: 660px;
}
.carousel .carousel-item .carousel-title {
    font-size: 3rem;
    margin-bottom: 7rem;
    margin-top: 4rem;
    color: #F36E21;
}
.carousel .carousel-item .carousel-description {
    font-size: 1.6rem;
}


/* Departments section */

.departments {
    width: 95%;
    max-width: 1280px;
    /*height: 1000px;*/
    /*min-height: 1000px;*/
    margin: auto ;
}

.departments .title h1 {
    text-align: center;
    font-weight: bold;
    margin: 4rem 0;
    color:#001e45;
}

.departments .nav-tabs {
    justify-content: space-evenly;
    margin-bottom: 2rem;
    border: none !important;
}

.departments .nav-tabs .nav-item {
    margin-left: .3rem !important;
}

.departments .nav-tabs .nav-item .nav-link {
    color: #000;
    margin: 0 5px;
}

.departments .nav-tabs .nav-item .nav-link.active {
    border-bottom: 1px solid #000;
    color: #F36E21;
}

/* Smooth transition for tab content */
.departments .tab-content .tab-pane {
    padding: 2rem 0;
    min-height: 500px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(20px);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out, visibility 0s .5s, position 0s .5s;
}

.departments .tab-content .tab-pane.show {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
    transition: opacity .5s ease-in-out, transform 0.5s ease-in-out;
}

.departments .department-image {
    background-size: cover;
    background-position: center;
}

.departments .department-description {
    padding: 2rem;
}

.departments .department-description h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
}

.departments .department-description p,.departments .department-description ul {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.departments .department-video iframe {
    width: 100%;
    height: 315px;
}


/*graduates section */

.graduates {
    margin: 6rem 0;
}
.graduates .title h1{
    font-weight: bold;
    color:#001e45;
}

.graduates .card{
    margin-bottom: 6rem;
    overflow: hidden;
    border: none;
    transition: transform 0.3s;
}
.graduates .card .card-title{
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: bold;
    color: #F36E21;
}
.graduates .card .card-body{
    font-size: 1.5rem;
}
.graduates .card .card-body p{
    font-size: 1.5rem !important;
}
.graduates .card img{
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}


.graduate-video iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}


/* Media query for mobile screens */
@media screen and (max-width: 768px) {
    .departments {
        width: 100%;
        height: auto;
        min-height: auto;
        margin: 0;
    }

    .departments .tab-content{
        padding: 10px
    }

    .departments .tab-content .department-image{
        height: 400px;
    }


}
