:root {
	--primary: #0077B6;
	--secondary: #00B4D8;
	--accent: #48CAE4;
	--dark: #0b1f33;
	--muted: #6b7a8f;
	--soft: #f4f9fc;
	--white: #fff;
	--shadow: 0 20px 60px rgba(0, 119, 182, .14);
	--radius: 24px
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px
}

body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
	color: var(--dark);
	background: #fff;
	overflow-x: hidden
	
}

a {
	text-decoration: none;
	color: inherit
}

.top-header {
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	color: #fff;
	padding: 10px 0;
	font-size: 14px
}

.top-info {
	display: flex;
	gap: 24px;
	flex-wrap: wrap
}

.top-info i,
.social-icons i {
	margin-right: 7px
}

.social-icons a {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	margin-left: 7px;
	transition: .3s
}

.social-icons a:hover {
	background: #fff;
	color: var(--primary);
	transform: translateY(-3px)
}

.main-nav {
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 35px rgba(15, 45, 75, .08)
}

.navbar-brand {
	font-weight: 800;
	color: var(--primary) !important;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px
}

.brand-icon {
	width: 30px;
	height: 30px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff
}

.nav-link {
	font-weight: 600;
	color: #1f3448 !important;
	margin: 0 3px;
	position: relative
}

.nav-link:after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 4px;
	height: 2px;
	background: var(--secondary);
	transform: scaleX(0);
	transition: .3s
}

.nav-link:hover:after,
.nav-link.active:after {
	transform: scaleX(1)
}

.nav-cta {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff !important;
	border-radius: 999px;
	padding: 9px 18px !important
}

.nav-cta:after {
	display: none
}

.section-padding {
	padding: 95px 0
}

.soft-bg {
	background: var(--soft)
}

.glass-card {
	background: rgba(255, 255, 255, .76);
	border: 1px solid rgba(255, 255, 255, .65);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
	border-radius: var(--radius)
}

.hero-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fdff 0%, #eaf8ff 54%, #fff 100%)
}

.hero-bg:before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(72, 202, 228, .22);
	right: -120px;
	top: 80px;
	filter: blur(10px)
}

.min-vh-90 {
	min-height: 90vh
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--primary);
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 700;
	box-shadow: 0 14px 40px rgba(0, 119, 182, .12);
	margin-bottom: 20px
}

.hero-section h1 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 20px
}

.hero-subtitle {
	font-size: 16px;
	color: var(--muted);
	max-width: 620px;
	margin-bottom: 32px
}

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

.btn-primary-custom,
.btn-outline-custom {
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	transition: .3s
}

.btn-primary-custom {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border: none;
	color: #fff;
	box-shadow: 0 16px 35px rgba(0, 119, 182, .25)
}

.btn-primary-custom:hover {
	transform: translateY(-3px);
	color: #fff;
	box-shadow: 0 22px 45px rgba(0, 119, 182, .33)
}

.btn-outline-custom {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: #fff
}

.btn-outline-custom:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-3px)
}

.hero-trust {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 26px;
	color: #24445f;
	font-weight: 600
}

.hero-trust i {
	color: var(--secondary)
}

.hero-image-card {
	position: relative;
	padding: 16px
}

.hero-image-card img {
	border-radius: 20px;
	width: 100%;
	height: 370px;
	object-fit: cover
}

.floating-card {
	position: absolute;
	left: -10px;
	bottom: 55px;
	background: #fff;
	border-radius: 18px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: var(--shadow)
}

.floating-card i {
	font-size: 28px;
	color: var(--primary)
}

.floating-card span {
	display: block;
	color: var(--muted);
	font-size: 13px
}

.section-title {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px
}

.section-title span,
.appointment-content span {
	color: var(--secondary);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 13px
}

.section-title h2,
.appointment-content h2 {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	margin: 10px 0 12px
}

.section-title p {
	color: var(--muted);
	font-size: 17px
}

.doctor-photo-wrap {
	position: relative
}

.doctor-photo {
	border-radius: 30px;
	box-shadow: var(--shadow);
	width: 100%;
	/* height: 620px; */
	object-fit: cover
}

.experience-tag {
	position: absolute;
	right: 20px;
	bottom: 20px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	border-radius: 20px;
	padding: 18px 22px;
	text-align: center;
	box-shadow: var(--shadow)
}

.experience-tag strong {
	font-size: 38px;
	display: block
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px
}

.about-grid>div,
.achievement-box,
.service-card,
.why-card,
.treatment-card,
.blog-card,
.testimonial-card,
.counter-card {
	background: #fff;
	border-radius: 22px;
	padding: 24px;
	box-shadow: 0 12px 40px rgba(7, 37, 63, .08);
	border: 1px solid rgba(0, 119, 182, .08);
	transition: .35s
}

.about-grid i,
.service-card i,
.why-card i {
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 14px
}

.about-grid strong {
	display: block;
	margin-bottom: 7px
}

.about-grid p,
.achievement-box p {
	color: var(--muted);
	margin: 0
}

.achievement-box {
	margin-top: 18px
}

.counter-card {
	text-align: center
}

.counter-card span,
.counter-card b,
.stat-item span,
.stat-item b {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary)
}

.counter-card p,
.stat-item p {
	color: var(--muted);
	font-weight: 700;
	margin: 5px 0 0
}

.service-card {
	height: 100%;
	position: relative;
	overflow: hidden
}

.service-card:before {
	content: "";
	position: absolute;
	inset: auto -40px -60px auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(72, 202, 228, .12);
	transition: .35s
}

.service-card:hover,
.why-card:hover,
.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow)
}

.service-card:hover:before {
	transform: scale(1.5)
}

.service-card h3,
.why-card h3 {
	font-size: 20px;
	font-weight: 800
}

.service-card p,
.why-card p,
.blog-card p {
	color: var(--muted)
}

.why-card {
	text-align: center;
	height: 100%
}

.treatment-card {
	padding: 0;
	overflow: hidden;
	position: relative
}

.treatment-card img {
	height: 260px;
	width: 100%;
	object-fit: cover;
	transition: .45s
}

.treatment-card:hover img {
	transform: scale(1.08)
}

.treatment-card .content {
	padding: 22px
}

.treatment-card h3 {
	font-size: 20px;
	font-weight: 800
}

.appointment-section {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	position: relative;
	overflow: hidden
}

.appointment-content p,
.appointment-content li {
	color: rgba(255, 255, 255, .88)
}

.appointment-content ul {
	padding: 0;
	list-style: none
}

.appointment-content li {
	margin: 13px 0;
	font-weight: 600
}

.appointment-content i {
	margin-right: 10px;
	color: #caf0f8
}

.appointment-form {
	padding: 34px
}

.form-control,
.form-select {
	height: 54px;
	border: 1px solid rgba(0, 119, 182, .15);
	border-radius: 14px;
	padding: 12px 16px
}

.form-control:focus,
.form-select:focus {
	box-shadow: 0 0 0 .22rem rgba(0, 180, 216, .18);
	border-color: var(--secondary)
}

textarea.form-control {
	height: auto
}

.form-status {
	font-weight: 700;
	margin: 0
}

.testimonial-card {
	margin: 12px;
	height: auto
}

.testimonial-head {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 18px
}

.testimonial-head img {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	object-fit: cover
}

.stars {
	color: #ffb703
}

.swiper-pagination-bullet-active {
	background: var(--primary)
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: var(--shadow)
}

.gallery-item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: .4s
}

.gallery-item:hover img {
	transform: scale(1.08)
}

.gallery-item span {
	position: absolute;
	left: 18px;
	bottom: 18px;
	background: rgba(255, 255, 255, .9);
	padding: 8px 13px;
	border-radius: 999px;
	font-weight: 800;
	color: var(--primary)
}

.stats-section {
	padding: 70px 0;
	background: linear-gradient(135deg, #023e8a, var(--primary));
	color: #fff
}

.stat-item span,
.stat-item b,
.stat-item p {
	color: #fff
}

.custom-accordion {
	max-width: 900px;
	margin: auto
}

.accordion-item {
	border: 0;
	margin-bottom: 14px;
	border-radius: 16px !important;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(7, 37, 63, .08)
}

.accordion-button {
	font-weight: 800;
	padding: 20px
}

.accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff
}

.accordion-button:focus {
	box-shadow: none
}

.blog-card {
	height: 100%;
	overflow: hidden;
	padding: 0
}

.blog-card img {
	width: 100%;
	height: 230px;
	object-fit: cover
}

.blog-card .content {
	padding: 24px
}

.blog-card h3 {
	font-size: 21px;
	font-weight: 800
}

.read-more {
	color: var(--primary);
	font-weight: 800
}

.contact-section{
    background:#f8fafc;
}

.section-title .sub-title{
    display:inline-block;
    color:#0d6efd;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#6c757d;
}

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding-bottom:20px;
    margin-bottom:20px;
    border-bottom:1px solid #ececec;
}

.contact-item:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.contact-item .icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-item h5{
    margin-bottom:6px;
    font-size:18px;
    font-weight:600;
}

.contact-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.contact-item a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

.map-wrap{
    height:100%;
    min-height:550px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.map-wrap iframe{
    width:100%;
    height:100%;
    min-height:550px;
    border:none;
}

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

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

    .map-wrap,
    .map-wrap iframe{
        min-height:400px;
    }
}

/* Mobile */
@media (max-width:767px){

    .contact-section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .contact-card{
        padding:20px;
    }

    .contact-item{
        gap:12px;
    }

    .contact-item .icon{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:16px;
    }

    .contact-item h5{
        font-size:16px;
    }

    .contact-item p{
        font-size:14px;
    }

    .map-wrap,
    .map-wrap iframe{
        min-height:300px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .section-title h2{
        font-size:24px;
    }

    .contact-card{
        padding:15px;
    }

    .map-wrap,
    .map-wrap iframe{
        min-height:250px;
    }
}

@media (max-width:767px){
    .container{
        padding-left:15px;
        padding-right:15px;
    }
}
/* 
.contact-card {
	padding: 30px
}

.contact-item {
	display: flex;
	gap: 16px;
	margin-bottom: 24px
}

.contact-item i {
	min-width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(0, 180, 216, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 22px
}

.contact-item p {
	margin: 5px 0 0;
	color: var(--muted)
}

.map-wrap iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 24px;
	box-shadow: var(--shadow)
} */

.footer {
	background: #071d2f;
	color: #d9e9f2;
	padding: 70px 0 0
}

.footer h3,
.footer h4 {
	color: #fff;
	font-weight: 800;
	margin-bottom: 18px
}

.footer a {
	display: block;
	color: #d9e9f2;
	margin-bottom: 10px;
	transition: .3s
}

.footer a:hover {
	color: var(--accent);
	padding-left: 4px
}

.footer-social a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	padding: 0
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 50px;
	padding: 22px 0;
	text-align: center;
	color: #9bb6c6
}

.whatsapp-float,
#scrollTop {
    position: fixed;
    right: 22px;
    border: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    font-size: 28px;
    bottom: 86px;
    text-decoration: none;
}

.whatsapp-float i {
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 15px !important;
        bottom: 75px !important;
        width: 56px;
        height: 56px;
        display: flex !important;
    }
}


/* .whatsapp-float,
#scrollTop {
	position: fixed;
	right: 22px;
	border: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .18)
} */

/* .whatsapp-float {
	bottom: 86px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	font-size: 28px
} */

.sticky-appointment {
	position: fixed;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	z-index: 999;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	padding: 13px 24px;
	border-radius: 999px;
	font-weight: 800;
	box-shadow: 0 15px 40px rgba(0, 119, 182, .35)
}

#scrollTop {
	bottom: 22px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: .3s
}

#scrollTop.show {
	opacity: 1;
	visibility: visible
}

@media(max-width:991px) {
	.section-padding {
		padding: 70px 0
	}

	.hero-image-card img,
	.doctor-photo {
		height: 460px
	}

	.about-grid {
		grid-template-columns: 1fr
	}

	.navbar-collapse {
		padding: 18px 0
	}

	.sticky-appointment {
		display: none
	}
}

@media(max-width:575px) {
	.hero-buttons {
		display: grid
	}

	.hero-image-card img,
	.doctor-photo {
		/* height: 360px */
	}

	.appointment-form {
		padding: 22px
	}

	.counter-card span,
	.counter-card b,
	.stat-item span,
	.stat-item b {
		font-size: 25px																																																																																																																																																																																																																																																																																																																																																
	}

	.floating-card {
		left: 10px;
		bottom: 30px
	}

	/* .whatsapp-float {
		right: 15px;
		bottom: 75px
	} */
}

/* whychose us */

        .why-choose{
            padding:100px 0;
        }

        .section-subtitle{
            color:#00a7e1;
            font-size:13px;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:1px;
            margin-bottom:10px;
        }

        .section-title{
            font-size:48px;
            font-weight:700;
            color:#14253d;
            margin-bottom:50px;
        }

        .feature-card{
            background:#fff;
            border-radius:16px;
            padding:35px 20px;
            text-align:center;
            height:100%;
            border:1px solid #e9eef4;
            transition:all .3s ease;
            box-shadow:0 3px 12px rgba(0,0,0,0.05);
        }




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

        .feature-icon{
            font-size:28px;
            color:#0087d1;
            margin-bottom:15px;
        }

        .feature-card h5{
            font-size:20px;
            font-weight:700;
            color:#1c2940;
            margin-bottom:10px;
        }

        .feature-card p{
            color:#7a869a;
            font-size:14px;
            line-height:1.8;
            margin-bottom:0;
        }

        @media(max-width:768px){
            .section-title{
                font-size:32px;
            }
        }

        /* treatment */
        
.treatment-section{
    background:#f5f8fb;
    padding:100px 0;
}

.section-subtitle{
    color:#00a7e6;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title{
    font-size:30px;
    font-weight:800;
    color:#14253d;
    line-height:1.15;
    margin-bottom:70px;
}

.treatment-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
}

.treatment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.treatment-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h4{
    font-size:20px;
    font-weight:700;
    color:#1a2b45;
    margin-bottom:10px;
}

.card-content a{
    color:#0077cc;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
}

.card-content a:hover{
    color:#00a7e6;
}

@media(max-width:991px){
    .section-title{
        font-size:42px;
    }
}

@media(max-width:768px){
    .section-title{
        font-size:34px;
    }
}

/* gallery section */

.gallery-section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0084bd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.masonry-gallery{
    column-count:3;
    column-gap:20px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    margin-bottom:20px;
    break-inside:avoid;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-card img{
    width:100%;
    display:block;
    transition:.6s ease;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );
    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transition:.4s;
}

.gallery-content{
    color:#fff;
    transform:translateY(30px);
    transition:.4s;
}

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

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover .gallery-content{
    transform:translateY(0);
}

.gallery-content h5{
    font-weight:700;
    margin-bottom:5px;
}

.gallery-content p{
    margin:0;
    opacity:.9;
}

@media(max-width:991px){
    .masonry-gallery{
        column-count:2;
    }
}

@media(max-width:576px){
    .masonry-gallery{
        column-count:1;
    }

    .section-title h2{
        font-size:27px;
    }
}

/* about us page */
/* =========================
ABOUT PAGE CSS
========================= */

.about-page-banner{
    background: linear-gradient(135deg,#0d3b66,#1d6fa5);
    padding:120px 0 100px;
    position:relative;
    overflow:hidden;
}

.about-page-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-150px;
    right:-150px;
}

.about-banner-content{
    max-width:850px;
    color:#fff;
    position:relative;
    z-index:2;
}

.about-tag{
    display:inline-block;
    background:#ffffff1a;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-banner-content h1{
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.about-banner-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.about-banner-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.doctor-about-image{
    position:relative;
}

.doctor-about-image img{
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.experience-badge{
    position:absolute;
    bottom:20px;
    right:20px;
    background:#fff;
    padding:20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.experience-badge h3{
    font-size:40px;
    color:#0084bd;
    margin-bottom:0;
}

.experience-badge span{
    font-size:14px;
    font-weight:600;
}

.doctor-info-card p{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.qualification-section,
.membership-section,
.experience-section{
    padding:90px 0;
    background:#f8fbff;
}

.qualification-card,
.expertise-card,
.membership-card,
.experience-box{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:0.4s;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.qualification-card:hover,
.expertise-card:hover,
.membership-card:hover,
.experience-box:hover{
    transform:translateY(-10px);
}

.qualification-card i,
.expertise-card i,
.membership-card i{
    font-size:45px;
    color: #128cc1;
    margin-bottom:20px;
}

.qualification-card h4,
.expertise-card h5,
.membership-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.expertise-card{
    padding:30px;
}

.expertise-card h5{
    margin:0;
}

.experience-box{
    text-align:left;
}

.experience-box h4{
    font-weight:700;
    margin-bottom:20px;
    color:#0d3b66;
}

.experience-box ul{
    padding-left:20px;
}

.experience-box ul li{
    margin-bottom:15px;
    line-height:1.7;
}

.academic-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.academic-highlights{
    margin-top:30px;
}

.academic-highlights div{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    font-weight:600;
}

.academic-highlights i{
    width:50px;
    height:50px;
    background:#0084bd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:991px){

    .about-banner-content h1{
        font-size:40px;
    }

}

@media(max-width:767px){

    .about-page-banner{
        padding:90px 0 70px;
    }

    .about-banner-content h1{
        font-size:32px;
    }

    .about-banner-content p{
        font-size:16px;
    }

    .experience-badge{
        padding:15px;
    }

    .experience-badge h3{
        font-size:28px;
    }

}


/* responsive update */
/* ========================= */
/* MOBILE RESPONSIVE FIX */
/* ========================= */



img{
    max-width:100%;
    height:auto;
}

.treatment-section{
    overflow:hidden;
}

.treatment-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.treatment-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-content{
    padding:25px 20px;
}

.card-content h4{
    font-size:22px;
    margin-bottom:15px;
    line-height:1.4;
}

.card-content p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:0;
}

@media(max-width:991px){

    .section-title{
        font-size:32px;
        line-height:1.4;
    }

    .treatment-card img{
        height:220px;
    }

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

@media(max-width:767px){

    .treatment-section{
        padding:60px 0;
    }

    .section-title{
        font-size:28px;
    }

    .section-subtitle{
        font-size:14px;
    }

    .card-content h4{
        font-size:20px;
    }

    .card-content p{
        font-size:14px;
    }

    .btn-primary-custom{
        width:100%;
        max-width:280px;
    }
}

@media(max-width:576px){

    .section-title{
        font-size:24px;
    }

    .treatment-card img{
        height:200px;
    }

    .card-content{
        padding:18px;
    }

    .card-content h4{
        font-size:18px;
    }

    .card-content p{
        font-size:13px;
        line-height:1.7;
    }
}