/********** CSS **********/

:root {

    --primary: #5C1865;

    --secondary: #d379df;

    --dark: #222222;

    --light: #656565;

    --bg-light: #F5F5F7;

}



/* @keyframes bounce {

    0%, 20%, 50%, 80%, 100% {

        transform: translateY(0); 

    }

    40% {

        transform: translateY(-20px); 

    }

    60% {

        transform: translateY(-10px); 

    }

} */



html {

    scroll-behavior: smooth;

}



body {

    font-family: "Poppins", sans-serif;

}



::-webkit-scrollbar {

    width: 5px;

}



::-webkit-scrollbar-track {

    /* box-shadow: inset 0 0 5px grey;  */

    border-radius: 7px;

}





::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 5px;

}





/************************ Common ************************/



section {

    padding: 60px 0px;

}



.text-primary {

    color: var(--primary) !important;

}

.text-secondary {

    color: var(--secondary) !important;

}



.bg-primary {

    background-color: var(--primary) !important;

}



.bg-secondary {

    background-color: var(--secondary) !important;

}



.bg-light {

    background-color: var(--bg-light) !important;

}



h1,

h2,

h3,

h4,

h5,

h6 {

    font-family: "Poppins", sans-serif;

}





h1 {

    font-size: 48px;

    font-weight: 700;

}



h2 {

    /* font-size: 40px;

    color: var(--secondary);

    margin-bottom: 25px;

    z-index: 99; */



}



h3 {

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 10px;

}



h4 {

    font-size: 20px;

}



h5 {

    font-size: 19px;

}



h6 {

    font-size: 18px;

}



p {

    font-size: 16px;

    font-weight: 400;

    /* color: var(--light); */

    /* line-height: 15px; */

    margin-bottom: 15px;
    
    margin-top:15px;

    text-align: justify;

}



a {

    /* font-size: 17px; */

    color: var(--dark);

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease-in-out;

    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;



}



a:hover {

    color: var(--primary);

}



img {

    width: auto;

    max-width: 100%;

    border-radius: 5px;

    /*margin-bottom: 10px;*/

}

.border10{

    border-radius: 10px;

}

.border25{

    border-radius: 25px;

}

ol{

    padding-left:0;

}

/* .preloader {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 9999;

} */





/* Content Styles */

.content {

    /* display: none; */

    /* Hide content initially */

}


/* -------------------Preloader--------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

     opacity: 1;
  /* transition: opacity 0.5s ease; */

  }
  
  .preloader img {
    height: 100px;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
  }



/*** Button ***/

.btn {

    transition: .5s;

    font-weight: 500;

}



.btn-primary {

    background-color: var(--primary);

    color: white !important;

    border-radius: 7px;

    border: none;

    text-transform: capitalize;

    /* display: inline-block; */

    padding: 5px 25px;

    min-height: 45px;

    font-weight: 700;

    transition: all 0.3s ease-in-out;

    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;

}



.btn-primary:hover {

    background-color: var(--secondary);

}



.btn-primary,

.btn-outline-primary:hover {

    border-color: var(--primary) !important;

}



.btn-check:focus+.btn-primary,

.btn-primary:focus {

    color: #fff !important;

    background-color: var(--primary);

    border: none !important;

    /* border-color: #000; */

    box-shadow: none;

    border-color: var(--primary) !important;



}



.btn-check:active+.btn-primary,

.btn-check:checked+.btn-primary,

.btn-primary.active,

.btn-primary:active,

.show>.btn-primary.dropdown-toggle {

    color: #fff !important;

    background-color: var(--primary);

    /* border-color: #000; */

    border: none !important;

    border-color: var(--primary) !important;

}



.btn-white {

    background-color: white;

    color: var(--primary) !important;

    z-index: 99;

}



.btn-white:hover {

    color: white !important;

}



.btn-secondary,

.btn-outline-secondary:hover {

    color: var(--dark);

}



.section-title {

    font-size: 30px;

    font-weight: 500;

    color: var(--dark);

    margin-bottom: 15px;

    /* text-transform: capitalize; */

    line-height: normal;

}

.section-title-sub{

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    color: var(--light);

    text-transform: uppercase;

    letter-spacing: 3px;

    position: relative;

    padding-left: 55px;

}

.section-title-sub::before{

    content: "";

    position: absolute;

    display: block;

    width: 40px;

    height: 3px;

    top: 10px;

    background: var(--primary);

    justify-content: center;

    display: flex;

    border-radius: 3px;

    left: 0;

}

.learn-more {

    background-color: var(--primary);

    padding: 10px 20px;

    border-radius: 5px;

    font-weight: 400 !important;

    color: white;

    text-transform: capitalize;

    transition: all 0.3s ease-in-out;

    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;

}



/* .learn-more::after {

    content: "→";

    margin-left: 8px;

    font-weight: bold;

  } */

.learn-more:hover {

    color: var(--secondary);

}

.read-more {

    font-weight: 600 !important;

    color: white;

    text-transform: capitalize;

    transition: all 0.3s ease-in-out;

    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;

}

.learn-more-white{

    background-color: white;

    color: var(--primary);

}

.read-more i{

    padding-left: 7px;

}

/************************ Header************************/

header {

    z-index: 999;

    position: absolute;

    /* padding: 10px 50px; */

    top: 0;

    left: 0;

    right: 0;

    color: white;

    /* background: white; */

}
.main-menu-sec{
    padding: 10px 50px;
}

/* ------- Top-bar ------ */

.top-bar{

    /* display: none; */

    background-color: var(--primary);
    padding: 5px 50px;

}

.top-bar ul{

    margin: 0;

    padding: 0;

    gap: 20px;

  }

  .top-bar ul li a{

    color: white;

    font-size: 13px;

    font-weight: 400;

  }

  .top-bar ul li a:hover{

    color: var(--secondary);

  }

  .top-bar i{

    color: var(--secondary);

    padding-right: 5px;

  }

  .top-links1 ul{
    justify-content: end;
  }
/* ------- Top ------ */



.contact-top {

    display: flex;

    justify-content: end;

    align-items: center;

}



.contact-top ul {

    gap: 20px;

    align-items: center;

    margin-bottom: 0;
    padding: 0;


}



.contact-top i {

    padding-right: 10px;

}



.contact-top a {

    color: white;

    font-weight: 500;

    font-size: 15px;

}
/* .contact-top li:last-child a{
    color: white;
}
.contact-top li:nth-child(5) a, .contact-top li:last-child a{
    color: var(--secondary);
} */

.seperator{
    /* content: "|";
    position: absolute;
    right: -13px;
    color: var(--secondary) !important;
    top: 1px; */

    width: 2px;
    height: 100%;
    margin: 0 15px;
}
.seperator::before {
    content: "|";
    color: var(--secondary);
    font-size: 20px;
    display: inline-block;
    font-weight: 500;
  }

.contact-top i {

    color: var(--secondary);

}



.contact-top a:hover {

    color: var(--secondary) !important;

}



.contact-top a:hover i {

    color: var(--secondary);

}



/* ---------------------------- */

.logo {

    padding: 0;

}



.logo img {

    height: auto;

    width: auto;

    margin-bottom: 0;

    border-radius: 0px;
    max-height: 110px;

}



/* ---------------------------- */



header ul li {

    list-style: none;

}





nav ul li {

    list-style: none;

}



nav ul {

    margin-bottom: 0;

    padding: 0px;

}



.top-main {
    padding: 10px 0px 5px;
    gap: 10px;
}



nav ul li.active a {

    /* color: var(--primary); */

}



.custom-nav ul li a:hover {

    color: var(--secondary) !important;

}









/* custom nav */

/* ======================================================================= */

.custom-nav a {

    font-size: 16px;

    color: white;

    text-transform: none;

    display: flex;

    align-items: center;

    gap: 5px;

    line-height: normal;

    font-weight: 500;

}



.custom-nav .submenu {

    position: absolute;

    display: block;

    background: #fff;

    z-index: 999;

    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);

    top: 25px;

    border-radius: 5px;

    opacity: 0;

    pointer-events: none;

    padding: 10px 0;

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    width: 270px;

}



.custom-nav .navbar {

    gap: 25px;

}



.custom-nav .navbar li {

    position: relative;

}



.custom-nav .submenu.open {

    opacity: 1;

    /* top: 20px; */

    pointer-events: all;

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

}



.custom-nav .submenu .submenu {

    left: 100%;

    top: 0;

}

/*nav.custom-nav .navbar > li:nth-last-child(-n+5) > .submenu .submenu{*/

/*    right: 100% !important;*/

/*    left: auto !important;*/

/*}*/



.custom-nav .navbar .has-child>a::after {

    display: inline-block;

    vertical-align: 0.255em;

    content: "";

    border-top: 0.3em solid;

    border-right: 0.3em solid transparent;

    border-bottom: 0;

    border-left: 0.3em solid transparent;
    position: relative;
    top: 1px;
    left: 3px;

}



.custom-nav .navbar .has-child:hover::after {

    color: var(--primary) !important;

}



/* .custom-nav .navbar a {

    display: flex;

    align-items: center;

    gap: 5px;

    line-height: normal;

} */



.custom-nav .navbar .submenu a {

    padding: 7px 15px;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 5px;

    white-space: nowrap;

    font-size: 15px;

}





nav.custom-nav {

    display: flex;

    justify-content: end;

    /* background-color: var(--primary); */

    padding: 0px !important;

    color: white;

}



nav.custom-nav .navbar>li:nth-last-child(-n+2) .submenu {

    left: auto;

    right: 0;

}

.topNav-btn,
.mainNav-btn{
    display: none;
}
.topNav-btn{
    /* background:var(--secondary); */
    background: transparent;
    border: 1px solid var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    /* border: none; */
    color: var(--secondary); 
    outline: none;
    padding:0 !important;
} 
.topNav-btn svg circle{
    stroke: var(--secondary);
}
/* 
.mainNav-btn {

    display: none;

} */





.mainNav-btn {

    background: var(--secondary);

    width: 40px;

    height: 40px;

    border-radius: 4px;

    border: none;

    margin-right: 10px;

    color: #fff;

    outline: none;

    padding: 0 !important;

}





.menu-overlay {

    display: none;

}



.menu-overlay {

    display: block;

    width: 0%;

    height: 100vh;

    position: absolute;

    right: 0;

    top: 0;

    background-color: rgba(0, 0, 0, 0.6);

    z-index: 999;

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    opacity: 0;

}



.menu-open .menu-overlay {

    width: 100%;

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    opacity: 1;

}





.submenu a {

    color: var(--dark) !important;

}


.online-service{
    display: none;
}

.top-menu-mobile{
    display: none;
    margin-top: 0 !important;
}

.top-menu-mobile::before {
    content: "";
    display: block;
    height: 1px;
    background-color: var(--secondary);
    width: 80%;
    margin-bottom: 8px;
    margin: 0 auto;
    margin-bottom: 10px;
}

/************************ Banner ************************/

.banner {

    position: relative;

    height: 95vh;


    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 0;

}

.banner1 {

    position: relative;

    height: 96vh;

    background-size: cover;

    object-fit: cover;

    background-position: center;

}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.banner .video-wrapper video {

    position: relative;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    min-width: 100%;

    min-height: 100%;

    width: auto;

    /* height: auto; */

    object-fit: cover;

}

.banner .video-wrapper video::-webkit-media-controls {

    display: none !important;

}

.video-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000000e0, #00000000);
    z-index: 1;
    pointer-events: none; /* allows clicks to pass through */
}










.banner1 .overlay {

    /* background: linear-gradient(to top, rgb(0 0 0 / 67%), rgb(0 0 0 / 0%)); */
    background: linear-gradient(#000000e0, #00000000);

    content: '';

    display: block;

    position: absolute;

    /* opacity: 0.2; */

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

    z-index: 1;

}



.banner_caption {

    position: absolute;

    /* bottom: 30%;

    width: 60%;

    text-align: left;

    padding: 25px 100px !important;

    background-color: #1a13030d; */

  

    /* left: 100px; */

    /* max-width: 800px; */

    z-index: 9;

    bottom: 30%;
    left: 0;
    right: 0;
    text-align: center;

    display: none;


  }

  .banner .banner_caption h1 {

      /* align-items: center; */

      color: #fff;

      /* z-index: 999; */

      font-weight: 400;

      /* text-shadow: 2px 2px 2px #a7aaae; */

      font-size: 55px;

      /*line-height: 65px;*/

      letter-spacing: 0;

      margin-bottom: 25px;

  }

  

.notifications{

    background: white;

    position: absolute;

    /* top: 90px; */
    top: 30%;

    left: 30px;

    /* -webkit-transition: all 0.5s ease-in-out;

    transition: all 0.5s ease-in-out; */

    padding: 25px 70px 20px 20px;;

    opacity: 0.8;

    border-radius: 5px;



    transition: all .6s ease-in-out;



    /* transition: all 0.3s ease-in-out;

    -webkit-transition: all 0.3s ease-in-out;

    -moz-transition: all 0.3s ease-in-out;

    -ms-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out; */
    
    z-index: 99;

}

.notifications:hover{

    opacity: 1;

}

.notifications h5{

    font-size: 20px;

    font-weight: 600;

}

.notifications a{

    font-weight: 400;

    color: var(--dark);

}

.notifications a:hover{

    color: var(--primary);

}

.notifications .view-all2{

    font-size: 16px;

    font-weight: 600;

}

.notifications ul{

    padding-left: 0px;

    margin-bottom: 15px;

}

.notifications li{

    border-bottom: 1px solid #cccccc;

    padding: 10px 0px;

    list-style: none;

}

.notifications li:last-child{

    border-bottom: none;

    padding-bottom: 0px;

}

.notifications .read-more:hover{

    color: var(--secondary) !important;

}



.close-btn{

    position: absolute;

    right: 10px;

    top: 10px;

    background: red;

    padding: 5px;

    border-radius: 5px;

    color: white;

    cursor: pointer;

}





/* .notifications {

    transition: all 0.6s ease-in-out; 

    opacity: 1;

    transform: translateY(0);

}



.notifications.hide {

    opacity: 0;

    transform: translateY(-20px);

} */

/************************ Scroll News ************************/
.scroll-news{
    padding: 0;
}
.news-scroll{
    padding-left: 0;

}
.news-updates-title{
    padding: 10px 10px;
    width: 200px;
}
.scroll-news h6{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: white;
}

.news-updates-content{
    display: flex;
    padding: 5px 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    align-items: center;
}
.marquee {
    display: inline-block;
    animation: marquee 10s linear infinite;
    /* white-space: nowrap; */
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
 .news-updates-content a { 
  font-weight: 300;
  padding: 0px 20px;
  color: #fff;
  border-right: 3px solid var(--secondary);
}


/************************ Welcome ************************/

.welcome img {

    margin-bottom: 0px;

    width: 100%;

    background-size: cover;

    object-fit: cover;

    object-position: center;

    height: 320px;

    max-width: 90%;

}

.welcome p{

    margin-bottom: 30px;

}

.welcome-img-sec{

    position: relative;

}

.est{

    position: absolute;

    padding: 30px;

    border-radius: 5px;

    bottom: -20px;

    right: 30px;

}

.est h4{

    font-size: 19px;

}

.est h3{

    font-size: 40px;

    font-weight: 600;

}

/************************ News & Events ************************/

.news-main{

    background-image: url(../img/news-bg.jpg);

    background-position: center;

    background-size: cover;

}

.section-title-view-all{

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.news-main .item {

    border-radius: 5px;

    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); */

}



.news-main img {

    height: 230px;

    object-fit: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    border-radius: 5px 5px 0 0;

    position: relative;

}

.news-info {

    padding: 20px 25px;

}

.news-info h6{

    font-size: 16px;

    position: absolute;

    top: 0;

    left: 0;

    background-color: var(--primary);

    color: white;

    padding: 10px 15px;

    border-top-left-radius: 5px;

    border-bottom-right-radius: 5px;

}

.news-info h5{

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

}



.news-info p {

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

}

.news-info a{

    font-size: 15px;

}

.news-info a:hover{

    color: var(--secondary) !important;

}

 .news-info i{

    padding-left: 5px;

 }





/************************ Owl Carousel - carousel controls - All ************************/



/*.news-carousel .owl-dots{

    display: flex !important;

    gap: 7px;

    justify-content: center;

    margin-top: 20px;

}

.news-carousel .owl-dot span{

    background-color: white;

    opacity: 0.3;

    width: 12px;

    height: 12px;

    display: inline-block;

    border-radius: 10px;

}

.news-carousel .owl-dot.active span{

    background-color: white;

    opacity: 1;

}
*/




/************************ Courses - Tab ************************/

.course-tab .tab-content img{

    height: 240px;

    width: 90%;

}

.course-tab .tab-content ul{

    padding: 0;

    column-count: 4;

}

/* .course-tab .tab-content ul li:nth-child(4) {

    break-after: column;

} */

.course-tab .tab-content ul li{

    position: relative;

    list-style: none;

    /* font-weight: 600; */

    padding-bottom: 10px;



    list-style: none;

    position: relative;

    /* padding: 5px 0px; */

    padding-left: 40px;

    margin-bottom: 6px;

}

.course-tab .tab-content ul li::before{

    position: absolute;

    left: 0;

    font-family: "Font Awesome 5 Free";

    content: "\f00c";

    display: inline-block;

    padding-right: 3px;

    vertical-align: middle;

    font-weight: 900;



    color: white;

    background-color: var(--primary);

    padding: 3px 7px;

    border-radius: 5px;

}

.course-tab .tab-content ul li i{

    color: white;

    background-color: var(--primary);

    padding: 7px;

    border-radius: 5px;

    margin-right: 10px;

}

.tab-wrapper {

    /* background-color: #fff;

    margin-bottom: 10px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */

    padding: 0;

    /* margin-bottom: 40px; */

  }

  .tab-header {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    /* border-bottom: 1px solid #e5e5e5; */

    gap: 20px;

    margin-bottom: 20px;

  }

  

  .tab-header .tab-btn {

    padding: 10px 15px;

    border-radius: 10px;

    background-color: white !important;

    color: var(--primary);

    border: none;

    cursor: pointer;

    font-size: 20px;

    z-index: 1;

    border: 1px solid var(--primary);

    background-color: transparent;

    transition: all 0.3s ease;

  }

  .tab-header .tab-btn:focus {

    outline: none;

  }

  .tab-header .tab-btn i {

    margin-right: 5px;

  }

  .tab-header .tab-btn:hover {

    color: var(--secondary);

  }

  

  .tab-header .tab-btn.active {

    color: white !important;

    background-color: var(--primary) !important;

    /* border: none; */

  }

  

  .tab-header .underline {

    position: absolute;

    bottom: -1px;

    left: 0;

    height: 2px;

    width: 0;

    transform-origin: left;

    background-color: transparent;

    transition: all 0.3s ease;

  }

  

  .tab-body {

    display: flex;

    overflow: hidden;

  }

  .tab-body .tab-content {

    min-width: 100%;

    padding: 30px 0 10px;

  }

  .tab-wrapper[rounded] {

    border-radius: 10px;

  }

  .tab-header[full-width] .tab-btn {

    flex: 1;

    text-align: center;

  }

  .tab-header[background] {

    background-color: var(--secondary);

  }

  .tab-header[background] .tab-btn {

    color: #fff;

  }

  .tab-header[background] .tab-btn.active {

      background-color: var(--secondary);

    color: white;

  }





/************************ Activities ************************/

.activities{

  

}





.activities .item {

    border-radius: 5px;

    padding: 20px;

}



.activities img {

    height: 230px;

    object-fit: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    position: relative;

}

.activities-info {

    padding-top: 20px;

}



.activities h5{

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

}



.activities p {

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

}

.activities .read-more:hover{

    color: var(--secondary) !important;

}

/************************ Facilities ************************/

.facilities{

    position: relative;

    background-image: url(../img/facilities-bg.jpg);

    /* height: 400px; */

    background-attachment: fixed;

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

}

.facilities::before{

    /* opacity: 0.9; */

    background:rgba(92, 24, 101, 0.9);

    content: '';

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    position: absolute;

}



.facilities-item {

    position: relative;

    margin-top: 10px;

    width: 100%;

  }

  .facilities img{

    width: 100%;

    /* height: 100%; */

    height: 335px;

    object-fit: cover;

    object-position: center;

  }

  

.facilities-item h6 {

    position: absolute;

    width: 100%;

    background-color: rgba(58, 15, 64, 0.85);

    color: white;

    height: 70px;

    text-align: center;

    font-size: 19px;

    display: flex;

    align-items: center;

    bottom: 0;

    margin: 0;

    justify-content: center;

    transition: linear .5s;

    border-radius: 5px;

  }



.facilities-item:hover h6 {

    /* animation: totop 1s ease forwards; */

    height: 100%;

  }



  @keyframes totop {

    0% {

       opacity: 0;

       height: 80px;

    }

    100% {

      height: 100%;

    }

  }

  .facilities .facilities-title{

    

  }

/************************ Gallery ************************/

.gallery-grid-container {

    display: grid;

    grid-template-areas:

        'photo1 photo2 photo3 photo3'

        'photo1 photo4 photo3 photo3';

    gap: 15px;

    grid-template-columns: 25% 25% 50%;

}

.photos{

    position: relative;

    border-radius: 5px;

  }

  .photos img{

    /* height: 300px; */

    background-size: cover;

    background-position: center;

    object-fit: cover;

    /*object-position: top;*/

    margin: 0;

    width: 100%;

    min-height: 200px;

  }



 .photos:first-child{

     grid-area: photo1;



  }

  .photos:first-child img{

    height: 420px;

  }

  .photos:nth-child(2){

    grid-area: photo2;

  }

  .photos:last-child img, .photos:nth-child(2) img{



    height: 200px;

}

  .photos:nth-child(3){

    grid-area: photo3;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

  }

  /* .photos:nth-child(4){

    grid-area: photo4;

    

  } */

  .photos:last-child{

    grid-area: photo4;

    /* position: relative;

    display: flex;

    align-items: center;

    justify-content: center; */

  } 

  .photos:nth-child(3) .learn-more{

    position: absolute;

  }

  .photos:nth-child(3) img {
      
    height: 420px;
  }

  .photos:nth-child(3)::after{

    opacity: 0.5;

    background:black;

    content: '';

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    position: absolute;

    border-radius: 5px;

}

.photos:nth-child(3) a{

    position: absolute !important;

    z-index: 9999;

}

.photos:nth-child(3) a{

    color: white;

    font-size: 35px;

    margin: 8px 0;

}

.photos:nth-child(3) a:hover{

    color: var(--secondary);

}

.photos:nth-child(3) a i{

    font-size: 60px;

}

/* .photos:nth-child(3) a img{

    height:50px !important;

    width: 50px !important;

}

.photos:nth-child(3) a img:hover{

    opacity: 0.5;

} */





/************************ Achievements ************************/

.achievements{

  

}





.achievements .item {

    border-radius: 5px;

    /* padding: 20px; */

}



.achievements img {

    height: 200px;

    object-fit: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    position: relative;

    margin: 0;

}

.achievements-info {

    padding: 20px;

}



.achievements h5{

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

}



.achievements p {

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

}

.achievements .read-more:hover{

    color: var(--secondary) !important;

}

/************************ Links ************************/

.links{



}

.links .item{

    padding: 20px;

}

.links img{

    margin: 0 auto;

    display: block;

    height: 100px;

}

.slick-slide{

    margin: 0px 7px;

}

/************************ Footer ************************/

footer {

    background-color: #2F0C33;

    color: white;

    padding: 60px 0px 20px;

    position: relative;

    z-index: 99;

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

}

/* footer::before{

    opacity: 0.95;

    background: #242424;

    content: '';

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    position: absolute;

} */

.footer-logo-sec {

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    margin-bottom: 25px;

}

footer .footer-logo img {

    height: 75px;

    position: relative;

    z-index: 9999;

}

footer .social{

    position: relative;

    justify-content: end;

}

footer h5{

    font-size: 20px;

    font-weight: 600;

    color: white;

    margin-bottom: 20px;

    text-transform: capitalize;

}



footer p,

footer a,

footer ul li {

    color: white;

}



footer .social ul{

    margin: 0;

    gap: 10px;

}



footer .social ul li a{

    background: var(--primary);

    border-radius: 5px;

    color: white;

    /* display: inline-block; */

    width: 35px;

    height: 35px;

    text-align: center;

    align-items: center;

    justify-content: center;

    display: flex;

    font-size: 15px;

    font-weight: 400;



}

footer p, footer a{

    font-size: 15px;

    font-weight: 400;

}



footer a:hover {

    color: var(--secondary);

}



footer .social ul li i {

    font-size: 17px;

}

.address {

    margin-bottom: 10px;

}



/* .address i {

    color: white;

    background-color: var(--primary);

    text-align: center;

    line-height: 27px;

} */

footer .address i{

    background: var(--primary);

    border-radius: 5px;

    color: white;

    /* display: inline-block; */

    width: 35px;

    height: 35px;

    text-align: center;

    align-items: center;

    justify-content: center;

    display: flex;

    font-size: 15px;



}



.address p,

.address a {

    padding-left: 15px;
    
    margin-top: 0px;

    margin-bottom: 0px;

    font-weight: 300;

    line-height: 28px;

}

.address ul{

    align-items: center;

    display: flex;

}

.address li{

    font-size: 20px;

    margin: 0 !important;

}



footer ul {

    padding: 0px;

    margin: 0;

}



footer ul li {

    list-style: none;

    margin-bottom: 15px;

}



.copyright {

    border-top: 1px solid #C2C8CD;

}



.copyright p {

    font-size: 15px;

    padding: 0px;

}



.ipsr img {

    height: 25px;

    margin: 0;

    border-radius: 0;

}



.ipsr img:hover {

    opacity: 0.5;

}



.ipsr p,

.ipsr a {

    padding: 0px;

    margin: 0;

}



.ipsr p,

.ipsr a {

    font-size: 8px !important;

}

/************************ ************************/



/* .quick-links-sub li:hover {

    background: var(--primary);

} */

.quick-links-sub li:hover a, .sidebar-menu .quick-links-sub li a:hover {

    color: var(--bg-light);

}

.faculty-img img {

    width: 100px;

    height: 100px;

    border-radius: 50%;

    object-fit: cover;

}

.faculty-table th {

    color: var(--dark);



}

.faculty-table td {

    vertical-align: middle;

    

}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {

    color: #fff;

    background-color: #300d34;

}

.faculty-dt .nav-link {

    display: block;

    padding: .5rem 1rem;

    color: #300d34;

}





/*-------------------- Button, Tab, Accordion -----------------*/



.sowb-button{

    background-color: var(--primary)!important;

    border-color: #700025 !important;

}



.sowb-button:hover{

    background-color: var(--secondary)!important;

    border-color: #f8b729 !important;

}



/* Custom styles for SiteOrigin tabs */

.sow-tabs .sow-tabs-tab {

    background-color: var(--primary)!important; /* Background for inactive tabs */

    border-radius: 4px;

    font-weight: 500;

    color: #fff !important

}



.sow-tabs .sow-tabs-tab:hover {

    background-color: var(--secondary)!important; /* Hover effect */

    color: #fff !important;

}



.sow-tabs .sow-tabs-panel {

    padding: 15px;

    background-color: #eeeffa;

    border: 1px solid #ddd;

    border-radius: 5px;

}

.sow-tabs-tab-container {

    background-color: #ffff !important;

}



.sow-tabs .sow-tabs-tab.sow-tabs-tab-selected {

    background-color:var(--secondary)!important; /* Background for active tab */

    color: #fff;

}



/* Custom styles for SiteOrigin Accordion */



.sow-accordion .sow-accordion-panel-header{

    background-color: var(--primary)!important;

}



.sow-accordion .sow-accordion-panel-content {

    padding: 15px;

    background-color: #eeeffa !important;

    border-top: 1px solid #ddd;

}

.sow-accordion .sow-accordion-panel-border{

    background-color: #eeeffa !important;

}



.sow-accordion .sow-accordion-title{

    font-weight: 500;

}

.gallery-outer figure.effect-dexter {

    margin-right: 10px !important;

    margin-bottom: 10px !important;

}


/* ------------------- */
/* @media (min-width: 1200px) {
    .custom-nav .has-child:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  
    .submenu {
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      position: absolute;
    }
  
    .submenu.open {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  } */
  
  /*------------Wp button Style-----------*/
  
  .wp-block-button__link {
  background-color: var(--primary);
  color: #fff; /* Default text color */
  border: none;
  padding: 0.75em 1.5em;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover state */
.wp-block-button__link:hover {
  background-color: var(--secondary);
  color: #fff !important;
}
/*-------carosal new styles 27/09/2025-----*/
.news-carousel .owl-nav,
.facilities-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.news-carousel .owl-nav .owl-prev,
.news-carousel .owl-nav .owl-next,
.facilities-carousel .owl-nav .owl-prev,
.facilities-carousel .owl-nav .owl-next {
  background: var(--secondary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.news-carousel .owl-nav i,
.facilities-carousel .owl-nav i {
  color: #fff;
}

.news-carousel .owl-nav .owl-prev:hover,
.news-carousel .owl-nav .owl-next:hover,
.facilities-carousel .owl-nav .owl-prev:hover,
.facilities-carousel .owl-nav .owl-next:hover {
  background: transparent;
  border: 1px solid var(--secondary);
}

.news-carousel .owl-nav .owl-prev:hover i,
.news-carousel .owl-nav .owl-next:hover i,
.facilities-carousel .owl-nav .owl-prev:hover i,
.facilities-carousel .owl-nav .owl-next:hover i {
  color: var(--secondary) !important;
}