/* Educamb HTML5 Template  */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. Hidden Sidebar
6. Banner Section
7. Page Title
8. Section Banner
9. Section Title
10. About Section
11. Blog Section

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




:root {
    --thm-font: 'DM Sans', sans-serif;
    --thm-font-2: 'Frank Ruhl Libre', serif;
    --thm-font-3: 'Averia Serif Libre', cursive;
    --thm-font-4: 'Inter', sans-serif;
    --thm-gray: #777777;
    --thm-gray-rgb: 119, 119, 119;
    --thm-primary: #eff7f8;
    --thm-primary-rgb: 239, 247, 248;
    --thm-black: #121212;
    --thm-black-rgb: 18, 18, 18;
    --thm-bg: #242544;
    --thm-bg-rgb: 23, 52, 90;
}



/*==============================================
   Base Css
===============================================*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}




html,
body {
    height: 100%;
}



body {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--thm-font);
}

button:focus {
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}





h1,
h2,
h3,
h4,
h5,
h6 {
    color: #242544;
    font-weight: 500;
    line-height: normal;
    font-family: var(--thm-font-2);
    margin: 0;
}

h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}



a,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
    border: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

a:focus {
    color: #dfbf48;
}

textarea:focus {
    outline: none;
}


*::-moz-selection {
    background: var(--thm-black);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--thm-black);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--thm-black);
    color: #fff;
    text-shadow: none;
}



*::placeholder {
    color: #555555;
    opacity: 1;
}

*::-moz-placeholder {
    color: #555555;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #555555;
    opacity: 1;
}





.parallax-scene {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fancybox-image,
.fancybox-spaceball {
    border-radius: 10px;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1350px;
    }
}


img {
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}




/*header css*/
.tb-item:hover {
    color: #dfbf48;
}
.wrap{
/*max-width:1400px;*/
/*width:92%;*/
/*margin:auto;*/
}

/* TOPBAR */

.topbar{
background:#242544;
padding: 6px 0;
color:#fff;
font-size:12px;
}

.topbar .wrap{
display:flex;
justify-content:space-between;
align-items:center;
}

.tb-group{
display:flex;
gap:25px;
align-items:center;
}

.tb-item,
.nabh-pill{
display:flex;
align-items:center;
gap:8px;
color:white;
}

.tb-item svg,
.nabh-pill svg{
width:18px;
height:18px;
}

.nabh-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    padding: 1px 12px;
    border-radius: 100px;
    font-weight: 500;
    color: #fff;
}
/* HEADER */

.nav{
position:sticky;
top:0;
background:#fff;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.nav .wrap{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

/* LOGO */

.brand{
        width: 18%;
/*display:flex;*/
/*align-items:center;*/
/*gap:14px;*/
/*color:#16372d;*/
}

.logo-mark{
width:65px;
height:65px;
background:#0c8b66;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:28px;
font-weight:700;
}

.logo-text{
font-size:22px;
font-weight:600;
line-height:1.3;
}

.logo-text small{
display:block;
font-size:13px;
color:#0c8b66;
}

/* MENU */

.menu{
display:flex;
align-items:center;
gap: 20px;
margin-left: 40px;
}

.menu>a,
.has-mega>button{
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #242544;
    display: flex;
    align-items: center;
    gap: 8px;
}

.has-mega{
position:relative;
}

.has-mega button svg{
width:16px;
height:16px;
}

/* MEGA MENU */

.mega{
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
}

.has-mega:hover .mega{
opacity:1;
visibility:visible;
transform:translateX(-50%) translateY(0);
}

.mega.wide{
        width: 760px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 46px;
    row-gap: 0px;
}

.mega.single{
width:280px;
display:flex;
flex-direction:column;
gap:15px;
left:0;
transform:none;
}

.has-mega:hover .mega.single{
transform:none;
}

.mcol-h{
font-size:22px;
font-weight:500;
color:#242544;
margin-bottom:10px;
}

.mega a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 16px;
    color: #242544;
    transition: .3s;
}

.mega a:hover{
    color: #fff;
    padding-left: 8px;
    background: #63648d8c;
    border-radius: 6px;
}

.dot{
width:8px;
height:8px;
background:#242544;
border-radius:50%;
}

/* BUTTONS */

.nav-cta{
display:flex;
align-items:center;
gap:15px;
}

.btn{
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.btn svg{
width:18px;
height:18px;
}

.btn-ghost{
    color: #fff;
    background: #dfbf48;
}
.btn-primary:hover {
    color: #fff;
    background-color: #dfbf48;
    border-color: #dfbf48;
}
.btn:hover {
    color: #fff;
    background: #242544;
    border: 0px;
}
.btn-primary{
background:#242544;
color:#fff;
border: 0px;
}

/* TOGGLE */

.menu-toggle{
display:none;
background:none;
border:none;
cursor:pointer;
}

.menu-toggle svg{
width:28px;
height:28px;
}

/* MOBILE */

@media(max-width:992px){

.hide-sm{
display:none;
}

.menu-toggle{
display:block;
}

.menu{
position:fixed;
left:-100%;
top:0;
width:320px;
height:100vh;
background:#fff;
flex-direction:column;
align-items:flex-start;
padding:100px 25px;
overflow:auto;
transition:.4s;
z-index:9999;
gap:0;
}

.menu.active{
left:0;
}

.menu>a,
.has-mega>button{
width:100%;
padding:18px 0;
justify-content:space-between;
border-bottom:1px solid #eee;
}

.mega{
display:none !important;
position:static !important;
opacity:1 !important;
visibility:visible !important;
transform:none !important;
width:100% !important;
box-shadow:none;
border-radius:0;
padding:15px 0;
}

.has-mega.open .mega{
display:grid !important;
}

.mega.wide{
grid-template-columns:1fr;
row-gap:20px;
}

.nav-cta .btn{
display:none;
}

.logo-text{
font-size:18px;
}

.topbar{
display:none;
}

}
.topbar{
    position: relative;
    z-index: 999;
}

.nav{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 9999;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
/*header css end*/






/*index css*/
/*========================
 HERO SECTION
========================*/

.gs-hero{
    padding:80px 0;
    background:#f4f4f4;
    overflow:hidden;
}

.gs-container{
    max-width:1400px;
    width:92%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* LEFT SIDE */

.gs-left{
    width:48%;
}

.gs-tagline{
    color: #dfbf48;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.gs-left h1{
    font-size: 48px;
    line-height: normal;
    color:#242544;
    margin-bottom: 15px;
}

.gs-left h1 span{
    color:#dfbf48;
    font-style:italic;
}

.gs-left p{
    /*font-size:24px;*/
    /*line-height:1.7;*/
    /*color:#5d6d69;*/
    margin-bottom:40px;
}

/* SEARCH CARD */

.gs-search-card{
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow:0 20px 40px rgba(0,0,0,.07);
}

.gs-search-card h3{
    color:#242544;
    margin-bottom: 18px;
}

.gs-search-row{
    display:flex;
    align-items:end;
    gap:20px;
}

.gs-field{
    flex:1;
}

.gs-field label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:500;
    /*letter-spacing:2px;*/
    /*color:#3f4e4a;*/
}

.gs-field select{
    width: 100%;
    height: 37px;
    border: 1px solid #d8e3de;
    background: #f8fbfa;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 14px;
    outline: none;
}

.gs-search-btn{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: #242544;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

/* BUTTON */

.gs-book-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    background: #242544;
    color: #fff;
    padding: 8px 25px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.gs-book-btn:hover {
    background: #dfbf48;
    color: #fff!important;
}

/* RIGHT SIDE */

.gs-right{
    width:48%;
}

.gs-slider{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    height:500px;
}

.gs-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:.5s;
}

.gs-slide.active{
    opacity:1;
}

.gs-slide img,
.gs-slide video{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TOP BADGE */

.gs-badge{
    position:absolute;
    left:35px;
    top:35px;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:18px 28px;
    border-radius:50px;
    backdrop-filter:blur(12px);
    font-size:22px;
    font-weight:600;
    z-index:10;
}

/* BOTTOM CONTENT */

.gs-bottom-content{
    position:absolute;
    left:35px;
    bottom:35px;
    z-index:10;
    color:#fff;
}

.gs-bottom-content h2{
    font-size:90px;
    margin-bottom:10px;
}

.gs-bottom-content p{
    font-size:28px;
}

/* ARROWS */

.gs-prev,
.gs-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(0,0,0,.35);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:10;
}

.gs-prev{
    left:25px;
}

.gs-next{
    right:25px;
}

/* DOTS */

.gs-dots{
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gs-dots span{
    width:6px;
    height:6px;
    background:#2425446b;
    border-radius:50%;
}

.gs-dots span.active{
    background:#242544;
}

/*====================
 RESPONSIVE
====================*/

@media(max-width:991px){

.gs-container{
    flex-direction:column;
}

.gs-left,
.gs-right{
    width:100%;
}

.gs-left h1{
    font-size:55px;
}

.gs-left p{
    font-size:18px;
}

.gs-search-row{
    flex-direction:column;
}

.gs-slider{
    height:550px;
}

.gs-bottom-content h2{
    font-size:60px;
}

.gs-bottom-content p{
    font-size:20px;
}

}



.gs-choose-section{
    padding:100px 0;
}

.gs-small-heading{
    text-align: center;
    color: #dfbf48;
    font-weight: 500; 
    margin-bottom: 0px;
    font-size: 14px;
}

.gs-main-heading{
    text-align: center;
    color: #242544;
    margin-bottom: 45px;
    font-size: 40px;
}

.gs-card-wrapper{
    max-width: 1400px;
    width: 85%;
    margin: auto;
    display: flex;
    gap: 60px;
}

.gs-card{
    flex:1;
    background:#fff;
    border-radius: 10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.gs-card:hover{
    transform:translateY(-10px);
}

.gs-card-image{
    height:200px;
}

.gs-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gs-card-content{
    padding: 15px 15px;
}

.gs-card-content h3{
    font-size: 24px;
    color: #242544;
    margin-bottom: 15px;
}



/* Mobile */

@media(max-width:991px){

.gs-main-heading{
    font-size:45px;
}

.gs-card-wrapper{
    flex-direction:column;
}

.gs-card-image{
    height:220px;
}

}



/*========================
ABOUT SECTION
========================*/

.gs-about-sec{
    background: #f4f4f4;
    padding:100px 0;
}

.gs-about-wrap{
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}


/* LEFT */

.gs-about-left{
    width:48%;
    height:650px;
    border-radius:40px;
    position:relative;
    overflow:hidden;
}

.gs-about-left::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url(https://htiwebs.com/gsuniversity/assets/img/home/Speciality-img.png);
    background-size:24px 24px;
    background-size: cover;
    background-repeat: no-repeat;
}

.gs-years-box{
    position:absolute;
    top:30px;
    right:30px;
    width:160px;
    height:140px;
    background:#fff;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:2;
}

.gs-years-box h2{
        font-size: 50px;
    color: #242544;
    margin: 0;
}

.gs-years-box span{
    font-size: 18px;
    color: #242544;
    font-weight: 500;
}

.gs-heart-icon{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:2;
}

.gs-heart-icon img{
    width:180px;
}


/* RIGHT */

.gs-about-right{
    width:52%;
}

.gs-about-tag{
    color:#dfbf48;
    font-weight:500;
    font-size: 14px;
}

.gs-about-title{
    margin-bottom:30px;
    font-size: 45px;
}

.gs-about-desc{
    
    margin-bottom:35px;
}


/* LIST */

.gs-list-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0px;
}

.gs-list-item span{
    width: 25px;
    height: 26px;
    background: #242544;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
}

.gs-list-item p{
    /*flex:1;*/
    /*font-size:22px;*/
    /*line-height:1.6;*/
    /*color:#062a22;*/
}


/* BUTTON */

.gs-read-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 3px 25px;
    background: #242544;
    color: #fff;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}


/* COUNTER BOX */

.gs-counter-row{
    display:flex;
    gap:20px;
    margin-top:45px;
}

.gs-counter-box{
    flex:1;
    background: #fff;
    border-radius: 10px;
    padding: 20px 6px;
    text-align: center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.gs-counter-box h3{
    font-size: 35px;
    color: #242544;
    margin-bottom: 10px;
}

.gs-counter-box p{
    font-size:16px;
    font-weight: 500;
    margin-bottom: 0px;
}


/*========================
RESPONSIVE
========================*/

@media(max-width:991px){

.gs-about-wrap{
    flex-direction:column;
}

.gs-about-left,
.gs-about-right{
    width:100%;
}

.gs-about-left{
    height:450px;
}

.gs-about-title{
    font-size:48px;
}

.gs-about-desc,
.gs-list-item p{
    font-size:18px;
}

.gs-counter-row{
    flex-wrap:wrap;
}

.gs-counter-box{
    min-width:45%;
}

}



.gs-speciality-section{
    padding:80px 5%;
    overflow:hidden;
}

.gs-speciality-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:50px;
}

.gs-speciality-heading span{
    color: #dfbf48;
    font-weight: 500;
    font-size: 14px;
}

.gs-speciality-heading h2{
    font-size: 40px;
}

/*.gs-speciality-heading p{*/
/*    max-width:650px;*/
/*    color:#666;*/
/*    font-size:20px;*/
/*    line-height:1.8;*/
/*}*/

.gs-speciality-nav{
    display:flex;
    gap:15px;
}

.gs-speciality-arrow{
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.gs-speciality-arrow:hover{
    background:#242544;
    color:#fff;
}

.gs-speciality-wrapper{
    overflow:hidden;
    width:100%;
}

.gs-speciality-track{
    display:flex;
    gap:30px;
    transition:0.6s ease;
}

.gs-speciality-card{
    min-width:calc((100% - 60px)/5);
    background:#f4f4f4;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
    width: 24%;
}

.gs-speciality-img{
    height:260px;
}

.gs-speciality-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gs-speciality-content{
    padding: 15px;
}

.gs-speciality-content h3{
    font-size: 26px;
    color: #242544;
    margin-bottom: 10px;
    font-weight: 500;
}


.gs-speciality-content a{
    color:#242544;
    text-decoration:none;
    font-weight:500;
}

.gs-speciality-progress{
    width:100%;
    height:6px;
    background:#d8dfdb;
    border-radius:20px;
    overflow:hidden;
    margin-top:40px;
}

.gs-speciality-progress-fill{
    width:33%;
    height:100%;
    background:#242544;
    border-radius:20px;
    transition:.5s;
}

/* Tablet */

@media(max-width:991px){

.gs-speciality-card{
    min-width:calc((100% - 30px)/2);
}

.gs-speciality-heading h2{
    font-size:45px;
}

}

/* Mobile */

@media(max-width:767px){

.gs-speciality-top{
    flex-direction:column;
    align-items:flex-start;
}

.gs-speciality-card{
    min-width:100%;
}

.gs-speciality-heading h2{
    font-size:36px;
}

.gs-speciality-heading p{
    font-size:16px;
}

}
.gs-speciality-img{
    width:100%;
    height:215px;
    overflow:hidden;
}

.gs-speciality-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}


.gs-healing-section{
    padding:90px 5%;
    background:#f4f4f4;
    overflow:hidden;
}

.gs-healing-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:50px;
}

.gs-healing-heading span{
    color:#00785d;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.gs-healing-heading h2{
    font-size:70px;
    line-height:1.1;
    color:#06251d;
    margin:20px 0;
}

.gs-healing-heading p{
    font-size:22px;
    line-height:1.8;
    color:#55666a;
    max-width:800px;
}

.gs-healing-nav{
    display:flex;
    gap:15px;
}

.gs-healing-arrow{
    width:35px;
    height:35px;
    border-radius:50%;
    border:1px solid #bfd2ca;
    background:#fff;
    cursor:pointer;
    font-size: 18px;
    color:#242544;
    transition:.3s;
}

.gs-healing-arrow:hover{
    background:#242544;
    color:#fff;
}

.gs-healing-wrapper{
    overflow:hidden;
}

.gs-healing-track{
    display:flex;
    gap:30px;
    transition:.6s ease;
}

.gs-healing-card{
    /*min-width:calc((100% - 60px)/3);*/
    width: 30%;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
    /*box-shadow:0 10px 30px rgba(0,0,0,.08);*/
}

.gs-healing-image{
    /*height:320px;*/
    position:relative;
    overflow:hidden;
}

.gs-healing-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gs-healing-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgb(223 191 72 / 60%));
}

.gs-healing-tag{
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    z-index: 2;
}

.gs-healing-play{
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #242544;
    font-size: 20px;
    z-index: 2;
    cursor: pointer;
    transition: .3s;
}

.gs-healing-play:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.gs-healing-content{
    padding: 15px;
}

.gs-healing-content h3{
    font-size: 26px;
    color: #242544;
    margin-bottom: 12px;
}



/* Tablet */

@media(max-width:991px){

.gs-healing-heading h2{
    font-size:50px;
}

.gs-healing-card{
    min-width:calc((100% - 30px)/2);
}

}


/* Mobile */

@media(max-width:767px){

.gs-healing-top{
    flex-direction:column;
    align-items:flex-start;
}

.gs-healing-heading h2{
    font-size:38px;
}

.gs-healing-heading p{
    font-size:17px;
}

.gs-healing-card{
    min-width:100%;
}

}

.gs-healing-wrapper{
overflow:hidden;
}

.gs-healing-track{
display:flex;
gap:60px;
}




.gs-awards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gs-award-card{
    background:#fff;
    border:1px solid #d8e2dc;
    border-radius:28px;
    padding:38px 12px;
    text-align:center;
    transition:.4s;
}

.gs-award-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gs-award-icon{
    width:60px;
    height: 60px;
    border:2px solid #242544;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    margin-bottom:25px;
}

.gs-award-icon i{
    font-size:28px;
    color:#242544;
}

.gs-award-icon span{
    position:absolute;
    bottom:-12px;
    font-size:28px;
    color:#d9a22b;
}

.gs-award-card h3{
    font-size:20px;
    color:#07271f;
    margin-bottom:12px;
    font-weight:700;
    line-height:1.3;
}

.gs-award-card p{
    color:#5f6e69;
    font-size:17px;
    line-height:1.7;
}


/* Tablet */

@media(max-width:991px){

.gs-awards-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/* Mobile */

@media(max-width:767px){

.gs-awards-grid{
    grid-template-columns:1fr;
}

.gs-award-card{
    padding:30px 20px;
}

}

.blog_section {
    background: #f4f4f4;
}



/*=========================
MEDIA SECTION
==========================*/
.media-section{
    background:#eef4f1;
    padding:80px 7%;
}


/*=========================
TABS
==========================*/
.media-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.tab-btn{
    border: 1px solid #242544;
    background: #fff;
    padding: 1px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
}

.tab-btn.active,
.tab-btn:hover{
    background:#242544;
    color:#fff;
}


/*=========================
COMMON
==========================*/
.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}



/*=========================
BLOG SECTION
==========================*/
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius: 10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-img{
    height:260px;
    position:relative;
    background:url(https://htiwebs.com/gsuniversity/assets/img/home/Speciality-img.png) center/cover;
}

.blog2{
    background:url(https://htiwebs.com/gsuniversity/assets/img/home/Speciality-img.png) center/cover;
}

.blog3{
    background:url(https://htiwebs.com/gsuniversity/assets/img/home/Speciality-img.png) center/cover;
}

.blog-img::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.5),transparent);
}

.category{
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 0px 18px;
    border-radius: 40px;
    font-weight: 500;
    color: #242544;
    z-index: 1;
    font-size: 12px;
}

.blog-content{
    padding: 20px 20px 20px 20px;
}



.blog-type{
    color:#242544;
    font-weight:500;
}

.blog-content h3{
    font-size: 23px;
    margin: 12px 0 8px;
    color: #242544;
}



.blog-content a{
    margin-top: 0px;
    display: inline-block;
    color: #242544;
    text-decoration: none;
    font-weight: 500;
}
.blog-date {
    font-size: 12px;
}

/*=========================
EVENTS
==========================*/
.event-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.event-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-image img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.event-content{
    padding:30px;
}

.event-tag{
    background:#dff4ec;
    color:#0b7d5e;
    padding:8px 18px;
    border-radius:30px;
}

.event-content h3{
    margin:20px 0;
    color:#082f29;
}

.event-content p{
    color:#666;
    line-height:1.8;
}

.event-content a{
    display:inline-block;
    margin-top:20px;
    color:#0b7d5e;
    text-decoration:none;
    font-weight:700;
}

.event-date{
    position:absolute;
    top:20px;
    left:20px;
    background:#0b7d5e;
    color:#fff;
    width:80px;
    height:80px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-weight:600;
}

.event-date span{
    font-size:28px;
}



/*=========================
GALLERY
==========================*/
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-card{
    border-radius:25px;
    overflow:hidden;
    position:relative;
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}



/*=========================
VIDEOS
==========================*/
.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.video-card{
    background:#fff;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.video-thumb{
    position:relative;
}

.video-thumb img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    color:#0b7d5e;
    cursor:pointer;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(11,125,94,.5);
    }

    100%{
        box-shadow:0 0 0 30px transparent;
    }
}

.video-content{
    padding:30px;
}

.video-content span{
    color:#0b7d5e;
    font-weight:700;
}

.video-content h3{
    margin:15px 0;
    color:#082f29;
}

.video-content p{
    color:#666;
    line-height:1.8;
}



/*=========================
RESPONSIVE
==========================*/
@media(max-width:991px){

.blog-grid,
.gallery-grid,
.event-grid,
.video-grid{
    grid-template-columns:1fr;
}

.blog-content h3{
    font-size:24px;
}

}





.media-center{
    padding:100px 0;
    background:#f7fbff;
}

.container{
    /*width:90%;*/
    max-width:1300px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    margin-top:10px;
    font-size:42px;
}

.featured-banner{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    height:450px;
    margin-bottom:50px;
}

.featured-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(0,0,0,.75),
    rgba(0,0,0,.2));
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px;
}

.event-tag{
    display:inline-block;
    background:#0d6efd;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:15px;
}

.banner-overlay h3{
    font-size:42px;
    max-width:600px;
}

.banner-overlay p{
    max-width:500px;
    margin:20px 0;
}

.banner-btn{
    display:inline-block;
    padding:14px 30px;
    background:#fff;
    color:#111;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.media-tabs{
    display:flex;
    justify-content: left;
    gap:15px;
    margin-bottom: 40px;
}

.media-tab{
    border:none;
    padding:15px 35px;
    border-radius:40px;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.4s;
}

.media-tab.active{
    background:#0d6efd;
    color:#fff;
}

.progress-wrap{
    width:100%;
    height:4px;
    background:#dce8ff;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
}

.progress-line{
    width:25%;
    height:100%;
    background:#0d6efd;
    transition:.5s;
}

.tab-content{
    display:none;
    animation:fade .4s ease;
}

.tab-content.active{
    display:block;
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.media-card,
.video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.media-card img,
.video-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.media-card:hover img,
.video-card:hover img{
    transform:scale(1.08);
}

.media-info{
    padding:25px;
}

.media-info span{
    font-size:14px;
}

.media-info h4{
    line-height: normal;
    font-size: 23px;
    color: #242544;
}

.video-card{
    position:relative;
}

.play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:991px){

.media-grid{
    grid-template-columns:1fr;
}

.featured-banner{
    height:350px;
}

.banner-overlay h3{
    font-size:30px;
}
}
/*index css end*/



/*footer css*/

/*==========================
GS FOOTER
==========================*/

.gs-footer{
    background: #242544;
    color:#fff;
    overflow:hidden;
}


/*==========================
TOP CTA
==========================*/

.footer-cta{
    text-align:center;
    padding:90px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background: #dfbf48;
}

.footer-subtitle{
    letter-spacing:3px;
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.footer-cta h2{
    font-size: 55px;
    margin: 20px 0 0px;
    line-height: normal;
    color: #fff;
}

.footer-cta p{
    /*color:#d6ebe4;*/
    /*font-size:20px;*/
}

.cta-btns{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.book-btn{
    background: #fff;
    color: #242544;
    padding: 3px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: .4s;
    /* line-height: 23px; */
    height: 32px;
    font-size: 15px;
}

.book-btn:hover{
    transform:translateY(-5px);
    background: #242544;
    color: #fff;
}

.call-btn{
    background: #242544;
    color: #fff;
    padding: 3px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: .4s;
    height: 32px;
    font-size: 15px;
}

.call-btn:hover{
    background: #fff;
    color: #242544;
}


/*==========================
MAIN FOOTER
==========================*/

.footer-main{
    padding: 50px 0px 20px 0px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.logo-box{
    width:60px;
    height:60px;
    background:#0f8d70;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:bold;
}

.footer-logo h3{
    margin-bottom:5px;
    font-size:30px;
}

.footer-logo span{
    color:#3dd3a6;
    font-size:13px;
}

.about-col p{
    /*line-height:1.9;*/
    /*color:#cde2da;*/
}

.footer-contact{
    list-style:none;
    margin-top:25px;
}

.footer-contact li{
    margin-bottom:10px;
}


/*==========================
HEADINGS
==========================*/

.footer-col h4{
    margin-bottom: 20px;
    /*letter-spacing:2px;*/
    font-size:20px;
    color: #fff;
}


/*==========================
LINKS
==========================*/

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:18px;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#dfbf48;
    padding-left:8px;
}


/*==========================
SOCIAL
==========================*/

.social-col p{
    margin-bottom:30px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:50px;
    height:50px;
    background:rgba(255,255,255,.08);
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.4s;
}

.social-icons a:hover{
    background:#dfbf48;
    transform:translateY(-5px);
}


/*==========================
KEYWORDS
==========================*/

.footer-keywords{
    padding:0 0 25px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-keywords h5{
    color:#fff;
    margin-bottom:25px;
    margin-top:40px;
}

.keyword-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.keyword-tags a{
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 0px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: .4s;
    font-size: 12px;
}

.keyword-tags a:hover{
    background:#fff;
    color: #242544;
}


/*==========================
BOTTOM FOOTER
==========================*/

.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}


.bottom-links{
    display:flex;
    gap:30px;
}

.bottom-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.bottom-links a:hover{
    color:#dfbf48;
}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.footer-main{
    grid-template-columns:1fr 1fr;
}

.footer-cta h2{
    font-size:50px;
}

}


@media(max-width:768px){

.footer-main{
    grid-template-columns:1fr;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.bottom-links{
    justify-content:center;
    flex-wrap:wrap;
}

.footer-cta h2{
    font-size:38px;
}

.footer-cta p{
    font-size:16px;
}

}
/*footer css end*/




/*specialty detail css*/

.cardio-hero{
    background:#242544;
    /*min-height:570px;*/
    position:relative;
    overflow:hidden;
}

/* Dot Pattern */
.cardio-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:28px 28px;
}

.cardio-container{
    padding:65px 0px;
    position:relative;
    z-index:2;
}

.breadcrumb{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
    background: #242544;
}

.breadcrumb a{
    text-decoration:none;
    color:#fff;
}

.section-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:500;
    /*letter-spacing:1px;*/
    font-size:14px;
    margin-bottom:20px;
}

.section-tag .line{
    width:34px;
    height:2px;
    background:#fff;
    position:relative;
}

.section-tag .line::before{
    content:"";
    width:10px;
    height:10px;
    border:2px solid #fff;
    border-radius:50%;
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
}

.cardio-hero h1{
    /*max-width:850px;*/
    color:#fff;
    /*font-size:68px;*/
    line-height:1;
    margin-bottom:22px;
}

.hero-desc{
    max-width:760px;
    color:#e5f0ec;
    line-height: normal;
}

.feature-badges{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:34px;
}

.badge{
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .05);
}

.badge i{
    font-style:normal;
    color:#fff;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}



@media(max-width:991px){

    .cardio-container{
        padding:50px 25px;
    }

    .cardio-hero h1{
        font-size:48px;
    }

    .hero-desc{
        font-size:18px;
    }

    .feature-badges{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:576px){

    .cardio-hero h1{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }
}







.gs-cardio-section{
    padding:70px 0;
}

.gs-cardio-layout{
    /*max-width:1400px;*/
    margin:auto;
    /*padding:0 20px;*/

    display:grid;
    grid-template-columns:minmax(0,1fr) 390px;
    gap:40px;

    align-items:start;
}

/* LEFT */

.gs-main-title{
    color: #242544;
    margin: 0px 0 5px;
    font-size: 40px;
}

.gs-overview-wrap p{
    margin-bottom:18px;
}

.gs-section-label{
    display:flex;
    align-items:center;
    gap:12px;

    color:#242544;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.gs-section-label span{
    width:22px;
    height:2px;
    background:#242544;
}

/* CONDITIONS */

.gs-condition-wrap{
    margin-top:60px;
}

.gs-condition-wrap h3{
    font-size: 25px;
    color: #242544;
    margin-bottom: 25px;
    font-weight: 500;
}

.gs-condition-list{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.gs-condition-pill{
    background: #fff;
    border: 1px solid #dbe7e3;
    padding: 5px 22px;
    border-radius: 40px;
    font-size: 14px;
    color: #242544;
}

/* RIGHT */

.gs-cardio-sidebar{
    align-self:start;
}

.gs-sticky-sidebar{
    position:sticky;
    top:110px;
}

.gs-consult-card{
    background:#242544;
    border-radius: 10px;
    padding:35px;
    color:#fff;
}

.gs-consult-card h3{
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 500;
}

.gs-info-row{
    margin-bottom:4px;
    font-size:16px;
}

.gs-btn-light{
    display: block;
    text-align: center;
    background: #fff;
    color: #242544;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 25px;
    font-size: 14px;
}

.gs-btn-dark{
    display: block;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 25px;
    font-size: 14px;
}

.gs-btn-dark:hover {
    background: #fff;
    color: #242544;
    border: 2px solid #fff;
}


.gs-speciality-card h3{
    font-size: 25px;
    margin-bottom: 20px;
    color: #242544;
    font-weight: 500;
}

.gs-speciality-card ul{
    padding-left:20px;
}

.gs-speciality-card li{
    margin-bottom: 6px;
    color:#242544;
}

.gs-health-card{
    background:#fff;
    border-radius: 10px;

    padding:28px;
    margin-top:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.gs-health-card h4{
    font-size:24px;
    margin-bottom:12px;
    color:#242544;
}

/*.gs-health-card p{*/
/*    color:#667;*/
/*    margin-bottom:20px;*/
/*}*/

.gs-health-card a{
    display:block;
    text-align:center;
    background:#242544;
    color:#fff;
    padding: 6px;
    border-radius:40px;
    text-decoration:none;
    font-size: 14px;
}

/* MOBILE */

@media(max-width:991px){

    .gs-cardio-layout{
        grid-template-columns:1fr;
    }

    .gs-sticky-sidebar{
        position:static;
    }

    .gs-main-title{
        font-size:38px;
    }

    .gs-overview-wrap p{
        font-size:16px;
    }

}

.gs-treatment-section{
    margin-top:70px;
}

.gs-section-title{
    font-size: 25px;
    color: #242544;
    margin-bottom: 25px;
    font-weight: 500;
}

.gs-treatment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.gs-treatment-card{
    background:#fff;
    border:1px solid #dde8e4;
    border-radius:22px;

    padding:28px;

    min-height:190px;

    transition:.35s ease;
}

.gs-treatment-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.gs-treatment-icon{
    width: 40px;
    height: 40px;
    background: #242544;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.gs-treatment-card h4{
    font-size:22px;
    color:#242544;
}

.gs-treatment-card p{
    line-height: normal;
    margin-bottom: 0px;
}

/* Responsive */

@media(max-width:991px){

    .gs-treatment-grid{
        grid-template-columns:1fr;
    }

    .gs-section-title{
        font-size:34px;
    }

}

.gs-why-section{
    margin-top:70px;
}

.gs-why-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.gs-why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.gs-why-icon{
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #242544;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.gs-why-text{
    color:#242544;
    line-height: normal;
}
.gsdoc-wrap{
    margin-top:80px;
}

.gsDoctorCarouselUnique{
    overflow:hidden;
}

.gsdoc-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid #e4ece8;
}

.gsdoc-image-area{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gsdoc-blue{
    background:
    linear-gradient(
    135deg,
    #177d8d,
    #28a79f
    );
}

.gsdoc-dark{
    background:
    linear-gradient(
    135deg,
    #145f52,
    #2a9477
    );
}

.gsdoc-initials{
    font-size:82px;
    color:#fff;
}

.gsdoc-dept{
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: #fff;
    color: #242544;
    padding: 0px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.gsdoc-content{
    padding:25px;
}

.gsdoc-content h4{
    color:#242544;
}

.gsdoc-content a{
    color:#242544;
    text-decoration:none;
    font-weight:500;
}

.gsdoc-content p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* FAQ */

.gsfaq-section{
    margin-top:80px;
}

.gsfaq-wrap{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.gsfaq-item{
    background:#fff;
    border:1px solid #ddd;
    border-radius: 10px;
    overflow:hidden;
}

.gsfaq-btn{
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    padding: 14px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #242544;
}

.gsfaq-btn span{
    font-size:28px;
    color:#242544;
}

.gsfaq-content{
    display:none;
    padding:0 30px 25px;
}

.gsfaq-item.active .gsfaq-content{
    display:block;
}

.gsfaq-content p{
    color:#667;
    line-height:1.8;
}

/* CTA */

.gscta-section{
    margin-top:80px;

    background:linear-gradient(
        135deg,
        #0c5948,
        #0b7a61
    );

    border-radius:35px;

    padding:70px 60px;
}

.gscta-label{
    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:13px;
    letter-spacing:2px;
}

.gscta-content h2{
    color:#fff;
    font-size:58px;
    line-height:1.1;

    margin-bottom:20px;

}

.gscta-content p{
    color:#d8f3eb;
    font-size:20px;

    margin-bottom:30px;
}

.gscta-btns{
    display:flex;
    gap:15px;
}

.gscta-primary{
    background:#fff;
    color:#0b5f4d;

    padding:18px 34px;

    border-radius:50px;

    text-decoration:none;
    font-weight:700;
}

.gscta-secondary{
    border:1px solid rgba(255,255,255,.3);

    color:#fff;

    padding:18px 34px;

    border-radius:50px;

    text-decoration:none;
}

/* MOBILE */

@media(max-width:991px){

    .gscta-section{
        padding:40px 25px;
    }

    .gscta-content h2{
        font-size:36px;
    }

    .gscta-btns{
        flex-direction:column;
    }

    .gscta-primary,
    .gscta-secondary{
        text-align:center;
    }

}

.gs-cardio-sidebar {
    position: sticky;
    height: max-content;
    top: 10px;
}


/*specialty detail css end*/





/*doctor detail css*/
.gs-doctor-hero{
    background:#242544;
    position:relative;
    overflow:hidden;
    padding:65px 0;
}

/* Dotted Background */

.gs-doctor-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(
        rgba(255,255,255,.08) 1px,
        transparent 1px
    );

    background-size:28px 28px;

    pointer-events:none;
}

.gs-doc-container{
    /*max-width:1450px;*/
    /*margin:auto;*/
    /*padding:0 20px;*/
    position:relative;
    z-index:2;
}

/* Breadcrumb */

.gs-doc-breadcrumb{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
    background: #242544;
}

/* Category */

.gs-doc-category{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

/* Main Layout */

.gs-doc-main{
    display:flex;
    align-items:center;
    gap:40px;
}

/* Doctor Image */

.gs-doc-image{
    width:190px;
    height:190px;

    border-radius:32px;
    overflow:hidden;

    border:3px solid rgba(255,255,255,.15);

    flex-shrink:0;

    background:#fff;
}

.gs-doc-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
}

/* Doctor Info */

.gs-doc-info{
    flex:1;
}

.gs-doc-info h1{
    color: #fff;
    margin-top: 15px;
}

.gs-doc-degree{
    font-size: 16px;
    color:#fff;
    margin-bottom:30px;
    font-weight:500;
}

/* Pills */

.gs-doc-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.gs-doc-pill{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    padding: 3px 20px;
    border-radius: 50px;
    font-size: 14px;
}

/* Buttons */

.gs-doc-btns{
    display:flex;
    gap:15px;
}

.gs-btn-book{
    background: #fff;
    color: #242544;
    text-decoration: none;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    height: 35px;
}

.gs-btn-book:hover{
    transform:translateY(-2px);
    color: #242544;
}

.gs-btn-call{
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    text-decoration: none;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

.gs-btn-call:hover{
    background:#dfbf48;
    color: #fff;
    border: 1px solid #dfbf48;
}

/* Responsive */

@media(max-width:991px){

    .gs-doc-main{
        flex-direction:column;
        align-items:flex-start;
    }

    .gs-doc-image{
        width:160px;
        height:160px;
    }

    .gs-doc-info h1{
        font-size:42px;
    }

    .gs-doc-degree{
        font-size:16px;
    }

    .gs-doc-pill{
        font-size:15px;
        padding:12px 18px;
    }

    .gs-doc-btns{
        flex-direction:column;
        width:100%;
    }

    .gs-btn-book,
    .gs-btn-call{
        width:100%;
        text-align:center;
    }
}


.course-timeline{
    list-style: none;
    margin: 0;
    padding: 0 0 0 40px;
    position: relative;
}

.course-timeline::before{
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #242544;
}

.course-timeline li{
    position: relative;
    margin-bottom: 20px;
}

.course-timeline li:last-child{
    margin-bottom: 0;
}

.course-timeline li::before{
    content: "";
    position: absolute;
    left: -40px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #242544;
    border: 6px solid #d5d7ffb3;
    border-radius: 50%;
    z-index: 2;
}

.course-timeline h3{
    margin: 0px;
    font-size: 18px;
    font-weight: 700;
    color: #242544;
}

.course-timeline p{
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #5f6f78;
}


.doctor-schedule{
    width: 100%;
    overflow-x: auto;
}

.doctor-schedule table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.doctor-schedule thead th{
    background: #8b8caa;
    color: #fff;
    text-align: left;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.doctor-schedule tbody td{
    padding: 8px 18px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 14px;
    color: #242544;
}

.doctor-schedule tbody tr:last-child td{
    border-bottom: 1px solid #e6e6e6;
}

.available{
    color: #242544;
    font-weight: 700;
}

.on-call{
    color: #4b6670;
    font-weight: 500;
}

.schedule-note{
    margin-top: 24px;
    color: #6b7d86;
    font-size: 16px;
    line-height: 1.7;
}
/*doctor detail css end*/

/*all doctors css*/
.doctor-card-new {
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1), 0 4px 10px rgba(0, 0, 0, .11);
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    /*min-height: 270px;*/
    padding: 15px;
    margin: 0px 15px;
}
.d-flex {
    display: flex !important;
}
.doctor-card-new-img {
    padding-right: 10px;
    padding-top: 3px;
}
.doctor-card-new img {
    border-radius: 6px;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 130px;
}
@media (min-width: 768px) {
    .doctor-card-new-text {
        height: 180px;
    }
}
.doctor-card-new h4, .doctor-card-new h4 a {
    color: #242544;
    font-size: 26px;
    margin-bottom: 3px;
}
/*.doctor-card-new h4, .doctor-card-new h4 a {*/
/*    color: #242544;*/
/*    font-size: 17px;*/
/*    margin-bottom: 3px;*/
/*}*/
.font-weight-semi-bold {
    font-weight: 500;
}
.doctor-card-new-share {
    cursor: pointer;
}
.doctor-card-new p {
    line-height: normal;
    font-size: 16px;
    margin-bottom: 3px;
    text-align: inherit;
}

.vwbtn {
    background: #242544;
    color: #fff;
    text-decoration: none;
    padding: 2px 10px 2px 23px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: .3s;
    height: 30px;
}

.vwbtn:hover {
    background: #dfbf48;
    color: #fff;
}
hr {
    margin-top: 10px;
    margin-bottom: 10px;
}
/*all doctors css end*/








/*all spec css*/


.search-box{
    width:100%;
    height:50px;
    background:#fff;
    border:1px solid #d8e0ea;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 18px;
}

.search-box i{
    color:#9aa8b6;
    margin-right:12px;
}

.search-box input{
    width:100%;
    border:none;
    outline:none;
    font-size:16px;
    background:transparent;
}

/* Heading */

.heading{
    display:flex;
    align-items:center;
    margin:30px 0 20px;
    gap:12px;
}

.heading .icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eaf3ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2979ff;
}

.heading h2{
    font-size: 24px;
    color: #242544;
    font-weight: 500;
}

/* Cards */

.card-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:22px;
    margin-top: 45px;
}

.card{
    background:#fff;
    border:1px solid #e5ebf2;
    border-radius:10px;
    padding:16px 10px;
    text-align:center;
    transition:.3s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.img-box{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f6f8fb;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #ececec;
}

.img-box img{
    width:35px;
    height:35px;
    object-fit:contain;
}

.card h3{
    margin-top: 10px;
    font-size: 18px;
    color: #242542;
    font-weight: 500;
}
/*all spec css end*/



/*about css*/
.infrastu {
    display: grid;
    grid-template-columns: repeat(4, 1fr)!important;
    gap: 35px;
}

.infra_card {
    padding: 30px 18px!important;
}
.infra_card h2 {
    font-size: 24px!important;
}
/*about css end*/



/*health package css*/


.package-filter-dropdown{
    max-width:320px;
    /*margin:30px auto 45px;*/
    text-align:left;
}

.package-filter-dropdown label{
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #242544;
}

.package-filter-dropdown select{
    width: 100%;
    height: 38px;
    padding: 0 18px;
    border: 1px solid #242544;
    border-radius: 10px;
    /* background: #242544; */
    font-size: 14px;
    font-weight: 500;
    color: #242544;
    cursor: pointer;
    outline: none;
    transition: .3s;
    /* box-shadow: 0 8px 18px rgba(0, 0, 0, .08); */
    margin-bottom: 30px;
}


.health-package{
    transition:.4s;
}

.health-package.hide{
    display:none;
}


.health-packages{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.health-package{
    width: 396px;
    background:#fff;
    border-radius: 10px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.health-package:hover{
    transform:translateY(-8px);
}

.package-header{
    background:#242544;
    color:#fff;
    padding:30px;
    min-height:210px;
    position:relative;
}

.package-header::before{

    content:"";
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);

    background-size:20px 20px;
}

.package-buttons{
    display:flex;
    gap:12px;
    /*margin-top:25px;*/
}

.package-buttons .package-btn{
    flex:1;
    text-align:center;
}

.package-btn-outline{
    background:#fff;
    color:#0b7c77;
    border:2px solid #0b7c77;
    transition:.3s;
}

.package-btn-outline:hover{
    background:#0b7c77;
    color:#fff;
}
.package-header *{
    position:relative;
    z-index:2;
}

.package-icon{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.package-header h2{
    font-size: 30px;
    margin-bottom: 0px;
    color: #fff;
}

.package-body{
    padding: 30px;
}

.package-price{
    margin-bottom:25px;
}

.current-price{
    color: #242544;
    font-size: 24px;
    font-weight: bold;
}

.old-price{
    color:#888;
    font-size: 14px;
    text-decoration:line-through;
    margin-left:8px;
}

.person{
    font-size: 14px;
}

.package-list{

    list-style:none;
}

.package-list li{
    display:flex;
    align-items:center;
    margin: 6px 0;
}

.package-list i{
    width: 20px;
    height: 20px;
    background: #242544;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 11px;
}

.package-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 30px;
    border: 1px solid #242544;
    border-radius: 50px;
    margin-top:  10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .35s;
    background: #242544;
    margin-left: auto;
    margin-right: auto;
}

.package-btn:hover{
    background:#dfbf48;
    color:#fff;
}
.booknow_btn {
    color: #242544;
    background: #fff;
    border: 2px solid #242544;
}
@media(max-width:991px){

body{

padding:20px;

}

.health-package{

width:100%;

max-width:420px;

}

.package-header h2{

font-size:32px;

}

.current-price{

font-size:42px;

}

.package-list li{

font-size:17px;

}

.package-btn{

font-size:20px;

}

}


.price-note{
    display:flex;
    align-items: flex-start;
    gap: 18px;
    background: #65678bab;
    border-radius: 10px;
    padding: 8px 28px;
    margin: 30px 0;
}

.note-icon{
    width: 10px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    margin-top: 2px;
}

.note-text{
    color: #fff;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
}

.note-text a{
    color:#fff;
    font-weight:700;
    text-decoration:none;
}

.note-text a:hover{
    text-decoration:underline;
}
/*health package css end*/



.academic-card {
    position: relative;
    overflow: hidden;
    /* border-radius: 15px; */
}
.academic-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgb(38 36 64) 0%, rgb(38 36 65) 35%, rgb(39 36 69 / 42%) 70%, transparent 100%);
    z-index: 1;
}
.content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: #fff;
    z-index: 2;
}
.content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #fff;
}
.content p {
    font-size: 18px;
    opacity: .9;
}



/*scroll css*/
.custom-scroll{
    max-height: 535px;     
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

/* Scroll Width */
.custom-scroll::-webkit-scrollbar{
    width: 8px;
}

/* Track */
.custom-scroll::-webkit-scrollbar-track{
    background: #f1f1f1;
    border-radius: 20px;
}

/* Thumb */
.custom-scroll::-webkit-scrollbar-thumb{
    background: #0d6efd;    
    border-radius: 20px;
}

/* Hover */
.custom-scroll::-webkit-scrollbar-thumb:hover{
    background: #084298;
}

/* Firefox */
.custom-scroll{
    scrollbar-width: thin;
    scrollbar-color: #242544  #fff;
}
.custom-scroll{
    overflow-y: scroll;
}
/*end css*/

.view_tab {
    float: right;
    margin-top: -70px;
    /*font-size: 20px;*/
    color: #242544;
}
.view_tab:hover {
    color: #dfbf48;
}




.mob {
    display: none;
}
.desk {
    display: block;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .desk {
        display: none;
    }
    .mob {
    display: block;
}
}