*{
	margin: 0;
	padding: 0;
}
:root{
	--Mont:'Montserrat', sans-serif;
	--color1: #e26509;
	--color2: #00acd0;
}
h1, h2, h3, h4, h5, p, ul{
	margin: 0;
	padding: 0;
}
body{
	  font-family: 'Montserrat', sans-serif;
}
header{
	background: linear-gradient(90deg, #0988a8, #0c182b);
	padding: 10px 0;
	height: 120px;
}
.container{
	max-width: 1300px!important;
}
.logo{

}
.logo h1{
	font-size: 28px;
	color: #fff;
	text-shadow: 0 0 5px #00000035;
	font-weight: 700;
	padding-top: 15px;

}
.logo p{
	text-shadow: 0 0 5px #00000035;
	color: #fff;
	font-weight: 500;
}
.logo img{
	height: 95px;
	float: left;
	margin-right: 5px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

/* LEFT */
.header-top .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top .text {
  margin-right: 5px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

/* SOCIAL ICONS */
.icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}
.icon:hover{
    transform: scale(1.08);
    color: #fff;
}
.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.instagram { 
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.twitter { background: #000; }

/* RIGHT */
.header-top {
	position: relative;
	top: -10px;
	padding-left: 30px;
	border-radius: 0 0 0 50px;
	border-left: 5px solid rgb(234, 88, 12);
    border-bottom: 2px solid rgb(251, 146, 60);
}
.header-top .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-box {
  width: 28px;
  height: 28px;
  background: #ff7a00;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  color: var(--color2);
  font-weight: 600;
}

.menu .navbar{
}
/* Navbar */
.navbar {
	background: none;
  z-index: 1000;

}

/* Dropdown */
.custom-dropdown {
  border-radius: 12px;
  padding: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.menu ul li a{
	color: #fff;
	font-weight: 500;
	font-size: 14.3px;
	padding: 10px;
	transition: 0.3s ease;
}
.menu ul ul li a{
	color: #222222;
}
.menu ul ul li a:hover{
	border:none;

}
.menu ul li a:hover, .menu ul li a.active{
	color: var(--color1)!important;
	border-bottom: 1px solid var(--color1);
}
.menu .btn{
    background: linear-gradient(135deg, #ff8a00, #ff5e00);
    transition: 0.3s ease;
}
.menu .btn:hover{
   background: linear-gradient(135deg, #ff5e00, #ff8a00);
}
.dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #f1f5f9;
}

/* Hover Dropdown (Desktop) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* 🔹 Mobile Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.4s ease;
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  margin-bottom: 15px;
}

.menu-list a {
  text-decoration: none;
  color: #333;
}

/* Submenu */
.has-submenu span {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.submenu {
  display: none;
  padding-left: 10px;
}

.submenu li {
  margin: 8px 0;
}

.has-submenu.active .submenu {
  display: block;
}


/* Slider */
.hero-carousel {
  background: #e6f0f2;
  min-height: 500px; /* 👈 FIX HEIGHT */
  display: flex;
  align-items: center;
	padding: 0;
}
.carousel-item {
  min-height: 500px; /* 👈 SAME HEIGHT FOR EACH SLIDE */
}

.hero-wrap {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-wrap p{
	color: #333333;
}
/* LEFT ANIMATION */
.hero-text {
  max-width: 600px;
  opacity: 0;
  transform: translateX(-60px);
}

.carousel-item.active .hero-text {
  animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tag {
  background: #dff6f8;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #0f7f8a;
}

.hero-text h1 {
  font-size: 55px;
  margin: 20px 0;
  margin-bottom: 10px;
  font-weight: 800;
  color: #0b2d39;
  background: linear-gradient(90deg, #0a5c66, #00aed2, #0a5c66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h1 span {
  color: #0f7f8a;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.hero-btns .btn1{
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
  text-transform: none;
	background: linear-gradient(90deg, rgb(0, 174, 210), rgb(0, 155, 192));
}
.hero-btns .btn1 i{
	font-size: 15px;
}
.hero-btns .btn2{
	font-size: 15px;
	font-weight: 500;
  text-transform: none;
	color: var(--color1);
	border: 1px solid var(--color1);
}	
/* RIGHT IMAGES */
.hero-images {
  position: absolute;
  top: 10%;
  right: 14%;
}

.img-card {
  position: absolute;
  background: #fff;
  padding: 7px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.img-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.img-card span {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color2);
}

.img-card.back {
  top: 0;
  right: 180px;
}

.img-card.front {
  top: 120px;
  right: -60px;
}

/* IMAGE ANIMATION */
.img-card {
  opacity: 0;
  transform: translateY(40px);
}

.carousel-item.active .img-card {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.custom-controls {
  position: absolute;
  bottom: 20px;
  left: 40px;   /* 👈 LEFT SIDE */
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  color: var(--color2);
  border: 1px solid var(--color2);
}

.carousel-btn:hover {
  background: #0f7f8a;
  color: #fff;
}
.badge-tag{
	display: inline-block;
	padding: 10px;
	color: var(--color2);
	font-weight: 600;
	border: 1px solid var(--color2);
	border-radius: 10px;
	background: #fff;
}
.badge-tag i{
	background: linear-gradient(90deg, #00aed2, #009bc0);
	color: #ffffff;
	width:20px;
	padding: 8px;
	height: 20px;
	border-radius: 9px;
}

.aboutsec{
  padding: 70px 0;
  background: rgba(224, 242, 254, 0.5);
}
/* Card */
.doctor-card {
    position: relative;
    width: 420px;
    border-radius: 20px;
    /*overflow: hidden;*/
    margin: 0 auto;
        box-shadow: rgba(8, 145, 178, 0.3) 0px 20px 60px;
}

/* Image */
.doctor-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #fff;
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
}

.experience-badge h3 {
    color: #ff6600;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* Animated Corner Circle */
.corner-anim {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 180, 200, 0.2);
    animation: pulse 2s infinite;
}

/* Inner glow */
.corner-anim::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 180, 200, 0.4);
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}
.abouttext h1{
    font-size: 56px;
    font-family: var(--Mont);
    font-weight: 800;
        background: linear-gradient(90deg, rgb(12, 20, 38) 0%, rgb(8, 145, 178) 50%, rgb(12, 20, 38) 100%) text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    display: inline-block;
    padding-bottom: 5px;
}

.abouttext h2{
    color: var(--color1);
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 20px;
}
.abouttext p{
  font-size: 15px;
  color: #111;
  font-weight: normal;
  padding-bottom: 10px;
}
.abouttext p:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
}
.para{
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
}



.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;

    /* Gradient */
    background: linear-gradient(135deg, #ff8a00, #ff5e00);
    color: #fff;
    font-size: 14px;
    font-weight: 600;

    /* Shadow */
    box-shadow: 0 10px 25px rgba(255, 94, 0, 0.3);

    transition: all 0.3s ease;
    margin-top: 15px;
}

/* Arrow */
.read-more-btn .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.read-more-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 94, 0, 0.5);
}

/* Arrow move */
.read-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Click effect */
.read-more-btn:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}


.stats-section{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top: 35px;
}

.stat-box{
    width:180px;
    background:#f0fdfa;
    border-radius:18px;
    text-align:center;
    padding:15px 20px;
    transition:0.3s ease;
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stat-box i{
    font-size:22px;
    color:#0096c7;
    margin-bottom:15px;
}

.stat-box h2{
    font-size:22px;
    margin:0;
    color:#111;
    padding: 0;
    font-weight:700;
}

.stat-box p{
    margin-top:5px;
    font-size:14px;
    font-weight: 500;
    color:#2c3e50;
}

.sersec{
  padding: 70px 0;
}
.services-heading{
    text-align:center;
    padding:0 0 0 20px;
}

.services-heading .top-btn{
    display:inline-block;
    padding:8px 25px;
    border:2px solid #0a93c9;
    background: #d6edf5;
    border-radius:50px;
    color:#0a93c9;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;
}

.services-heading h1{
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(90deg, rgb(12, 20, 38) 0%, rgb(8, 145, 178) 50%, rgb(12, 20, 38) 100%) text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    padding-bottom: 5px;
}

.services-heading p{
    margin:auto;
    font-size:15px;
    line-height:1.5;
    color:#243b5a;
    font-weight:500;
    text-align: center;
}

/* Responsive */
@media(max-width:768px){

    .services-heading{
        padding:60px 15px;
    }

    .services-heading .top-btn{
        font-size:14px;
        padding:12px 28px;
    }

    .services-heading h1{
        font-size:48px;
    }

    .services-heading p{
        font-size:18px;
        line-height:1.6;
    }
}


.service-card{
    position:relative;
    width:100%;
    min-height:420px;
    border-radius:28px;
    overflow:hidden;
    padding:30px 20px;
    display:flex;
    margin-top: 35px;
    flex-direction:column;
    justify-content:flex-start;
    /*background:url('images/service.jpg') center/cover no-repeat;*/
    transition:0.4s ease;
}
.s1{
    background:url('../images/s1.avif') center/cover no-repeat;
}
.s2{
    background:url('../images/s2.avif') center/cover no-repeat;
}
.s3{
    background:url('../images/s3.avif') center/cover no-repeat;
}
.s4{
    background:url('../images/s4.avif') center/cover no-repeat;
}
.s5{
    background:url('../images/s5.avif') center/cover no-repeat;
}
.s6{
    background:url('../images/s6.avif') center/cover no-repeat;
}
/* Dark Overlay */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,30,60,0.45));
}

.service-content{
    position:relative;
    z-index:2;
}

.icon-box1{
    width:62px;
    height:62px;
    border-radius:12px;
    border:2px solid #00cfff60;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    backdrop-filter:blur(6px);
}

.icon-box1 i{
    color:#00cfff;
    font-size:30px;
}

.service-content h2{
    font-size:24px;
    line-height:1.2;
    color:#fff;
    font-weight:700;
    margin-bottom:12px;
    transition:0.4s ease;
}

.service-content p{
    font-size:15px;
    line-height:1.8;
    color:#f1f1f1;
    margin-bottom:35px;
}

/* Button */
.learn-btn{
    width:100%;
    height:48px;
    border:1px solid #6fe6ff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 30px;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.4s ease;
    backdrop-filter:blur(5px);
        background-color: rgba(8, 145, 178, 0.133);

}

.learn-btn i{
    font-size:22px;
}

/* Hover Effects */
.service-card:hover .learn-btn{
    background:var(--color1);
    border-color:var(--color1);
    color: #fff;
}

.service-card:hover h2{
    color:var(--color1);
}

/* Responsive */
@media(max-width:768px){

    .service-card{
        min-height:500px;
        padding:25px;
    }

    .service-content h2{
        font-size:34px;
    }

    .service-content p{
        font-size:16px;
    }

    .learn-btn{
        height:65px;
        font-size:22px;
    }
}

.consultation-box{
    max-width:1000px;
    margin:auto;
    padding:40px 35px;
    background:#eef3f5;
    border:1px solid #c9eef3;
    border-radius:22px;
    margin-top: 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.consultation-content{
    width:70%;
}

.consultation-content h2{
    font-size:25px;
    color:#00789b;
    margin-bottom:12px;
    font-weight:700;
}

.consultation-content p{
    font-size:15px;
    color:#1f2b46;
    line-height:1.6;
    margin:0;
    font-weight: 500;
}

.consult-btn{
    background:#eb7400;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(235,116,0,0.25);
    border:2px solid #f6a04d;
    white-space:nowrap;
}

.consult-btn:hover{
    background:#d86300;
    color: #ffffff;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .consultation-box{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .consultation-content{
        width:100%;
    }

    .consultation-content h2{
        font-size:30px;
    }

    .consultation-content p{
        font-size:18px;
    }

    .consult-btn{
        font-size:18px;
        padding:18px 35px;
    }
}

.sj-career-section{
    padding:70px 40px;
    overflow:hidden;
    background:#f5f5f5;
    
}

.sj-career-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:50px;
}

.sj-tagline{
    display:inline-block;
    padding:6px 22px;
    border-radius:50px;
    background:linear-gradient(90deg,#42c7e5,#0096c7);
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.sj-career-heading h2{
    font-size: 55px;
    font-weight: 800;
    background: linear-gradient(90deg, rgb(12, 20, 38) 0%, rgb(8, 145, 178) 50%, rgb(12, 20, 38) 100%) text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    padding-bottom: 5px;
    font-family: var(--Mont);
}

.sj-career-heading p{
    font-size:16px;
    font-weight: 500;
    color:#111;
    line-height:1.6;
}

.sj-career-nav{
    display:flex;
    gap:15px;
}

.sj-nav-btn{
    border:none;
    outline:none;
    padding:10px 22px;
    border-radius:8px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}
.sj-career-nav i{
  font-size: 14px;
  margin: 0 5px;
}
.sj-prev-btn{
    background:#39c0de;
}

.sj-next-btn{
    background:#ea7600;
}

.sj-nav-btn:hover{
    transform:translateY(-4px);
}

.sj-timeline-bar{
    width:100%;
    height:8px;
    background:#d8eef2;
    border-radius:30px;
    margin-bottom:10px;
}

.sj-career-slider{
    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding: 0 20px;
    padding-top:40px;
    padding-bottom:20px;
}

.sj-career-slider::-webkit-scrollbar{
    height:8px;
}

.sj-career-slider::-webkit-scrollbar-thumb{
    background:#00a0c6;
    border-radius:20px;
}

.sj-career-card{
    min-width:360px;
    background:#edf5f5;
    border-radius:28px;
    padding:35px 25px;
    position:relative;
    box-shadow:0 0 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-top: 5px solid var(--color2);
}
.sj-career-card:hover{
  transform: translateY(-5px);
}
.sj-active-card{
    background:#ef7300;
    color:#fff;
}

.sj-active-card p,
.sj-active-card .sj-location{
    color:#fff;
}

.sj-date-badge{
    position:absolute;
    top:-18px;
    left:35%;
    background:#071b38;
    color:#fff;
    padding:5px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    border:2px solid var(--color2);
}

.sj-career-card h3{
    margin-top:20px;
    margin-bottom:5px;
    font-size:20px;
    color: #000;
    font-weight: 600;
}

.sj-career-card p{
    font-size:16px;
    color:#394451;
    margin-bottom:25px;
}

.sj-location{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    color:#394451;
}

.sj-location i{
    background:#ef7300;
    color:#fff;
    padding:12px;
    border-radius:12px;
}

.sj-card-date{
    display:inline-block;
    margin-top:20px;
    background:#d8eaed;
    padding:2px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    color: #111;
}

.sj-active-card .sj-card-date{
    background:#ff9227;
    color:#fff;
}

@media(max-width:768px){

    .sj-career-section{
        padding:50px 20px;
    }

    .sj-career-heading h2{
        font-size:42px;
    }

    .sj-career-heading p{
        font-size:18px;
    }

    .sj-career-card{
        min-width:300px;
    }

    .sj-career-card h3{
        font-size:28px;
    }

    .sj-career-card p{
        font-size:18px;
    }

    .sj-nav-btn{
        font-size:16px;
        padding:14px 22px;
    }
}
.attachmentsec{
    padding: 70px 0;
}
.academic-tabs-section{
    padding:40px 0;
    font-family:Rubik,sans-serif;
}

.academic-tabs{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.tab-btn{
    border:none;
    background:#fff;
    padding:18px 35px;
    border-radius:15px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.tab-btn.active{
    background:#ef6c00;
    color:#fff;
}

.timeline-divider{
    height:3px;
    background:#dff1f4;
    margin:35px 0;
    position:relative;
}

.timeline-divider span{
    position:absolute;
    left:0;
    top:0;
    width:120px;
    height:3px;
    background:#c98c33;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:25px;
    font-family: var(--Mont);
}
.course-grid p{
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}
.course-card{
    position:relative;
    padding:30px;
    border:1px solid #e4f0f2;
    border-radius:20px;
    background:#fff;
    min-height:220px;
}

.year-badge{
    position:absolute;
    top:-15px;
    right:20px;
        background: linear-gradient(135deg, rgb(103, 232, 249) 0%, rgb(8, 145, 178) 100%);
    color:#fff;
    padding:3px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
   text-align: left;
}

.card-icon{
    width:55px;
    height:55px;
        background: linear-gradient(135deg, rgb(103, 232, 249) 0%, rgb(8, 145, 178) 100%);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    margin-bottom:20px;
}

.course-card h3{
    margin-bottom:15px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.location i{
    color: var(--color2);
    margin-right: 5px;
}

.card-footer{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
    border:none;
    font-size: 14px;
    font-weight: 500;
}

.card-footer strong{
    color:#0ea5d8;
}

.publication-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.publication-card{
    position:relative;
    background:#fff;
    border:1px solid #e4f2f5;
    border-radius:20px;
    padding:36px;
    min-height:260px;
    box-shadow:0 5px 15px rgba(0,0,0,.04);
}

.card-badge{
    position:absolute;
    top:-12px;
    left:18px;
       background: linear-gradient(135deg, rgb(103, 232, 249) 0%, rgb(8, 145, 178) 100%);
    color:#fff;
    padding:6px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.card-badge.orange{
    background:#ef6c00;
}

.card-icon{
    width:54px;
    height:54px;
    border-radius:14px;
       background: linear-gradient(135deg, rgb(234, 88, 12) 0%, rgb(217, 119, 6) 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:20px;
}

.card-icon.orange{
    background:#ef6c00;
}

.publication-card h3{
    font-size:16px;
    line-height:1.6;
    color:#071c3c;
    margin:0 0 25px;
    font-weight:700;
    text-align: left;
}

.card-meta{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:18px;
}

.card-meta div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#0077a3;
    font-size:18px;
}

.card-footer{
    display:flex;
    align-items:center;
    gap:10px;
    color:#071c3c;
    font-size:18px;
    font-weight:500;
}

.card-footer i{
    color:#ef6c00;
}
.attachmentdiv{
    padding: 70px 0;
    background: #eef5fa;
}
.shp-location-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:4px solid #11c5e7;
    margin:auto;
    margin-top: 30px;
}

.shp-map-wrap{
    height:200px;
    overflow:hidden;
}

.shp-map-wrap iframe{
    width:100%;
    height:100%;
    border:0;
}

.shp-location-content{
    padding:30px 20px;
}

.shp-location-content h3{
    color:#005d84;
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.shp-info-item{
    display:flex;
    align-items:flex-start;
    gap:5px;
    margin-bottom:15px;
}

.shp-icon{
    min-width:22px;
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9412f;
    font-size:18px;
}

.shp-info-item p{
    margin:0;
    color:#333;
    line-height:1.6;
    font-family: var(--Mont);
    font-size:13px;
    font-weight: 500;
    padding-bottom: 0;

}

.shp-info-item strong{
    display:block;
    margin-bottom:8px;
    color:#111;
}

.shp-info-item a{
    display:block;
    color:#444;
    font-size: 14px;
    text-decoration:none;
    margin-bottom:0;
    font-weight: 500;
}

.shp-map-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(90deg,#0087b8,#0da3cf);
    color:#fff;
    text-decoration:none;
    padding:14px 15px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.shp-map-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

@media(max-width:576px){

    .shp-location-content{
        padding:20px;
    }

    .shp-location-content h3{
        font-size:24px;
    }

    .shp-map-wrap{
        height:180px;
    }
}
.note1{
    text-align: center;
    padding-top: 40px;
}
.note1 p{
    margin: 0;
    padding: 0;
}
.sp-review-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 10px rgba(0,0,0,.15);
    transition:all .35s ease;
    border:1px solid #edf2f7;
    height:100%;
    display:flex;
    overflow:hidden;
    flex-direction:column;
    margin-top:30px;
    
}

/* Hover Effect */
.sp-review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    border-color:#00a6c8;
}

.sp-review-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:#00a6c8;
    transition:.4s;
}

.sp-review-card:hover::before{
    width:100%;
}

.sp-review-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
    margin-bottom:15px;
}

.sp-review-top h4{
    margin:0 0 10px;
    font-size:20px;
    font-weight:700;
    color:#222;
}

.sp-review-stars{
    color:#f59e0b;
    font-size:18px;
    letter-spacing:2px;
}

.sp-review-status{
    text-align:right;
}

.sp-verified-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#eefbf3;
    color:#00a651;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.sp-review-date{
    margin-top:0;
    color:#6b7280;
    font-size:15px;
}

.sp-review-visit{
    color:#23395d;
    font-size:15px;
    margin-bottom:18px;
    font-weight: 500;
}

.sp-review-tag{
    display:inline-block;
    background:#fff3e8;
    color:#ff6b00;
    padding:10px 18px;
    border-radius:30px;
    font-size:15px;
    font-weight:500;
    margin-bottom:20px;
}

.sp-review-text{
    color:#222;
    font-size:15px;
    line-height:1.6;
    font-weight: 500;
    margin:0;
}

@media(max-width:767px){

    .sp-review-top{
        flex-direction:column;
    }

    .sp-review-status{
        text-align:left;
    }

    .sp-review-top h4{
        font-size:24px;
    }
}
.reviewhome{
    padding: 70px 0;
}

.sz-card{

    color:#fff;
}

.sz-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.sz-icon{
    width:60px;
    height:60px;
    flex-shrink:0;
    background: none;
}

.sz-icon img{
    width:100%;
    background: none;
    display:block;
    
}

.sz-title{
    margin:0;
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.sz-subtitle{
    color:#ff7a00;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    margin-top:5px;
}

.sz-content p{
    margin:0;
    font-size:14px;
    font-weight: 500;
    line-height:1.8;
    color:#edf2f7;
}

.sz-connect-title{
    margin-top:35px;
    margin-bottom:18px;
    font-size:14px;
    font-weight:700;
}

.sz-social{
    display:flex;
    gap:14px;
}

.sz-social-box{
    width:38px;
    height:38px;
    border-radius:12px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.sz-social-box:hover{
    transform:translateY(-3px);
}
footer{
    background: #0f1b2d;
    padding: 60px 0;
}

.ql-card{
    
   
}

.ql-heading{
    display:flex;
    align-items:center;
    gap:14px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(71,217,255,.2);
    margin-bottom:20px;
}

.ql-heading-icon{
    width:34px;
    height:34px;
    border-radius:10px;
    background:linear-gradient(135deg,#69f0ff,#23b6e6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    box-shadow:0 0 20px rgba(71,217,255,.35);
}

.ql-heading h3{
    margin:0;
    color:#3fd7ff;
    font-size:18px;
    font-weight:700;
}

.ql-list{
    list-style:none;
    padding:0;
    margin:0;
}

.ql-list li{
    padding-bottom: 25px;
}

.ql-list a{
    color:#d8e0ec;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:15px;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.ql-list a:hover{
    color:#3fd7ff;
}

.ql-list i{
    font-size:12px;
}

.ql-btn{
    width: 85%;
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
      color: var(--color1);
    border:1px solid rgba(255,122,0,.35);
    border-radius:10px;
    padding:10px 16px;
    margin-top:10px;
    font-weight:600;
    background:rgba(255,122,0,.03);
    transition: 0.3s ease;
}

.ql-btn:hover{
    transform: scale(1.1);
    color: var(--color1);
}
.ql-btn i{
    font-size:16px;
}

.sp-contact-info{
        color:#fff;
}

.sp-contact-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(0,255,255,.15);
}

.sp-contact-title h3{
       margin: 0;
    color: #3fd7ff;
    font-size: 18px;
    font-weight: 700;
}

.sp-contact-icon{
    width:34px;
    height:34px;
    border-radius:10px;
    background:#ff8c00;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.sp-contact-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    border-radius:10px;
    padding:10px;
    margin-bottom:20px;
}

.sp-contact-box-icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:8px;
    background:linear-gradient(135deg,#67e8f9,#22c1f1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.sp-contact-box-content h4{
    margin:0 0 2px;
    font-size:16px;
    font-weight:700;
    color:var(--color2);
}

.sp-contact-box-content a,
.sp-contact-box-content p{
    margin:0;
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    line-height:1.8;
}

.sp-services-section{
    
}

.sp-services-heading{
    display:flex;
    align-items:center;
    gap:12px;
    padding-bottom:18px;
    margin-bottom:25px;
    border-bottom:1px solid rgba(0,255,255,.12);
}

.sp-services-heading-icon{
    width:34px;
    height:34px;
    border-radius:10px;
    background:linear-gradient(135deg,#123b63,#0c2847);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#44d8ff;
    font-size:16px;
}

.sp-services-heading h3{
   margin: 0;
    color: #3fd7ff;
    font-size: 18px;
    font-weight: 700;
}

.sp-service-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.08);
    border-radius:12px;
    padding:12px 15px;
    margin-bottom:14px;
    position:relative;
    min-height:52px;
    transition: 0.3s ease;
}
.sp-service-item:hover{
    transform: scale(1.05);
}

.sp-service-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    border-radius:5px 0 0 5px;
}

.sp-service-icon{
    width:34px;
    height:34px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.sp-service-item h4{
    margin:0;
    color:#fff;
    font-size:14px;
    font-weight:normal;
    line-height:1.4;
}

/* Colors */
.sp-blue::before{background:#12b7ff;}
.sp-blue .sp-service-icon{
    background:rgba(18,183,255,.15);
    color:#12b7ff;
}

.sp-orange::before{background:#ff6d1a;}
.sp-orange .sp-service-icon{
    background:rgba(255,109,26,.15);
    color:#ff6d1a;
}

.sp-cyan::before{background:#19c8ff;}
.sp-cyan .sp-service-icon{
    background:rgba(25,200,255,.15);
    color:#19c8ff;
}

.sp-gray::before{background:#7085b7;}
.sp-gray .sp-service-icon{
    background:rgba(112,133,183,.15);
    color:#9fb4e4;
}

.sp-gold::before{background:#d88a1d;}
.sp-gold .sp-service-icon{
    background:rgba(216,138,29,.15);
    color:#d88a1d;
}

.sp-lightblue::before{background:#33d9ff;}
.sp-lightblue .sp-service-icon{
    background:rgba(51,217,255,.15);
    color:#33d9ff;
}

.sp-divider-wrap{
    position:relative;
    padding:25px 0;
}

.sp-divider-line{
    height:1px;
    background:linear-gradient(
        90deg,
        rgba(0,180,255,.15) 0%,
        rgba(0,180,255,.35) 50%,
        rgba(0,180,255,.15) 100%
    );
}

.sp-scroll-top{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#48d7f4,#2db6d8);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(72,215,244,.35);
    transition:.3s;
}

.sp-scroll-top:hover{
    transform:translate(-50%,-50%) translateY(-3px);
}
.f-bottom p{
    color: #ffffff;
    margin-bottom: 0;
    font-size: 14px;
}
.heading{
    text-align: center;
    padding:50px 0;
}
.heading h1{
    font-size: 58px;
       background: linear-gradient(90deg, rgb(12, 20, 38) 0%, rgb(8, 145, 178) 50%, rgb(12, 20, 38) 100%) text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.aboutpg{
    background: #f1f5f9;
}
.heading p{
    font-weight: 500;
    font-size: 20px;
    color: var(--color2);
}

.st-doc-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,.12);
}

.st-doc-image-wrap{
    line-height:0;
    border-radius: 30px;
}

.st-doc-image{
    width:100%;
    display:block;
    object-fit:cover;
}

.st-exp-badge{
    position:absolute;
    top:15px;
    right:15px;
    width:100px;
    height:100px;
    border-radius:50%;
    background:#0d98c3;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:2;
}

.st-exp-count{
    font-size:34px;
    font-weight:700;
    line-height:1;
}

.st-exp-text{
    font-size:13px;
    font-weight:600;
    line-height:1.2;
}

.dr-achievement-grid{
    display:grid;
    gap:14px;
    margin-top: 40px;
}

.dr-achievement-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 18px;
    background:#f7f7f7;
    border:1px solid #b7dce9;
    border-radius:16px;
    transition:.3s ease;
}

.dr-achievement-card:hover{
    transform:translateY(-3px);
}

.dr-achievement-icon{
    width:46px;
    height:46px;
    border-radius:10px;
    background:#dbf5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.dr-achievement-icon i{
    font-size:22px;
    color:#0b98c4;
}

.dr-achievement-content h3{
    margin:0 0 4px;
    font-size:22px;
    font-weight:700;
    color:#000;
    line-height:1;
}

.dr-achievement-content p{
    margin:0;
    font-size:16px;
    color:#ff5a00;
    font-weight:500;
}

.st-doc-content{
    padding:18px 16px;
    background:#f8f8f8;
    border-radius: 10px;
}

.st-doc-name{
    margin:0 0 2px;
    font-size:28px;
    font-weight:700;
    color:#0f172a;
}

.st-doc-designation{
    margin:0;
    font-size:18px;
    color:#1296c4;
    font-weight:500;
}
.about1{
    background: #f1f5f9;
    padding-bottom: 60px;
}

.dr-about-box{
    background:#ffffff;
    border:1px solid #b9dbe7;
    border-radius:24px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.dr-about-title{
    margin:0 0 24px;
    font-size:28px;
    font-weight:700;
    color:#000;
    line-height:1.2;
}

.dr-about-text{
    margin:0 0 15px;
    font-size:15px;
    font-weight: 500;
    line-height:1.7;
    color:#2d3e5f;
}

.dr-about-text:last-child{
    margin-bottom:0;
}

.dr-about-text strong{
    color:#0a9bc6;
    font-weight:700;
}

@media (max-width:767px){

    .dr-about-box{
        padding:25px;
    }

    .dr-about-title{
        font-size:30px;
        margin-bottom:18px;
    }

    .dr-about-text{
        font-size:16px;
        line-height:1.8;
        margin-bottom:18px;
    }
}

.dr-expertise-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.dr-expertise-card{
    background:#fff;
    border-radius:22px;
    padding:30px 28px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.dr-expertise-blue{
    border:1px solid #b9dceb;
}

.dr-expertise-orange{
    border:1px solid #f4d2c2;
}

.dr-expertise-title{
    margin:0 0 20px;
    font-size: 25px;
    font-weight:700;
}

.dr-expertise-blue .dr-expertise-title{
    color:#0b93c0;
}

.dr-expertise-orange .dr-expertise-title{
    color:#ff5a00;
}

.dr-expertise-list{
    margin:0;
    padding:0;
    list-style:none;
}

.dr-expertise-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    font-size:15px;font-weight: 500;
    line-height:1.5;
    color:#243b63;
}

.dr-expertise-list li:last-child{
    margin-bottom:0;
}

.dr-expertise-blue i{
    color:#0b93c0;
    font-size:20px;
    margin-top:0;
}

.dr-expertise-orange i{
    color:#ff5a00;
    font-size:20px;
    margin-top:5px;
}

@media(max-width:767px){
    .dr-expertise-wrapper{
        grid-template-columns:1fr;
    }

    .dr-expertise-card{
        padding:25px 20px;
    }

    .dr-expertise-title{
        font-size:28px;
    }

    .dr-expertise-list li{
        font-size:17px;
    }
}

.dr-credential-section{
    padding:20px 0;
}

.dr-credential-heading{
    text-align:center;
    font-size:40px;
    font-weight:700;
    color:#000;
    margin:0 0 30px;
}

.dr-credential-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.dr-credential-card{
    background:#fff;
    border:1px solid #b9dceb;
    border-radius:18px;
    padding:20px;
    min-height:130px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
    transition:.3s;
}

.dr-credential-card:hover{
    transform:translateY(-5px);
}

.dr-credential-icon{
    width:36px;
    height:36px;
    border-radius:8px;
    background:#eaf4f8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
}

.dr-credential-icon i{
    color:#0895c2;
    font-size:16px;
}

.dr-credential-title{
    margin:0 0 10px;
    font-size:20px;
    font-weight:700;
    color:#00153d;
}

.dr-credential-text{
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:#2f4368;
}

@media(max-width:991px){
    .dr-credential-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .dr-credential-grid{
        grid-template-columns:1fr;
    }

    .dr-credential-heading{
        font-size:34px;
    }
}
.about2{
    padding: 20px 0;
}

.dr-profile-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.dr-profile-card{
    background:#fff;
    border-radius:24px;
    padding:30px 32px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.dr-profile-blue{
    border:1px solid #b9dceb;
}

.dr-profile-orange{
    border:1px solid #f4d2c2;
}

.dr-profile-title{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 30px;
    font-size:24px;
    font-weight:700;
    color:#000;
}

.dr-profile-blue .dr-profile-title i{
    color:#0895c2;
}

.dr-profile-orange .dr-profile-title i{
    color:#ff5a00;
}

.dr-course-list,
.dr-training-list{
    margin:0;
    padding:0;
    list-style:none;
}

.dr-course-list li{
    position:relative;
    padding-left:18px;
    margin-bottom:12px;
}

.dr-course-list li::before{
    content:"•";
    position:absolute;
    left:0;
    top:-50%;
    color:#0895c2;
    font-size:44px;
    
}

.dr-course-list strong{
    display:block;
    font-size:16px;
    color:#000;
    margin-bottom:0;
}

.dr-course-list span{
    font-size:15px;
    color:#222;
}

.dr-training-list li{
    position:relative;
    padding-left:24px;
    margin-bottom:15px;
    font-size:15px;
    line-height:1.7;
    color:#000;
}

.dr-training-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#ff5a00;
    font-weight:700;
}

.dr-course-list li:last-child,
.dr-training-list li:last-child{
    margin-bottom:0;
}

@media(max-width:991px){
    .dr-profile-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .dr-profile-card{
        padding:25px 20px;
    }

    .dr-profile-title{
        font-size:22px;
    }

    .dr-training-list li,
    .dr-course-list strong{
        font-size:15px;
    }

    .dr-course-list span{
        font-size:14px;
    }
}
.about3{
    padding-bottom: 40px;
}

.dr-research-section{
    background:#fff;
    border:1px solid #b9dceb;
    border-radius:28px;
    padding:35px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.dr-research-heading{
    display:flex;
    align-items:center;
    gap:15px;
    margin:0 0 30px;
    font-size:25px;
    font-weight:700;
    color:#000000;
}

.dr-research-heading i{
    color:#0895c2;
    font-size:34px;
}

.dr-research-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.dr-research-card{
    display:flex;
    gap:20px;
    padding:22px;
    background:#f5fafc;
    border-radius:16px;
}

.dr-research-icon{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:10px;
    background:#e5f3f8;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dr-research-icon i{
    color:#0895c2;
    font-size:20px;
}

.dr-research-content h3{
    margin:0 0 12px;
    font-size:18px;
    font-weight:700;
    color:#00153d;
}

.dr-research-title{
    margin:0 0 5px;
    font-size:16px;
    line-height:1.7;
    color:#2f4368;
}

.dr-research-content span{
    display:block;
    font-size:15px;
    color:#617391;
    line-height:1.6;
}

@media(max-width:767px){

    .dr-research-section{
        padding:25px 20px;
    }

    .dr-research-heading{
        font-size:28px;
        margin-bottom:20px;
    }

    .dr-research-heading i{
        font-size:24px;
    }

    .dr-research-card{
        flex-direction:column;
        gap:15px;
    }

    .dr-research-title{
        font-size:15px;
    }

    .dr-research-content span{
        font-size:14px;
    }
}
.about4{
    padding-bottom: 50px;
}
.dr-cta-section{
    background:linear-gradient(135deg,#1498bf,#117d99);
    border-radius:28px;
    padding:60px 30px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    margin-bottom: 70px;
}

.dr-cta-content{
    max-width:900px;
    margin:auto;
}

.dr-cta-title{
    margin:0 0 20px;
    font-size:48px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
}

.dr-cta-text{
    margin:0 auto 35px;
    max-width:850px;
    font-size:22px;
    line-height:1.8;
    color:rgba(255,255,255,.95);
}

.dr-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:240px;
    height:64px;
    padding:0 35px;
    background:#fff;
    color:#0b88ad;
    text-decoration:none;
    border-radius:50px;
    font-size:22px;
    font-weight:600;
    transition:.3s ease;
}

.dr-cta-btn:hover{
    transform:translateY(-3px);
    color: var(--color2);
}

@media(max-width:767px){

    .dr-cta-section{
        padding:40px 20px;
    }

    .dr-cta-title{
        font-size:30px;
    }

    .dr-cta-text{
        font-size:16px;
        margin-bottom:25px;
    }

    .dr-cta-btn{
        min-width:200px;
        height:54px;
        font-size:18px;
    }
}
.contactpg{
    padding: 60px 0;
}

.sz-profile-card{
    
    margin:auto;
    padding:25px 20px;
    background:#eef2f6;
    border:1px solid #0d9bd7;
    border-radius:25px;
    text-align:center;
    margin-top: 40px;
    
}

.sz-name{
    margin:0;
    font-size:28px;
    color:#0f7899;
    font-weight:700;
    line-height: 1;
}

.sz-speciality{
    margin:7px 0 15px;
    font-size:18px;
    color:#374151;
    font-weight:600;
}

.sz-degree{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
}

.sz-badges{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
    margin-bottom:15px;
}

.sz-badge{
    background:#eefaf7;
    color:#1180a2;
    font-weight:600;
    padding:10px 20px;
    border-radius:30px;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.sz-info-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px 18px;
    border-radius:18px;
    background:#edf3f8;
    text-align:left;
    margin-bottom:14px;
}

.sz-email{
    background:#eef8f2;
}

.sz-address{
    background:#eef8f2;
}

.sz-icon{
    width:45px;
    height:45px;
    min-width:45px;
    border-radius:50%;
    background:#d9edf5;
    color: var(--color2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.sz-label{
    display:block;
    font-size:14px;
    color:#333;
    font-weight: 600;
    margin-bottom:5px;
}

.sz-info-card h4{
    margin:0;
    color:#0f7899;
    font-size:17px;
    font-weight:700;
    line-height:1.4;
}

.sz-address h4{
    color:#ef5b16;
}

@media(max-width:576px){
    .sz-name{
        font-size:30px;
    }

    .sz-speciality{
        font-size:20px;
    }

    .sz-info-card h4{
        font-size:18px;
    }
}

.sz-appointment-section{
    
    margin:40px auto;
    padding:28px;
    background:#f5f5f5;
    border:1px solid #0ea5d8;
    border-radius:22px;
 
}

.sz-form-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:25px;
}

.sz-form-header i{
    font-size:25px;
    color:#1593b7;
}

.sz-form-header h2{
    margin:0;
    color:#000;
    font-size:30px;
    font-weight:700;
}

.sz-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:15px;
}

.sz-appointment-form input,
.sz-appointment-form select,
.sz-appointment-form textarea{
    width:100%;
    padding:14px 16px;
    border:2px solid #c9d1dc;
    border-radius:12px;
    background:#eef2f6;
    font-size:15px;
    color:#334155;
    outline:none;
       font-family:'Poppins',sans-serif;
}

.sz-appointment-form textarea{
    resize:none;
    min-height:140px;
    margin-bottom:25px;
}

.sz-submit-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:12px;
    background:linear-gradient(90deg,#1495b8,#081a3d);
    color:#fff;
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.sz-submit-btn:hover{
    transform:translateY(-2px);
}

.sz-form-note{
    margin:10px 5px 0;
    font-size:12px;
    color:#333;
    font-weight: 400;
    text-align: center;
}

@media(max-width:768px){

    .sz-form-header h2{
        font-size:28px;
    }

    .sz-form-row{
        grid-template-columns:1fr;
    }

    .sz-submit-btn{
        font-size:17px;
    }
}

.adh-location-section{
    padding:20px;
    
}

.adh-location-card{
    display:flex;
    overflow:hidden;
    background:#fff;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.adh-location-info{
    width:40%;
    padding:20px;
    background:#fff;
    transition: 0.5s ease;
}
.adh-location-info a:hover{
    color: #ffffff;
    transform: scale(1.05);
}
.adh-top-line{
    width:42px;
    height:3px;
    background:#0c97b8;
    display:block;
    margin-bottom:15px;
}

.adh-location-info h2{
    margin:0 0 18px;
    color:#0b7aa2;
    font-size:28px;
    font-weight:700;
}

.adh-info-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.adh-icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:8px;
    background:rgb(255, 247, 237);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f15a24;
}

.adh-info-item h4{
    margin:0 0 5px;
    font-size:16px;
    font-weight: 600;
    color:#000;
}

.adh-info-item p{
    margin:0;
    font-size: 15px;
    font-weight: 500;
    line-height:1.6;
    color:#4b5563;
}

.adh-contact-list{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}

.adh-contact-list a{
    text-decoration:none;
    background:#f3f6fa;
    color:#0f172a;
    padding:10px 14px;
    border-radius:6px;
    font-size:14px;
    font-weight: 600;
}

.adh-location-info hr{
    border:none;
    border-top:1px solid #e5e7eb;
    margin:25px 0 20px;
}

.adh-map-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    padding:15px;
    border-radius:8px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(90deg,#0f9fc2,#097ea0);
}

.adh-map-box{
    width:60%;
}

.adh-map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:991px){

    .adh-location-card{
        flex-direction:column;
    }

    .adh-location-info,
    .adh-map-box{
        width:100%;
    }

    .adh-map-box iframe{
        min-height:400px;
    }
}
.hospitalpg{
    padding-top: 60px;
}
.hospitalpg2{
    padding-top: 20px;
    padding-bottom: 60px;
}
.reviewpg{
    padding-top: 20px;
    padding-bottom: 110px;
}
.sp-review-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    padding-bottom: 0;
    box-shadow:0 0 5px rgba(0,0,0,0.20);
    
}

.sp-review-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
}

.sp-review-user{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.sp-review-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d8db0,#0b3254);
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.sp-review-info h4{
    margin:0 0 6px;
    font-size:16px;
    color:#111827;
    font-weight:700;
}

.sp-review-meta{
    display:flex;
    align-items:center;
    gap:10px;
    color:#64748b;
    font-size:15px;
}

.sp-stars{
    color:#f59e0b;
    font-size: 17px;
    letter-spacing:2px;
}

.sp-verified-badge{
    background:#eef8f6;
    color:#0891b2;
    padding:8px 14px;
    border-radius:20px;
    font-size:14px;
}

.sp-review-tag{
    display:block;
    width: 40%;
    margin:8px 0;
    background:#eef7f8;
    color:#0b8fb2;
    padding:8px 16px;
    border-radius:10px;
    font-size:14px;
}

.sp-review-text{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#444;
}

.sp-review-card hr{
    border:none;
    border-top:1px solid #e5e7eb;
    margin:10px 0;
}

.sp-review-footer{
    color:#f97316;
    font-weight:500;
    font-size:15px;
}
.review-col{
    margin-bottom: 30px;
}

.st-treatment-sidebar{
    position:sticky;
    top:10px; /* Header height */
}

.st-sidebar-title{
    font-size:32px;
    font-weight:700;
    color:#0c789d;
    margin-bottom:25px;
}

.st-treatment-card{
    display:flex;
    align-items:center;
    gap:10px;
    font-size: 13.5px;
    background:#fff;
    padding:10px 10px;
    border-radius:15px;
    margin-bottom:12px;
    text-decoration:none;
    color:#1f2937;
    font-weight:600;
    box-shadow:0 5px 5px rgba(0,0,0,.10);
    transition:.3s;
}

.st-treatment-card.active,
.st-treatment-card:hover{
    background:linear-gradient(90deg,#0f9dc1,#08203f);
    color:#fff;
}

.st-icon{
    width:40px;
    height:40px;
    border-radius:10px;
    background:#eef7f8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0f9dc1;
    font-size:16px;
}

.st-treatment-card.active .st-icon,
.st-treatment-card:hover .st-icon{
    background:rgba(255,255,255,.15);
    color:#fff;
}
.serviceppg{
    padding: 50px 0;
    padding-bottom: 80px;
    background: #f0f9ff;
}

.rk-banner{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    min-height:380px;
}

.rk-banner img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.rk-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.15) 50%,
        rgba(0,0,0,.10) 100%
    );
}

.rk-content{
    position:absolute;
    left:60px;
    top:20%;
    transform:translateY(-50%);
    z-index:2;
    color:#fff;
    
}

.rk-content h1{
    margin:0 0 15px;
    font-size:46px;
    line-height:1.1;
    font-weight:800;
}

.rk-content p{
    margin:0;
    font-size:20px;
    font-weight:400;
}

@media(max-width:991px){

    .rk-banner,
    .rk-banner img{
        height:320px;
        min-height:320px;
    }

    .rk-content{
        left:30px;
        right:30px;
    }

    .rk-content h1{
        font-size:42px;
    }

    .rk-content p{
        font-size:20px;
    }
}

@media(max-width:576px){

    .rk-banner,
    .rk-banner img{
        height:260px;
        min-height:260px;
    }

    .rk-content h1{
        font-size:30px;
    }

    .rk-content p{
        font-size:16px;
    }
}

.rk-content-block{
    padding:10px 0;
    font-family:'Poppins',sans-serif;
}

.rk-heading-wrap{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.rk-heading-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:14px;
    background:#eef8f8;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.rk-heading-icon i{
    font-size:28px;
    color:#0891b2;
}

.rk-heading-wrap h2{
    margin:0;
    font-size:30px;
    line-height:1.1;
    font-weight:700;
    color:#172036;
}

.rk-heading-wrap p{
    margin:8px 0 0;
    color:#64748b;
    font-size:18px;
}

.rk-content-text p{
    margin:0 0 22px;
    font-size:20px;
    line-height:1.9;
    color:#475569;
}

.rk-content-text p:last-child{
    margin-bottom:0;
}

@media(max-width:768px){

    .rk-heading-wrap h2{
        font-size:30px;
    }

    .rk-content-text p{
        font-size:17px;
        line-height:1.8;
    }
}
.sercnt{
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}
.sercnt p{
    font-size: 15px;
    margin-bottom: 10px;
}
.hd1{
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1;
}
.sp-benefits-wrap{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-top: 16px;
}

.sp-benefit-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#eaf5f3;
    padding:18px 18px;
    border-radius:14px;
    font-size:24px;
    color:#222;
}

.sp-benefit-item i{
    color:#00a6d6;
    font-size:22px;
    min-width:24px;
}

.sp-benefit-item span{
    font-size:15px;
    font-weight:500;
}

@media(max-width:768px){
    .sp-benefits-wrap{
        grid-template-columns:1fr;
    }
}
.sp-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.sp-info-card{
    position:relative;
    padding:32px 28px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 5px rgba(0,0,0,.12);
}

.sp-info-card h3{
    margin:0 0 18px;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
}

.sp-info-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sp-info-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
    font-size:15px;
    font-weight: 500;
    color:#222;
}

.sp-info-card ul li:last-child{
    margin-bottom:0;
}

.sp-info-card ul li i{
    font-size:16px;
}

.sp-corner-box{
    position:absolute;
    top:0;
    right:0;
    width:80px;
    height:80px;
    opacity:.8;
}

/* Benefits Card */
.sp-benefits-card{
    background:#ffffff;
    margin-top: 20px;
}

.sp-benefits-card h3,
.sp-benefits-card i{
    color:#0a6d95;
}

.sp-benefits-card .sp-corner-box{
    background:#d5e5e8;
}

/* Tips Card */
.sp-tips-card{
    background:#f6efe8;
    margin-top: 20px;
}

.sp-tips-card h3,
.sp-tips-card i{
    color:#f26522;
}

.sp-tips-card .sp-corner-box{
    background:#ead6c0;
}

@media(max-width:768px){
    .sp-info-grid{
        grid-template-columns:1fr;
    }
}

.sp-consultation-cta{
    background:linear-gradient(90deg,#0d4860 0%,#062c45 55%,#0d5570 100%);
    border-radius:20px;
    padding:38px 30px;
    text-align:center;
    overflow:hidden;
    position:relative;
    margin-top: 25px;
}

.sp-consultation-content{
    max-width:700px;
    margin:0 auto;
}

.sp-consultation-content h2{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin:0 0 18px;
    line-height:1.2;
}

.sp-consultation-content p{
    color:rgba(255,255,255,.9);
    font-size:16px;
    line-height:1.6;
    margin:0 auto 20px;
}

.sp-consultation-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#f26a00;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    transition:.3s ease;
    border:2px solid rgba(255,255,255,.15);
}

.sp-consultation-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.sp-consultation-btn i{
    font-size:18px;
}

@media(max-width:768px){

    .sp-consultation-content h2{
        font-size:34px;
    }

    .sp-consultation-content p{
        font-size:17px;
    }

    .sp-consultation-btn{
        font-size:16px;
        padding:15px 24px;
    }
}


.sp-exp-card{
    background:#f7f7f7;
    border-radius:20px;
    padding:35px 40px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.sp-exp-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.sp-exp-title i{
    font-size:28px;
    color:#0b9ed8;
}

.sp-exp-title h2{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#000;
}

.sp-exp-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.sp-exp-col h3{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 20px;
    font-size:20px;
    font-weight:700;
    color:#0b9ed8;
}

.sp-exp-india h3{
    color:#f26a00;
}

.sp-exp-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sp-exp-col li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:10px;
    color:#333;
    font-size:15px;
    font-weight: 500;
    line-height:1.5;
}

.sp-exp-col li i{
    margin-top:5px;
    color:#0b9ed8;
}

.sp-exp-india li i{
    color:#f26a00;
}

@media(max-width:768px){

    .sp-exp-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .sp-exp-title h2{
        font-size:28px;
    }

    .sp-exp-col h3{
        font-size:22px;
    }

    .sp-exp-col li{
        font-size:16px;
    }
}

.ts-advantages{
    margin-top: 30px;
}

.ts-container{
    max-width:1100px;
    margin:auto;
    background: #ffffff;
    border-radius:20px;
    padding:35px 40px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.ts-heading{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.ts-heading i{
    color:#0ea5c6;
    font-size:24px;
}

.ts-heading h2{
    margin:0;
    font-size:26px;
    font-weight:700;
    color:#1e293b;
}

.ts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.ts-item{
    padding:10px;
}

.ts-icon{
    width:64px;
    height:64px;
    margin:0 auto 20px;
    background:#e9f7f7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ts-icon i{
    color:#0ea5c6;
    font-size:28px;
}

.ts-item h3{
    font-size:16px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:6px;
}

.ts-item p{
    font-size:15px;
    font-weight: 500;
    line-height:1.6;
    color:#333;
    margin:0;
}

@media(max-width:768px){
    .ts-grid{
        grid-template-columns:1fr;
    }

    .ts-heading h2{
        font-size:28px;
    }
}