:root{
	--color1:#54be95;
	--color2:#213c73;
	--rubik:"Rubik", sans-serif;;
}
.container {
    max-width: 1200px;
}
.hero-slider {
				position: relative;
				overflow: hidden;
				background: #ebfffa;
			}

			.hero-slider .carousel-item {
				padding: 35px 0;
			}

			.hero-subtitle {
				color: var(--color1);
				font-weight: 400;
				letter-spacing: 1px;
				margin-bottom: 10px;
				font-size: 20px;
				font-family: var(--rubik);
			}

			.hero-title {
				font-size: 40px;
				font-weight: 800;
				line-height: 1.2;
				color: var(--color2);
				margin-bottom: 10px;
			}

			.hero-title span {
				color: #31b67a;
			}

			.hero-text {
				font-size: 18px;
				color: #222;
				font-family: var(--rubik);
				line-height: 28px;
				margin-bottom: 20px;
			}

			.doctor-info {
				font-size: 18px;
				font-weight: 700;
				color: black;
				margin-bottom: 2px;
			}

			.doctor-degree1 {
				color: #333;
				font-family: var(--rubik);
				margin-bottom: 15px;
			}

			.hero-btn {
				display: inline-block;
				padding: 14px 30px;
				background: #31b67a;
				color: #fff;
				border-radius: 50px;
				text-decoration: none;
				font-weight: 600;
				transition: 0.3s;
			}

			.hero-btn:hover {
				background: #249764;
				color: #fff;
				text-decoration: none;
			}

			.doctor-image {
				text-align: center;
			}

			.doctor-image img {
				max-width: 80%;
				
				object-fit: contain;
				border-radius: 20px;
			}

			/* Arrows */
			.hero-slider .carousel-control-prev,
			.hero-slider .carousel-control-next {
				width: 45px;
				height: 45px;
				background: #ccfbef;
				border-radius: 50%;
				top: 50%;
				transform: translateY(-50%);
				opacity: 1;
				margin: 0 15px;
				box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
			}

			.hero-slider .carousel-control-prev-icon,
			.hero-slider .carousel-control-next-icon {
				filter: invert(1);
				width: 18px;
				height: 18px;
			}

			@media(max-width:991px) {

	.hero-slider .carousel-item {
		padding: 25px 0;
	}

	.hero-content {
		padding: 20px 60px;
		text-align: center;
	}

	.hero-title {
		font-size: 28px;
		line-height: 1.3;
	}

	.hero-text {
		font-size: 15px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.doctor-info {
		font-size: 16px;
	}

	.doctor-degree1 {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.doctor-image {
		margin-top: 20px;
	}

	.doctor-image img {
		max-height: 320px;
		width: auto;
	}
}

/* Mobile small devices */
@media(max-width:576px) {

	.hero-slider .carousel-item {
		padding: 20px 0;
	}

	.hero-content {
		padding: 15px 10px;
	}

	.hero-title {
		font-size: 22px;
		line-height: 1.4;
	}

	.hero-text {
		font-size: 14px;
		line-height: 22px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.hero-btn {
		padding: 10px 22px;
		font-size: 15px;
	}

	.doctor-info {
		font-size: 18px;
	}

	.doctor-degree1 {
		font-size: 13px;
	}

	.doctor-image img {
		max-height: 290px;
		width: 100%;
		object-fit: contain;
	}
}

/* Optional: better tablet layout balance */
@media(min-width:768px) and (max-width:991px) {

	.hero-content {
		text-align: left;
	}

	.doctor-image {
		text-align: center;
	}
}

.sticky-header .doctor-name{
	font-size: 22px;
}
.sticky-header .doctor-speciality {
    font-size: 15px;
    line-height: 1.2;
    padding-bottom: 5px;
    color:white;
}
.sticky-header .doctor-degree {
    font-size: 11px;
    color:white;
    line-height: 1;
}

	.about-hero {
				position: relative;
				padding: 80px 0px 80px;
				padding-bottom: 0;
				background:
					linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
					url("../images/background/pattern-2.png");
				background-size: cover;
				overflow: hidden;
			}

			/* TOP GLOW */
			.about-hero::before {
				content: "";
				position: absolute;
				width: 500px;
				height: 500px;
				background: linear-gradient(135deg, #0ea5a4, #213c73);
				border-radius: 50%;
				top: -200px;
				right: -100px;
				opacity: 0.08;
				filter: blur(40px);
				animation: floatGlow 8s ease-in-out infinite;
			}

			/* BOTTOM GLOW */
			.about-hero::after {
				content: "";
				position: absolute;
				width: 400px;
				height: 400px;
				background: #0ea5a4;
				border-radius: 50%;
				bottom: -200px;
				left: -100px;
				opacity: 0.06;
				filter: blur(50px);
			}

			/* GLOW ANIMATION */
			@keyframes floatGlow {
				0% {
					transform: translateY(0px);
				}

				50% {
					transform: translateY(25px);
				}

				100% {
					transform: translateY(0px);
				}
			}

			/* CONTENT */
			.about-hero-content {
				position: relative;
				z-index: 2;
			}

			.hero-subtitle {
				color: #54be95;
				font-weight: 700;
				font-size: 15px;
				letter-spacing: 0;
				margin-bottom: 18px;
				text-transform: uppercase;
			}

			.about-hero-content h1 {
				font-size: 36px;
				font-weight: 800;
				line-height: 1.2;
				color: var(--color2);
				margin-bottom: 10px;
			}

			.about-hero-content h1 span {
				color: #54be95;
				display: block;
			}

			.hero-degree {
				font-size: 18px;
				font-weight: 700;
				color: #213c73;
				margin-bottom: 25px;
			}

			.about-hero-content p {
				font-size: 16px;
				line-height: 30px;
				color: #100f0f;
				margin-bottom: 35px;
				font-family: var(--rubik);
			}

			/* HIGHLIGHT BOXES */
			.hero-highlights {
				display: flex;
				gap: 20px;
				flex-wrap: wrap;
				margin-bottom: 35px;
			}

			.highlight-box {
				background: rgba(255, 255, 255, 0.75);
				backdrop-filter: blur(15px);
				border: 1px solid rgba(255, 255, 255, 0.6);
				padding: 10px;
				border-radius: 22px;
				min-width: 130px;
				box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
				transition: 0.4s;
			}

			.highlight-box:hover {
				transform: translateY(-8px);
			}

			.highlight-box h4 {
				font-size: 38px;
				font-weight: 800;
				color: #54be95;
				line-height: 1.1;
				margin-bottom: 5px;
			}

			.highlight-box span {
				font-size: 14px;
				color: #100f0f;
				font-family: var(--rubik);
			}

			/* BUTTONS */
			.hero-btns {
				display: flex;
				align-items: center;
				gap: 18px;
				flex-wrap: wrap;
			}

			.hero-call-btn {
				background: #213c73;
				color: #fff;
				padding: 15px 30px;
				border-radius: 12px;
				font-weight: 600;
				text-decoration: none;
				transition: 0.3s;
			}

			.hero-call-btn:hover {
				background: #54be95;
				color: #fff;
			}

			/* HERO IMAGE */
			.about-hero-image {
				position: relative;
				text-align: center;
				z-index: 2;
			}

			.about-hero-image img {
				width: 100%;
				max-width: 500px;
				position: relative;
				z-index: 2;
				filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.12));
			}

			/* BIG CIRCLE */
			.image-circle {
				position: absolute;
				width: 520px;
				height: 520px;
				background: linear-gradient(135deg, #0ea5a4, #213c73);
				border-radius: 50%;
				top: 50%;
				right: 0;
				transform: translateY(-50%);
				opacity: 0.08;
				z-index: 1;
			}

			/* FLOATING CARDS */
			.floating-card {
				position: absolute;
				background: #fff;
				padding: 16px 22px;
				border-radius: 18px;
				box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
				font-weight: 600;
				z-index: 3;
				animation: floatingCard 4s ease-in-out infinite;
			}

			.card-two {
				animation-delay: 2s;
			}

			@keyframes floatingCard {
				0% {
					transform: translateY(0px);
				}

				50% {
					transform: translateY(-12px);
				}

				100% {
					transform: translateY(0px);
				}
			}

			.floating-card i {
				color: #54be95;
				margin-right: 8px;
			}

			.card-one {
				left: -45px;
				top: 10px;
			}

			.card-two {
				right: 0;
				bottom: 18%;
			}


			@media (max-width: 1199px) {

				.about-hero {
					padding: 70px 0 !important;
				}

				.image-circle {
					width: 420px !important;
					height: 420px !important;
					right: -50px !important;
				}

				.about-hero-content h1 {
					font-size: 30px !important;
					margin-bottom: 0;
				}

				.highlight-box {
					min-width: 120px !important;
					padding: 12px !important;
				}

			}

			@media (max-width: 991px) {

				.about-hero {
					text-align: center !important;
					padding: 60px 0 !important;
				}

				.about-hero-content p {
					max-width: 100% !important;
				}

				.hero-highlights {
					justify-content: center !important;
				}

				.hero-btns {
					justify-content: center !important;
				}

				.about-hero-image {
					margin-top: 40px !important;
				}

				.image-circle {
					width: 350px !important;
					height: 350px !important;
					right: 50% !important;
					transform: translate(50%, -50%) !important;
				}

				.card-one {
					left: 10px !important;
					top: 10% !important;
				}

				.card-two {
					right: 10px !important;
					bottom: 10% !important;
				}

			}

			@media (max-width: 767px) {

				.about-hero {
					padding: 50px 0 !important;
				}

				.about-hero-content h1 {
					font-size: 24px !important;
					line-height: 1.3 !important;
				}

				.hero-degree {
					font-size: 15px !important;
				}

				.about-hero-content p {
					font-size: 15px !important;
					line-height: 28px !important;
				}

				.hero-highlights {
					flex-direction: column !important;
					align-items: center !important;
					gap: 12px !important;
				}

				.highlight-box {
					width: 100% !important;
					max-width: 280px !important;
				}

				.hero-btns {
					flex-direction: column !important;
					width: 100% !important;
				}

				.hero-call-btn {
					width: 100% !important;
					text-align: center !important;
				}

				.about-hero-image img {
					max-width: 90% !important;
				}

				.image-circle {
					width: 260px !important;
					height: 260px !important;
				}

				.floating-card {
					position: relative !important;
					margin: 12px auto !important;
					display: inline-flex !important;
				}

				.card-one,
				.card-two {
					left: auto !important;
					right: auto !important;
					top: auto !important;
					bottom: auto !important;
				}

			}

			@media (max-width: 480px) {

				.about-hero-content h1 {
					font-size: 20px !important;
				}

				.hero-subtitle {
					font-size: 12px !important;
				}

				.highlight-box h4 {
					font-size: 28px !important;
				}

			}


			/* SECTION */
			.news-padding {
				position: relative;
				padding-bottom: 70px !important;
				overflow: hidden;
			}

			/* REMOVE ARROWS */
			.testimonial-carousel .owl-nav {
				display: none !important;
			}

			/* FORCE DOTS BELOW */
			.testimonial-carousel .owl-dots {
				position: absolute !important;
				left: 0;

				right: 0;
				text-align: center;
				width: 100%;
				z-index: 99;
				margin: 0 !important;
			}

			/* DOT */
			.testimonial-carousel .owl-dot {
				width: 12px;
				height: 12px;
				border-radius: 30px;
				background: #ffffff !important;
				margin: 0 6px;
				display: inline-block;
				transition: 0.3s ease;
			}

			/* ACTIVE */
			.testimonial-carousel .owl-dot.active {
				width: 34px;
				border-radius: 30px;
				background: #54be95 !important;
			}

			/* HOVER */
			.testimonial-carousel .owl-dot:hover {
				background: #54be95 !important;
			}

			/* REMOVE BUTTON STYLE */
			.testimonial-carousel .owl-dot:focus {
				outline: none;
				box-shadow: none;
			}

			/* MOBILE */
			@media(max-width:767px) {

				.news-padding {
					padding-bottom: 110px !important;
				}

				.testimonial-carousel .owl-dots {
					bottom: -55px;
				}

				.testimonial-carousel .owl-dot {
					width: 10px;
					height: 10px;
					margin: 0 4px;
				}

				.testimonial-carousel .owl-dot.active {
					width: 24px;
				}

			}

			.serpg{
				padding: 70px 0;
			}

			.services-widget {
    background: #edfff6;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.services-widget .widget-title {
    margin-bottom: 20px;
}

.services-widget .widget-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color2);
    margin: 0;
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li a {
    display: block;
    padding: 12px 15px;
    background: #ffffff;
    color: #000;
    font-size: 18px;
    font-family: var(--rubik);
    font-weight: normal;
    text-decoration: none;
    border-radius: 6px;
    border-left: 4px solid var(--color1);
    transition: all 0.3s ease;
}

.services-list li a:hover,
.services-list li a.active {
    background: var(--color1);
    color: #fff;
    transform: translateX(5px);
}
.sertext h1{
	font-size: 2.2rem;
	margin: 0;
	color: var(--color2);
	line-height: 1;
	padding-bottom: 1.5rem;
}
.sertext h2{
	font-size: 1.6rem;
	margin: 0;
	color: var(--color1);
	line-height: 1;
	margin:16px 0;
	padding: 5px 0;
	margin-top: 30px;
	position: relative;
	padding-left: 25px;

}
.sertext h2:before{
	position: absolute;
	content: '';
	width: 4px;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--color1);
}
.sertext p{
	font-size: 16px;
	font-family: var(--rubik);
}
.sertext ul li{
	padding-bottom: 10px;
	font-size: 16px;
	font-family: var(--rubik);
	position: relative;
	padding-left: 35px;
}
.sertext ul li img{
	width: 20px;
	margin-right: 5px;
	position: absolute;
	left: 0;
	top: 8px;
}
.sertext h3{
	font-size: 1rem;
	color: #222;
	font-weight: 700;
}
.faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question span {
    float: right;
    font-size: 22px;
    line-height: 1;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #fff;
    line-height: 1.7;
    font-weight: normal;
    font-family: var(--rubik);
}

.faq-item.active .faq-question {
    background: var(--color2);
    color: #fff;
    font-family: var(--rubik);
}

.faq-item.active .faq-question span {
    content: "-";
}

.sticky-sidebar{
    position: sticky;
    top: 120px; /* Header height */
    z-index: 9;
}
@media (max-width: 991px){
    .sticky-sidebar{
        position: relative;
        top: 0;
    }
}
.three-item-carousel .owl-nav .owl-prev{
   font-size: 25px;
   color: #333;
   line-height: 5px;
   padding: 0;
}
.three-item-carousel .owl-nav .owl-next{
   font-size: 25px;
   color: #333;
   line-height: 5px;
   padding: 0;
}
.hospitalpg{
	padding: 5rem 0;
}
.tagline p{
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: var(--rubik);
	font-size: 16px;
}

	/* =========================
HOSPITAL BUTTONS
========================= */

			.hospital-btns {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 12px;
				margin-top: 20px;
				width: 100%;
			}

			/* MAIN BUTTON */
			.hospital-main-btn {
				flex: 1;
				height: 52px;
				border-radius: 10px;
				position: relative;
				overflow: hidden;
				padding: 0 !important;
				min-width: 0;
			}

			/* BUTTON WRAP */
			.hospital-main-btn .btn-wrap {
				position: relative;
				width: 100%;
				height: 100%;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			/* HIDE SECOND TEXT */
			.hospital-main-btn .text-two {
				display: none !important;
			}

			/* TEXT STYLE */
			.hospital-main-btn .text-one {
				position: relative !important;
				left: auto !important;
				top: auto !important;
				transform: none !important;
				display: flex !important;
				align-items: center;
				justify-content: center;
				gap: 5px;
				width: 100%;
				height: 100%;
				font-size: 13px;
				font-weight: 700;
				color: #ffffff !important;
				white-space: nowrap;
				padding: 0 14px;
				opacity: 1 !important;
				visibility: visible !important;
			}

			/* ICON */
			.hospital-main-btn i {
				font-size: 16px;
			}

			/* LOCATION BUTTON */
			.hospital-main-btn.btn-style-one {
				background: var(--color2);
			}

			/* APPOINTMENT BUTTON */
			.hospital-book-btn {
				background: #54be95 !important;
			}

			.hospital-book-btn:hover {
				background: #213c73 !important;
			}

			/* MOBILE */
			@media(max-width:767px) {

				.hospital-btns {
					gap: 8px;
				}

				.hospital-main-btn {
					height: 44px;
				}

				.hospital-main-btn .text-one {
					font-size: 11px;
					padding: 0 8px;
					gap: 5px;
				}

				.hospital-main-btn i {
					font-size: 11px;
				}

			}
		.hospitalpg .testimonial-block{
			margin-top: 30px;
			margin-bottom: 0;
		}
		.hospitalpg .testimonial-block .inner-box .text{
			margin-bottom: 0;
		}

.reviewpg{
padding: 4rem 0;
		}
		.tbox{
			margin-top: 40px;
		}
		.tbox h2{
			font-size: 24px;
			color: white;
			font-weight: 600;
			font-family: var(--rubik);
			padding: 7px 18px;
			display: inline-block;
			background: var(--color1);
			margin-left: 20px;
		}
		.tboxtext{
			padding: 30px;
			border-radius: 20px;
			background: #f0f5ff;
			position: relative;
		}
		.tboxtext h3{
			font-size: 20px;
			color:var(--color2);
			font-weight: 700;
			padding-bottom: 5px;
		}
		.tboxtext p{
			font-size: 16px;
			font-family: var(--rubik);
			color: black;
			line-height: 1.8;
			text-align: justify;
			margin-bottom: 0;
		}
		.tboxtext i{
			font-size: 22px;
			position: absolute;
			background: var(--color1);
			border-radius: 100%;
			top: 10px;
			right: 10px;
			padding: 10px;
			color: white;
		}
		.rbanner{
			margin-top: 40px;
		}
		.rbanner img{
			transition: 0.3s ease;
		}
		.rbanner:hover img{
			transform: scale(1.02);
		}
		.cm{
			font-size: 68px;
			text-align: center;
			color: var(--color1);
		}

