@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
    overflow-x: hidden;
}


.top-header{
    background: #36348e;
    position: relative;
    padding: 7px;
}

/*
.top-header::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    content: "";
    background: #ffc53a;
    z-index: 2;
}
*/

nav li a.active{
    color: #000 !important;
    font-weight: bold;
}

.social-icons{
    display: flex;
    gap:10px;
    position: relative;
    z-index: 3;
    align-items: center;
}

.social-icons a{
    display: block;
    width: 37px;
    height:37px;
    text-align: center;
    line-height: 37px;
    border-radius: 50px;
    background-color: #ffc53a;
}
.social-icons a i{
    color: #000;
    font-size: 14px;
}

.social-icons p{
    margin-bottom: 0px;
    color: white;
    font-weight: 500;
    margin-right: 10px;
}

.quick-connect ul {
    display: flex;
    align-items: center;
    padding: 0px;
    margin: 0px;
    justify-content: flex-end;
  
}
.quick-connect ul li:nth-child(1){
    border: none;
}

.quick-connect ul li{
    list-style-type: none;
    color: white;
    margin-left: 15px;
    font-weight: 500;
    padding-left: 15px;
    border-left: 1px solid #ffffff50;
}

.quick-connect ul li i{
    color: #ffc53a;
    margin-right: 5px;
}

.quick-connect ul li a{
   color: white;
    font-size: 14px;
}

.header-btn{
    margin-left: 25px;
}

.super-btn a{
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    background: #ffc53a;
    position: relative;
    border-radius: 50px 50px 50px 00px;
    transition: 200ms;
    font-size: 14px;
    overflow: hidden;
    display: inline-block;
}
.super-btn a::before{
  width:00px;
    height: 00px;
    background: #116e63;
    position: absolute;
    left: 50%;
    content: "";
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  border-radius: 50%;
    transition: 500ms;
}

.super-btn a span{
    position: relative;
    z-index: 2;
}

.super-btn a:hover::before{
     width: 300px;
    height: 300px;
}

.banner-below-section{
   text-align: center;
    background-color: #36348e;
}

.announcement-txt h2{
    font-size: 20px;
    color: white;
}




.meain-heading h6 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    color: #ffc53a;
    padding-bottom: 2px;
  
    border-bottom: 2px solid #ffc53a;
}

.meain-heading h2 {
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
    color: #19232B;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
      margin-top: 5px;
    margin-bottom: 15px;
}
.meain-heading h2 span{
    color:  #ffc53a;
}

.meain-heading p{
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.pl-3{
    padding-left: 30px;
}

.message-txt{
    padding: 30px;
    border-radius: 10px;
    background-color: #f1f3f6;
    text-align: center;
}

.message-txt img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    
    border-radius: 10px;
    margin-bottom: 20px;
}
.message-txt h2{
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.message-txt h3{
    font-size: 20px;
    font-weight: bold;
}
.message-txt h4{
    font-size: 16px;
    font-weight: bold;
}
.message-txt p{
    font-size: 14px;
   text-align: justify;
}






.tabs {
  width: 150px;
  background: #f7f7f7;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
}

.tab {
  padding: 12px;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
    color: black;
    font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.tab.active {
  background: #e0e0e0;
  font-weight: bold;
}

.contents {
  flex: 1;
  padding: 20px;
}

.content {
  display: none;
}

.content.active {
  display: block;
}
.education-history{
     background-color: #36348e;;
}

.mission-vision{
    display: grid;
    grid-template-columns: 40% 60%;
   
}


.mission-vision .tabs{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: transparent;
    border: 0px;
}

.mission-vision .tabs button{
    width: 100%;
    border: 0px;
    padding: 20px 20px;
    border-radius: 50px 50px 50px 0px;
    background: white;
    position: relative;
    overflow: hidden;
    
}

.mission-vision .tabs button i{
    margin-right: 20px;
    position: relative;
    z-index: 2;
    color: black;
    font-size: 25px;
}

.mission-vision .tabs button::before{
    position: absolute;
    left: -10px;
    top: 50%;
    height:70px;
    width: 70px;
    border-radius: 50px 50px 50px 0px;
    content: "";
    background: #ffc53a;
    z-index: 1;
    transform: translate(0%, -50%);
}


.mission-vision .tabs button::before{
    position: absolute;
    left: -10px;
    top: 50%;
    height:70px;
    width: 70px;
    border-radius: 50px 50px 50px 0px;
    content: "";
    background: #eaeaea;
    z-index: 1;
    transform: translate(0%, -50%);
}

.tabs button.active::before{
      background: #ffc53a !important;
}
.tabs button.active i{
     color: white;
}

.tabs button:hover::before{
      background: #ffc53a !important;
}
.tabs button:hover i{
      color: white;
}

#content1{

}

.contents{
    margin-left: 170px;
    
    margin-top: -200px;
}
.contents .content{
   padding: 50px;
background-color: #fff;
    position: relative;
    border:1px solid #ffffff20;
    border-radius: 50px 50px 50px 0px;
}

.contents .content::before{
position: absolute;
    left: -30px;
    top: 30px;
    width: 100%;
    height: 100%;
    border: 5px solid #ffc53a;
    content: "";
       border-radius: 50px 50px 50px 0px;
}
.imp-link ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    margin: 0px;
}

.imp-link ul li{
    list-style-type: none;
}

.imp-link ul li a{
    width: 100%;
    display:block;
    padding: 20px;
    height: auto;
   border: 1px solid #00000005;
    transition: 200ms;
}
.imp-link ul li a:hover{
 background: #ffc53a;
}
.imp-link ul li a i{
    display: block;
    color: #ffc53a;
    font-size: 50px;
    margin-bottom: 40px;
    transition: 200ms;
}
.imp-link ul li a:hover i{
    display: block;
    color: #fff;
}
.imp-link ul li p{
    color: black;
    font-size: 18px;
}

.imp-link{
   
    overflow: hidden;
}

.link-section{
    background: #116e63;
     border-radius: 20px;
}

.copyright-strip{
    background: #001128;
    padding: 10px;
}
.copyright-strip p{
    margin-bottom: 0px;
    color: #fff;
    font-size: 14px;
}


.circle-container {
  position: absolute;
  width: 180px;
  height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.center-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  color: #ffc53a;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
}

.circular-text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 18px;
  letter-spacing: 5px;
  animation: rotate 10s linear infinite;
  transform-origin: center;
    color: #ffc53a;
   
}

.bg-red{
    background:  #b1081a;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.circular-text span {
  position: absolute;
  left: 50%;
  transform-origin: 0 90px; /* radius for 180px circle */
}

.big-heading h2 {
    font-size: 50px;
    font-weight: 800;
    color: #b1081a;
    line-height: 50px;
    text-transform: uppercase;
}

.bg-fixed-img{
    background-image: url(../img/university.webp);
    width: 100%;
    height: 100%;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-attachment: fixed;
}

.bg-fixed-img::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .5;
    content: "";
}

.years-logo{
    text-align: right;
}

.years-logo ul{
    display: flex;
    justify-content: flex-end;
}
.years-logo ul li{
    list-style-type: none;
}

    .years-logo ul li img {
        box-shadow: 0px 20px 20px #00000010;
        width: 150px;
        border: 1px solid;
        border-radius: 50px;
    }

.pr-50{
    padding-right: 50px;
}
.years-logo ul li p{
    margin-bottom: 0px;
    font-weight: 500;
    color: black;
    font-size: 20px;
}

.years-logo ul li h3{
    font-size: 100px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #333;
}

.abt-lft{
    position: relative;
}

.abt-box{
    padding: 20px;
    text-align: center;
    background-color: #f1f3f6;
}

.abt-box p{
    font-size: 22px;
    color: black;
    margin-top: 0px;
    font-weight: 600;
}


.abt-box i{
    font-size: 100px;
    color: #ffc53a;
    margin-top: 15px;
}

.global-btn a{
    
    color: white;
    padding: 10px 10px 10px 20px;
    font-weight: 600;
    height: auto;
    width: 100%;
    align-items: center;
    vertical-align: middle;
    background-color: #36348e;
    position: relative;
    overflow: hidden;
}

.global-btn span{
    position: relative;
    z-index: 2;
}
.global-btn span {
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
}


.global-btn.yellow a{
    color: #000;
    padding: 10px 10px 10px 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    align-items: center;
    background-color: #ffc53a;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    max-width: 150px;
    border-radius: 0px;
}


.global-btn.red a{
    color: #fff;
    padding: 10px 10px 10px 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    align-items: center;
    background-color:  #b1081a;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    max-width: 150px;
    border-radius: 0px;
}




.global-btn a::before{
 position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffc53a;
    content: "";
    z-index: 1;
    transition:500ms;
}
.black-btn a::before{
 position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #36348e;
    content: "";
    z-index: 1;
    transition:500ms;
}


.global-btn.yellow a::before{
 position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    z-index: 1;
    transition:500ms;
}


.global-btn.yellow a:hover{
color: white;
}

.global-btn.red a::before{
 position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    z-index: 1;
    transition:500ms;
}


.global-btn.red a:hover{
color: white;
}

.global-btn a:hover::before{
    left: 0;
}


.global-btn a i{
margin-left: 15px;
}

.founder-img img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    margin-right: 10px;
}


.founder-img {
 display: flex;
    align-items: center;
}

.founder-img p{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
}

.director-dp img {
    width: 100%;
    height: 100%;
    min-height: 439px;
    object-fit: cover;
}

.founder-img p span{
    display: block;
    font-size: 16px;
}

.message .container {
    
    overflow: hidden;
}

.bg-blue{
    background-color: #36348e;
}


.bg-blue{
    background-color: #36348e;
}


.director-txt{
    padding: 40px;
}
.quick-links-box{
    padding: 40px;
}

.director-txt h2 {
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 600;
    color: #ffc53a;
}

.bg-yellow{
    background: #ffc53a;
}


.director-txt h3{
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
}


.director-txt h3{
    font-size: 20px;
    font-weight: 500;
    color: white;
    font-family:'Times New Roman', Times, serif;
}

.director-txt p {
   
    font-style: italic;
    color: white;
    font-size: 15px;
    text-align: justify;
}

.quick-links-box h3{
    font-weight: 800;
    font-size: 30px;
    font-family:roboto;
    padding:10px;
    color:#b1081a;
    border: 2px solid #b1081a;
    text-align:center;
}
.quick-arrow {
    background-color: #fff;
    border-radius: 50%;    
    padding: 3px 5px;
    margin-right: 5px;
    color: black;
}

.quick-links-box ul{
    padding: 0px;
    margin: 0px;
}

.quick-links-box ul li{
    list-style-type: none;
    font-weight: 600;
  
    margin-bottom: 7px;
    
}

    .quick-links-box ul li a {
        display: inline-block;
        transition: 200ms;
        position: relative;
        margin-bottom: 5px;
        color: #36348e;
        font-weight: 400 !important;
        font-style: italic;
        font-family: 'Roboto';
    }.quick-links-box ul li a::before{
  width: 100%;
    height: 1px;
    background: black;
    bottom: -3px;
    left: 0;
    position: absolute;
    content: "";
    opacity: 0;
    transition: 200ms;
    
}
.quick-links-box ul li a:hover::before{
 opacity: 1;   
    
}
.department-box:hover {
    box-shadow: 0px 10px 30px #00000020;
    border-color:#ffc53a;
}


.main-heading h2{
    font-size: 40px;
    color: black;
    font-weight: 700;
}

.number{
    display: grid;
   grid-template-columns: 10% 25% 60%;
    column-gap: 2%;
    padding: 40px 0px;
    border-bottom: 1px solid #555;
}

.number h3{
    font-size: 25px;
    color: #333;
    font-weight: 800;
}
.number h4{
    font-size: 25px;
    color: #333;
    font-weight: 800;
}
.number p{
    font-size:16px;
    color: #333;
    font-weight: 400;
    margin-bottom: 0px;
}

.number p a{
    font-weight: 600;
    color: #222;
    margin-left: 10px;
}

.my-items img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.my-items a{
    text-decoration: none;
}
.my-items a:hover{
    text-decoration: none;
}

.item-content {
    text-align: center;
    padding: 2px 15px 2px 15px;
    background: white;
}
    .item-content h3 {
        font-size: 16px !important;
        font-weight: 400 !important;
        font-family: 'Poppins';    
        margin: 20px 0px !important;
        color: #0e0e0d;
    }


    .item-content i {
        background-color: #ffc53a;
        color: #ffffff;
        font-size: 20px;
        float: right;
        border-radius: 50%;
        padding-right: 2px;
    }

.bg-warm{
    background: #f1f3f6;
}
.bg-warm1 {
    background: cornsilk;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    color: white !important;
    background-color:  #b1081a !important;
   
}
.nav-link:focus, .nav-link:hover{
    color: #fff !important;
      background-color:  #b1081a !important;
}

section.program1 h3 {
    font-family: 'Poppins';
    FONT-WEIGHT: 800;
    font-size: 31px;
    margin-top: 20px;
    color: #0e0e0d;
}
section.program h3 {
    font-family: 'Poppins';
    FONT-WEIGHT: 800;
    font-size: 31px;
    margin-top: 20px;
    color: #0e0e0d;
    margin-bottom: 30px;
}

.program {
    position: relative;
}
.program .container {
    position: relative;
    z-index: 2;
}
.program::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 65%;
    background-color: aliceblue;
    content: "";
    z-index: 1;
}
.nav-link{
    color: black !important;
    font-size: 18px;
    font-weight: 600;
    transition: 500ms;
}
.nav-link i{
    margin-left: 10px;
    align-items: center;
    vertical-align: middle;
}
.nav-pills .nav-link{
    border-radius: 0px;
}

.owl-carousel .owl-dots.disabled{
    display: block !important;
}

.bg-green {
    background: #2B7258;
}
.col-md-3.bg-white {
    border-radius: 10px;
    border-top: 8px solid #ffc53a;
}


.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee__inner {
  display: inline-flex;
  animation: marquee 10s linear infinite;
}

.marquee__inner span {
  font-size: 16px;
    color: white;
    margin-right: 50px;
    margin-top: 4px;
}
.marquee__inner span img {
    width: 50px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marqueee-section{
    background-color: #36348e;
}

.ancmnt{
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}
.builders {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 0px 20px 20px #00000010;
    min-height: 470px;
    background-color:white;
}

.director-dp:hover img{
    box-shadow: 0px 20px 30px #00000020;
}

.builders img {
    width: 100px;
    border-radius: 10%;
    border: 1px solid lightgray;
}

.builder-content h3 {
    font-size: 18px;
    font-weight: bold;
    color:  #b1081a;
    margin-top: 15px;
   
}

.builder-content h4{
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}
.builder-content h5{
    font-family:roboto;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}
.builder-content p {
    font-style: italic;
    font-size: 15px;
    text-align: justify;
    color: #555;
    margin-top: 15px;
    padding-left: 10px;
    border-left: 2px solid #b1081a;
}

.builder-content a{
    font-weight: 600;
    color: black;
    vertical-align: middle;
    align-content: center;
}

.builder-content a i{

    vertical-align: middle;
    align-content: center;
}

.sub-heading h2{
    font-size: 30px;
    color: #333;
    font-weight: 700;
    
}

.department-box{
    padding: 40px;
    transition: 500ms;
    
}

.bg-dodge{
    background-color: dodgerblue;
}


.view-all a{
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    display: inline-block;
    float: right;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}
.department-box i {
    font-size: 50px;
}

.department-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
}

.department-box{
    min-height:290px;
}




.partners {
    text-align: center;
    padding: 40px 0;
}

.partners h2 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.partner .slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.partner .slide-track {
    display: flex;
    width: calc(200px * 10); /* number of logos × width */
    animation: scroll 20s linear infinite;
    column-gap: 20px;
    padding: 20px 0px;
    
}

.partner .slide {
    width: 200px;
    height: 180px;
    background-color: white;
    box-shadow: 0px 10px 10px #00000010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
     border-radius: 10px;
    overflow: hidden;
}

.partner .slide img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    transition: 0.3s;
}

.partner .slide img:hover {
  
    opacity: 1;
}
.bl-1{
   border-left: 1px solid #ccc; 
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lader-bio{
    padding: 30px;
}

.lader-bio p{
    color: white;
    line-height: 25px;
}

.lader-bio h3{
    font-weight: 700;
    color: white;
    font-size: 20px;
}
.lader-bio ul {
   padding: 0px;
    margin: 0px;
}
.lader-bio ul li{
    color: white;
    font-size: 16px;
    line-height: 30px;
    list-style-type: none;
}

.lader-bio ul li i{
    margin-right: 10px;
}

.lader-bio ul li a{
    color: white;
}

.leader-box img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
}

.leader-content {
    border: 1px solid #36348e;
    font-family: 'Roboto';
    text-align: center;
    background: #f6f6f6;
    padding: 8px 5px;
}

    .leader-content h2 {
       font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

.leader-content h3 {
    font-size: 16px;
    font-weight: 400;
    
}

.leader-box {
    background-color: #fff !important;
    border-radius: 10px;
    padding: 21px;
    border-top: 5px solid #36348e;
    position: relative;
}

.leader-box-hover {
    max-height: 300px;
    overflow: hidden;
    width: 100%;
}
.on-hover{
    background: white;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 500ms;
}


.leader-box:hover .on-hover {
    top: -400px;
}

.bg-cyan{
    background: #b7d8ef;
}

.facts{
    position: relative;
}

.facts::before{
    position: absolute;
    left:0 ;
    top:0 ;
    width: 50%;
    height: 100%;
    background: #36348e;
    content: "";
    z-index: -1;
}
.main-heading i{
    font-size: 50px;
    color: white;
    position: relative;
    z-index: 3;
}

.main-heading h2{
    font-family: "Poppins", sans-serif;
    padding-left: 10px;
    border-left: 8px solid #ffc53a;
}

.fact-box{
   
}

.fact-box ul li:hover{
    
    border-color: #ffc53a;
    box-shadow: 0px 20px 50px #00000030;
}

.fact-box ul li span{
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.fact-box h3{
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 9;
    font-family: "Poppins", sans-serif;
}
.fact-box p{
    font-weight: 400;
    font-size: 16px;
    position: relative;
    z-index: 9;
}
.fact-box ul{
    padding: 0px;
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.fact-box ul li{
    list-style-type: none;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    transition: 500ms;
    overflow: hidden;
    border-radius: 10px;
}
.fact-box ul li{
    position: relative;
}

.fact-box ul li i{
    margin-left: 20px;
    margin-top: 12px;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 30px;
   position: relative;
    overflow: hidden;
}
.fact-box ul li::before{
    position: absolute;
    width: 70px;
    height: 70px;
    background: #ffc53a;
    content: "";
    left: 15px;
    top: 15px;
    border-radius: 50px;
    transition: 500ms;
    
   
}
.footer .footer-contact p i {
    color: #ffc53a;
    margin-right: 8px;
}

.fact-box ul li:hover::before{
    transform: scale(10);
}

.corner-box{
    padding: 40px;
}

.corner-box h3{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}
.corner-box p{
    margin-bottom: 20px;
}

.corner-box a{
   color: black;
    font-size: 16px;
    font-weight: 600;
}
.corner-box a i{
    margin-left: 5px;
    position: relative;
    top: 3px;
    font-size: 20px;
}
.cta h2 {
    font-size: 30px;
    font-weight: 800;
}
.cta p {
    font-size: 18px;
    margin-bottom: 0px;
}
.cta a {
    text-align: center;
    width: 100%;
    background-color: #333;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    transition: 500ms;
}
.cta a:hover {
    background: #012758;
}

.cta a i{
    margin-left: 50px;
    position: relative;
    top: 0px;
    font-size: 20px;
}

.announcement-bg{
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
}

.announcement {
    background: #ffc53a;
    padding: 40px;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;

}
.global-btn.red {
    width: 100%;
}

.announcement h2 {
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 800;
    color: #333;
    width: 100%;
}

.list-row .news-list{
    position: relative;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    column-gap: 15px;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

.list-row .news-list::before{
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background:  #b1081a;
    content: "";
    z-index: 1;
    transition: 500ms;
}

.list-row .news-list:hover::before{
    left: 0;
}

.list-row .news-list:hover .list-title h3{
   color: white;
}
.list-row .news-list:hover .list-title p{
   color: white;
}

.list-row .news-list .list-title{
    position: relative;
    z-index: 2;
}

    .list-row .news-list .list-title h3 {
        font-size: 16px;
        font-weight: 600;
        color: #b1081a;
        margin-bottom: 0px;
        transition: 300ms;
        font-family: 'roboto';
    }

.list-row .news-list .list-title p{
    margin-bottom: 0px;
    transition: 500ms;
    font-size: 14px;
}
.list-row .news-list .list-title p a i{
   color:  #b1081a;
}
.list-btn {
    position: relative;
    z-index: 2;
}

    .list-btn i {
        font-size: 22px;
        text-align: center;
        line-height: 18px;
        color: #b1081a;;
        transition: 300ms;
        display: block;
    }
   .list-row:hover .list-btn i {
        color: white;
    }

.pb-100{
    padding-bottom: 100px;
}
.my-items {
    border-radius: 10px !important;
    overflow: hidden;
}


.enquiry-btn{
    right: -40px;
    top: 35%;
    z-index: 99;
    background: #36348e;
}
.admission-btn{
    right: -32px;
    top: 50%;
    z-index: 99;
    background: #b1081a;
}

    .fixed-buttons button {
      
        color: #fff;
        border: none;
        padding: 12px 20px;
        cursor: pointer;
        font-size: 15px;
      
        transition: 0.3s;
          transform: translate(0,-50%);
        transform: rotate(90deg);
          position: fixed;
    }

    .fixed-buttons button:hover {
        background: #012758;
    }

    /* Sidebar */
    .sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100%;
        background: #fff;
      
        box-shadow: -3px 0 10px rgba(0,0,0,0.2);
        transition: right 0.3s ease-in-out;
        padding: 00px;
        z-index: 1100;
    }

    .sidebar.open {
        right: 0;
    }

   .sidebar h2 {
    margin-top: 0;
    font-size: 22px;
    text-align: left;
    padding: 20px;
    background: #198754;
    color: white;
}

    /* Overlay for closing when clicking outside */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        display: none;
        z-index: 1000;
    }

    .overlay.active {
        display: block;
    }


.pl-50{
    padding-left: 50px;
}

.candidate-list img{
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    z-index: 1;
    
}

div#sidebar form {
    padding:20px 30px;
}

.candidate-list{
    padding-bottom: 40px;
}

.candidate-bio{
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
    padding: 20px;
    margin-top: -40px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px #00000020;
}

.s-name{
    font-size: 20px;
    color: white;
    font-weight: 600;
    text-align: center;
}
.package{
    font-size: 16px;
    color: white;
    font-weight: 400;
    text-align: center;
}

.placement-number .stats-number h3{
    font-size: 50px;
    color: #333;
    font-weight: 800;
    margin-bottom: 0px;
}
.placement-number .stats-number p{
   font-size: 16px;
}

.placement-partner{
    background-image: url(../img/novacika-1.png);
    background-size: cover;
    background-position: ;
}

.bg-leaders{
    background-image: url(../img/faculty-bg.jpg);
    background-size: cover;
    background-position: ;
}

.portfolio .portfolio-content{
    padding: 10px;
    border: 2px dashed #ffc53a;
}

.mid-footer{
    text-align: center;
    padding: 30px 0px;
    background-color: #001a3c;
}

.visitor-row{
    column-gap: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visitors p{
    color: white;
}

.mid-footer ul{
    margin-bottom: 0px;
    padding: 0px;
}

.mid-footer ul li{
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    margin-bottom: 10px;
}

.mid-footer ul li a{
    color: white;
    text-decoration: none;
    transition: 200ms;
}

.mid-footer ul li a:hover{
    color: #ffc53a;
    text-decoration: none;
}

.copyright a {
    color: #ffc53a;
}

@media only screen and (max-width:768px){
    .header-logo.text-center img {
    width: 100%;
}
    .facts::before {
   width: 100%;
}.fact-box ul {
    padding: 0px;
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}
    .quick-connect ul li a{
        display: none;
    }
    .social-icons p{
        display: none;
    }
    body{
        overflow-x: hidden;
    }
    .circle-container{
        display: none;
    }
}