  /*C S S*/



body{
    margin-top:20px;

}

/*Graduation*/

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.graduation-attire img{
    transition: transform .0.1s; /* Animation */
}
.graduation-attire img::hover{
    transform: scale(0.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


/* Feature Box
---------------------*/
.feature-box-1 {
    padding: 32px;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    top: 0;
    opacity: 0;
    animation: slideIn 0.9s ease-out forwards;
}
.feature-box-1 * {
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
}
.feature-box-1 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 10%;
    margin-bottom: 22px;
    font-size: 27px;
}
.feature-box-1 .icon i {
    line-height: 50px;
    border-radius: 50px;
}
.feature-box-1 h5 {
    color: #030303;
    font-weight: 500;
}
.feature-box-1 h1 {
    color: #030303;
    font-weight: 500;
    color: #780000;
}
p{
    line-height: 25px;
    /*letter-spacing:1.5px ;*/
    text-align: justify;
    margin-top: 10px;
}
.details{
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 19px;
}
.feature-box-1:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    border-radius: 5px;
    background: #d40505;
    -moz-transition: ease all 0.60s;
    -o-transition: ease all 0.60s;
    -webkit-transition: ease all 0.60s;
    transition: ease all 0.60s;
}
.feature-box-1:hover {
    padding-bottom: 20px;
    cursor: pointer;
}
.feature-box-1:hover h5 {
    color: #e71d36;
}
.feature-box-1:hover p {
    color: rgba(0, 0, 0, 0.8);
}
.feature-box-1:hover:after {
    width: 2px;
    height: 100%;
    left: 0;
    right: auto;
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-title h2 {
    font-weight: 700;
    color: #000000;
    padding-left: 20px;
    font-size: 45px;
    margin: 0 0 20px;
    position: relative; /* Required for absolute positioning of pseudo-element */
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 0.5s ease-out forwards;

}

.section-title h2::before {
    content: ""; /* Create an empty pseudo-element for the border */
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 1.5px;
    height: 0; /* Initially set height to 0 */
    background-color: #890000;
    animation: borderAnimation 1.5s ease-out forwards; /* Border animation properties */
}

.section-title h2 {
    position: relative; /* Set position to relative for proper animation */
    opacity: 0; /* Initially set opacity to 0 */
    transform: translateX(-10px); /* Initial position outside the viewport */
    animation: textAnimation 1s ease-out forwards; /* Text animation properties */
}
.feature-content a{
    text-decoration:none;
    color:#000000
}
.feature-content a:hover{
    color:#ffffff;
}

.governance-container{
margin: 80px;
}

@keyframes textAnimation {
    to {
        opacity: 1; /* Fade in the text */
        transform: translateX(0); /* Slide in from left to right */
    }
}

@keyframes borderAnimation {
    to {
        height: 100%;
    }
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
