/* ==========================================================
   Sri Sai Dental Clinic - Custom Styles
   ========================================================== */

html { scroll-behavior: smooth; }

body {
	font-family: var(--ssd-font-body);
	color: var(--ssd-text);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ssd-font-heading);
	color: var(--ssd-heading);
	font-weight: 700;
}

a { text-decoration: none; color: var(--ssd-blue); transition: 0.25s ease; }
a:hover { color: var(--ssd-navy); }

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

.bg-ice { background: var(--ssd-ice); }

.ssd-eyebrow {
	display: inline-block;
	color: var(--ssd-blue);
	font-weight: 700;
	letter-spacing: 0.5px;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 26px;
}
.ssd-eyebrow::before {
	content: '';
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	width: 18px; height: 3px;
	background: var(--ssd-blue);
	border-radius: 4px;
}

.ssd-section-title { font-size: clamp(1.6rem, 2.4vw, 2.4rem); margin-bottom: 1rem; line-height: 1.25; }
.ssd-section-text { color: var(--ssd-text); font-size: 1.02rem; line-height: 1.75; }
.ssd-section { padding: 70px 0; }
.ssd-section-head { max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }

/* Buttons */
.ssd-btn-primary {
	background: var(--ssd-blue);
	border: 2px solid var(--ssd-blue);
	color: #fff !important;
	font-weight: 600;
	padding: 0.65rem 1.6rem;
	border-radius: 50px;
	transition: 0.25s ease;
}
.ssd-btn-primary:hover { background: var(--ssd-navy); border-color: var(--ssd-navy); color: #fff !important; transform: translateY(-2px); }

.ssd-btn-outline {
	background: transparent;
	border: 2px solid var(--ssd-blue);
	color: var(--ssd-blue) !important;
	font-weight: 600;
	padding: 0.6rem 1.6rem;
	border-radius: 50px;
	transition: 0.25s ease;
}
.ssd-btn-outline:hover { background: var(--ssd-blue); color: #fff !important; }

/* ---------------- Top Bar ---------------- */
.ssd-topbar {
	background: var(--ssd-navy-dark);
	color: #cfe3f2;
	font-size: 0.88rem;
	padding: 8px 0;
}
.ssd-topbar a { color: #cfe3f2; margin-left: 18px; }
.ssd-topbar a:hover { color: var(--ssd-blue-light); }
.ssd-topbar .topbar-left span { margin-right: 22px; }
.ssd-topbar i { color: var(--ssd-blue-light); margin-right: 5px; }

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: #fff !important;
	margin-left: 6px;
	margin-right: 0;
}
.social-icons a:hover { background: var(--ssd-blue); }

/* ---------------- Header / Navbar ---------------- */
.ssd-header {
	background: #fff;
	box-shadow: 0 2px 18px rgba(15, 44, 76, 0.08);
	z-index: 999;
}
.ssd-logo-img { max-height: 62px; width: auto; }
.footer-logo-img { max-height: 56px; filter: brightness(0) invert(1); }

.navbar-nav .nav-link {
	color: var(--ssd-heading);
	font-weight: 600;
	padding: 1.6rem 1rem !important;
	position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--ssd-blue); }

.dropdown-menu {
	border: none;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(15,44,76,0.15);
	padding: 10px;
}
.dropdown-item { border-radius: 8px; padding: 8px 14px; font-weight: 500; }
.dropdown-item:hover { background: var(--ssd-ice); color: var(--ssd-blue); }
.text-primary-ssd { color: var(--ssd-blue) !important; }

@media (min-width: 992px) {
	.dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
}

@media (max-width: 991px) {
	.navbar-nav .nav-link { padding: 0.7rem 0.5rem !important; }
	.navbar-collapse { background: #fff; padding: 15px; border-radius: 12px; margin-top: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
}

/* ---------------- Hero / Banner ---------------- */
.ssd-hero-swiper { width: 100%; }
.ssd-hero-slide {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--ssd-navy);
}
.ssd-hero-fallback { background: linear-gradient(120deg, var(--ssd-navy), var(--ssd-blue)); }
.ssd-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(11,37,66,0.88) 15%, rgba(11,37,66,0.35) 80%);
}
.ssd-hero-content { position: relative; max-width: 620px; color: #fff; padding: 60px 0; }
.ssd-hero-tag {
	display: inline-block; background: rgba(255,255,255,0.12);
	color: var(--ssd-blue-light); padding: 6px 16px; border-radius: 30px;
	font-weight: 600; font-size: 0.9rem; margin-bottom: 16px;
}
.ssd-hero-content h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.ssd-hero-text { color: #dce8f2; font-size: 1.05rem; }

.ssd-hero-swiper .swiper-button-prev,
.ssd-hero-swiper .swiper-button-next { color: #fff; opacity: 0.7; }
.ssd-hero-swiper .swiper-button-prev:hover,
.ssd-hero-swiper .swiper-button-next:hover { opacity: 1; }
.ssd-hero-swiper .swiper-pagination-bullet { background: #fff; opacity: 0.6; }
.ssd-hero-swiper .swiper-pagination-bullet-active { background: var(--ssd-blue-light); opacity: 1; }

/* ---------------- About ---------------- */
.ssd-about-img { width: 100%; object-fit: cover; }
.ssd-stats { text-align: center; }
.ssd-stat-box {
	background: var(--ssd-ice);
	border-radius: var(--ssd-radius);
	padding: 18px 10px;
}
.ssd-stat-box h3 { color: var(--ssd-blue); font-size: 1.8rem; margin-bottom: 2px; }
.ssd-stat-box p { margin: 0; font-size: 0.85rem; color: var(--ssd-text); }

/* ---------------- Why Choose Us ---------------- */
.ssd-feature-card {
	background: #fff;
	border-radius: var(--ssd-radius);
	padding: 30px 26px;
	height: 100%;
	box-shadow: 0 8px 24px rgba(15,44,76,0.06);
	transition: 0.3s ease;
}
.ssd-feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(15,44,76,0.12); }
.ssd-feature-icon {
	width: 56px; height: 56px; border-radius: 16px;
	background: var(--ssd-ice); color: var(--ssd-blue);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.4rem; margin-bottom: 16px;
}
.ssd-feature-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.ssd-feature-card p { font-size: 0.95rem; margin: 0; color: var(--ssd-text); }

/* ---------------- Services / Treatments ---------------- */
.ssd-service-card {
	display: block;
	background: #fff;
	border: 1px solid #eaf1f7;
	border-radius: var(--ssd-radius);
	padding: 28px 22px;
	height: 100%;
	transition: 0.3s ease;
	color: var(--ssd-text);
}
.ssd-service-card:hover { border-color: var(--ssd-blue); box-shadow: 0 16px 32px rgba(15,44,76,0.1); transform: translateY(-6px); }
.ssd-service-icon {
	width: 54px; height: 54px; border-radius: 50%;
	background: var(--ssd-navy); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.3rem; margin-bottom: 16px;
}
.ssd-service-card h5 { color: var(--ssd-heading); font-size: 1.08rem; margin-bottom: 8px; }
.ssd-service-card p { font-size: 0.92rem; margin-bottom: 12px; }
.ssd-service-link { color: var(--ssd-blue); font-weight: 600; font-size: 0.9rem; }

/* ---------------- Doctors ---------------- */
.ssd-doctor-card {
	text-align: center;
	background: #fff;
	border-radius: var(--ssd-radius);
	padding: 26px 18px 22px;
	box-shadow: 0 8px 24px rgba(15,44,76,0.06);
}
.ssd-doctor-photo, .ssd-doctor-placeholder {
	width: 130px; height: 130px; border-radius: 50%;
	overflow: hidden; margin: 0 auto 16px;
	background: var(--ssd-ice);
	display: flex; align-items: center; justify-content: center;
	border: 4px solid var(--ssd-ice);
}
.ssd-doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.ssd-doctor-placeholder i { font-size: 2.4rem; color: var(--ssd-blue); }
.ssd-doctor-card h5 { margin-bottom: 4px; }
.ssd-doctor-designation { font-size: 0.88rem; color: var(--ssd-blue); margin-bottom: 10px; }
.ssd-doctor-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--ssd-ice); color: var(--ssd-blue) !important; margin: 0 3px;
}
.ssd-doctor-social a:hover { background: var(--ssd-blue); color: #fff !important; }

/* ---------------- Gallery ---------------- */
.ssd-gallery-item {
	display: block; position: relative; border-radius: 12px; overflow: hidden;
}
.ssd-gallery-item img { width: 100%; height: 190px; object-fit: cover; transition: 0.4s ease; }
.ssd-gallery-zoom {
	position: absolute; inset: 0;
	background: rgba(11,37,66,0.55);
	display: flex; align-items: center; justify-content: center;
	color: #fff; opacity: 0; transition: 0.3s ease; font-size: 1.4rem;
}
.ssd-gallery-item:hover img { transform: scale(1.08); }
.ssd-gallery-item:hover .ssd-gallery-zoom { opacity: 1; }

/* ---------------- Reviews ---------------- */
.ssd-review-card {
	background: #fff;
	border-radius: var(--ssd-radius);
	padding: 30px;
	box-shadow: 0 8px 24px rgba(15,44,76,0.07);
	height: 100%;
}
.ssd-review-rating { color: var(--ssd-gold); margin-bottom: 14px; }
.ssd-review-text { font-style: italic; color: var(--ssd-text); margin-bottom: 18px; }
.ssd-review-author { display: flex; align-items: center; gap: 12px; }
.ssd-review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.ssd-review-author h6 { margin: 0; }
.ssd-review-author span { font-size: 0.85rem; color: var(--ssd-blue); }

/* ---------------- FAQ ---------------- */
.accordion-button { font-weight: 600; color: var(--ssd-heading); }
.accordion-button:not(.collapsed) { color: var(--ssd-blue); background: var(--ssd-ice); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--ssd-blue); }
.accordion-item { border-radius: 12px !important; overflow: hidden; margin-bottom: 12px; border: 1px solid #eaf1f7 !important; }

.ssd-check-list li { margin-bottom: 8px; }
.ssd-check-list i { color: var(--ssd-blue); margin-right: 8px; }

/* ---------------- Blog Cards ---------------- */
.ssd-blog-card { display: block; background: #fff; border-radius: var(--ssd-radius); overflow: hidden; box-shadow: 0 8px 24px rgba(15,44,76,0.06); height: 100%; color: var(--ssd-text); transition: 0.3s ease; }
.ssd-blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(15,44,76,0.12); }
.ssd-blog-thumb { position: relative; height: 200px; overflow: hidden; background: var(--ssd-ice); }
.ssd-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ssd-blog-date { position: absolute; top: 14px; left: 14px; background: var(--ssd-blue); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: 30px; }
.ssd-blog-body { padding: 20px; }
.ssd-blog-body h5 { font-size: 1.05rem; margin-bottom: 8px; }
.ssd-blog-body p { font-size: 0.92rem; }

/* ---------------- Contact ---------------- */
.ssd-contact-info { background: var(--ssd-navy); border-radius: var(--ssd-radius); padding: 34px; color: #dce8f2; }
.ssd-contact-info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.ssd-contact-info-item i { font-size: 1.3rem; color: var(--ssd-blue-light); margin-top: 4px; }
.ssd-contact-info-item h6 { color: #fff; margin-bottom: 4px; }
.ssd-contact-info-item p, .ssd-contact-info-item a { color: #dce8f2 !important; margin: 0; }
.ssd-contact-map iframe { border-radius: 10px; }

.ssd-contact-form-wrap { background: #fff; border-radius: var(--ssd-radius); padding: 34px; box-shadow: 0 8px 30px rgba(15,44,76,0.08); }
.ssd-contact-form .form-label { font-weight: 600; font-size: 0.92rem; }
.ssd-contact-form .form-control { border-radius: 10px; padding: 0.65rem 0.9rem; border: 1px solid #dbe6ef; }
.ssd-contact-form .form-control:focus { border-color: var(--ssd-blue); box-shadow: 0 0 0 3px rgba(30,155,215,0.15); }
.ssd-form-response { padding: 12px 16px; border-radius: 10px; font-size: 0.92rem; }
.ssd-form-response.success { background: #e5f8ee; color: #1e7d46; }
.ssd-form-response.error { background: #fdecec; color: #b13232; }

/* ---------------- Page Banner ---------------- */
.ssd-page-banner {
	background: linear-gradient(120deg, var(--ssd-navy), var(--ssd-blue));
	color: #fff; padding: 70px 0 50px; text-align: center;
}
.ssd-page-banner h1 { color: #fff; margin-bottom: 10px; }
.ssd-page-banner nav { color: #cfe3f2; font-size: 0.92rem; }
.ssd-page-banner nav a { color: #cfe3f2; }
.ssd-page-banner nav a:hover { color: #fff; }
.ssd-page-banner nav i { margin: 0 6px; font-size: 0.7rem; }

.ssd-page-content { color: var(--ssd-text); line-height: 1.8; }
.ssd-lead { font-size: 1.1rem; color: var(--ssd-heading); font-weight: 600; }

/* ---------------- Treatment single sidebar ---------------- */
.ssd-sidebar-box { background: #fff; border-radius: var(--ssd-radius); padding: 24px; box-shadow: 0 8px 24px rgba(15,44,76,0.06); margin-bottom: 20px; }
.ssd-sidebar-highlight { background: var(--ssd-ice); text-align: center; }

/* ---------------- Post meta / comments ---------------- */
.ssd-post-meta span { margin-right: 18px; color: var(--ssd-blue); font-size: 0.92rem; }
.ssd-post-meta i { margin-right: 6px; }
.widget-title { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--ssd-ice); }

/* ---------------- Pagination ---------------- */
.ssd-pagination { display: flex; justify-content: center; gap: 6px; }
.ssd-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--ssd-heading); border: 1px solid #eaf1f7; font-weight: 600; }
.ssd-pagination .page-numbers.current, .ssd-pagination a.page-numbers:hover { background: var(--ssd-blue); color: #fff; border-color: var(--ssd-blue); }

/* ---------------- Footer ---------------- */
.ssd-footer { background: var(--ssd-navy-dark); color: #b9cede; }
.footer-title { color: #fff; margin-bottom: 18px; font-size: 1.05rem; }
.footer-about { color: #b9cede; font-size: 0.92rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b9cede; font-size: 0.92rem; }
.footer-links a:hover { color: var(--ssd-blue-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--ssd-blue-light); margin-top: 4px; }
.ssd-footer-map iframe { border-radius: 12px; margin-bottom: 30px; filter: grayscale(0.3); }
.ssd-footer-bottom { background: #081b31; padding: 18px 0; font-size: 0.88rem; }
.whatsapp-link { color: #25D366 !important; font-weight: 600; }

/* ---------------- Floating buttons ---------------- */
.ssd-back-to-top {
	position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px;
	background: var(--ssd-blue); color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden; transform: translateY(15px);
	transition: 0.3s ease; z-index: 998;
}
.ssd-back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.ssd-back-to-top:hover { background: var(--ssd-navy); color: #fff; }

.ssd-whatsapp-float {
	position: fixed; bottom: 26px; left: 26px; width: 56px; height: 56px;
	background: #25D366; color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
	box-shadow: 0 8px 20px rgba(37,211,102,0.4); z-index: 998;
}

/* ---------------- Lightbox ---------------- */
.ssd-lightbox-overlay {
	position: fixed; inset: 0; background: rgba(11,37,66,0.92);
	display: flex; align-items: center; justify-content: center;
	z-index: 2000; padding: 20px;
}
.ssd-lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.ssd-lightbox-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; }

/* ---------------- Responsive ---------------- */
@media (max-width: 991.98px) {
	.ssd-hero-slide { min-height: 480px; }
	.ssd-section { padding: 50px 0; }
	.ssd-contact-info { margin-bottom: 0; }
}
@media (max-width: 767.98px) {
	.ssd-hero-content { padding: 40px 0; text-align: center; margin: 0 auto; }
	.ssd-hero-overlay { background: rgba(11,37,66,0.75); }
	.ssd-page-banner { padding: 50px 0 34px; }
	.ssd-topbar { display: none !important; }
}

/* Enhanced blog detail */
.ssd-blog-detail-banner{padding:80px 0 58px}.ssd-blog-detail-banner h1{max-width:850px;margin:8px auto 14px}.ssd-blog-article{background:#fff}.ssd-post-meta-card{display:flex;flex-wrap:wrap;gap:12px 22px;padding:16px 20px;background:var(--ssd-ice);border-radius:12px;margin-bottom:24px!important}.ssd-post-meta-card span{margin:0}.ssd-blog-featured{overflow:hidden;border-radius:20px;margin-bottom:30px;box-shadow:0 16px 40px rgba(15,44,76,.1)}.ssd-blog-featured img{width:100%;max-height:500px;object-fit:cover}.ssd-blog-content{font-size:1.04rem}.ssd-blog-content h2,.ssd-blog-content h3{margin-top:34px;margin-bottom:14px}.ssd-blog-content blockquote{margin:28px 0;padding:22px 26px;background:var(--ssd-ice);border-left:4px solid var(--ssd-blue);border-radius:0 12px 12px 0;font-size:1.08rem}.ssd-blog-content img{border-radius:14px}.ssd-blog-tags{display:flex;gap:8px;flex-wrap:wrap;align-items:center;border-top:1px solid #e8eef3;padding-top:24px;margin-top:30px}.ssd-blog-tags a{background:var(--ssd-ice);padding:6px 12px;border-radius:20px;font-size:.88rem}.ssd-author-box{display:flex;gap:18px;align-items:center;background:linear-gradient(135deg,var(--ssd-ice),#fff);border:1px solid #e7eef5;border-radius:16px;padding:22px;margin-top:28px}.ssd-author-avatar img{border-radius:50%}.ssd-author-box span,.ssd-author-box p{font-size:.9rem;color:var(--ssd-text);margin:0}.ssd-author-box h5{margin:2px 0 5px}.ssd-post-nav{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:28px 0}.ssd-post-nav-item{padding:16px;border:1px solid #e7eef5;border-radius:12px}.ssd-post-nav-item small{display:block;color:var(--ssd-text);margin-bottom:4px}.ssd-post-nav-item a{font-weight:700;color:var(--ssd-heading)}.ssd-blog-sidebar-sticky{position:sticky;top:110px}.ssd-blog-cta{background:linear-gradient(145deg,var(--ssd-navy),var(--ssd-blue));color:#fff}.ssd-blog-cta h4,.ssd-blog-cta .ssd-eyebrow{color:#fff}.ssd-blog-cta p{color:#d9e9f5}.ssd-recent-post{display:flex;gap:12px;align-items:center;padding:12px 0;border-bottom:1px solid #edf1f4}.ssd-recent-post:last-child{border-bottom:0}.ssd-recent-post img{width:72px;height:58px;object-fit:cover;border-radius:8px}.ssd-recent-post strong{display:block;color:var(--ssd-heading);font-size:.9rem;line-height:1.35}.ssd-recent-post small{display:block;color:var(--ssd-text);margin-top:4px}@media(max-width:767px){.ssd-post-nav{grid-template-columns:1fr}.ssd-post-meta-card{gap:10px}.ssd-author-box{align-items:flex-start}}


/* ---------------- Dynamic card imagery ---------------- */
.ssd-feature-image { width: 100%; height: 170px; border-radius: 14px; overflow: hidden; margin-bottom: 18px; background: var(--ssd-ice); }
.ssd-feature-image img, .ssd-service-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ssd-feature-image-placeholder, .ssd-service-image-placeholder { width: 100%; height: 100%; display:flex; align-items:center; justify-content:center; color:var(--ssd-blue); font-size:2rem; background:var(--ssd-ice); }
.ssd-service-image { width: 100%; height: 190px; border-radius: 12px; overflow:hidden; margin-bottom: 18px; background:var(--ssd-ice); }
.ssd-service-card { padding: 18px; }
.ssd-appointment-modal .modal-content { border:0; border-radius:18px; box-shadow:0 20px 60px rgba(15,44,76,.2); }
.ssd-appointment-modal .modal-header { padding:24px 28px 12px; border-bottom:0; }
.ssd-appointment-modal .modal-body { padding:12px 28px 28px; }
.ssd-call-float { position:fixed; right:24px; bottom:90px; width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--ssd-blue); color:#fff !important; box-shadow:0 10px 28px rgba(15,44,76,.22); z-index:1040; font-size:1.15rem; text-decoration:none; }
.ssd-call-float:hover { transform:translateY(-3px); color:#fff !important; }

 /* ---- Doctor card specific styles (extends your existing ssd- system) ---- */

  .ssd-underline{
    position: relative;
    display: inline-block;
  }
  .ssd-underline::after{
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 3px;
    background: var(--ssd-blue);
    border-radius: 4px;
  }

  .ssd-doctor-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 40, 70, 0.08);
  }

  .ssd-doctor-img{
    min-height: 420px;
    background: #eef6fb;
  }
  .ssd-doctor-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ssd-doctor-content{
    padding: 48px 56px;
  }

  .ssd-doctor-name{
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin: 0.35rem 0 0.25rem;
  }

  .ssd-doctor-role{
    color: var(--ssd-text);
    font-weight: 600;
    margin-bottom: 0;
  }

  .ssd-doctor-divider{
    border: none;
    border-top: 1px solid rgba(10, 40, 70, 0.12);
    margin: 18px 0 22px;
  }

  .ssd-doctor-actions{
    margin-top: 28px;
    gap: 12px;
  }

  .ssd-social-icon{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ssd-navy, #0a2846);
    color: #fff;
    border-radius: 8px;
    font-size: 1.05rem;
  }
  .ssd-social-icon:hover{
    background: var(--ssd-blue);
    color: #fff;
  }

  .ssd-btn-primary{
    margin-left: 8px;
    padding: 12px 26px;
    background: var(--ssd-blue);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    white-space: nowrap;
  }
  .ssd-btn-primary:hover{
    background: var(--ssd-navy, #0a2846);
    color: #fff;
  }

  @media (max-width: 991.98px){
    .ssd-doctor-content{ padding: 36px 28px; }
    .ssd-doctor-img{ min-height: 320px; }
  }

  @media (max-width: 575.98px){
    .ssd-doctor-actions{ flex-wrap: wrap; }
    .ssd-btn-primary{ margin-left: 0; margin-top: 12px; }
  }
@media (max-width:575px){ .ssd-call-float { right:16px; bottom:82px; } .ssd-feature-image,.ssd-service-image { height:160px; } .ssd-appointment-modal .modal-header,.ssd-appointment-modal .modal-body { padding-left:18px; padding-right:18px; } }


.second{
	 bottom: 160px;
    background: #12365e;
}   

.ssd-video-section{
  background-color: var(--ssd-ice);
  padding: 60px 0;
  font-family: var(--ssd-font-body);
}
.ssd-video-card{
  background: var(--ssd-white);
  border-radius: var(--ssd-radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(18,54,94,0.08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ssd-video-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(18,54,94,0.18);
}
.ssd-video-thumb-wrap{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ssd-video-thumb{
  position: absolute; top:0; left:0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ssd-play-btn{
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: var(--ssd-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.ssd-video-card:hover .ssd-play-btn{ background: var(--ssd-gold); }
.ssd-video-title{
  font-family: var(--ssd-font-heading);
  color: var(--ssd-heading);
  font-size: 17px;
  padding: 14px 16px;
  margin: 0;
}

/* Modal */
.ssd-video-modal{
  display: none;
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: rgba(11,37,66,0.85);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.ssd-video-modal-inner{
  position: relative;
  width: 90%; max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--ssd-radius);
  overflow: hidden;
}
.ssd-video-close{
  position: absolute; top: -35px; right: 0;
  color: #fff; font-size: 30px; cursor: pointer;
}