*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Georgia, serif !important;
}

:root{
    --primary-color:#E47718;
    --secondary-color:#762474;
    --tertiary-color:#D2337E;
    --blue-color:#0B85C6;
    --white-color:#fff;
    --black-color:#000;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.main-header{
position:sticky;
top:0;
z-index:999;
background: var(--white-color);
}

.container{
width:95%;
max-width:1400px;
margin:auto;
}

.topbar{
background: var(--black-color);
padding:12px 0;
}

.topbar-inner{
display:flex;
justify-content:flex-end;
gap:50px;
align-items:center;
}

.top-links{
display:flex;
gap:28px;
}

.top-links a{
color: var(--white-color);
font-size:15px;
text-decoration:none;
}

.top-right{
display:flex;
align-items:center;
gap:18px;
}

.top-right a{
color: var(--white-color);
}

.tour-btn{
background: var(--primary-color);
padding:9px 22px;
border-radius:6px;
color: var(--white-color) !important;
font-weight:600;
text-decoration:none;
}

.navbar-area{
background: var(--white-color);
padding:7px 0;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.navbar-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:70px;
}

.desktop-menu ul{
display:flex;
gap:34px;
align-items:center;
}

.desktop-menu a{
color: var(--secondary-color);
font-size:16px;
font-weight:500;
text-decoration:none;
}

.mobile-toggle{
display:none;
background:none;
border:none;
font-size:28px;
color: var(--white-color);
cursor:pointer;
}

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:300px;
height:100%;
background: var(--white-color);
transition:.4s;
box-shadow:-5px 0 20px rgba(0,0,0,.15);
padding:80px 30px;
z-index:9999;
}

.mobile-menu.active{
right:0;
}

.mobile-menu ul{
display:flex;
flex-direction:column;
gap:20px;
}

.mobile-menu a{
color: var(--black-color);
font-size:18px;
}

@media(max-width:1200px){

.desktop-menu ul{
gap:18px;
}

.desktop-menu a{
font-size:15px;
}

}

@media(max-width:1400px){

.desktop-menu{
display:none;
}

.top-links{
display:none;
}

.mobile-toggle{
display:block;
}

.logo img{
height:60px;
}

.top-right{
gap:15px;
}

}

@media(max-width:768px){

.logo img{
height:48px;
}

.topbar{
padding:10px 0;
}

.tour-btn{
display:none;
}

.top-right{
gap:12px;
}

}

@media(max-width:576px){

.logo img{
height:42px;
}

.navbar-area{
padding:12px 0;
}

.mobile-menu{
width:100%;
}

}

.desktop-menu{
    position: static;
}

.desktop-menu > ul{
    position: static;
}

.desktop-menu > ul > li{
    position: static;
}

.mega-parent{
    position: static;
}

.mega-menu{

    position:absolute;
    
    left:0;
    right:0;
    top:100%;
    margin:0 auto;
    width:90vw;
    height: 450px;

    background: var(--secondary-color);

    display:flex;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:99999;

    overflow:hidden;

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.mega-parent:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.mega-left{

    width:330px;

    background: var(--secondary-color);

    padding:25px 0;

    flex-shrink:0;

}

.mega-left ul{

    margin:0;
    padding:0;
    list-style:none;
    display: block;
}

.mega-left li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color: var(--white-color);

    padding:18px 20px;

    cursor:pointer;

    transition:.3s;

    border-left:4px solid transparent;

}

.mega-left li:hover,
.mega-left li.active{

    background: var(--primary-color);

    border-left:4px solid  var(--primary-color);

}

.mega-left li span{

    font-size:16px;

    font-weight:500;

}

.mega-left li i{

    transition:.3s;

}

.mega-left li:hover i{

    transform:translateX(6px);

}

.mega-right{

    flex:1;

    background: var(--secondary-color);
    border-left:1px solid #636060;

    padding:50px 70px;

}

.mega-content{

    display:none;

}

.mega-content.active{

    display:block;

}

.mega-content h3{

    color:var(--white-color);

    font-weight:700;

    font-size:25px;

    margin-bottom:35px;

}

.mega-links{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px 45px;

}

.mega-links a{

    color: var(--white-color);

    font-size:16px;

    text-decoration:none;

    transition:.25s;

}

.mega-links a:hover{

    color: var(--primary-color);

    padding-left:10px;

}

.mega-content{
    display:none;
    width:100%;
    gap:60px;
    align-items:flex-start;
}

.mega-content.active{
    display:flex;
}

.mega-links{
    flex:1;
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
}

.mega-image{
    width:38%;
}

.mega-image img{
    width:100%;
    height:330px;
    object-fit:cover;
}

.faculty-dropdown{
    position:static;
}

.faculty-menu{

    position:absolute;

    top:100%;
    left:50%;

    transform:translateX(-50%);

    width:1400px;
    max-width:95vw;

    background: var(--secondary-color);

    display:flex;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99999;

}

.faculty-dropdown:hover .faculty-menu{

    opacity:1;
    visibility:visible;

}

.research-menu{

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%);

    width:1400px;
    max-width:95vw;

    background: var(--secondary-color);

    display:flex;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.mega-parent:hover .research-menu{

    opacity:1;
    visibility:visible;

}

.research-logo{

    width:180px;

    background: var(--secondary-color);

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.research-logo img{

    width:120px;

}

.research-content{

    flex:1;

    padding:35px;

}

.research-top{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-bottom:30px;

}

.research-card{

    background: var(--white-color);

    text-align:center;

    padding:40px 20px;

    text-decoration:none;

    transition:.3s;

}

.research-card:hover{

    transform:translateY(-5px);

}

.research-card img{

    width:55px;

    margin-bottom:20px;

}

.research-card h4{

    color: var(--secondary-color);

    font-size:16px;

    line-height:1.3;

}

.research-links{

    background: var(--secondary-color);

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

    padding:30px 40px;

}

.research-links a{

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    transition:.3s;

}

.research-links a:hover{

    color: var(--primary-color);

    padding-left:8px;

}

.mega-content{

    display:none;

    width:100%;

    justify-content:space-between;

    gap:60px;

    align-items:flex-start;

}

.mega-content.active{

    display:flex;

}

.mega-links{

    flex:1;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px 70px;

}

.mega-links a{

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.mega-links a:hover{

    color: var(--primary-color);

    padding-left:8px;

}

.mega-image{

    width:360px;

    flex-shrink:0;

}

.mega-image img{

    width:100%;

    height:360px;

    object-fit:cover;

    display:block;

}

/*====================================
        NEWS & EVENTS
====================================*/

.news-parent{
    position:relative;
}

.news-menu{

    position:absolute;

    top:100%;

    right:0;

    width:380px;

    background: var(--secondary-color);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.news-parent:hover>.news-menu{

    opacity:1;

    visibility:visible;

}

.news-item{

    position:relative;

}

.news-item>a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 24px;

    color: var(--white-color);

    text-decoration:none;

    font-size:17px;

    transition:.3s;

}

.news-item>a:hover{

    background: var(--primary-color);

}


/*====================================
        LEFT SUBMENU
====================================*/

.news-submenu{

    position:absolute;

    top:0;

    right:100%;

    width:300px;

    background: var(--secondary-color);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.has-sub:hover>.news-submenu{

    opacity:1;

    visibility:visible;

}

.news-submenu a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 24px;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.news-submenu a:last-child{

    border-bottom:none;

}

.news-submenu a:hover{

    background: var(--primary-color);

    padding-left:30px;

}


/*====================================
        Responsive
====================================*/

@media(max-width:991px){

.news-menu{

    display:none;

}

}

/*=========================================
    CENTRES MEGA MENU
=========================================*/

.centre-parent{
    position:static;
}

.centre-mega{

    position:absolute;

    left:50%;

    top:100%;

    transform:translateX(-50%);

    width:1400px;

    max-width:95vw;

    background: var(--secondary-color);

    display:flex;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.centre-parent:hover .centre-mega{

    opacity:1;

    visibility:visible;

}

/* Left */

.centre-sidebar{

    width:360px;

    background: var(--secondary-color);

    display:flex;

    flex-direction:column;

}

.centre-top{

    display:flex;

    align-items:center;

    gap:14px;

    padding:24px;

    color: var(--white-color);

    font-size:16px;

    border-bottom:1px solid rgba(255,255,255,.12);

}

.centre-top span{

    flex:1;

}

.centre-logo{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:40px;

}

.centre-logo img{

    max-width:180px;

}

/* Right */

.centre-content{

    flex:1;

    display:grid;
    border-left: 1px solid #5d5c5c;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    padding:30px 40px;

}

.centre-column{

    display:flex;

    flex-direction:column;

}

.centre-column a{

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    line-height:1.45;

    margin-bottom:26px;

    transition:.3s;

}

.centre-column a:hover{

    color: var(--primary-color);

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1400px){

.centre-mega{

    width:95vw;

}

}

@media(max-width:1200px){

.centre-sidebar{

    width:280px;

}

.centre-content{

    gap:25px;

    padding:25px;

}

.centre-column a{

    font-size:17px;

}

}

@media(max-width:991px){

.centre-mega{

    display:none;

}

}

/*=====================================
        ABOUT US
=====================================*/

.about-parent{
    position:relative;
}

.about-menu{

    position:absolute;

    top:100%;

    right:0;

    width:380px;

    background: var(--secondary-color);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.about-parent:hover>.about-menu{

    opacity:1;

    visibility:visible;

}

.about-item{

    position:relative;

    display:block;

}

.about-item>a,
.about-item{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:8px 12px;

    color: var(--white-color);

    text-decoration:none;

    font-size:17px;

    transition:.3s;

}

.about-item:hover{

    background: var(--primary-color);

}

.about-item>a:hover{

    background: var(--primary-color);

}

/*=====================================
        SUBMENU
=====================================*/

.about-submenu{

    position:absolute;

    top:0;

    right:100%;

    width:310px;

    background: var(--secondary-color);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.has-sub:hover>.about-submenu{

    opacity:1;

    visibility:visible;

}

/* Links */

.about-submenu a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 24px;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.about-submenu a:last-child{

    border-bottom:none;

}

.about-submenu a:hover{

    background: var(--primary-color);

    padding-left:30px;

}

/* Responsive */

@media(max-width:991px){

.about-menu{

    display:none;

}

}

/* Default tabs */

.mega-content{
    display:none;
}

.mega-content.active{
    display:block;
}


/* ===========================
   PROGRAMMES TAB ONLY
=========================== */

#programmes.active{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:flex-start;

}


/* Image */

#programmes .mega-image{

    width:100%;

}

#programmes .mega-image img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:4px;

}


/* Right Side */

#programmes .programme-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px 55px;

}


#programmes .programme-links a{

    display:flex;

    align-items:flex-start;

    gap:15px;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.5;

    transition:.3s;

}


#programmes .programme-links a i{

    width:28px;

    font-size:24px;

    color: var(--white-color);

    margin-top:2px;

    flex-shrink:0;

}


#programmes .programme-links a:hover{

    color: var(--primary-color);

    padding-left:6px;

}


/* Responsive */

@media(max-width:1200px){

#programmes.active{

    grid-template-columns:320px 1fr;

    gap:35px;

}

#programmes .programme-links{

    gap:25px 35px;

}

#programmes .programme-links a{

    font-size:17px;

}

}

@media(max-width:991px){

#programmes.active{

    display:block;

}

#programmes .mega-image{

    margin-bottom:30px;

}

#programmes .programme-links{

    grid-template-columns:1fr;

}

}

/*=========================
    DEPARTMENTS
=========================*/

#departments.active{

    display:block;

}

.department-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px 45px;

}

.department-grid a{

    display:flex;

    align-items:flex-start;

    gap:15px;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    transition:.3s;

}

.department-grid a i{

    width:28px;

    font-size:24px;

    color: var(--white-color);

    flex-shrink:0;

    margin-top:2px;

}

.department-grid a:hover{

    color: var(--primary-color);

    padding-left:8px;

}

@media(max-width:1400px){

.department-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:1200px){

.department-grid{

    gap:24px;

}

.department-grid a{

    font-size:16px;

}

}

@media(max-width:991px){

.department-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.department-grid{

    grid-template-columns:1fr;

}

}

/*==========================================
      HIGH SCHOOL STUDENTS
==========================================*/

#high-school.active{

    display:grid;

    grid-template-columns:1fr 42%;

    gap:70px;

    align-items:flex-start;

}

/* Left */

.highschool-links{

    display:flex;

    flex-direction:column;

    gap:42px;

}

.highschool-links a{

    display:flex;

    align-items:flex-start;

    gap:18px;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    transition:.3s;

}

.highschool-links a:hover{

    color: var(--primary-color);

    padding-left:8px;

}

.highschool-links i{

    width:30px;

    font-size:24px;

    flex-shrink:0;

    margin-top:3px;

}

/* Right */

.highschool-image{

    width:100%;

}

.highschool-image img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:4px;

}

/* Responsive */

@media(max-width:1200px){

#high-school.active{

    grid-template-columns:1fr 360px;

    gap:40px;

}

.highschool-links a{

    font-size:17px;

}

}

@media(max-width:991px){

#high-school.active{

    display:block;

}

.highschool-image{

    margin-top:30px;

}

.highschool-image img{

    height:280px;

}

}

/*====================================
    Academic Support
====================================*/

#support.active{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:70px;

    align-items:flex-start;

}


/* Left Side */

.support-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px 60px;

}


.support-links a{

    display:flex;

    align-items:flex-start;

    gap:16px;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    transition:.3s;

}


.support-links a i{

    width:28px;

    font-size:22px;

    flex-shrink:0;

    margin-top:3px;

}


.support-links a:hover{

    color: var(--primary-color);

    padding-left:8px;

}


/* Right Image */

.support-image{

    width:100%;

}


.support-image img{

    width:100%;

    height:380px;

    object-fit:cover;

    border-radius:4px;

}


/* Responsive */

@media(max-width:1200px){

#support.active{

    grid-template-columns:1fr 340px;

    gap:40px;

}

.support-links{

    gap:30px;

}

.support-links a{

    font-size:17px;

}

}

@media(max-width:991px){

#support.active{

    display:block;

}

.support-image{

    margin-top:30px;

}

.support-image img{

    height:300px;

}

.support-links{

    grid-template-columns:1fr;

}

}

/*=====================================
      RELATED LINKS
======================================*/

#related-links.active{

    display:grid;

    grid-template-columns:1fr 42%;

    gap:70px;

    align-items:flex-start;

}

/* Left */

.related-links-list{

    display:flex;

    flex-direction:column;

    gap:38px;

}

.related-links-list a{

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    transition:.3s;

}

.related-links-list a:hover{

    color: var(--primary-color);

    padding-left:8px;

}

/* Right */

.related-links-image{

    width:100%;

}

.related-links-image img{

    width:100%;

    height:405px;

    object-fit:cover;

    border-radius:4px;

}

/*=====================================
        Responsive
======================================*/

@media(max-width:1200px){

#related-links.active{

    grid-template-columns:1fr 360px;

    gap:40px;

}

.related-links-list{

    gap:28px;

}

.related-links-list a{

    font-size:17px;

}

}

@media(max-width:991px){

#related-links.active{

    display:block;

}

.related-links-image{

    margin-top:30px;

}

.related-links-image img{

    height:280px;

}

}


/*=========================================
        UNDERGRADUATE ADMISSION
=========================================*/

#ug.active{

    display:grid;

    grid-template-columns:1fr 42%;

    gap:70px;

    align-items:flex-start;

}


/* Left */

.ug-links{

    display:flex;

    flex-direction:column;

    gap:42px;

}

.ug-links a{

    display:block;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    transition:.3s;

}

.ug-links a:hover{

    color: var(--primary-color);

    padding-left:8px;

}


/* Right */

.ug-image{

    width:100%;

}

.ug-image img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:4px;

}


/*=========================================
        Responsive
=========================================*/

@media(max-width:1200px){

#ug.active{

    grid-template-columns:1fr 360px;

    gap:40px;

}

.ug-links a{

    font-size:17px;

}

}

@media(max-width:991px){

#ug.active{

    display:block;

}

.ug-image{

    margin-top:30px;

}

.ug-image img{

    height:280px;

}

}

/*=========================================
        Graduate Admission
=========================================*/

#pg.active{

    display:block;

}

.graduate-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.graduate-card{

    text-decoration:none;

    color: var(--white-color);

    transition:.35s;

}

.graduate-card img{

    width:100%;

    height:270px;

    object-fit:cover;

    border-radius:4px;

    transition:.35s;

}

.graduate-card h4{

    margin-top:18px;

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    color: var(--white-color);

}

.graduate-card:hover img{

    transform:scale(1.05);

}

.graduate-card:hover h4{

    color: var(--primary-color);

}

/*=========================
      Responsive
=========================*/

@media(max-width:1400px){

.graduate-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:1200px){

.graduate-grid{

    gap:25px;

}

.graduate-card img{

    height:220px;

}

.graduate-card h4{

    font-size:17px;

}

}

@media(max-width:991px){

.graduate-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.graduate-grid{

    grid-template-columns:1fr;

}

}

/*=====================================
        Ph.D Admission
======================================*/

#phd.active{

    display:grid;

    grid-template-columns:1fr 380px;

    gap:70px;

    align-items:flex-start;

}


/* Left */

.phd-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:42px 70px;

}

.phd-links a{

    display:block;

    color: var(--white-color);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    line-height:1.5;

    transition:.3s;

}

.phd-links a:hover{

    color: var(--primary-color);

    padding-left:8px;

}


/* Right */

.phd-image{

    width:100%;

}

.phd-image img{

    width:100%;

    height:365px;

    object-fit:cover;

    border-radius:4px;

}


/*=====================================
        Responsive
======================================*/

@media(max-width:1200px){

#phd.active{

    grid-template-columns:1fr 330px;

    gap:40px;

}

.phd-links{

    gap:30px 40px;

}

.phd-links a{

    font-size:17px;

}

}

@media(max-width:991px){

#phd.active{

    display:block;

}

.phd-image{

    margin-top:30px;

}

.phd-image img{

    height:280px;

}

.phd-links{

    grid-template-columns:1fr;

}

}

/*=====================================
      Admission Related Links
======================================*/

#related.active{

    display:block;

}

.admission-links-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.admission-link-card{

    display:block;

    text-decoration:none;

    color: var(--white-color);

    transition:.35s;

}

.admission-link-card img{

    width:100%;

    height:265px;

    object-fit:cover;

    border-radius:4px;

    transition:.35s;

}

.admission-link-card h4{

    margin-top:18px;

    color: var(--white-color);

    font-size:16px;

    font-weight:500;

    line-height:1.45;

    transition:.35s;

}

.admission-link-card:hover img{

    transform:translateY(-6px);

    box-shadow:0 12px 28px rgba(0,0,0,.25);

}

.admission-link-card:hover h4{

    color: var(--primary-color);

}

/*=====================================
        Responsive
======================================*/

@media(max-width:1400px){

.admission-links-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:1200px){

.admission-links-grid{

    gap:25px;

}

.admission-link-card img{

    height:220px;

}

.admission-link-card h4{

    font-size:16px;

}

}

@media(max-width:991px){

.admission-links-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.admission-links-grid{

    grid-template-columns:1fr;

}

.admission-link-card img{

    height:240px;

}

}

/*======================================
    SSJ UNIVERSITY FOOTER
======================================*/

.ssj-footer{
    background:#000;
    color:#fff;
    padding:80px 0 0px;
    font-family:'Inter',sans-serif;
}

.ssj-footer a{
    color:#ffffff;
    text-decoration:none;
    transition:.35s;
}

.ssj-footer a:hover{
    color: var(--primary-color);
}

/*============================
Logo
============================*/

.ssj-logo img{
    width:100px;
    max-width:100%;
    margin-bottom:20px;
}

.ssj-logo h3{
    font-size:34px;
    font-weight:700;
    line-height:1.3;
    margin:0;
}

/*============================
Address
============================*/

.ssj-address{
    margin-bottom:35px;
}

.ssj-address h4{
    font-size:28px;
    font-family:Georgia,serif;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.ssj-address h4 i{
    color: var(--primary-color);
    font-size:22px;
}

.ssj-address p{
    color: var(--white-color);
    font-size:17px;
    line-height:1.9;
    margin:0;
}

/*============================
Social
============================*/

.ssj-social h4{
    font-size:28px;
    font-family:Georgia,serif;
    margin-bottom:22px;
}

.ssj-social{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    align-items:center;
}

.ssj-social h4{
    width:100%;
}

.ssj-social a{
    width:55px;
    height:55px;
    border:1px solid rgba(255,255,255,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.4s;
}

.ssj-social a:hover{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black-color);
    transform:translateY(-5px);
}

/*============================
Newsletter
============================*/

.newsletter-title{
    font-size:28px;
    font-family:Georgia,serif;
    font-weight:700;
    color: var(--white-color);
    line-height:1.2;
}

.newsletter-form{
    display:flex;
    width:100%;
}

.newsletter-form input{
    width:100%;
    height:58px;
    border:1px solid rgba(255,255,255,.4);
    background:transparent;
    color: var(--white-color);
    padding:0 20px;
    outline:none;
}

.newsletter-form input::placeholder{
    color:#bcbcbc;
}

.newsletter-form button{
    min-width:170px;
    border:none;
    background: var(--white-color);
    color: var(--secondary-color);
    font-weight:700;
    transition:.35s;
}

.newsletter-form button:hover{
    background: var(--primary-color);
    color: var(--black-color);
}

.ssj-btn{
    background: var(--white-color);
    color: var(--secondary-color);
    border-radius:0;
    padding:16px 40px;
    font-weight:700;
    transition:.35s;
}

.ssj-btn:hover{
    background: var(--primary-color);
    color: var(--black-color);
}

/*============================
Footer Headings
============================*/

.ssj-footer h3{
    font-size:21px;
    font-family:Georgia,serif;
    margin-bottom:30px;
    font-weight:700;
}

/*============================
Footer Links
============================*/

.ssj-footer ul{
    padding:0;
    margin:0;
    list-style:none;
}

.ssj-footer ul li{
    margin-bottom:18px;
}

.ssj-footer ul li:last-child{
    margin-bottom:0;
}

.ssj-footer ul li a{
    color: var(--white-color);
    font-size:17px;
    position:relative;
    padding-left:0;
}

.ssj-footer ul li a:hover{
    padding-left:10px;
}

/*============================
Bottom
============================*/

.ssj-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:30px;
    padding-top:28px;
    color:#d6d6d6;
    font-size:16px;
}

/*============================
Spacing
============================*/

.ssj-footer .row>div{
    margin-bottom:20px;
}

/*============================
Tablet
============================*/

@media(max-width:991px){

.ssj-footer{
padding:70px 0 0px;
}

.newsletter-title{
font-size:26px;
margin-bottom:25px;
}

.ssj-btn{
display:block;
width:100%;
text-align:center;
}

.ssj-footer h3{
font-size:20px;
}

.ssj-address h4{
font-size:24px;
}

}

/*============================
Mobile
============================*/

@media(max-width:767px){

.ssj-footer{
padding:55px 0 0px;
text-align:left;
}

.ssj-logo{
text-align:center;
margin-bottom:30px;
}

.ssj-logo img{
width:100px;
}

.ssj-logo h3{
font-size:28px;
}

.newsletter-title{
font-size:28px;
margin-bottom:20px;
}

.newsletter-form{
display:block;
}

.newsletter-form input{
margin-bottom:15px;
}

.newsletter-form button{
width:100%;
height:55px;
}

.ssj-btn{
margin-top:15px;
}

.ssj-footer h3{
font-size:20px;
margin-top:25px;
}

.ssj-address h4{
font-size:22px;
}

.ssj-address p{
font-size:16px;
}

.ssj-social{
justify-content:flex-start;
}

.ssj-social a{
width:50px;
height:50px;
font-size:18px;
}

.ssj-bottom{
text-align:center;
margin-top:45px;
}

}

/*============================
Small Mobile
============================*/

@media(max-width:480px){

.ssj-logo h3{
font-size:24px;
}

.newsletter-title{
font-size:24px;
}

.ssj-footer h3{
font-size:20px;
}

.ssj-address h4{
font-size:20px;
}

.ssj-address p{
font-size:15px;
line-height:1.7;
}

.ssj-social a{
width:45px;
height:45px;
}

}

.ssj-footer ul li a{
    position:relative;
    display:inline-block;
    color: var(--white-color);
    text-decoration:none;
    transition:.35s;
}

.ssj-footer ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background: var(--secondary-color);
    transition:.35s;
}

.ssj-footer ul li a:hover{
    color: var(--primary-color);
}

.ssj-footer ul li a:hover::after{
    width:100%;
}

.ssj-footer h3{
    position:relative;
    padding-bottom:15px;
    margin-bottom:28px;
}

.ssj-footer h3::after{
    content:"";
    width:60px;
    height:3px;
    background: var(--secondary-color);
    position:absolute;
    left:0;
    bottom:0;
}

.newsletter-form input{
    transition:.35s;
}

.newsletter-form input:focus{
    border-color: var(--primary-color);
    box-shadow:0 0 12px rgba(210,178,109,.35);
}

.ssj-btn{
    position:relative;
    overflow:hidden;
}

.ssj-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: var(--secondary-color);
    transition:.4s;
    z-index:0;
}

.ssj-btn span{
    position:relative;
    z-index:2;
}

.ssj-btn:hover::before{
    left:0;
}

.ssj-btn:hover{
    color: var(--black-color);
}

.ssj-social a{
    overflow:hidden;
    position:relative;
}

.ssj-social a::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    /* background: var(--secondary-color); */
    left:-100%;
    top:0;
    transition:.4s;
    z-index:0;
}

.ssj-social a i{
    position:relative;
    z-index:2;
}

.ssj-social a:hover::before{
    left:0;
}

.ssj-social a:hover{
    color: var(--black-color);
}

/*==========================================
    SSJU HERO SECTION
==========================================*/

.ssju-hero{
    position:relative;
    overflow:hidden;
    background: var(--white-color);
    line-height: 0;
}

/*==========================
Carousel
==========================*/

#ssjuHeroSlider{
    position:relative;
}

/* .carousel-item{
    height:70vh;
} */

@media(max-width:991px){

    /* .carousel-item{

        height:50vh;

    } */

}

/*==========================
Left Image
==========================*/

/* .ssju-image{
    position:relative;
    height:720px;
    overflow:hidden;
} */

.ssju-image img{
    /* width:100%;
    height:100%; */
    object-fit:cover;
    transition:0.6s ease;
}

.carousel-item.active .ssju-image img{
    transform:scale(1.03);
}

/*==========================
Right Content
==========================*/

/* .ssju-content{

    height:720px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:80px;

    background: var(--white-color);

    background-image:url("images/pattern.png");

    background-size:cover;

    background-position:center;

} */

/*==========================
Small Tag
==========================*/

.ssju-tag{

    display:inline-block;

    background: var(--primary-color);

    color: var(--white-color);

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:25px;

    text-transform:uppercase;

}

/*==========================
Heading
==========================*/

.ssju-content h1{

    font-size:56px;

    font-weight:700;

    line-height:1.2;

    color: var(--primary-color);

    margin-bottom:25px;

}

.ssju-content h1 span{

    display:block;

    color: var(--secondary-color);

}

/*==========================
Paragraph
==========================*/

.ssju-content p{

    font-size:20px;

    line-height:1.8;

    color:#555;

    margin-bottom:15px;

}

/*==========================
Scholarship Cards
==========================*/

.ssju-card{

    background: var(--white-color);

    border:1px solid #ececec;

    padding:30px;

    height:100%;

    transition:.4s;

    position:relative;

}

.ssju-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.ssju-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background: var(--primary-color);

}

.ssju-card h3{

    font-size:26px;

    color: var(--secondary-color);

    margin-bottom:15px;

    font-weight:700;

}

.ssju-card h4{

    color: var(--primary-color);

    font-size:36px;

    margin-bottom:12px;

    font-weight:700;

}

.ssju-card p{

    margin-bottom:20px;

    color:#666;

    font-size:17px;

    line-height:1.7;

}

.ssju-card a{

    color: var(--primary-color);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.ssju-card a:hover{

    letter-spacing:1px;

}

/*==========================
Learn More Button
==========================*/

.ssju-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background: var(--primary-color);

    color: var(--white-color);

    padding:15px 36px;

    text-decoration:none;

    font-weight:600;

    margin-top:35px;

    border-radius:50px;

    transition:.35s;

    width:fit-content;

}

.ssju-btn:hover{

    background: var(--secondary-color);

    color: var(--white-color);

}

.ssju-btn i{

    transition:.35s;

}

.ssju-btn:hover i{

    transform:translateX(6px);

}

/*==========================
Animation
==========================*/

.carousel-item.active .ssju-content{

    animation:fadeContent .8s ease;

}

@keyframes fadeContent{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==========================
Hero Section
==========================*/

.ssju-hero{
    position:relative;
}

#heroSlider{
    width:100%;
}

/* .hero-slide{
    height:100vh;
    min-height:700px;
    overflow:hidden;
} */

.hero-slide img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    object-fit:contain;
}

/* .carousel-item.active .hero-slide img{
    transform:scale(1.08);
} */

/* Overlay */

.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}


/* Tablet */

@media(max-width:991px){

/* .hero-slide{

height:70vh;
min-height:550px;

} */

}

/* Mobile */

@media(max-width:767px){

/* .hero-slide{

height:55vh;
min-height:420px; */

}

.carousel-control-prev,
.carousel-control-next{

width:45px;
height:45px;

}

.carousel-control-prev{

left:10px;

}

.carousel-control-next{

right:10px;

}



.carousel-control-prev,
.carousel-control-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:70px;
    height:70px;
    opacity:1;
    z-index:100;
    background:none;
}

.carousel-control-prev{
    left:30px;
}

.carousel-control-next{
    right:30px;
}

.hero-arrow{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--white-color);
    font-size:22px;
    transition:.3s;
}

.hero-arrow:hover{
    background: var(--primary-color);
}

/* academics section  */
.ssju-academics{
    padding:60px 0;
    background:#fff4e0;
}

.container{
    width:90%;
    max-width:1350px;
    margin:auto;
}

/*==========================
TOP
==========================*/

.academics-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:40px;
}

.section-title{
    max-width:720px;
}

.section-title h2{
    color: var(--secondary-color);
    font-size:35px;
    font-weight:500;
    position:relative;
    display:inline-block;
    margin-bottom:25px;
}

.section-title h2::after{
    content:"";
    width:70px;
    height:3px;
    background: var(--secondary-color);
    position:absolute;
    left:0;
    bottom:-10px;
}

.section-title p{
    font-size:18px;
    line-height:1.8;
    color:#333;
    margin-bottom:35px;
}

.know-btn{
    display:inline-block;
    padding:10px 18px;
    border:1px solid var(--primary-color);
    color: var(--primary-color);
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.know-btn:hover{
    background: var(--primary-color);
    color:#fff;
}

/*==========================
NAVIGATION
==========================*/

.academics-nav{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.nav{
    width:60px;
    height:60px;
    background: var(--secondary-color);
    color:#fff;
    border:none;
    font-size:22px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    align-items: center;
    justify-content: center;
}

.nav:hover{
    background: var(--primary-color);
}

/*==========================
SLIDER
==========================*/

.slider{
    overflow:hidden;
}

.track{
    display:flex;
    gap:20px;
    transition:.5s;
}

.card{
    flex:0 0 calc(33.333% - 14px);
    background: transparent !important;
    border: none !important;
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.content{
    background: var(--secondary-color);
    padding:35px;
    color:#fff;
}

.content h3{
    font-size:25px;
    margin-bottom:20px;
}

.content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.content a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.content a i{
    margin-left:8px;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.academics-top{
    flex-direction:column;
    gap:30px;
}

.academics-nav{
    flex-direction:row;
}

.card{
    flex:0 0 calc(50% - 10px);
}

}

@media(max-width:768px){

.section-title h2{
    font-size:38px;
}

.section-title p{
    font-size:18px;
}

.card{
    flex:0 0 100%;
}

.nav{
    width:55px;
    height:55px;
}

.know-btn{
    padding:14px 35px;
    font-size:18px;
}

}

.ssju-schools{
    padding:60px 0;
    background: var(--white-color);
}

.ssju-schools .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.ssju-heading{
    margin-bottom:45px;
}

.ssju-heading h2{
    font-size:35px;
    font-weight:500;
    color: var(--secondary-color);
    margin-bottom:20px;
    font-family:Georgia,serif;
}

.ssju-heading p{
    font-size:18px;
    line-height:1.9;
    color:#333;
    max-width:1300px;
}

.school-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.school-card{
    transition:.4s;
}

.school-card:hover{
    transform:translateY(-8px);
}

.school-image{
    overflow:hidden;
}

.school-image img{
    width:100%;
    height:320px;
    display:block;
    object-fit:cover;
    transition:.5s;
}

.school-card:hover img{
    transform:scale(1.08);
}

.school-content{
    padding-top:28px;
}

.school-content h3{
    font-size:25px;
    color: var(--secondary-color);
    margin-bottom:18px;
    line-height:1.2;
    font-weight:700;
}

.school-content p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:18px;
}

.school-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
    color: var(--secondary-color);
    text-decoration:none;
    transition:.3s;
}

.school-content a:hover{
    color: var(--primary-color);
}

.school-content a i{
    transition:.3s;
}

.school-content a:hover i{
    transform:translateX(6px);
}

/******** Tablet ********/

@media(max-width:992px){

.school-grid{
    grid-template-columns:repeat(2,1fr);
}

.school-image img{
    height:270px;
}

.school-content h3{
    font-size:23px;
}

}

/******** Mobile ********/

@media(max-width:768px){

.ssju-heading h2{
    font-size:30px;
}

.ssju-heading p{
    font-size:17px;
}

.school-grid{
    grid-template-columns:1fr;
}

.school-image img{
    height:250px;
}

.school-content h3{
    font-size:20px;
}

.school-content p{
    font-size:16px;
}

.school-content a{
    font-size:18px;
}

}


.ssju-ranking{

padding:90px 0;

background: #fff4e0;

}

.section-heading{

margin-bottom:40px;

}

.section-heading h2{

font-size:35px;

color: var(--primary-color);

font-family:Georgia,serif;

position:relative;

display:inline-block;

}

.section-heading h2::after{

content:"";

width:70px;

height:3px;

background: var(--primary-color);

position:absolute;

left:0;

bottom:-12px;

}

.ranking-track{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:50px;

}

.ranking-card{

text-align:center;

}

.ranking-card img{

height:120px;

object-fit:contain;

margin-bottom:25px;

transition:.4s;

}

.ranking-card:hover img{

transform:scale(1.05);

}

.ranking-card h4{

font-size:25px;

margin-bottom:15px;

color: var(--secondary-color);

}

.ranking-card p{

font-size:17px;

line-height:1.8;

color:#555;

}

.ssju-faculty{

padding:60px 0;

background:#faf8ef;

}

.ssju-faculty p{

font-size:20px;

line-height:1.9;

max-width:1200px;

color:#333;

margin-bottom:45px;

}

.faculty-btn{

display:inline-block;

padding:15px 25px;

border:2px solid var(--secondary-color);

font-size:20px;

font-weight:700;

color: var(--secondary-color);

text-decoration:none;

transition:.3s;

}

.faculty-btn:hover{

background: var(--secondary-color);

color: var(--white-color);

}

@media(max-width:992px){

.ranking-track{

grid-template-columns:repeat(2,1fr);

}

.section-heading h2{

font-size:35px;

}

.ssju-faculty p{

font-size:18px;

}

}

@media(max-width:768px){

.ranking-track{

grid-template-columns:1fr;

gap:40px;

}

.section-heading{

text-align:center;

}

.section-heading h2{

font-size:30px;

}

.ssju-faculty{

text-align:center;

}

.ssju-faculty p{

font-size:17px;

}

.faculty-btn{

padding:15px 45px;

font-size:18px;

}

}

/* papers section home  */

/*=========================================
    HM Discussion Papers - Base Layout
=========================================*/

.hm-paper-section{

    background: var(--secondary-color);

    position:relative;

    padding:120px 0 70px;

    margin-top:180px;

    overflow:visible;

}


/*=========================
Container
=========================*/

.hm-paper-section .container{
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}


/*=========================
Heading
=========================*/

.hm-paper-header{
    text-align:center;
    margin-bottom:70px;
}

.hm-paper-header h2{
    font-size:46px;
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.hm-paper-header p{
    max-width:760px;
    margin:auto;
    color:#d8d8d8;
    font-size:18px;
    line-height:1.8;
}


/*=========================
Slider Area
=========================*/

.hm-paper-slider-area{

    position:relative;

    margin-top:-220px;

}


/*=========================
Viewport
=========================*/

.hm-paper-viewport{
    width:100%;
    overflow:hidden;
}


/*=========================
Track
=========================*/

.hm-paper-track{
    display:flex;
    align-items:flex-start;
    gap:28px;
    padding:0 130px;     /* Increase to 160px if you want more space */
    transition:.7s ease;
}

@media (max-width:1400px){

    .hm-paper-track{

        padding:0 100px;

    }

}
@media (max-width:956px){

    .hm-paper-track{

        padding:0 15px;

    }

}


/*=========================
Cards
=========================*/

.hm-paper-card{
    position:relative;
    flex:0 0 34.333%;
    padding:0 18px;
    box-sizing:border-box;
}


/*=========================
Navigation
=========================*/
/* 
.hm-paper-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    background: var(--white-color);
    color: var(--secondary-color);
    font-size:20px;
    cursor:pointer;
    z-index:50;
    transition:.35s;
} */

.hm-paper-btn:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

.hm-paper-prev{
    left:20px;
}

.hm-paper-next{
    right:20px;
}


/*=========================
Footer Button
=========================*/

/* .hm-paper-footer{
    margin-top:70px;
    text-align:center;
} */

.hm-paper-all{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:260px;
    height:56px;
    font-size: 17px;
    border:2px solid var(--white-color);
    color: var(--white-color);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hm-paper-all:hover{
    background: var(--white-color);
    color: var(--secondary-color);
}

/*=========================================
    HM Paper Card
=========================================*/

.hm-paper-card{

    position:relative;

    padding-top:120px;

}


/*==============================
Floating Image
==============================*/

.hm-paper-thumb{

    position:absolute;

    top:0;

    left:18px;

    right:18px;

    height:250px;

    overflow:hidden;

    z-index:10;

    background:#ddd;

}

.hm-paper-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.hm-paper-card:hover .hm-paper-thumb img{

    transform:scale(1.08);

}


/*==============================
White Box
==============================*/

.hm-paper-body{

    position:relative;

    background: var(--white-color);

    padding:160px 35px 40px;

    min-height:360px;

}


/*==============================
Category
==============================*/

.hm-paper-category{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color: var(--primary-color);

    margin-bottom:18px;

}


/*==============================
Title
==============================*/

.hm-paper-body h3{

    font-size:18px;

    line-height:1.35;

    font-weight:700;

    color: var(--black-color);

    margin-bottom:20px;

}


/*==============================
Link
==============================*/

.hm-paper-body a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color: var(--secondary-color);

    text-decoration:none;

    font-weight:700;

    font-size:18px;

    transition:.3s;

}

.hm-paper-body a:hover{

    gap:18px;

}


/*==============================
Image Shadow
==============================*/

.hm-paper-thumb{

    /* box-shadow:

    0 25px 50px rgba(0,0,0,.18); */

}


/*==============================
Card Hover
==============================*/

.hm-paper-body{

    transition:.35s;

}

.hm-paper-card:hover .hm-paper-body{

    transform:translateY(-8px);

}

/*=========================================
    Large Desktop
=========================================*/

@media (max-width:1400px){

    .hm-paper-section{

        margin-top:160px;

    }

    .hm-paper-slider-area{

        margin-top:-140px;

    }

    .hm-paper-thumb{

        height:290px;

    }

    .hm-paper-body{

        padding:165px 30px 30px;

        min-height:340px;

    }

}


/*=========================================
    Laptop
=========================================*/

@media (max-width:1199px){

    .hm-paper-card{

        flex:0 0 50%;

    }

    .hm-paper-thumb{

        height:280px;

    }

    .hm-paper-body{

        padding:160px 28px 30px;

    }

    .hm-paper-body h3{

        font-size:26px;

    }

}


/*=========================================
    Tablet
=========================================*/

@media (max-width:991px){

    .hm-paper-section{

        margin-top:140px;

        padding:90px 0 80px;

    }

    .hm-paper-slider-area{

        margin-top:-120px;

    }

    .hm-paper-header{

        margin-bottom:55px;

    }

    .hm-paper-header h2{

        font-size:38px;

    }

    .hm-paper-header p{

        font-size:16px;

    }

    .hm-paper-thumb{

        height:250px;

    }

    .hm-paper-body{

        padding:145px 25px 25px;

        min-height:310px;

    }

    .hm-paper-body h3{

        font-size:24px;

    }

}


/*=========================================
    Mobile
=========================================*/

@media (max-width:767px){

    .hm-paper-card{

        flex:0 0 100%;

    }

    .hm-paper-section{

        margin-top:110px;

        padding:70px 0 60px;

    }

    .hm-paper-slider-area{

        margin-top:-90px;

    }

    .hm-paper-thumb{

        left:12px;

        right:12px;

        height:220px;

    }

    .hm-paper-card{

        padding:0 12px;

        padding-top:130px;

    }

    .hm-paper-body{

        padding:130px 20px 22px;

        min-height:auto;

    }

    .hm-paper-body h3{

        font-size:22px;

        line-height:1.45;

    }

    .hm-paper-btn{

        width:48px;

        height:48px;

        font-size:16px;

    }

    .hm-paper-prev{

        left:8px;

    }

    .hm-paper-next{

        right:8px;

    }

    .hm-paper-all{

        width:100%;

    }

}


/*=========================================
    Small Mobile
=========================================*/

@media (max-width:480px){

    .hm-paper-header h2{

        font-size:30px;

    }

    .hm-paper-thumb{

        height:200px;

    }

    .hm-paper-body{

        padding:120px 18px 20px;

    }

    .hm-paper-body h3{

        font-size:20px;

    }

}




/*=========================================
    Latest Happenings & Media
==========================================*/

.hm-news-section{
    padding:90px 0;
    background: var(--white-color);
    overflow:hidden;
}

.hm-news-section .container{
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}


/*=========================================
    Grid
==========================================*/

.hm-news-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:flex-start;
}
.hm-happenings,
.hm-media{
    min-width:0;
}

/*=========================================
    Headings
==========================================*/

.hm-section-heading{
    margin-bottom:28px;
}

.hm-section-heading h2{
    position:relative;
    display:inline-block;
    font-size:35px;
    font-weight:500;
    color: var(--primary-color);
    margin:0;
    padding-bottom:14px;
    line-height:1.2;
}

.hm-section-heading h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:80px;
    height:3px;
    background: var(--primary-color);
}


/*=========================================
    Left Slider
==========================================*/

.hm-happenings{
    position:relative;
}

.hm-happenings-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.hm-happenings-track{
    display:flex;
    transition:transform .7s ease;
    will-change:transform;
}

.hm-happening-item{
    min-width:100%;
    flex:0 0 100%;
}


/*=========================================
    Right Media
==========================================*/

.hm-media{
    position:relative;
}


/*=========================================
    Navigation
==========================================*/

.hm-news-navigation{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:35px;
}

.hm-news-prev,
.hm-news-next{
    width:56px;
    height:56px;
    border:none;
    background: var(--secondary-color);
    color: var(--white-color);
    cursor:pointer;
    font-size:20px;
    transition:.3s;
}

.hm-news-prev:hover,
.hm-news-next:hover{
    background: var(--primary-color);
}


/*=========================================
    Buttons
==========================================*/

.hm-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    height:52px;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hm-btn-primary:hover{
    background: var(--primary-color);
}

.hm-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    height:52px;
    border:1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    background: var(--white-color);
}

.hm-btn-outline:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

/*=========================================
    Latest Happenings Card
==========================================*/

.hm-happening-item{
    background: var(--white-color);
}


/*=========================
Image
=========================*/

.hm-happening-image{
    width:100%;
    height:350px;
    overflow:hidden;
    background: var(--white-color);
}

.hm-happening-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.hm-happening-item:hover .hm-happening-image img{
    transform:scale(1.05);
}


/*=========================
Content
=========================*/

.hm-happening-content{
    padding:28px 0 0;
}

.hm-happening-content h3{
    font-size:22px;
    font-weight:600;
    line-height:1.3;
    color: var(--black-color);
    margin:0 0 18px;
}

.hm-news-date{
    display:block;
    color:#777;
    font-size:15px;
    margin-bottom:20px;
}

.hm-happening-content p{
    font-size:18px;
    color:#444;
    line-height:1.8;
    margin:0 0 30px;
}


/*=========================
Buttons
=========================*/

.hm-news-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}


/*=========================
Button Styling
=========================*/

.hm-btn-primary,
.hm-btn-outline{

    width:190px;
    height:56px;

    font-size:17px;

    font-weight:600;

    border-radius:0;

}


/*=========================
Hover
=========================*/

.hm-btn-primary:hover{

    transform:translateY(-2px);

}

.hm-btn-outline:hover{

    transform:translateY(-2px);

}


/*=========================
Animation
=========================*/

.hm-happening-item{

    animation:hmFade .5s ease;

}

@keyframes hmFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*=========================
Responsive
=========================*/

@media(max-width:1200px){

    .hm-happening-image{

        height:420px;

    }

    .hm-happening-content h3{

        font-size:22px;

    }

}

@media(max-width:992px){

    .hm-happening-image{

        height:360px;

    }

    .hm-happening-content h3{

        font-size:22px;

    }

    .hm-happening-content p{

        font-size:16px;

    }

}

@media(max-width:767px){

    .hm-happening-image{

        height:260px;

    }

    .hm-happening-content{

        padding-top:20px;

    }

    .hm-happening-content h3{

        font-size:22px;

        line-height:1.4;

    }

    .hm-news-buttons{

        flex-direction:column;

        gap:12px;

    }

    .hm-btn-primary,
    .hm-btn-outline{

        width:100%;

    }

}

/*=========================================
    In The Media
=========================================*/

.hm-media{
    display:flex;
    flex-direction:column;
    height:100%;
}

/*=========================
Media List
=========================*/

.hm-media-list{
    display:flex;
    flex-direction:column;
    gap:0;
    border-top:1px solid #ececec;
}


/*=========================
Media Item
=========================*/

.hm-media-item{

    display:flex;

    align-items:center;

    gap:24px;

    padding:28px 0;

    text-decoration:none;

    border-bottom:1px solid #ececec;

    transition:.35s;

}

.hm-media-item:hover{

    transform:translateX(8px);

}


/*=========================
Logo
=========================*/

.hm-media-logo{

    width:130px;

    min-width:130px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hm-media-logo img{

    max-width:100%;

    max-height:55px;

    object-fit:contain;

    filter:grayscale(100%);

    transition:.35s;

}

.hm-media-item:hover .hm-media-logo img{

    filter:none;

}


/*=========================
Title
=========================*/

.hm-media-text{

    flex:1;

    color: var(--black-color);

    font-size:18px;

    font-weight:500;

    line-height:1.45;

    transition:.3s;

}

.hm-media-item:hover .hm-media-text{

    color: var(--primary-color);

}


/*=========================
Footer
=========================*/

.hm-media-footer{

    margin-top:35px;

}

.hm-media-footer .hm-btn-outline{

    width:100%;

    height:58px;

    font-size:18px;

}


/*=========================
Responsive
=========================*/

@media(max-width:1200px){

    .hm-media-logo{

        width:110px;

        min-width:110px;

    }

    .hm-media-text{

        font-size:20px;

    }

}

@media(max-width:991px){

     .hm-news-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hm-happenings-image{
        height:340px;
    }

    .hm-news-navigation{
        justify-content:flex-start;
    }

    .hm-media{

        margin-top:10px;

    }

}

@media(max-width:767px){

      .hm-news-section{
        padding:60px 0;
    }

    .hm-section-heading h2{
        font-size:30px;
    }

    .hm-happening-image{
        height:220px;
    }

    .hm-happening-content h3{
        font-size:20px;
    }

    .hm-happening-content p{
        font-size:15px;
        line-height:1.7;
    }

    .hm-news-buttons{
        flex-direction:column;
        gap:12px;
    }

    .hm-btn-primary,
    .hm-btn-outline{
        width:100%;
        min-width:100%;
    }

    .hm-news-navigation{
        justify-content:flex-end;
        margin-top:20px;
    }

    .hm-news-prev,
    .hm-news-next{
        width:44px;
        height:44px;
        font-size:16px;
    }

    .hm-media-item{

        gap:15px;

        padding:20px 0;

        align-items:flex-start;

    }

    .hm-media-logo{

        width:80px;

        min-width:80px;

        height:55px;

    }

    .hm-media-logo img{

        max-height:40px;

    }

    .hm-media-text{

        font-size:17px;

        line-height:1.5;

    }

    .hm-media-footer .hm-btn-outline{

        width:100%;

    }

}

.hm-happenings-slider{
    overflow:hidden;
}

.hm-happenings-track{
    display:flex;
    transition:transform .6s ease;
}

.hm-happening-item{
    flex:0 0 100%;
    min-width:100%;
}


/* events section */


/*=============================
EVENTS
=============================*/

.ssju-events{

    padding:60px 0;

    background:#f8f3df;

}

.ssju-events .container{

    max-width:1380px;

    margin:auto;

    width:90%;

}

/* Heading */

.ssju-events-heading{

    margin-bottom:45px;

}

.ssju-events-heading h2{

    font-size:35px;

    color: var(--primary-color);

    font-family:Georgia,serif;

    font-weight:500;

    position:relative;

    display:inline-block;

    padding-bottom:15px;

}

.ssju-events-heading h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:3px;

    background: var(--primary-color);

}

/* Grid */

.ssju-events-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:38px;

}

/* Card */

.ssju-event-card{

    transition:.35s;

}

.ssju-event-card:hover{

    transform:translateY(-8px);

}

/* Image */

.ssju-event-image{

    display:block;

    overflow:hidden;

}

.ssju-event-image img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.ssju-event-card:hover img{

    transform:scale(1.05);

}

/* Content */

.ssju-event-content{

    padding-top:25px;

}

.ssju-event-content h3{

    font-size:20px;

    line-height:1.4;

    margin-bottom:18px;

    font-weight:600;

}

.ssju-event-content h3 a{

    color: var(--black-color);

    text-decoration:none;

    transition:.3s;

}

.ssju-event-content h3 a:hover{

    color: var(--primary-color);

}

.ssju-event-date{

    color:#777;

    /* font-size:18px; */

}

/* Button */

.ssju-events-btn{

    text-align:center;

    margin-top:60px;

}

.ssju-outline-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:245px;

    height:55px;

    border:2px solid var(--secondary-color);

    color: var(--secondary-color);

    font-size:20px;

    /* font-family:Georgia,serif; */

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.ssju-outline-btn:hover{

    background: var(--secondary-color);

    color: var(--white-color);

}

/* Tablet */

@media(max-width:992px){

.ssju-events-grid{

grid-template-columns:repeat(2,1fr);

}

.ssju-event-image img{

height:260px;

}

}

/* Mobile */

@media(max-width:768px){

.ssju-events{

padding:70px 0;

}

.ssju-events-grid{

grid-template-columns:1fr;

}

.ssju-events-heading h2{

font-size:38px;

}

.ssju-event-image img{

height:240px;

}

.ssju-event-content h3{

font-size:24px;

}

.ssju-outline-btn{

width:100%;

font-size:22px;

}

}


/* campus life  */

/*=====================================
Campus Life
=====================================*/

.ssju-campus-life{

    padding:100px 0;

    background: var(--white-color);

}

.ssju-campus-life .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/* Grid */

.ssju-campus-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    grid-template-rows:auto auto;

    gap:30px;

    align-items:start;

}

/* Left */

.ssju-campus-content{

    padding-top:20px;

}

.ssju-campus-content h2{

    color: var(--primary-color);

    font-size:35px;

    font-family:Georgia,serif;

    position:relative;

    display:inline-block;

    padding-bottom:15px;

}

.ssju-campus-content h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:3px;

    background: var(--primary-color);

}

.ssju-campus-content h3{

    font-size:22px;

    color: var(--secondary-color);

    margin:20px 0 30px;

    font-family:Georgia,serif;

    font-weight:500;

}

.ssju-campus-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:190px;

    height:50px;

    border:2px solid var(--secondary-color);

    color: var(--secondary-color);

    font-size:20px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.ssju-campus-btn:hover{

    background: var(--secondary-color);

    color: var(--white-color);

}

/* Cards */

.ssju-campus-card{

    position:relative;

    display:block;

    overflow:hidden;

}

.ssju-campus-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.ssju-campus-card:hover img{

    transform:scale(1.08);

}

.card-large{

    height:365px;

}

.card-bottom-left{

    margin-top:-80px;

    height:365px;

}

.card-bottom-right{

    height:365px;

}

/* Overlay */

.ssju-campus-overlay{

    position:absolute;

    left:35px;

    bottom:35px;

    color: var(--white-color);

}

.ssju-campus-overlay h4{

    font-size:25px;

    font-family:Georgia,serif;

    margin-bottom:10px;

}

.ssju-campus-overlay span{

    font-size:18px;

    font-weight:600;

}

.ssju-campus-overlay i{

    margin-left:8px;

}

/* Responsive */

@media(max-width:991px){

.ssju-campus-grid{

grid-template-columns:1fr;

}

.card-bottom-left{

margin-top:0;

}

.card-large,

.card-bottom-left,

.card-bottom-right{

height:330px;

}

.ssju-campus-content{

text-align:center;

}

.ssju-campus-content h2::after{

left:50%;

transform:translateX(-50%);

}

}

@media(max-width:767px){

.ssju-campus-life{

padding:70px 0;

}

.ssju-campus-content h2{

font-size:38px;

}

.ssju-campus-content h3{

font-size:36px;

}

.card-large,

.card-bottom-left,

.card-bottom-right{

height:260px;

}

.ssju-campus-overlay{

left:20px;

bottom:20px;

}

.ssju-campus-overlay h4{

font-size:20px;

}

.ssju-campus-overlay span{

font-size:18px;

}

.ssju-campus-btn{

width:100%;

}

}

.ssju-campus-card{
    position:relative;
    display:block;
    overflow:hidden;
}

.ssju-campus-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 35%,
        rgba(0,0,0,.15) 65%,
        rgba(0,0,0,0) 100%
    );

    z-index:1;

    transition:.35s;

}

.ssju-campus-card:hover::before{

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.25) 70%,
        rgba(0,0,0,.05) 100%
    );

}

.ssju-campus-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:.5s;

}

.ssju-campus-card:hover img{

    transform:scale(1.08);

}

.ssju-campus-overlay{

    position:absolute;

    left:35px;
    right:35px;
    bottom:30px;

    z-index:2;

    color: var(--white-color);

}

.ssju-campus-overlay h4{

    font-size:25px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:12px;

    color: var(--white-color);

    text-shadow:0 2px 8px rgba(0,0,0,.6);

}

.ssju-campus-overlay span{

    display:inline-flex;
    align-items:center;
    gap:10px;

    color: var(--white-color);

    font-size:20px;
    font-weight:600;

    text-shadow:0 2px 6px rgba(0,0,0,.6);

}

.ssju-campus-overlay i{

    transition:.3s;

}

.ssju-campus-card:hover .ssju-campus-overlay i{

    transform:translateX(6px);

}

/* podcast section  */

/*=========================================
PODCAST
=========================================*/

.ssju-podcast{

    padding:60px 0;

    background:#f9f4df;

}

.ssju-podcast .container{

    width:90%;

    max-width:1450px;

    margin:auto;

}

/* Heading */

.ssju-section-title{

    margin-bottom:45px;

}

.ssju-section-title h2{

    font-size:35px;

    font-weight:500;

    color: var(--primary-color);

    font-family:Georgia,serif;

    display:inline-block;

    position:relative;

    padding-bottom:15px;

}

.ssju-section-title h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:3px;

    background: var(--primary-color);

}

/* Grid */

.ssju-podcast-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* Card */

.ssju-podcast-card{

    transition:.35s;

}

.ssju-podcast-card:hover{

    transform:translateY(-8px);

}

/* Image */

.ssju-podcast-thumb{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:8px;

}

.ssju-podcast-thumb img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.ssju-podcast-card:hover img{

    transform:scale(1.08);

}

/* Play Button */

.ssju-play{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:78px;

    height:55px;

    background: var(--primary-color);

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    color: var(--white-color);

    font-size:28px;

    transition:.35s;

}

.ssju-podcast-card:hover .ssju-play{

    transform:translate(-50%,-50%) scale(1.12);

}

/* Content */

.ssju-podcast-content{

    padding-top:22px;

}

.ssju-podcast-content h3{

    font-size:20px;

    line-height:1.4;

    margin-bottom:18px;

}

.ssju-podcast-content h3 a{

    color: var(--black-color);

    text-decoration:none;

    transition:.3s;

}

.ssju-podcast-content h3 a:hover{

    color: var(--primary-color);

}

.ssju-podcast-content h5{

    font-size:18px;

    color: var(--black-color);

    margin-bottom:12px;

    font-weight:500;

}

.ssju-podcast-content p{

    color:#666;

    font-size:16px;

    margin-bottom:8px;

}

.ssju-podcast-content span{

    color:#777;

    font-size:17px;

}

/* Button */

.ssju-podcast-btn{

    text-align:center;

    margin-top:60px;

}

.ssju-podcast-btn a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:300px;

    height:60px;

    border:2px solid var(--secondary-color);

    color: var(--secondary-color);

    font-size:20px;

    font-weight:500;

    /* font-family:Georgia,serif; */

    text-decoration:none;

    transition:.35s;

}

.ssju-podcast-btn a:hover{

    background: var(--secondary-color);

    color: var(--white-color);

}

/* Tablet */

@media(max-width:1200px){

.ssju-podcast-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.ssju-podcast{

padding:70px 0;

}

.ssju-section-title h2{

font-size:38px;

}

.ssju-podcast-grid{

grid-template-columns:1fr;

}

.ssju-podcast-thumb img{

height:240px;

}

.ssju-podcast-btn a{

width:100%;

font-size:20px;

}

}


/*=====================================
SOCIAL
======================================*/

.ssju-social{

    padding:60px 0;

    background:var(--white-color);

}

.ssju-social .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.ssju-social-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;

    margin-bottom:70px;

}

/* Heading */

.ssju-social-heading h2{

    color: var(--primary-color);

    font-size:35px;
    font-weight:500;

    font-family:Georgia,serif;

    display:inline-block;

    position:relative;

    padding-bottom:15px;

}

.ssju-social-heading h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:65px;

    height:3px;

    background: var(--primary-color);

}

.ssju-social-heading h3{

    font-size:25px;

    color: var(--secondary-color);

    margin-top:25px;

    font-family:Georgia,serif;

    font-weight:500;

}

/* Icons */

.ssju-social-icons{

    display:flex;

    gap:15px;

}

.ssju-social-icons a{

    width:60px;

    height:60px;

    border:1px solid var(--secondary-color);

    display:flex;

    justify-content:center;

    align-items:center;

    color: var(--secondary-color);

    font-size:20px;

    transition:.35s;

}

.ssju-social-icons a:hover{

    background: var(--secondary-color);

    color: var(--white-color);

}

/* Instagram Button */

.ssju-instagram-btn{

    text-align:center;

}

.ssju-instagram-btn a{

    display:inline-flex;

    align-items:center;

    gap:15px;

    justify-content:center;

    width:300px;

    height:60px;

    border:2px solid var(--secondary-color);

    color: var(--secondary-color);

    font-size:20px;

    font-weight:500;

    text-decoration:none;

    transition:.35s;

}

.ssju-instagram-btn a:hover{

    background: var(--secondary-color);

    color: var(--white-color);

}

/*=====================================
CTA
======================================*/

.ssju-bottom-cta{

    width:100%;

}

.ssju-cta-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

}

.ssju-cta{

    padding:40px 80px;

    min-height:300px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.left{

    background: var(--primary-color);

    color: var(--white-color);

}

.right{

    background: var(--secondary-color);

    color: var(--white-color);

}

.ssju-cta img{

    width:70px;

    margin-bottom:30px;

}

.ssju-cta h2{

    font-size:25px;

    font-family:Georgia,serif;

    line-height:1.3;

    margin-bottom:40px;

}

.ssju-cta a{

    width:200px;

    height:55px;

    border:2px solid var(--white-color);

    display:flex;

    justify-content:center;

    align-items:center;

    color: var(--white-color);

    font-size:20px;

    font-weight:500;

    text-decoration:none;

    transition:.35s;

}

.ssju-cta a:hover{

    background:var(--white-color);

    color: var(--secondary-color);

}

/*=====================================
Responsive
======================================*/

@media(max-width:991px){

.ssju-social-top{

flex-direction:column;

}

.ssju-social-icons{

margin-top:25px;

}

.ssju-cta-grid{

grid-template-columns:1fr;

}

.ssju-cta{

padding:60px 40px;

}

}

@media(max-width:767px){

.ssju-social{

padding:70px 0;

}

.ssju-social-heading h2{

font-size:38px;

}

.ssju-social-heading h3{

font-size:32px;

}

.ssju-social-icons{

flex-wrap:wrap;

}

.ssju-social-icons a{

width:55px;

height:55px;

}

.ssju-instagram-btn a{

width:100%;

font-size:20px;

}

.ssju-cta{

padding:45px 25px;

min-height:240px;

}

.ssju-cta h2{

font-size:32px;

}

.ssju-cta a{

width:100%;

font-size:20px;

}

}

/*==================================================
            MOBILE HAMBURGER
==================================================*/

.hm-mobile-toggle{

    display:none;

    width:46px;

    height:46px;

    border:none;

    background:transparent;

    cursor:pointer;

    margin-left:auto;

    position:relative;

    z-index:1000;

}

.hm-mobile-toggle span{

    display:block;

    width:28px;

    height:3px;

    background: var(--secondary-color);

    margin:6px auto;

    border-radius:50px;

    transition:.35s;

}


/*==================================================
                OVERLAY
==================================================*/

.hm-sidebar-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;

}

.hm-sidebar-overlay.active{

    opacity:1;

    visibility:visible;

}


/*==================================================
                SIDEBAR
==================================================*/

.hm-mobile-sidebar{

    position:fixed;

    top:0;

    left:-450px;

    width:340px;

    max-width:90vw;

    height:100vh;

    background: var(--secondary-color);

    transition:.35s;

    z-index:99999;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    box-shadow:10px 0 40px rgba(0,0,0,.25);

}

.hm-mobile-sidebar.active{

    left:0;

}


/*==================================================
            HEADER
==================================================*/

.hm-sidebar-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 20px;

    border-bottom:1px solid rgba(255,255,255,.08);

    background: var(--secondary-color);

}

.hm-sidebar-logo img{

    max-width:150px;

    display:block;

}

.hm-close-sidebar{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background: var(--white-color);

    color: var(--secondary-color);

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.hm-close-sidebar:hover{

    background: var(--primary-color);

}


/*==================================================
            BODY
==================================================*/

.hm-sidebar-body{

    flex:1;

    overflow-y:auto;

    overflow-x:hidden;

    padding:0;

}

.hm-sidebar-body::-webkit-scrollbar{

    width:6px;

}

.hm-sidebar-body::-webkit-scrollbar-thumb{

    background: var(--secondary-color);

    border-radius:20px;

}


/*==================================================
            MENU
==================================================*/

.hm-mobile-nav{

    list-style:none;

    margin:0;

    padding:0;

}

.hm-mobile-nav>li{

    border-bottom:1px solid rgba(255,255,255,.08);

}

.hm-mobile-nav>li>a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 22px;

    color: var(--white-color);

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

.hm-mobile-nav>li>a:hover{

    background: var(--secondary-color);

}

.hm-mobile-nav>li>a i{

    font-size:14px;

}


/*==================================================
            SUBMENU
==================================================*/

.hm-mobile-nav ul{

    display:none;

    list-style:none;

    margin:0;

    padding:0;

    background: var(--secondary-color);

}

.hm-mobile-nav ul li{

    border-top:1px solid rgba(255,255,255,.08);

}

.hm-mobile-nav ul li a{

    display:block;

    padding:15px 35px;

    color: var(--white-color);

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

.hm-mobile-nav ul li a:hover{

    background: var(--secondary-color);

    padding-left:42px;

}


/*==================================================
        ACTIVE
==================================================*/

.hm-mobile-nav li.active>a{

    background: var(--secondary-color);

}

.hm-mobile-nav li.active>a i{

    transform:rotate(135deg);

    transition:.35s;

}

.hm-mobile-nav li>a i{

    transition:.35s;

}


/*==================================================
        BODY LOCK
==================================================*/

body.hm-menu-open{

    overflow:hidden;

}


/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:1400px){

.desktop-menu{

    display:none;

}

.hm-mobile-toggle{

    display:block;

}

.navbar-inner{

    display:flex;

    align-items:center;

}

}

@media(max-width:767px){

.hm-mobile-sidebar{

    width:310px;

}

.hm-sidebar-logo img{

    max-width:130px;

}

.hm-mobile-nav>li>a{

    font-size:16px;

    padding:16px 18px;

}

.hm-mobile-nav ul li a{

    font-size:14px;

    padding:14px 28px;

}

}

@media(max-width:480px){

.hm-mobile-sidebar{

    width:100%;

    max-width:100%;

}

}

/*=============================
      SECOND LEVEL MENU
==============================*/

.hm-mobile-nav ul ul{

    background: var(--secondary-color);

}

.hm-mobile-nav ul ul li a{

    padding:14px 50px;

    font-size:14px;

}

.hm-mobile-nav ul ul ul{

    background: var(--secondary-color);

}

.hm-mobile-nav ul ul ul li a{

    padding-left:70px;

}



/* sidebar social icon  */

.ssju-social-fixed{
    position:fixed;
    right:15px;
    /* background-color: var(--primary-color); */
    top:50%;
    transform:translateY(-50%);
    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:10px;
}

.ssju-social-fixed a{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    border-radius:50%;

    font-size:20px;

    transition:.3s;
}

.ssju-social-fixed a:hover{
    transform:translateX(-6px) scale(1.08);
}

.facebook{background:#1877F2;}
.instagram{background:#E4405F;}
.linkedin{background:#0A66C2;}
.youtube{background:#FF0000;}
.twitter{background:#000;}

@media (max-width:991px){

    .ssju-social-fixed{
        right:10px;
        gap:8px;
    }

    .ssju-social-fixed a{
        width:42px;
        height:42px;
        font-size:18px;
    }

}

@media (max-width:576px){

    .ssju-social-fixed{
        right:8px;
        gap:6px;
    }

    .ssju-social-fixed a{
        width:36px;
        height:36px;
        font-size:15px;
    }

}


/* ===========================
   Campus Tour Hero Section
=========================== */

.ct-campus-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background: url("/assets/images/hero/hero3.png") center center/cover no-repeat;
}

.ct-campus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.60)
    );
    z-index: 1;
}

.ct-campus-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: #fff;
}

.ct-campus-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f5c542;
    margin-bottom: 15px;
}

.ct-campus-title {
    font-size: clamp(42px, 6vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ct-campus-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */

@media (max-width: 991px) {

    .ct-campus-hero {
        min-height: 60vh;
    }

    .ct-campus-title {
        font-size: 48px;
    }

    .ct-campus-description {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {

    .ct-campus-hero {
        min-height: 50vh;
    }

    .ct-campus-title {
        font-size: 34px;
    }

    .ct-campus-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .ct-campus-description {
        font-size: 15px;
    }
}


.ct-registration-section{
    background:#f8f9fa;
}

.ct-registration-card{
    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.ct-form-title{
    font-size:38px;
    font-weight:700;
    color: var(--primary-color);
}

.ct-registration-card .form-control,
.ct-registration-card .form-select{
    height:55px;
    border-radius:8px;
    border:1px solid #d9d9d9;
}

.ct-registration-card .form-control:focus,
.ct-registration-card .form-select:focus{
    box-shadow:none;
    border-color: var(--secondary-color);
}

.ct-submit-btn{
    background: var(--secondary-color);
    color:#fff;
    height:55px;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.ct-submit-btn:hover{
    background: var(--primary-color);
    color:#fff;
}

@media(max-width:768px){

    .ct-registration-card{
        padding:30px 20px;
    }

    .ct-form-title{
        font-size:28px;
    }

}


/*======================================
    Resources Section
=======================================*/

.res-documents-section{
    background:#ffffff;
    padding:80px 0;
}

.res-handbook-section{
    background:#fdf9e9;
    padding:80px 0;
}

.res-section-heading{
    margin-bottom:50px;
}

.res-section-heading h2{
    font-size:30px;
    font-weight:600;
    color:#06283f;
    margin:0;
    position:relative;
}

.res-section-heading h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#d4a017;
    display:block;
    margin-top:15px;
}

/* Card */

.res-doc-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    background:#fff;

    border:1px solid #cfd8e3;

    min-height:110px;

    padding:25px;

    text-decoration:none;

    color:#06283f;

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.res-doc-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    background:#06283f;
    transition:.4s;
    z-index:0;
}

.res-doc-card:hover::before{
    width:100%;
}

.res-doc-card span,
.res-doc-card i{
    position:relative;
    z-index:2;
}

.res-doc-card span{
    font-size:20px;
    font-weight:600;
    line-height:1.5;
    transition:.3s;
}

.res-doc-card i{
    font-size:22px;
    transition:.35s;
}

.res-doc-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.res-doc-card:hover span,
.res-doc-card:hover i{
    color:#fff;
}

.res-doc-card:hover i{
    transform:translateX(8px);
}

/* Responsive */

@media(max-width:991px){

    .res-documents-section,
    .res-handbook-section{
        padding:60px 0;
    }

    .res-section-heading h2{
        font-size:40px;
    }

    .res-doc-card{
        min-height:100px;
    }

    .res-doc-card span{
        font-size:19px;
    }

}

@media(max-width:767px){

    .res-section-heading{
        text-align:center;
    }

    .res-section-heading h2::after{
        margin:15px auto 0;
    }

}

@media(max-width:576px){

    .res-documents-section,
    .res-handbook-section{
        padding:50px 0;
    }

    .res-section-heading h2{
        font-size:32px;
    }

    .res-doc-card{
        min-height:auto;
        padding:20px;
    }

    .res-doc-card span{
        font-size:17px;
    }

    .res-doc-card i{
        font-size:20px;
    }

}


/*==========================
Hero Section
==========================*/

.ssju-hero{
    width:100%;
    overflow:hidden;
    background:#fff;
    line-height:0; /* removes bottom white gap */
}

#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item,
.hero-slide{
    width:100%;
    height:auto !important;
}

.hero-slide{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.hero-slide img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    object-fit:contain;
}

.hero-slide{
    width:100%;
}

.hero-slide img{
    width:100%;
    height:auto;
    display:block;
}