*{box-sizing:border-box;}


/* =========================
   CONTAINER
========================= */

body{
    margin: 0;
    padding: 0;
}

.gsk-container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   TOPBAR
========================= */

.gsk-topbar{
    background:rgb(235 147 37);
    padding:10px 0;
}

.gsk-top-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.gsk-top-links a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

/* =========================
   MAIN HEADER
========================= */

.gsk-header{
    background:#072a6b;
}

.gsk-main-header{
    background:transparent;
    /*padding:22px 0;*/
}

.gsk-main-header .gsk-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* LOGO */

.gsk-logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.gsk-logo-area img{
    width:130px;
    height:130px;
    object-fit:contain;
}

.gsk-logo-text h2{
    color:#fff;
    font-size:36px;
    font-weight:800;
    line-height:0.8;
}

.gsk-logo-text p{
    color: #fff9b1;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0;
    margin-left: 5px;
}

.gsk-logo-text span{
    color:#fa872b;
    letter-spacing:1px;
    font-size:16px;
    margin-left: 5px;
    font-weight: bold;

}

/* CONTACT */

.gsk-header-contact{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.gsk-contact-box{
    color:#fff;
    font-size:15px;
    font-weight:600;
}

.gsk-contact-box i{
    margin-right:8px;
}

/* BADGE */

.gsk-naac-box{
    background:#d60000;
    color:#fff;
    padding:14px 22px;
    border-radius:40px;
    font-weight:700;
    text-align:center;
    line-height:1.5;
}

/* =========================
   NAVBAR
========================= */

.gsk-navbar{
    background:#00000066;
    position:relative;
}

.gsk-navbar .gsk-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* MENU */

.gsk-menu{
    display:flex;
    list-style:none;
    gap:20px;
    padding: 0;
}

.gsk-menu li a{
    color:#fff;
    text-decoration:none;
    padding:20px 0;
    display:block;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.gsk-menu li a:hover{
    color:#f5a530;
}

/* BUTTON */

.gsk-btn{
    background:#f2862f;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:8px;
    font-weight:700;
}

/* =========================
   MEGA MENU
========================= */

.gsk-has-mega{
    position:static;
}

.gsk-mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#f7f7f7;
    padding:45px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.3s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    z-index:999;
}

.gsk-has-mega:hover .gsk-mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.gsk-mega-grid{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:45px;
}

.gsk-academic-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.gsk-column{
    min-width:0;
}

.gsk-column h4{
    font-size:24px;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
    position:relative;
}

.gsk-column h4::after{
    content:"";
    width:45px;
    height:3px;
    background:#f2862f;
    position:absolute;
    left:0;
    bottom:-10px;
}

.gsk-column ul{
    list-style:none;
    padding: 0;
}

.gsk-column ul li{
    border-bottom:1px solid #ddd;
}

.gsk-column ul li a{
    color:#444;
    text-decoration:none;
    padding:15px 0;
    display:block;
    font-size:16px;
    transition:.3s;
    word-break:break-word;
}

.gsk-column ul li a:hover{
    color:#072a6b;
    padding-left:8px;
}

/* MOBILE */

.gsk-mobile-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    padding:15px 0;
    cursor:pointer;
}

/* =========================
   RESPONSIVE HEADER
========================= */

@media(max-width:991px){

    .gsk-mobile-toggle{
        display:block;
    }

    .gsk-nav{
        display:none;
        width:100%;
    }

    .gsk-nav.active{
        display:block;
    }

    .gsk-menu{
        flex-direction:column;
        gap:0;
        padding-bottom:20px;
    }

    .gsk-menu li{
        width:100%;
    }

    .gsk-menu li a{
        padding:16px 20px;
    }

    .gsk-navbar .gsk-container{
        flex-wrap:wrap;
    }

    .gsk-main-header .gsk-container{
        flex-direction:column;
        text-align:center;
    }

    .gsk-header-contact{
        justify-content:center;
    }

    .gsk-mega-menu{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        padding:20px 0;
        box-shadow:none;
    }

    .gsk-has-mega.active .gsk-mega-menu{
        display:block;
    }

    .gsk-mega-grid,
    .gsk-academic-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

}

@media(max-width:600px){

    .gsk-logo-area{
        flex-direction:column;
        text-align:center;
    }

    .gsk-logo-text h2{
        font-size:32px;
    }

    .gsk-logo-text span{
        font-size:13px;
        letter-spacing:3px;
        margin-left:0;
    }

    .gsk-top-links{
        gap:14px;
    }

    .gsk-btn{
        width:100%;
        text-align:center;
        margin-top:15px;
    }

}

/* =========================
   HOME SLIDER
========================= */

.gsk-home-slider{
    width:100%;
}

.gsk-slider{
    position:relative;
    height:420px;
    overflow:hidden;
}

.gsk-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.02);
    transition:opacity .6s ease, transform .8s ease;
}

.gsk-slide.is-active{
    opacity:1;
    transform:scale(1);
}

.gsk-slider-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(7,42,107,.78) 0%, rgba(7,42,107,.28) 55%, rgba(235,147,37,.12) 100%);
}

.gsk-slider-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    padding:0 20px;
    width:100%;
    margin:0 auto;
    color:#fff;
}

.gsk-slider-content h1{
    font-size:38px;
    line-height:1.05;
    margin:0 0 12px;
    font-weight:900;
}

.gsk-slider-content p{
    margin:0 0 22px;
    font-size:16px;
    font-weight:700;
    opacity:.95;
}

.gsk-slider-btn{
    background:#f2862f;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:10px;
    font-weight:900;
    display:inline-block;
}

.gsk-slider-btn:hover{
    background:#d77f18;
}

.gsk-slider-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:rgba(0,0,0,.35);
    color:#fff;
    width:44px;
    height:44px;
    border-radius:50%;
    cursor:pointer;
    z-index:5;
}

.gsk-prev{ left:15px; }
.gsk-next{ right:15px; }

.gsk-slider-dots{
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    display:flex;
    justify-content:center;
    gap:10px;
    z-index:6;
}

.gsk-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.45);
    cursor:pointer;
}

.gsk-dot.is-active{
    background:#f2862f;
}

@media(max-width:991px){
    .gsk-slider{ height:360px; }
    .gsk-slider-content h1{ font-size:38px; }
}

@media(max-width:600px){
    .gsk-slider{ height:300px; }
    .gsk-slider-content h1{ font-size:28px; }
}

/* =========================
   CONTACT ENQUIRY PAGE
========================= */

.gsk-page-banner{
    background: linear-gradient(135deg, #072a6b 0%, #0b3d9f 45%, #f2862f 100%);
    padding: 42px 0;
}

.gsk-banner-title{
    color:#fff;
    font-weight:800;
    font-size:40px;
}

.gsk-banner-subtitle{
    color: rgba(255,255,255,.9);
    font-size:16px;
    margin-top:8px;
}

.gsk-contact-page{
    padding: 50px 0 70px;
}

.gsk-enquiry-card{
    background:#fff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(7,42,107,.08);
    border: 1px solid rgba(7,42,107,.08);
}

.gsk-section-title{
    font-weight:800;
    color:#072a6b;
    position:relative;
}

.gsk-enquiry-form input:focus,
.gsk-enquiry-form select:focus,
.gsk-enquiry-form textarea:focus{
    border-color:#f2862f !important;
    box-shadow: 0 0 0 .25rem rgba(235,147,37,.18) !important;
}

.gsk-enquiry-btn{
    background:#f2862f;
    color:#fff;
    padding: 12px 18px;
    font-weight:800;
    border-radius: 10px;
}

.gsk-enquiry-btn:hover{
    background:#d77f18;
    color:#fff;
}

.gsk-form-note{
    font-size: 13px;
    color:#6c757d;
}

.gsk-contact-sidebar .gsk-info-card{
    background:#fff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(7,42,107,.07);
    border: 1px solid rgba(7,42,107,.08);
}

.gsk-info-title{
    font-weight:900;
    color:#072a6b;
    font-size:20px;
    margin-bottom:16px;
}

.gsk-info-row{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:10px 0;
}

.gsk-info-icon{
    width:40px;
    height:40px;
    border-radius: 12px;
    background: rgba(235,147,37,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f2862f;
    flex: 0 0 auto;
}

.gsk-info-label{
    font-weight:800;
    color:#343a40;
    font-size:13px;
}

.gsk-info-text{
    color:#072a6b;
    font-weight:700;
    margin-top:2px;
}

.gsk-hours-list{
    list-style:none;
    padding-left:0;
}

.gsk-hours-list li{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding:10px 0;
    border-bottom: 1px dashed rgba(7,42,107,.15);
}

.gsk-hours-list li:last-child{
    border-bottom:none;
}

.gsk-hours-list span{
    color:#5b6777;
    font-weight:700;
}

.gsk-hours-list strong{
    color:#072a6b;
}

.gsk-map-wrap{
    background: #f1f6ff;
}

.gsk-map-placeholder{
    padding: 26px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:10px;
    color:#072a6b;
    min-height: 190px;
}

.gsk-map-placeholder i{
    font-size: 36px;
    color:#f2862f;
}

@media (max-width: 767.98px){
    .gsk-banner-title{ font-size: 30px; }
    .gsk-contact-page{ padding: 35px 0 50px; }
    .gsk-map-placeholder{ min-height: 160px; }
}

.gsk-topbar {
  background:#f2862f;
  padding: 10px 0;
}

.gsk-container {
  width: 95%;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Links */
.gsk-top-links {
  display: flex;
  gap: 20px;
}

.gsk-top-links a {
  /*color: #fff;*/
  color: #041940;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Right Contact */
.gsk-header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gsk-contact-box {
  /*color: #fff;*/
  color: #041940;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gsk-container {
    flex-direction: column;
    gap: 10px;
  }

  .gsk-top-links,
  .gsk-header-contact {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.quick-links-section{
    padding:40px 0;
}

.quick-link-box{
    background:#fff;
    border-radius:14px;
    padding:18px 10px;
    text-align:center;
    transition:.3s;
    height:100%;
    border:1px solid #e7ecf3;
    cursor:pointer;
}

.quick-link-box:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.quick-icon{
    width:58px;
    height:58px;
    line-height:58px;
    margin:auto;
    border-radius:50%;
    /*background:linear-gradient(135deg,#005bea,#00c6fb);*/
    background:linear-gradient(135deg, #072a6b, #0419406e);
    color:#fff;
    font-size:22px;
    margin-bottom:12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick-action{
    font-size:13px;
    font-weight:700;
    color:#f2862f;
    text-transform:uppercase;
    margin-bottom:5px;
}

.quick-title{
    font-size:14px;
    font-weight:600;
    color:#072a6b;
    line-height:1.4;
}

.quick-link-box a{
    text-decoration:none;
}

@media(max-width:991px){

    .quick-link-box{
        margin-bottom:15px;
    }

}

.about-section{
    padding:90px 0;
    overflow:hidden;
    position:relative;
}

.about-tag{
    color:#f2862f;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
    display:inline-block;
    position:relative;
    padding-left:60px;
}

.about-tag::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:45px;
    height:2px;
    background:#f2862f;
    transform:translateY(-50%);
}

.about-title{
    font-size:55px;
    font-weight:700;
    color:#072a6b;
    line-height:1.2;
    margin-bottom:25px;
}

.about-title span{
    font-style:italic;
    font-family:Georgia, serif;
    font-weight:500;
}

.about-text{
    color:#777;
    font-size:16px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:600px;
}

.feature-box{
    background:#fff;
    border-radius:18px;
    padding:22px;
    display:flex;
    align-items:flex-start;
    margin-bottom:22px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-icon{
    min-width:70px;
    height:70px;
    border-radius:50%;
    border:3px solid #ccefff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#18a0db;
    font-size:28px;
    margin-right:20px;
}

.feature-content h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:8px;
    color:#072a6b;
}

.feature-content p{
    margin:0;
    color:#777;
    line-height:1.7;
    font-size:15px;
}

.learn-btn{
    display:inline-block;
    background:#f2862f;
    color:#fff;
    padding:14px 35px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
    margin-top:15px;
    transition:.3s;
}

.learn-btn:hover{
    background:#0d8bc2;
    color:#fff;
    text-decoration:none;
}

.about-image{
    position:relative;
    text-align:center;
}

.about-image img{
    width:100%;
    /*max-width:500px;*/
    position:relative;
    z-index:2;
}

.shape-circle{
    position:absolute;
    width:480px;
    height:480px;
    background:#dff6ff;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:1;
}

.dot-shape{
    position:absolute;
    width:22px;
    height:22px;
    background:#ff8b38;
    border-radius:50%;
}

.dot1{
    top:80px;
    right:80px;
}

.dot2{
    bottom:120px;
    left:30px;
}

.wave-shape{
    position:absolute;
    width:180px;
    height:180px;
    border:2px dashed #18a0db;
    border-radius:50%;
    bottom:20px;
    right:10px;
    z-index:0;
}

@media(max-width:991px){

    .about-title{
        font-size:40px;
    }

    .about-image{
        margin-top:50px;
    }

    .shape-circle{
        width:350px;
        height:350px;
    }
}

@media(max-width:575px){

    .about-title{
        font-size:32px;
    }

    .feature-box{
        flex-direction:column;
        text-align:center;
    }

    .feature-icon{
        margin:0 auto 15px;
    }

    .shape-circle{
        width:280px;
        height:280px;
    }
}

.facility-section{
    padding:80px 0;
    overflow:hidden;
}

.title{
    text-align:center;
    margin-bottom:50px;
}

.title h2{
    font-size:48px;
    font-weight:700;
    color: #072a6b;
}

.title span{
    color:#f2862f;
}

.slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.slide-track{
    display:flex;
    width:calc(350px * 12);
    animation:scroll 25s linear infinite;
}

.slide-track:hover{
    animation-play-state:paused;
}

.slide{
    width:350px;
    padding:15px;
    flex-shrink:0;
}

.card-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.3s;
}

.card-box:hover{
    transform:translateY(-10px);
}

.card-box img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card-content{
    padding:25px;
}

.card-content h3{
    font-size:28px;
    margin-bottom:15px;
    color: #203f77;
}

.card-content p{
    color:#666;
    line-height:1.7;
}

.btn-explore{
    display:inline-block;
    margin-top:10px;
    background:#f2862f;
    color:#fff;
    padding:10px 22px;
    border-radius:6px;
    text-decoration:none;
}

.btn-explore:hover{
    color:#fff;
    text-decoration:none;
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-350px * 6));
    }

}

@media(max-width:768px){

    .slide{
        width:280px;
    }

    .slide-track{
        width:calc(280px * 12);
    }

    @keyframes scroll{

        100%{
            transform:translateX(calc(-280px * 6));
        }

    }

}

.teacher-section{
    padding:80px 0;
}

.teacher-card{
    position:relative;
    height:520px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    cursor:pointer;
}

.teacher-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.teacher-card:hover img{
    transform:scale(1.08);
}

/* BOTTOM CARD */

.teacher-info{
    position:absolute;
    left:15px;
    right:15px;
    bottom:15px;
    background:#fff;
    border-radius:18px;
    padding:22px;
    transition:.5s ease;
    overflow:hidden;
}

/* DEFAULT CONTENT */

.teacher-basic{
    transition:.4s;
}

.teacher-basic h4{
    font-size:30px;
    margin-bottom:8px;
    font-weight:700;
}

.teacher-basic p{
    margin:0;
    color:#666;
}

/* HOVER CONTENT */

.teacher-hover{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.5s ease;
}

.teacher-hover .meta{
    color:#f2862f;
    margin:18px 0;
    font-size:15px;
}

.teacher-hover .meta i{
    margin-right:5px;
}

.teacher-hover .desc{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.teacher-hover .btn-detail{
    display:inline-block;
    background:#f2862f;
    color:#fff;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.teacher-hover .btn-detail:hover{
    color:#fff;
    text-decoration:none;
}

/* HOVER EFFECT */

.teacher-card:hover .teacher-info{
    bottom:25px;
    padding:30px;
}

.teacher-card:hover .teacher-hover{
    max-height:300px;
    opacity:1;
    margin-top:15px;
}

/* ACTIVE CARD */

/*.active-card .teacher-hover{*/
/*    max-height:300px;*/
/*    opacity:1;*/
/*    margin-top:15px;*/
/*}*/

/*.active-card .teacher-info{*/
/*    padding:30px;*/
/*    bottom:25px;*/
/*}*/

@media(max-width:768px){

    .teacher-card{
        height:420px;
        margin-bottom:25px;
    }

}

.teacher-section{
    padding:90px 0;
    overflow:hidden;
    /*background:#f5fbff;*/
}

.teacher-left{
    margin-bottom:30px;
}

.teacher-title small{
    color:#f2862f;
    font-size:15px;
    font-weight:600;
    display:block;
    margin-bottom:15px;
    position:relative;
    padding-left:55px;
}

.teacher-title small:before{
    content:'';
    width:40px;
    height:2px;
    background:#f2862f;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.teacher-title h2{
    font-size:38px;
    font-weight:700;
    line-height:1.2;
    color:#072a6b;
    margin-bottom:25px;
}

.teacher-title h2 span{
    font-style:italic;
    font-family:Georgia, serif;
    font-weight:500;
}

.teacher-title p{
    color:#777;
    line-height:1.9;
    margin-bottom:30px;
    font-size:15px;
}

.view-btn{
    display:inline-block;
    background:#f2862f;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.view-btn:hover{
    background:#0284c7;
    color:#fff;
    text-decoration:none;
}

/* CARD */

.teacher-card{
    position:relative;
    height:520px;
    border-radius:25px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.teacher-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.teacher-card:hover img{
    transform:scale(1.08);
}

/* INFO BOX */

.teacher-info{
    position:absolute;
    left:15px;
    right:15px;
    bottom:15px;
    background:rgba(255,255,255,0.96);
    border-radius:20px;
    padding:22px;
    transition:.5s ease;
    overflow:hidden;
}

/* DEFAULT CONTENT */

.teacher-basic h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
    color:#072a6b;
}

.teacher-basic p{
    margin:0;
    color:#666;
    font-size:15px;
}

/* HOVER CONTENT */

.teacher-hover{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.5s ease;
}

.teacher-hover .meta{
    color:#f2862f;
    margin:18px 0;
    font-size:14px;
}

.teacher-hover .meta i{
    margin-right:5px;
}

.teacher-hover .desc{
    color:#666;
    line-height:1;
    margin-bottom:20px;
    font-size:14px;
}

.btn-detail{
    display:inline-block;
    background:#f2862f;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-detail:hover{
    background:#0284c7;
    color:#fff;
    text-decoration:none;
}

/* HOVER EFFECT */

.teacher-card:hover .teacher-info{
    bottom:25px;
    padding:30px;
}

.teacher-card:hover .teacher-hover{
    max-height:300px;
    opacity:1;
    margin-top:15px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .teacher-title h2{
        font-size:40px;
    }

    .teacher-card{
        height:450px;
    }

}

@media(max-width:767px){

    .teacher-title{
        margin-bottom:40px;
    }

    .teacher-title h2{
        font-size:34px;
    }

    .teacher-card{
        height:420px;
    }

}

@media(max-width:575px){

    .teacher-section{
        padding:60px 0;
    }

    .teacher-title h2{
        font-size:30px;
    }

    .teacher-card{
        height:400px;
    }

    .teacher-basic h4{
        font-size:24px;
    }

}


.testimonial-section{
    padding: 80px 0;
    overflow:hidden;
    position:relative;
}

/* LEFT SIDE */

.testimonial-small{
    color:#f2862f;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
    display:inline-block;
    position:relative;
    padding-left:55px;
}

.testimonial-small:before{
    content:'';
    width:40px;
    height:2px;
    background:#f2862f;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.testimonial-title{
    font-size:38px;
    line-height:1.2;
    font-weight:700;
    color:#072a6b;
    margin-bottom:30px;
}

.testimonial-title span{
    font-style:italic;
    font-family:Georgia, serif;
    font-weight:500;
}

.testimonial-text{
    color:#777;
    line-height:1.9;
    font-size:16px;
    max-width:500px;
}

/* RIGHT SIDE */

.testimonial-wrapper{
    position:relative;
    padding-left:120px;
}

/* SHAPES */

.bg-shape{
    position:absolute;
    left:40px;
    top:-20px;
    width:260px;
    height:260px;
    z-index:1;
}

.bg-shape span{
    position:absolute;
    width:18px;
    height:160px;
    border-radius:20px;
    background:#b6a7ff;
    transform:rotate(45deg);
    opacity:.5;
}

.bg-shape span:nth-child(1){
    left:0;
    top:50px;
}

.bg-shape span:nth-child(2){
    left:40px;
    top:20px;
    background:#78dfff;
}

.bg-shape span:nth-child(3){
    left:80px;
    top:60px;
}

.bg-shape span:nth-child(4){
    left:120px;
    top:10px;
    background:#78dfff;
}

.bg-shape span:nth-child(5){
    left:160px;
    top:50px;
}

/* SWIPER */

.testimonial-slider{
    padding-bottom:60px;
}

/* CARD */

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:50px 45px 50px 180px;
    position:relative;
    z-index:2;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    min-height:333px;
}

.testimonial-card:before{
    content:'';
    position:absolute;
    right:-100px;
    bottom:-100px;
    width:320px;
    height:220px;
    background:#d9f4ff;
    border-radius:50%;
}

/* IMAGE */

.student-img{
    width: 165px;
    height: 252px;
    border-radius:20px;
    overflow:hidden;
    position:absolute;
    left:0;
    top:40px;
    z-index:3;
    border:8px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.student-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* QUOTE */

.quote-icon{
    position:absolute;
    left:180px;
    bottom:40px;
    font-size:90px;
    color:#d9f4ff;
    z-index:1;
}

.testimonial-card h3{
    font-size:40px;
    font-weight:700;
    color:#072a6b;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.stars{
    color:#f2862f;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.testimonial-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    position:relative;
    z-index:2;
}

/* DOTS */

.swiper-pagination{
    margin-top:30px;
    position:relative;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#7dd3fc;
    opacity:1;
    border-radius:50%;
    transition:.3s;
}

.swiper-pagination-bullet-active{
    width:35px;
    border-radius:30px;
    background:#f2862f;
}

/* RESPONSIVE */

@media(max-width:991px){

    .testimonial-title{
        font-size:42px;
    }

    .testimonial-left{
        margin-bottom:60px;
    }

    .testimonial-wrapper{
        padding-left:0;
    }

    .student-img{
        position:relative;
        margin:auto;
        top:0;
    }

    .testimonial-card{
        padding:180px 30px 40px;
        margin-top:-60px;
    }

    .quote-icon{
        left:40px;
    }

}

@media(max-width:575px){

    .testimonial-title{
        font-size:32px;
    }

    .testimonial-card h3{
        font-size:28px;
    }

}

/* =========================
   FOOTER
========================= */

.gsk-footer{
    position: relative;
    background: linear-gradient(90deg,#072247,#01091e 60%, #000814);
    padding: 80px 0 10px;
    overflow: hidden;
}

/* subtle glow */
.gsk-footer::before{
    content:'';
    position:absolute;
    top:0;
    left:-120px;
    width:420px;
    height:100%;
    background: radial-gradient(circle,
    rgba(22,83,165,0.35) 0%,
    rgba(0,0,0,0) 70%);
}

/* logo */
.footer-logo img{
    width: 125px;
    margin-bottom: 25px;
}

/* address */
.footer-address{
    color:#c4d3ea;
    line-height: 20px;
    font-size: 17px;
    margin-bottom: 25px;
}

/* contact */
.footer-contact h5{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-top:18px;
    margin-bottom:10px;
}

.footer-contact p{
    color:#fff;
    font-size:17px;
    margin-bottom:10px;
}

/* links */
.footer-links h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:28px;
    position: relative;
}

.footer-links h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background:#f2862f;
}

.footer-links ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links ul li{
    margin-bottom:10px;
}

.footer-links ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#f2862f;
    padding-left:5px;
}

/* social */
.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    background:#f2862f;
    transform:translateY(-4px);
}

/* copyright */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    /*margin-top:50px;*/
    padding-top:10px;
    text-align:center;
    color:#d9d9d9;
    font-size:16px;
}

/* back top */
.back-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:#16263f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    text-decoration:none;
    z-index:99;
    transition:0.3s;
}

.back-top:hover{
    background:#f2862f;
    color:#fff;
}

/* responsive */
@media(max-width:991px){

    .footer-links h4{
        font-size:26px;
    }

    .footer-links ul li a{
        font-size:16px;
    }

    .footer-address,
    .footer-contact p{
        font-size:16px;
        line-height:28px;
    }
}

@media(max-width:767px){

    .gsk-footer{
        text-align:left;
        padding:60px 0 20px;
    }

    .footer-logo img{
        width:140px;
    }

    .footer-links{
        margin-top:10px;
    }

    .footer-bottom{
        margin-top:25px;
    }
}

/* =========================
   NOTICE MARQUEE
========================= */

.gsk-notice-wrapper{
    width:100%;
    display:flex;
    align-items:center;
    background:#f8f8f8;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
    overflow:hidden;
    position:relative;
    z-index:1;
}

/* LEFT RED LABEL */

.gsk-notice-label{
    min-width:110px;
    height:50px;
    background:#c40000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:16px;
    font-weight:700;
    position:relative;
    z-index:2;
}

.gsk-notice-label i{
    font-size:14px;
}

/* triangle */

.gsk-notice-label::after{
    content:'';
    position:absolute;
    top:0;
    right:-18px;
    width:0;
    height:0;
    border-top:25px solid transparent;
    border-bottom:25px solid transparent;
    border-left:18px solid #c40000;
}

/* MARQUEE AREA */

.gsk-marquee{
    flex:1;
    overflow:hidden;
    position:relative;
    height:50px;
    display:flex;
    align-items:center;
    margin-left:18px;
}

/* TRACK */

.gsk-marquee-track{
    display:flex;
    align-items:center;
    white-space:nowrap;
    animation:gskMarquee 30s linear infinite;
}

/* PAUSE ON HOVER */

.gsk-marquee:hover .gsk-marquee-track{
    animation-play-state:paused;
}

/* ITEM */

.gsk-notice-item{
    display:flex;
    align-items:center;
    color:#222;
    text-decoration:none !important;
    font-size:17px;
    font-weight:600;
    margin-right:70px;
    transition:0.3s;
}

.gsk-notice-item i{
    color:#c40000;
    font-size:12px;
    margin-right:10px;
}

.gsk-notice-item:hover{
    color:#c40000;
}

/* ANIMATION */

@keyframes gskMarquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* RESPONSIVE */

@media(max-width:768px){

    .gsk-notice-label{
        min-width:90px;
        font-size:14px;
        height:42px;
    }

    .gsk-notice-label::after{
        border-top:21px solid transparent;
        border-bottom:21px solid transparent;
    }

    .gsk-marquee{
        height:42px;
    }

    .gsk-notice-item{
        font-size:14px;
        margin-right:40px;
    }
}

/* =========================
   SECTION
========================= */

.gsk-campus-section{
    padding:80px 0;
    background:#f5f7fb;
}

/* BOX */

.gsk-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    height:100%;
    overflow:hidden;
}

/* HEADING */

.gsk-heading{
    margin-bottom:30px;
}

.gsk-heading span{
    color:#f2862f;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gsk-heading h2{
    font-size:38px;
    font-weight:800;
    color:#16263f;
    margin-top:8px;
}

/* =========================
   EVENTS
========================= */

.gsk-events-wrapper{
    height:400px;
    overflow:hidden;
    position:relative;
}

.gsk-events-track{
    display:flex;
    flex-direction:column;
    gap:20px;
    animation:gskEventMove 15s linear infinite;
}

.gsk-events-wrapper:hover .gsk-events-track{
    animation-play-state:paused;
}

.gsk-event-card{
    background:#fff;
    border:1px solid #eee;
    border-left:5px solid #f2862f;
    border-radius:16px;
    padding:20px;
    display:flex;
    gap:20px;
    align-items:center;
    transition:0.3s;
}

.gsk-event-card:hover{
    transform:translateX(5px);
}

/* DATE */

.gsk-event-date{
    min-width:80px;
    height:80px;
    background:#16263f;
    border-radius:15px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-size:16px;
    font-weight:600;
}

.gsk-event-date span{
    font-size:30px;
    font-weight:800;
}

/* CONTENT */

.gsk-event-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
    color:#111;
}

.gsk-event-content p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* EVENT ANIMATION */

@keyframes gskEventMove{

    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(-50%);
    }
}

/* =========================
   PATRON SLIDER
========================= */

.gsk-patron-slider{
    position:relative;
    min-height:400px;
}

/* SLIDE */

.gsk-patron-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transform:translateY(30px);
    transition:0.6s ease;
}

.gsk-patron-slide.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* IMAGE */

.gsk-patron-image{
    width:60%;
    height:260px;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:25px;
}

.gsk-patron-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */

.gsk-patron-content h3{
    font-size:25px;
    font-weight:800;
    color:#16263f;
    margin-bottom:8px;
}

.gsk-patron-content span{
    display:inline-block;
    color:#16263f;
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
}

.gsk-patron-content p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .gsk-heading h2{
        font-size:30px;
    }

    .gsk-patron-slider{
        min-height:500px;
    }
}

@media(max-width:767px){

    .gsk-campus-section{
        padding:60px 0;
    }

    .gsk-box{
        padding:20px;
    }

    .gsk-event-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .gsk-patron-image{
        height:220px;
    }

    .gsk-patron-content h3{
        font-size:24px;
    }

    .gsk-event-content h4{
        font-size:20px;
    }
}

/* =========================
   QUICK LINKS SECTION
========================= */

.gsk-links-section{
    padding:80px 0;
    background:#f5f7fb;
}

/* TITLE */

.gsk-links-title{
    margin-bottom:50px;
}

.gsk-links-title span{
    color:#f2862f;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gsk-links-title h2{
    font-size:42px;
    font-weight:800;
    color:#072a6b;
    margin-top:10px;
}

/* BOX */

.gsk-links-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    height:100%;
}

/* HEADER */

.gsk-box-header{
    background:linear-gradient(135deg, #072a6b, #0419406e);
    padding:22px 28px;
    display:flex;
    align-items:center;
    gap:15px;
}

.gsk-box-header i{
    font-size:24px;
    color:#fff;
}

.gsk-box-header h3{
    margin:0;
    color:#fff;
    font-size:28px;
    font-weight:700;
}

/* LIST */

.gsk-links-list{
    list-style:none;
    margin:0;
    padding:10px 0;
}

.gsk-links-list li{
    border-bottom:1px solid #f1f1f1;
}

.gsk-links-list li:last-child{
    border-bottom:none;
}

.gsk-links-list li a{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:18px 25px;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    line-height:1.6;
    transition:0.3s;
}

.gsk-links-list li a i{
    color:#f2862f;
    margin-top:5px;
    transition:0.3s;
}

.gsk-links-list li a:hover{
    background:#f9f9f9;
    color:#f2862f;
    padding-left:32px;
}

.gsk-links-list li a:hover i{
    transform:translateX(4px);
}

/* GOV LINKS */

.gsk-gov-links{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    justify-content:center;
}

.gsk-gov-links a{
    background:#fff;
    border-radius:12px;
    padding:14px 22px;
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.gsk-gov-links a i{
    color:#f2862f;
    font-size:16px;
}

.gsk-gov-links a:hover{
    background:#f2862f;
    color:#fff;
    transform:translateY(-4px);
}

.gsk-gov-links a:hover i{
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .gsk-links-title h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .gsk-links-section{
        padding:60px 0;
    }

    .gsk-links-title h2{
        font-size:28px;
    }

    .gsk-box-header h3{
        font-size:22px;
    }

    .gsk-links-list li a{
        font-size:15px;
        padding:16px 20px;
    }

    .gsk-gov-links{
        gap:12px;
    }

    .gsk-gov-links a{
        width:100%;
        justify-content:flex-start;
    }
}
/* =========================
   VISION MISSION SECTION
========================= */

.gsk-vision-section{
    padding:90px 0;
    background:#f5f7fb;
    overflow:hidden;
}

/* TITLE */

.gsk-section-title{
    margin-bottom:60px;
}

.gsk-section-title span{
    color:#f2862f;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.gsk-section-title h2{
    font-size:46px;
    font-weight:800;
    color:#16263f;
    margin-top:10px;
    margin-bottom:15px;
}

.gsk-section-title p{
    color:#666;
    font-size:17px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* IMAGE */

.gsk-vision-image{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.gsk-vision-image img{
    width:100%;
    height:600px;
    object-fit:cover;
}

/* FLOATING BOX */

.gsk-floating-box{
    position:absolute;
    left:30px;
    bottom:30px;
    background:#fff;
    padding:18px 25px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.gsk-floating-box i{
    width:60px;
    height:60px;
    background:#f2862f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.gsk-floating-box h4{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111;
}

/* CONTENT BOX */

.gsk-content-box{
    background:#fff;
    border-radius:22px;
    padding:35px;
    display:flex;
    gap:25px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:0.4s;
}

.gsk-content-box:hover{
    transform:translateY(-5px);
}

/* ICON */

.gsk-icon-box{
    min-width:80px;
    height:80px;
    background:linear-gradient(135deg, #f2862f, #ff4b4b);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gsk-icon-box i{
    color:#fff;
    font-size:32px;
}

.gsk-icon-box.mission{
    background:linear-gradient(135deg,#002b5b,#005eff);
}

/* CONTENT */

.gsk-content h3{
    font-size:30px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.gsk-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin:0;
}

.gsk-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.gsk-content ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.gsk-content ul li::before{
    content:'✔';
    position:absolute;
    left:0;
    top:0;
    color:#f2862f;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:991px){

    .gsk-section-title h2{
        font-size:36px;
    }

    .gsk-vision-image img{
        height:450px;
    }
}

@media(max-width:767px){

    .gsk-vision-section{
        padding:60px 0;
    }

    .gsk-section-title h2{
        font-size:30px;
    }

    .gsk-content-box{
        flex-direction:column;
        padding:25px;
    }

    .gsk-content h3{
        font-size:24px;
    }

    .gsk-floating-box{
        left:15px;
        right:15px;
        bottom:15px;
        padding:15px;
    }

    .gsk-floating-box h4{
        font-size:16px;
    }

    .gsk-floating-box i{
        width:50px;
        height:50px;
        font-size:20px;
    }
}

/* =========================
   ABOUT HERO SECTION
========================= */

.gsk-about-hero{
    position:relative;
    padding:110px 0;
    background:linear-gradient(135deg,#f7f9ff,#eef3ff);
    overflow:hidden;
}

/* SHAPES */

.gsk-shape{
    position:absolute;
    border-radius:50%;
    z-index:0;
}

.shape-1{
    width:300px;
    height:300px;
    background:rgba(209,0,0,0.08);
    top:-80px;
    left:-100px;
}

.shape-2{
    width:250px;
    height:250px;
    background:rgba(0,61,165,0.08);
    bottom:-100px;
    right:-80px;
}

/* CONTENT */

.gsk-about-content{
    position:relative;
    z-index:2;
}

.gsk-tag{
    display:inline-block;
    background:#ffe7e7;
    color:#f2862f;
    font-size:14px;
    font-weight:700;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.gsk-about-content h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
}

.gsk-about-content p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/* INFO BOX */

.gsk-info-wrap{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.gsk-info-box{
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    min-width:240px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.gsk-info-box i{
    width:60px;
    height:60px;
    background:#f2862f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.gsk-info-box h4{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111;
}

.gsk-info-box span{
    font-size:14px;
    color:#666;
}

/* BUTTONS */

.gsk-btn-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.gsk-btn-primary,
.gsk-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:55px;
    padding:0 32px;
    border-radius:12px;
    text-decoration:none !important;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.gsk-btn-primary{
    background:#f2862f;
    color:#fff;
}

.gsk-btn-primary:hover{
    background:#111;
    color:#fff;
}

.gsk-btn-outline{
    border:2px solid #f2862f;
    color:#f2862f;
    background:#fff;
}

.gsk-btn-outline:hover{
    background:#f2862f;
    color:#fff;
}

/* IMAGE */

.gsk-about-image{
    position:relative;
    z-index:2;
}

.gsk-about-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* FLOATING CARD */

.gsk-floating-card{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:#fff;
    border-radius:20px;
    padding:22px 25px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.gsk-floating-card i{
    width:70px;
    height:70px;
    background:#f2862f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.gsk-floating-card h3{
    margin:0;
    font-size:30px;
    font-weight:800;
    color:#111;
}

.gsk-floating-card p{
    margin:0;
    color:#666;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .gsk-about-hero{
        padding:80px 0;
    }

    .gsk-about-content{
        margin-bottom:50px;
    }

    .gsk-about-content h1{
        font-size:42px;
    }

    .gsk-about-image img{
        height:500px;
    }

    .gsk-floating-card{
        left:20px;
        right:20px;
        bottom:20px;
    }
}

@media(max-width:767px){

    .gsk-about-content h1{
        font-size:34px;
    }

    .gsk-about-content p{
        font-size:15px;
    }

    .gsk-info-box{
        width:100%;
        min-width:100%;
    }

    .gsk-about-image img{
        height:380px;
    }

    .gsk-floating-card{
        padding:15px;
        gap:12px;
    }

    .gsk-floating-card i{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .gsk-floating-card h3{
        font-size:22px;
    }
}

/* =========================
   BREADCRUMB
========================= */

.gsk-breadcrumb{
    position:relative;
    padding:120px 0 90px;
    overflow:hidden;
}

/* IMAGE */

.gsk-breadcrumb-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* OVERLAY */

.gsk-breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:2;
}

/* CONTENT */

.gsk-breadcrumb-content{
    position:relative;
    z-index:3;
    text-align:center;
}

.gsk-breadcrumb-content h1{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

/* BREADCRUMB */

.gsk-breadcrumb-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.gsk-breadcrumb-list li{
    color:#fff;
    font-size:16px;
}

.gsk-breadcrumb-list li a{
    color:#fff;
    text-decoration:none;
}

.gsk-breadcrumb-list .active{
    color:#f2862f;
}



/* =========================
   CONTACT PAGE
========================= */

.gsk-contact-page{
    padding:90px 0;
    background:#f5f7fb;
}

/* TITLE */

.gsk-contact-title{
    margin-bottom:60px;
}

.gsk-contact-title span{
    color:#f2862f;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gsk-contact-title h2{
    font-size:46px;
    font-weight:800;
    color:#16263f;
    margin-top:10px;
    margin-bottom:15px;
}

.gsk-contact-title p{
    color:#666;
    font-size:17px;
}

/* CONTACT INFO */

.gsk-contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* ITEM */

.gsk-contact-item{
    background:#fff;
    border-radius:20px;
    padding:25px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:0.3s;
}

.gsk-contact-item:hover{
    transform:translateY(-5px);
}

/* ICON */

.gsk-contact-icon{
    min-width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#f2862f,#ff4d4d);
    display:flex;
    align-items:center;
    justify-content:center;
}

.gsk-contact-icon i{
    color:#fff;
    font-size:28px;
}

/* CONTENT */

.gsk-contact-content h4{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.gsk-contact-content p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* FORM */

.gsk-contact-form{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

/* INPUT */

.gsk-input-box{
    position:relative;
}

.gsk-input-box input,
.gsk-input-box textarea{
    width:100%;
    border:none;
    outline:none;
    background:#f5f7fb;
    border-radius:14px;
    padding:18px 55px 18px 20px;
    font-size:16px;
    color:#111;
}

.gsk-input-box textarea{
    resize:none;
}

.gsk-input-box i{
    position:absolute;
    right:20px;
    top:20px;
    color:#f2862f;
    font-size:18px;
}

/* BUTTON */

.gsk-contact-btn{
    border:none;
    outline:none;
    background:#f2862f;
    color:#fff;
    height:58px;
    padding:0 35px;
    border-radius:14px;
    font-size:17px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:0.3s;
}

.gsk-contact-btn:hover{
    background:#111;
}

/* MAP */

.gsk-map-section iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}

/* RESPONSIVE */

@media(max-width:991px){

    .gsk-contact-title h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .gsk-contact-page{
        padding:60px 0;
    }

    .gsk-contact-title h2{
        font-size:30px;
    }

    .gsk-contact-form{
        padding:25px;
    }

    .gsk-contact-item{
        flex-direction:column;
    }

    .gsk-contact-content h4{
        font-size:20px;
    }

    .gsk-map-section iframe{
        height:320px;
    }
}

/* =========================
   GALLERY PAGE
========================= */

.gsk-gallery-page{
    padding:90px 0;
    background:#f5f7fb;
}

/* TITLE */

.gsk-gallery-title{
    margin-bottom:50px;
}

.gsk-gallery-title span{
    color:#f2862f;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gsk-gallery-title h2{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-top:10px;
    margin-bottom:15px;
}

.gsk-gallery-title p{
    color:#666;
    font-size:17px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* FILTER */

.gsk-gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.gsk-gallery-filter button{
    border:none;
    background:#fff;
    color:#111;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.gsk-gallery-filter button.active,
.gsk-gallery-filter button:hover{
    background:#f2862f;
    color:#fff;
}

/* CARD */

.gsk-gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.gsk-gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */

.gsk-gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15)
    );
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.gsk-gallery-card:hover .gsk-gallery-overlay{
    opacity:1;
    visibility:visible;
}

.gsk-gallery-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */

.gsk-gallery-content h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.gsk-gallery-content p{
    color:#ddd;
    margin-bottom:18px;
}

.gsk-gallery-content a{
    width:50px;
    height:50px;
    background:#f2862f;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.gsk-gallery-content a:hover{
    background:#fff;
    color:#f2862f;
}

/* RESPONSIVE */

@media(max-width:991px){

    .gsk-gallery-title h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .gsk-gallery-page{
        padding:60px 0;
    }

    .gsk-gallery-title h2{
        font-size:30px;
    }

    .gsk-gallery-title p{
        font-size:15px;
    }

    .gsk-gallery-card img{
        height:260px;
    }

    .gsk-gallery-content h4{
        font-size:22px;
    }

    .gsk-gallery-filter{
        gap:10px;
    }

    .gsk-gallery-filter button{
        padding:12px 20px;
        font-size:14px;
    }
}

.gsk-logo-area{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.gsk-logo-area > img{
    width:150px;
    height:120px;
    object-fit:contain;
    flex-shrink:0;
}

.gsk-logo-text{
    flex:1;
}

.gsk-logo-text h2{
    color:#fff;
    font-size:27px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:8px;
    text-transform:uppercase;
}

.gsk-logo-text p{
    color:#fff9b1;
    font-weight:700;
    font-size:20px;
    margin-bottom:6px;
}

.gsk-logo-text span{
    color:#fa872b;
    letter-spacing:.5px;
    font-size:13px;
    font-weight:600;
    line-height:1.6;
    display:block;
}

.naac-logo img{
    width:200px;
    height:auto;
    object-fit:contain;
}

/* Responsive */

@media(max-width:991px){

    .gsk-logo-area{
        justify-content:center;
        text-align:center;
    }

    .gsk-logo-text h2{
        font-size:28px;
    }

    .gsk-logo-text p{
        font-size:18px;
    }

    .gsk-logo-text span{
        font-size:14px;
    }

    .naac-logo{
        width:100%;
        text-align:center;
    }

}

@media(max-width:576px){

    .gsk-logo-area > img{
        width:90px;
        height:90px;
    }

    .gsk-logo-text h2{
        font-size:20px;
        line-height:1.4;
    }

    .gsk-logo-text p{
        font-size:15px;
    }

    .gsk-logo-text span{
        font-size:12px;
        letter-spacing:0;
    }

    .naac-logo img{
        width:80px;
    }

}

    /* SECTION */

.custom-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px;
    margin:40px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.section-title{
    font-size:32px;
    font-weight:700;
    color:#0b2c5f;
    margin-bottom:25px;
    position:relative;
    display:inline-block;
}

.section-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:65%;
    height:4px;
    background:#f4b400;
    border-radius:20px;
}

/* TABLE */

.table{
    border-color:#e4e7ee;
}

.table thead{
    background:#0b2c5f;
    color:#ffffff;
}

.table tbody tr:hover{
    background:#f8f9ff;
}

/* CONTENT */

.info-box{
    border-left:5px solid #f4b400;
    padding-left:18px;
}

/* GALLERY */

.gallery-item,
.video-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.gallery-item img,
.video-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img,
.video-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay,
.play-btn{
    position:absolute;
    inset:0;
    background:rgba(11,44,95,.55);
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-overlay i,
.play-btn i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f4b400;
    color:#0b2c5f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* MODAL */

.modal-content{
    background:transparent;
    border:none;
}

.modal-image{
    width:100%;
    max-height:85vh;
    object-fit:contain;
}

/* NEXT PREV */

.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#0b2c5f;
    z-index:99;
    font-size:22px;
}

.prev-btn{
    left:15px;
}

.next-btn{
    right:15px;
}

.btn-close-custom{
    position:absolute;
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f4b400;
    color:#0b2c5f;
    z-index:999;
}

/* PDF */

.pdf-card{
    background:#ffffff;
    border:1px solid #e4e7ee;
    border-radius:18px;
    padding:25px;
    display:flex;
    gap:18px;
    height:100%;
    transition:.3s;
}

.pdf-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.pdf-icon{
    min-width:70px;
    height:70px;
    border-radius:15px;
    background:#ffe5e5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pdf-icon i{
    font-size:34px;
    color:#d90429;
}

.pdf-content h5{
    color:#0b2c5f;
    font-weight:700;
}

.pdf-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.pdf-view-btn{
    background:#0b2c5f!important;
    color:#ffffff!important;
}

.pdf-download-btn{
    background:#f4b400!important;
    color:#0b2c5f!important;
}

.pdf-view-btn:hover{
    background:#163d79!important;
    color:#ffffff!important;
}

.pdf-download-btn:hover{
    background:#e0a800!important;
    color:#0b2c5f!important;
}

@media(max-width:768px){

    .section-title{
        font-size:26px;
    }

    .gallery-item img,
    .video-item img{
        height:220px;
    }

}

.custom-card{
      background:#ffffff;
      border-radius:20px;
      padding:35px;
      margin:40px 0;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .section-title{
      font-size:32px;
      font-weight:700;
      color:#0b2c5f;
      margin-bottom:25px;
      position:relative;
      display:inline-block;
    }

    .section-title::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-8px;
      width:65%;
      height:4px;
      background:#f4b400;
      border-radius:20px;
    }

    .staff-card{
      background:#ffffff;
      border-radius:18px;
      border:1px solid #e4e7ee;
      box-shadow:0 10px 20px rgba(0,0,0,0.04);
      overflow:hidden;
      height:100%;
      transition: .25s;
    }

    .staff-card:hover{
      transform: translateY(-6px);
      box-shadow:0 18px 35px rgba(0,0,0,0.08);
    }

    .staff-image{
      width:100%;
      height:230px;
      object-fit:cover;
      background:#f6f7fb;
    }

    .staff-body{
      padding:18px;
    }

    .staff-name{
      font-weight:800;
      color:#0b2c5f;
      font-size:18px;
      margin-bottom:8px;
    }

    .staff-meta{
      margin:0;
      padding:0;
      list-style:none;
    }

    .staff-meta li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:6px 0;
      color:#24324f;
      font-size:14px;
      border-top:1px dashed #eef1f7;
    }

    .staff-meta li:first-child{
      border-top:none;
      padding-top:0;
    }

    .staff-meta i{
      color:#f4b400;
      width:18px;
      margin-top:2px;
    }

    @media(max-width:768px){
      .section-title{ font-size:26px; }
      .staff-image{ height:200px; }
    }
    
    .custom-card{
      background:#ffffff;
      border-radius:20px;
      padding:35px;
      margin:40px 0;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .section-title{
      font-size:32px;
      font-weight:700;
      color:#0b2c5f;
      margin-bottom:25px;
      position:relative;
      display:inline-block;
    }

    .section-title::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-8px;
      width:65%;
      height:4px;
      background:#f4b400;
      border-radius:20px;
    }

    .form-label{ font-weight:700; color:#0b2c5f; }

    .form-group{ margin-bottom:1rem; }

    .rating-card{
      border:1px solid #e4e7ee;
      border-radius:16px;
      padding:16px;
      background:#fff;
      box-shadow:0 10px 20px rgba(0,0,0,0.03);
    }

    .rating-options .form-check{
      margin-right:16px;
      margin-top:8px;
    }

    .btn-submit{
      background:#0b2c5f;
      color:#fff;
      padding:12px 22px;
      font-weight:700;
      border:none;
      border-radius:12px;
      box-shadow:0 10px 20px rgba(11,44,95,0.25);
    }

    .btn-submit:hover{ background:#163d79; color:#fff; }

    @media(max-width:768px){
      .section-title{ font-size:26px; }
    }
  
    .custom-card{
      background:#ffffff;
      border-radius:20px;
      padding:35px;
      margin:40px 0;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }
    .section-title{
      font-size:32px;
      font-weight:700;
      color:#0b2c5f;
      margin-bottom:25px;
      position:relative;
      display:inline-block;
    }
    .section-title::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-8px;
      width:65%;
      height:4px;
      background:#f4b400;
      border-radius:20px;
    }
    .btn-theme{
      background:#0b2c5f!important;
      color:#fff!important;
      font-weight:700!important;
      border:none!important;
      padding:12px 22px!important;
      border-radius:12px!important;
    }
    .btn-theme:hover{
      background:#163d79;
      color:#fff;
    }
    .job-card{
      border:1px solid #e4e7ee;
      border-radius:16px;
      padding:18px;
      background:#fff;
      box-shadow:0 10px 20px rgba(0,0,0,0.03);
      height:100%;
    }
    .job-card h5{
      color:#0b2c5f;
      font-weight:800;
      margin-bottom:8px;
    }
    .badge-soft{
      background:#f8f9ff;
      color:#0b2c5f;
      border:1px solid #e4e7ee;
    }
    .list-style-check li{
      margin:10px 0;
    }
    .list-style-check i{ color:#f4b400; }
    .divider{
      height:1px;
      background:#eef1f7;
      margin:24px 0;
    }
    textarea.form-control{ resize:vertical; }
  