/*Graduation Css*/
body{
    margin-top:20px;

}
.arrow{
    display: inline-block;
    transition: transform 0.3s ease;
}
.collapsed .arrow {
    transform: scaleY(1);
}
.arrow {
    transform: scaleY(-1);
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}


.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}


.tab button:hover {
    background-color: #ddd;
}


.tab button.active {
    background-color: #ccc;
}


.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.graduation-attire img{
    transition: transform .0.1s;
}
.graduation-attire img::hover{
    transform: scale(0.1);
}
.icon-hover {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 63px;
    /*background: #333;*/
    border-radius: 50%;
    font-size: 30px;
    color: #780000;
    transition: .5s;
}

.icon-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*background: #ffee10;*/
    transition: .5s;
    transform: scale(.9);
    z-index: -1;
}

.icon-hover:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 15px #780000;
}

.icon-hover:hover {
    color: black;
    box-shadow: 0 0 3px #780000;
    /*text-shadow: 0 0 5px #c52424;*/
}


p{
    line-height: 25px;
    text-align: justify;
    margin-top: 10px;

}
.nav-link{
    font-size:12px;
}

.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;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 0.5s ease-out forwards;

}

.section-title h2::before {
    content: "";
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 1.5px;
    height: 0;
    background-color: #890000;
    animation: borderAnimation 1.5s ease-out forwards;
}

.section-title h2 {
    position: relative; =
    opacity: 0;
    transform: translateX(-10px);
    animation: textAnimation 1s ease-out forwards;
}
.hover-zoom {
    transition: transform .5s ease;
    display: block;
}

.hover-zoom:hover {
    transform: scale(1.1);
}
.scroll-hidden{
    opacity:0 ;
    transition: all 0.7s;
    filter: blur(2px);
}
.scroll-show{
    opacity: 1;
    filter: blur(0px);
}




@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);
    }
}
