@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}
body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
}
html, body {
  overflow-x: hidden;
}
a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none !important;
}
.hero {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero1 {
    position: relative;
    background: url(../images/hero-inner.png) center center / cover no-repeat;
    height: 65vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.hero1::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0 0 0 / 66%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	margin-top: 65px;
}

.hero h1 {
	font-weight: 700;
	
	font-size: clamp(2rem, 4vw + 1rem, 5rem);
	margin-top:5rem;
}
.hero1 h1 {
    font-weight: 400;
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
}


.hero p {
	font-size: 1.5rem;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}
.hero1 p {
	font-size: 1rem;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}
.btn-appointment {
	font-weight: 500;
	background-color: black;
	color: white;
	border: none;
	padding: 15px 20px;
	border-radius: 0px !important;
	
}

.btn-appointment:hover {
	background-color: #60605f;
	transition: all 0.5s ease-in;
}



.custom-navbar {
	background-color: rgb(0 0 0 / 98%);
	padding: 1rem 0;
	font-family: 'Poppins', sans-serif;
}

.custom-navbar .nav-link {
	color: #fff !important;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 10px;
	letter-spacing: 0.5px;
	font-size: 17px;
}
.navbar-nav .nav-item.active .nav-link {
	color: #000000 !important;
    font-weight: 600;
    padding: 10px 22px 10px 22px !important;
    border-radius: 50px !important;
    background: #605e5d;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
	color: #615e5d !important;
	
	transition: all 0.5s ease-in;
}

.dropdown-menu-dark {
	background-color: #222;
	border: none;
	font-size: 16px;
}

.dropdown-menu {
	background-color: #222;
	border: none;
	font-size: 16px;
	width: fit-content;
}

Hide Bootstrap default caret
.custom-toggle::after {
	display: none !important;
}


.dropdown-arrow {
	display: inline-block;
	margin-left: 6px;
	width: 0;
	height: 0;
	vertical-align: middle;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff; 
	transition: transform 0.3s ease;
}

Rotate arrow when dropdown is open
.nav-item.dropdown.show .dropdown-arrow {
	transform: rotate(180deg);
}

.about-us-section {
	padding: 80px 20px;
	background-color: #fff;
	color: #333;
	font-family: 'Poppins', sans-serif;
}

.about-us-section .heading {
	font-size: 3.75rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.about-us-section .subheading {
	font-size: 1.4rem;
	color: #615e5d;
	font-weight: 400;
	margin-bottom: 40px;
}

.about-us-section .description {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.btn-read-more {
	display: inline-block;
	margin-top: 20px;
	padding: 15px 20px;
	background-color: #000;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	
	transition: background-color 0.3s ease;
}

.btn-read-more .arrow-icon {
	margin-left: 10px;
	font-size: 18px;
}

.btn-read-more:hover {
	background-color: #60605f;
	transition: all 0.5s ease-in;
}

.our-services {
	background-color: #f5f7f9;
	padding: 80px 20px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
}

.section-subtitle {
	font-size: 18px;
	color: #555;
	margin-bottom: 50px;
	line-height: 1.6;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* Force exactly 3 columns */
	gap: 30px;
	margin-bottom: 40px;
}

.service-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
}

.service-item img {
	width: 100%;
	height: auto;
	display: block;
}

.service-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0px;
	background-color: #edf0f2;
	position: relative;
	cursor: pointer;
}
.service-number {
	font-size: 5rem;
	color: rgba(0, 0, 0, 0.05);
	position: absolute;
	left: 0px;
	font-weight: 500;
	z-index: 0;
}
.service-content h3 {
	font-size: 1.4rem;
	font-weight: 500;
	color: #111;
	margin: 0;
}

.arrow-button {
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	width: 28px;
	height: 28px;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	transition: background-color 0.3s ease;
}

.arrow-button:hover {
	background-color: #333;
}

.view-all-button {
	background-color: #000;
	color: #fff;
	padding: 15px 20px;
	text-decoration: none;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s ease;
}

.view-all-button .arrow-icon {
	margin-left: 10px;
	font-size: 18px;
}

.view-all-button:hover {
	background-color: #60605f;
	transition: all 0.5s ease-in;
}
@media (max-width: 992px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr); /* 2 items per row for tablets */
	}
	.hero p {
		font-size: 1.6rem;
		margin-top: 1rem;
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 576px) {
	.services-grid {
		grid-template-columns: 1fr; /* 1 item per row for mobile */
	}
}




.insurance-section {
	background-color: #000;
	color: #fff;
	padding: 0px 0px; /* Add padding for overall section */
}



.insurance-wrapper {
	display: flex;
	flex-wrap: wrap; /* Allows items to wrap on smaller screens */
	gap: 30px; /* Adds space between text and images */
	align-items: stretch;
	min-height: 500px;
}

/* Left Side - Text Content */
.insurance-text {
	flex: 1;
	min-width: 300px; /* Ensures text block doesn't get too small */
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 40px;
}

.insurance-text h2 {
	font-size: 2.8rem; /* Adjusted for better responsiveness */
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	margin-left: 2rem;
}

.insurance-text p {
	font-size: 1.1rem; /* Adjusted for better responsiveness */
	line-height: 1.8;
	margin-bottom: 25px;
	color: #ccc;
	margin-left: 2rem;
	max-width: 600px;
}

.btn-readmore {
	background: #333;
	color: #fff;
	padding: 15px 20px;
	text-decoration: none;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 0px !important;
	transition: 0.3s;
	width: fit-content;
	margin-left: 2rem;
}
.btn-readmore1 {
	background: #000;
	color: #fff;
	padding: 15px 20px;
	text-decoration: none;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 0px !important;
	transition: 0.3s;
	width: fit-content;
	margin-left: 2rem;
	border:none !important;
}
.btn-readmore:hover {
	background: #666;
}
.btn-readmore1:hover {
	background: #666;
}

/* Right Side - Images */
.insurance-images {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 400px; /* Ensure images have a minimum height */
}

.image-box {
	flex: 1;
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 200px; /* Minimum height for each image box */
}

.vision {
	background-image: url('<?php echo get_template_directory_uri(); ?>/images/vision-insurance.png');
}

.medical {
	background-image: url('<?php echo get_template_directory_uri(); ?>/images/medical-insurance.png');
}

.overlay {
	background-color: rgb(0 0 0 / 81%);
	color: #fff;
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	padding: 30px;
}

.overlay h3 {
	font-size: 2.5rem; /* Adjusted for better responsiveness */
	font-weight: 600;
	margin: 0 0 10px;
	margin-left: 60px;
}

.overlay p {
	font-size: 1.5rem; /* Adjusted for better responsiveness */
	margin: 0;
	margin-left: 60px;
}

.icon1 {
	position: absolute;
	top: 50%;
	right: 60px;
	width: 60px;
	height: 60px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: rotate(45deg);
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	color: #fff !important;
}

.icon1:hover {
	transform: rotate(-45deg);
}
@media (max-width: 1200px) {
	.icon {
		top: 50%; /* Remove top positioning */
		bottom: unset; /* Position from bottom */
		right: 5px; /* Position from right */
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
	.overlay h3,
	.overlay p {
		margin-left: 0px !important; /* Remove left margin for centered text */
	}
	.overlay h3 {
    font-size: 2rem !important;
    font-weight: 600;
    margin: 0 0 10px;
 
}
	.overlay p 
	{
    font-size: 1rem;
    margin: 0;
}
	.insurance-text h2 {
		font-size: 2.4rem;align-content
	}
}
/* --- Tablet & Mobile Responsive --- */
@media (max-width: 1024px) {
	.insurance-wrapper {
		flex-direction: column; /* Stack items vertically */
		height: auto; /* Allow height to adjust based on content */
		gap: 40px; /* More space between stacked sections */
	}
	
	.insurance-text {
		padding-right: 0; /* Remove padding for stacked layout */
		text-align: center; /* Center text */
	}
	
	.insurance-text h2 {
		font-size: 2.2rem; /* Further adjustment for tablets */
		padding-top: 50px;
		
	}
	
	.insurance-text p {
		font-size: 1rem;
		line-height: 1.5;
		margin-left: 200px !important;
	}
	
	.btn-readmore {
		margin: 0 auto; /* Center the button */
	}
	
	.insurance-images {
		width: 100%;
		min-height: auto; /* Reset min-height for mobile */
	}
	
	.image-box {
		height: 280px; /* Fixed height for image boxes on tablets */
	}
	
	.overlay {
		align-items: center; /* Center overlay content */
		text-align: center; /* Center overlay text */
		padding: 20px;
	}
	
	.overlay h3,
	.overlay p {
		margin-left: 0px !important; /* Remove left margin for centered text */
	}
	
	.overlay h3 {
		font-size: 2rem;
	}
	
	.overlay p {
		font-size: 1.2rem;
	}
	
	.icon {
		top: 40%; /* Remove top positioning */
		bottom: unset; /* Position from bottom */
		right: 15px; /* Position from right */
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
}
@media (max-width: 992px) {
	.insurance-text p {
		font-size: 0.95rem;
		margin-left: 120px !important;
	}
}
@media (max-width: 768px) {
	.insurance-section {
		
	}
	
	.insurance-text h2 {
		font-size: 2rem;
	}
	
	.insurance-text p {
		font-size: 0.95rem;
		margin-left: 50px !important;
	}
	
	.image-box {
		height: 250px; /* Slightly smaller height for smaller tablets */
	}
	
	.overlay h3 {
		font-size: 1.8rem;
	}
	
	.overlay p {
		font-size: 1.1rem;
	}
	
	.icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
		right: 15px; /* Adjust icon position */
		top:40%;
	}
}

@media (max-width: 576px) {
	.insurance-section {
		
	}
	
	.insurance-text h2 {
		font-size: 1.8rem;
		line-height: 1.3;
	}
	
	.insurance-text p {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	
	.image-box {
		height: 220px; /* Even smaller height for phones */
	}
	
	.overlay h3 {
	font-size: 1.3rem !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: auto !important;
		
    }
.icon2 {
    position: absolute !important;
    top: 35% !important;
    right: 60px !important;
    width: 40px !important;
    height: 40px !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transform: rotate(-45deg) !important;
    cursor: pointer !important;
    transition: all 0.5s ease-in-out !important;
    color: #fff !important;
}
	
	.overlay p {
		font-size: 1rem;
		 display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
	}
	
	.icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
		right: 15px; /* Adjust icon position */
		bottom: 15px;
	}
}



.brand-logo-card {
	background: radial-gradient(circle at center, #ffffff 10%, #fffefe 40%, #ddd 60%);
	height: 100%;
	min-height: 260px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-circle {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 35px;
	height: 35px;
	border: 2px solid #000;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-45deg);
	transition: transform 0.3s ease;
	cursor: pointer;
}
.icon3 {
    position: relative;
    top: 2px;
    right: 0px;
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    font-size: 20px;
    display: inline-flex
;
    justify-content: end;
    align-items: end;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    color: #fff !important;
}
.icon-circle:hover {
	transform: rotate(-45deg);
}

.carousel-inner img {
	height: 100%;
	object-fit: cover;
}

.carousel-wrapper {
	height: 100%;
	min-height: 180px;
}

.carousel-logo {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #fff;
	padding: 5px 10px;
}

.carousel-indicators [data-bs-target] {
	background-color: #000;
}

.testimonials-section {
	background-color: #111;
	color: #fff;
	padding: 60px 20px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}

.section-title {
	font-size: 2rem;
	font-weight: 600;
}

.section-subtitle {
	margin: 10px 0 40px;
	font-size: 1rem;
	color: #575757;
}



.testimonial-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.testimonial-card {
	background-color: #1c1c1c;
	border: 1px solid #333;
	padding: 20px;
	border-radius: 10px;
	max-width: 270px;
	flex: 1 1 260px;
	text-align: left;
	position: relative;
}

.user {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	position: relative;
}

.user img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.user-circle {
	background-color: #444;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.user h4 {
	margin: 0;
	font-size: 0.95rem;
}

.user small {
	color: #bbb;
	font-size: 0.8rem;
}

.g-logo {
	width: 18px;
	position: absolute;
	right: 0;
	top: 5px;
}

.stars {
	color: orange;
	font-size: 1rem;
	margin-bottom: 10px;
}


.site-footer {
	background-color: #e9ecef;
	
	font-family: 'Poppins', sans-serif;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	padding-top: 40px;
}

.footer-col h4 {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.footer-col p {
	font-size: 0.95rem;
	color: #000;
	line-height: 2;
}

.note {
	color: #a94442;
	font-size: 0.85rem;
}

hr {
	margin: 30px 0;
	border-color: #bbb;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom:40px;
}

.btn-register {
	background: #000;
	color: #fff;
	padding: 15px 20px;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap:3px;
}

.btn-register:hover {
    background-color: #60605f;
    transition: all 0.5s ease-in;
}
.btn-register span {
	margin-left: 8px;
}

.footer-links a {
	text-decoration: none;
	color: #000;
	font-size: 0.9rem;
}

.footer-social a {
	margin-left: 15px;
	color: #000;
	font-size: 1.2rem;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.footer-columns {
		flex-direction: column;
	}
	
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.footer-social {
		margin-top: 10px;
	}
}
.footer-links a {
	text-decoration: underline !important;
	color: #000;
	font-size: 0.9rem;
}

/* Social Icons with black circular background */
.footer-social a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
	width: 35px;
	height: 35px;
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	font-size: 16px;
	transition: background-color 0.3s;
	text-decoration: none;
}

.footer-social a:hover {
	background-color: #333;
}

/* Responsive adjustments (unchanged but preserved) */
@media (max-width: 768px) {
	.footer-columns {
		flex-direction: column;
	}
	
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.footer-social {
		margin-top: 10px;
	}
}


.btn-read-more i,
.btn-readmore i,
.btn-appointment i,
.btn-register i,
.view-all-button i {
    display: inline-block;
    transform: rotate(85deg);
    transition: transform 1s ease;
}

.btn-read-more:hover i,
.btn-readmore:hover i,
.btn-appointment:hover i,
.btn-register:hover i,
.view-all-button:hover i {
    transform: rotate(5deg);
}

.dropdown-item {
	color: #fff !important;
	text-transform: uppercase;
	
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #333 !important;;
    background-color: #fff !important;
	transition: all 0.5s ease-in;
}
@media (min-width: 350px) {
	.navbar .dropdown:hover .dropdown-menu {
		display: block !important;
		opacity: 1;
		visibility: visible;
		transition: all 0.5s ease-in;
	}
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
	transition: all 0.5s ease-in;
}


.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: linear-gradient(rgba(4, 15, 40, 0.7), rgba(4, 15, 40, 0.7)), 
	url('<?php echo get_template_directory_uri(); ?>/images/carousel-1.jpg') center center no-repeat;
    background-size: cover;
}
.footer-wrapper {
	position: relative;
	background-color: #e9ecef; /* Optional background */
	overflow: hidden;
}

.container {
	position: relative;
	overflow: hidden; /* This hides overflow from logo image */
}

.logoback {
	position: absolute;
    top: -25px;
    left: -100px;
    width: 50%;
    max-width: 500px;
    height: auto;
    opacity: 0.6;
    filter: invert(18%);
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
	.logoback {
		width: 70%;
		top: 10px;
	}
}
.info-section {
	    background-color: #ffffff;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    margin-top: 100px;
	
}

.info-section .container {
	max-width: 1200px;
	margin: 0 auto;
}

.title {
	font-size: 2.7rem;
	font-weight: 600;
	color: #000000;
	line-height: 1.2;
	margin-bottom: 25px;
}

.description {
	font-size: 1.125rem;
	color: #666666;
	line-height: 1.6;
}


.insurance-section-unique {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.insurance-card {
	width: 50%;
	position: relative;
	color: white;
	background-size: cover;
	background-position: center;
	min-height: 500px;
	display: flex;
	align-items: center;
}

.insurance-overlay {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 40px;
	width: 100%;
	min-height: 500px;
}

.medical-card {
	background-image: url('../images/medical-ins.jpg');
	/* Replace with your own image */
}

.vision-card {
	background-image: url('../images/vision-ins.jpg');
	/* Replace with your own image */
}

.insurance-subheading {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #fff;
}

.insurance-title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #fff;
}

.insurance-text {
	font-size: 18px;
	margin-bottom: 40px;
	line-height: 1.6;
	color: #ccc;
}

.insurance-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.insurance-list li {
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 1.4;
	color: #fff;
}


@media (max-width: 768px) {
	.insurance-card {
		width: 100%;
	}
}
/* Preloader background */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #313131; /* or black #000000 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* make sure it's on top */
}


/* HTML: <div class="loader"></div> */
.loader {
	height: 80px;
	aspect-ratio: 1;
	display: grid;
	background:
    radial-gradient(farthest-side,#000 15%,#0000 18%),
    radial-gradient(50% 100% at 50% 160%,#fff 95%,#0000) top/100% 50%,
    radial-gradient(50% 100% at 50% -60%,#fff 95%,#0000) bottom/100% 50%;
	background-repeat: no-repeat;
}
.loader:before {
	content: "";
	background: inherit;
	opacity: 0.6;
	animation: l1 2s infinite;
}
@keyframes l1 {
	to {transform:scale(3);opacity:0}
}

.custom-logo {
	height: 72px !important;  /* set your preferred height */
	width: auto !important;    /* auto width to keep aspect ratio */
	max-width: 100% !important;   /* optional: prevent logo from overflowing container */
}

.mi-section {
	background-color: #e7e7e7;
	padding: 60px 20px;
	text-align: center;
}

.vi-section {
	background-color: #f1f1f1;
	padding: 60px 20px;
	text-align: center;
}

.mi-wrapper,
.vi-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.mi-heading,
.vi-heading {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 40px;
	font-family: 'Poppins', sans-serif;
	color: #111;
}

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

.mi-card,
.vi-card {
	background-color: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
}

.mi-card:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
	border-color: #00bcd4;
	transition: all 0.5s ease-in;
}

.vi-card:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
	border-color: #00bcd4;
	transition: all 0.5s ease-in;
}

.mi-card img {
	max-height: 90px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.vi-card img {
	max-height: 90px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.cx-eyeexam {
	padding: 4rem 1rem;
	margin-top: 100px;
}

.cx-eyeexam__wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	
}

/* -------  Image area  ------- */
.cx-eyeexam__media {
	position: relative;
	flex: 1 1 45%;
}

.cx-eyeexam__main-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.cx-eyeexam__sub-img {
	position: absolute;
	bottom: -4.5rem;
	right: 2rem;
	width: 60%;
	max-width: 260px;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	border: 8px solid #fff;
}

/* -------  Text area  ------- */
.cx-eyeexam__content {
	flex: 1 1 45%;
}

.cx-eyeexam__title {
	font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
	margin-bottom: 1rem;
	line-height: 1.2;
	font-weight: 600;
}

.cx-eyeexam__text {
	line-height: 2;
	color: #444;
}

/* -------  Responsiveness  ------- */
@media (max-width: 768px) {
	.cx-eyeexam__wrapper {
		flex-direction: column;
	}
	
	.cx-eyeexam__media {
		margin-bottom: 2rem;
	}
	
	/* Let the small image flow beneath the large one on narrow screens */
	.cx-eyeexam__sub-img {
		position: static;
		width: 100%;
		max-width: none;
		margin-top: 1rem;
	}
}


@media (max-width: 992px) {
	
	.cx-eyeexam__sub-img {
		position: static;
		width: 100%;
		max-width: none;
		margin-top: 1rem;
	}
}


@media (max-width: 1200px) {
	
	.cx-eyeexam__sub-img {
		position: static;
		width: 100%;
		max-width: none;
		margin-top: 1rem;
	}
}

/* Section Container */
.section-container {
	max-width: 1200px; /* Equivalent to max-w-7xl */
	margin-left: auto;
	margin-right: auto;
	
	padding: 1.5rem; /* Default padding */
	border-radius: 0.75rem; /* Equivalent to rounded-xl */
	
	display: flex;
	flex-direction: column; /* Default for mobile */
	
	row-gap: 2rem; /* Equivalent to space-y-8 */
}
.section-container1{
	background-color: #f1f1f1;
}

/* Responsive layout for larger screens (flex direction and spacing) */
@media (min-width: 1024px) { /* Corresponds to lg: breakpoint in Tailwind */
	.section-container {
		flex-direction: row;
		column-gap: 1.5rem; /* Equivalent to space-x-10 */
		row-gap: 0; /* Reset row gap */
		padding: 2.5rem;
	}
}

/* Content Area (Left Side) */
.content-area {
	width: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 1rem; /* Equivalent to space-y-4 */
}

@media (min-width: 1024px) {
	.content-area {
		width: 50%; /* Equivalent to lg:w-1/2 */
	}
}

/* Accordion Item */
.accordion-item {
	border-radius: 0.75rem; /* Equivalent to rounded-xl */
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Equivalent to shadow-md */
}

/* Accordion Header */
.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1rem;
	background-color: rgb(26, 26, 26); /* Dark background, visually similar to image */
	color: #ffffff;
	font-weight: 600; /* Equivalent to font-semibold */
	border-radius: 0.75rem; /* Default rounded for closed state */
	transition: background-color 0.3s ease;
	cursor: pointer;
	border: none; /* Remove default button border */
	text-align: left; /* Align text to the left */
}

.accordion-header:hover {
	background-color: rgb(50, 50, 50); /* Slightly lighter on hover */
}

/* Accordion Header Text */
.accordion-header-text {
	font-size: 1rem; /* Equivalent to text-base */
}

@media (min-width: 640px) {
	.accordion-header-text {
		font-size: 1.125rem; /* Equivalent to sm:text-lg */
	}
}

/* Accordion Arrow */
.accordion-arrow {
	width: 1.25rem; /* Equivalent to w-5 */
	height: 1.25rem; /* Equivalent to h-5 */
	color: #ffffff;
	transition: transform 0.3s ease;
}

.accordion-arrow.rotated {
	transform: rotate(90deg);
}

/* Accordion Content */
.accordion-content {
	background-color: #f9f9f9; /* Light gray background, visually similar to image */
	color: #2d3748; /* Equivalent to text-gray-800 */
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	padding-top: 0; /* Initial state, no padding */
	padding-bottom: 0; /* Initial state, no padding */
}

.accordion-content.open {
	max-height: 1000px; /* A large enough value to ensure content is visible */
	padding-top: 1rem; /* Apply padding when open */
	padding-bottom: 1rem; /* Apply padding when open */
}

/* Accordion Content Paragraph */
.accordion-content p {
	font-size: 0.875rem; /* Equivalent to text-sm */
	line-height: 1.625; /* Equivalent to leading-relaxed */
	padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 640px) {
	.accordion-content p {
		font-size: 1rem; /* Equivalent to sm:text-base */
		padding-left: 20px;
        padding-right: 20px;
	}
}

/* Image Area (Right Side) */
.image-wrapper {
	width: 100%;
	display: block;
	justify-content: center;
	
}

@media (min-width: 1024px) {
	.image-wrapper {
		width: 50%; /* Equivalent to lg:w-1/2 */
	}
}

/* Responsive Image */
.responsive-image {
	border-radius: 0.75rem; /* Equivalent to rounded-xl */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Equivalent to shadow-lg */
	width: 100%;
	height: auto;
	object-fit: cover;
	max-height: 24rem; /* Equivalent to max-h-96 */
}

@media (min-width: 1024px) {
	.responsive-image {
		max-height: 100%; /* Equivalent to lg:max-h-full */
	}
}
.service-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
	transition: all 1s ease-in;
	padding: 5px;
}




.appointment-section {
	max-width: 900px;
	margin: auto;
}

.form-wrapper {
	background: #fff;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: 8px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.form-wrapper h4 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	color: #9b7f6b;
	margin-bottom: 5px;
}

.form-wrapper h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 30px;
}

.appointment-form .form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
	min-width: 200px;
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	flex: 100%;
}


small {
	font-size: 12px;
	color: #c0392b;
	margin-top: 4px;
	display: none; /* Show via JS if needed */
}

.submit-btn {
	margin-top: 10px !important;
	padding: 14px 28px !important;
	background-color: #000000 !important;
	color: white !important;
	border: none !important;
	border-radius: 2px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	align-self: flex-start !important;
	transition: background-color 0.3s ease !important;
}
.submit-btn:hover {
	background: #3e362f;
}

@media (max-width: 768px) {
	.appointment-form .form-row {
		flex-direction: column;
	}
}


/* Section styling */
.appointment-section {
	background-color: #fff;
	padding: 20px 20px;
	max-width: 900px;
	margin: 40px auto;
	border-radius: 16px;
	
}

.form-wrapper h4 {
	color: #a38c78;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 0;
}

.form-wrapper h1 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 40px;
	color: #111;
}

/* Layout structure */
.appointment-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-row {
	display: flex;
	gap:20px;
	flex-wrap: wrap;
}

.form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.full-width {
	flex: 100%;
}

/* Unique Input Styling for Appointment Form */
.appointment-section input,
.appointment-section select,
.appointment-section textarea {
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 15px;
	background-color: #fff;
	transition: all 0.3s ease;
	outline: none;
	width: 100%;
	box-sizing: border-box;
}

.appointment-section input:focus,
.appointment-section select:focus,
.appointment-section textarea:focus {
	border-color: #a38c78;
	box-shadow: 0 0 5px rgba(163, 140, 120, 0.3);
}

/* Scoped Label Styling */
.appointment-section label {
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	display: inline-block;
}

/* Scoped Required Field Indicator */
.appointment-section label span {
	color: #e74c3c;
}

/* Scoped Error Message (Hidden by Default) */
.appointment-section small {
	font-size: 12px;
	color: #e74c3c;
	display: none;
}

/* Submit Button */


.submit-btn:hover {
	background-color: #8c7864;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
	}
}


.contact-card .icon4 {
	font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    display: inline-block;
    background: #000;
    padding: 14px;
    border-radius: 50%;
}


/* Get In Touch Section */
.contact-touch-section {
	padding: 50px 20px;
	background-color: #fff;
	font-family: inherit;
	margin-top: 100px;
}

/* Contact Cards */
.contact-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.contact-card {
	flex: 1 1 250px;
	border: 2px solid #eee;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	max-width: 300px;
}

.contact-card h4 {
	margin: 10px 0 5px;
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.contact-card p {
	color: #5a5a5a;
	font-weight: 600;
}

/* Form Styling */
.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    padding: 20px 20px;
    border: 2px solid #eee;
    border-radius: 20px;
}

.contact-form-wrapper h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 30px;
}

.contact-touch-form .row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.contact-touch-form .form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-bottom: 5px;
}

.contact-touch-form .form-group.full-width {
	flex: 1 1 100%;
}

.contact-touch-form input,
.contact-touch-form textarea {
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-size: 15px;
	background: #fff;
	outline: none;
	transition: border-color 0.3s ease;
	width: 100%;
}

.contact-touch-form input:focus,
.contact-touch-form textarea:focus {
	border-color: #a38c78;
}

/* Captcha */
.captcha-group {
	display: flex;
	flex-direction: column;
}

/* Submit Button */
.contact-touch-form .submit-btn {
	margin-top: 10px;
	padding: 14px 28px;
	background-color: #a38c78;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	align-self: flex-start;
	transition: background-color 0.3s ease;
}

.contact-touch-form .submit-btn:hover {
	background-color: #8c7761;
}

.wrapper1 {
    padding: 3rem;
    overflow: hidden !important;
	margin-top: 100px;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.close {
	float: right;
	font-size: 28px;
	font-weight: bold;
	color: #ff3f3f;
	margin-top: -8px;
	margin-right: -7px;
}
.modal-content {
	background-color: #FFF;
	margin: 15% auto;
	padding: 5px 10px;
	width: 40%;
	color: #000;
	font-family: arial;
	border-radius: 11px;
	border: 1px solid #ff3f3f;
	text-align: center;
}
.modal-content p{
	margin-bottom:5px;
}

.modal-content button{
	background-color: #000;
	border: 0px;
	color: #fff;
	padding: 10px 15px;
	margin: 10px auto;
	text-align: center;
	border-radius: 4px;
	
}
#myBtnsubok{
	background-color: #1aa569;
	border: 0px;
	color: #000;
	padding: 10px 15px;
	margin: 10px auto;
	text-align: center;
	border-radius: 4px;
	
}
#myBtnsubcancel{
	background-color: #ff3f3f;
	border: 0px;
	color: #000;
	padding: 10px 15px;
	margin: 10px auto;
	text-align: center;
	border-radius: 4px;
	
}
.close:hover,.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}


.about-us-section {
    background-color: #f9f9f9;
    color: #333;
	
    line-height: 1.7;
	position: relative;
    margin-top: 100px;
}
    border-bottom: 1px solid #ddd;
}

.about-us-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.about-us-section .about-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}



.meet-doctor-section {
    background-color: #c7c7c769;
    color: #333;
    
    line-height: 1.7;
}

.section-title2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
}

.doctor-name {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.doctor-photo-wrapper {
    
    padding: 5px;
	
}

.doctor-photo {
    border: none;
    max-width: 100%;
    height: auto;
}

.icon2 {
    position: absolute;
    top: 35%;
    right: 60px;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    color: #fff !important;
}

.icon2:hover {
    transform: rotate(-45deg);
}



.zeiss-section {
    background: #fff;
    padding: 40px 20px;
	
    color: #222;
    line-height: 1.6;
}

.zeiss-container {
    max-width: 900px;
    margin: 0 auto;
}

.zeiss-header {
    text-align: center;
    margin-bottom: 30px;
}

.zeiss-logo {
    width: 120px;
    margin-bottom: 10px;
}

.zeiss-tagline {
    font-size: 1.8em;
    font-weight: 600;
}

.zeiss-block {
    margin-bottom: 40px;
}

.zeiss-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.zeiss-subtitle {
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px 0;
}

.zeiss-list {
    padding-left: 20px;
    list-style-type: disc;
}

.zeiss-list li {
    margin-bottom: 8px;
}


.eyeexam-body {
	
	margin: 0;
	padding: 20px;
	background-color: #f7f9fb;
	color: #333;
}

.eyeexam-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding:20px
}

.eyeexam-card {
	flex: 1 1 45%;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 25px;
	box-sizing: border-box;
	transition: transform 0.3s ease;
}

.eyeexam-card:hover {
	transform: translateY(-5px);
}

.eyeexam-title {
	font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ebebeb;
    background: #333;
    padding: 20px;
    border-radius: 6px;
}

.eyeexam-text {
	margin-bottom: 12px;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.eyeexam-card {
        flex: 1 1 100%;
	}
}

.eyeexam-cta {
	margin-top: 40px;
	text-align: center;
}

.eyeexam-cta-text {
	font-size: 1rem;
}

.eyeexam-btn {
	display: inline-block;
	margin-top: 10px;
	text-decoration: none;
	background-color: #000;
	color: white;
	padding: 10px 20px;
	border-radius: 0px;
	transition: background-color 0.3s ease;
}

.eyeexam-btn:hover {
	background-color: #0a9396;
}

.eyeexam-heading {
	text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
}





.vision-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .vision-box {
      flex: 1 1 300px;
      max-width: 500px;
      text-align: center;
    }

    .vision-box img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .vision-box h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }
ul.mega-sub-menu {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.successmsg
{
	padding:3rem;
	text-align:center;
	
}
#panel_1,#panel_2,#panel_3
{
	overflow: scroll;
}

@media (max-width: 992px) {
  .custom-logo-link {
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
	
}

.eyewearsec {
    margin-top: 100px;
}
