/* Base Styles */
:root {
	--primary: #1a5f7a;
	--primary-dark: #0d3b4f;
	--secondary: #2a9d8f;
	--accent: #e9c46a;
	--danger: #e76f51;
	--light: #f8f9fa;
	--dark: #264653;
	--gray: #5f6368;
	--light-gray: #dadce0;
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #f5f7fa;
	color: var(--dark);
	line-height: 1.6;
	font-family: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	color: var(--primary-dark);
	font-size: 2.2rem;
	position: relative;
	font-weight: 700;
}

.section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	background: var(--secondary);
	margin: 15px auto;
	border-radius: 2px;
}

.section-subtitle {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
	color: var(--gray);
	font-size: 1.1rem;
}

.btn {
	display: inline-block;
	padding: 14px 28px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
	background: var(--secondary);
}

.btn-secondary:hover {
	background: #23857a;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: white;
}

/* Enhanced Notice Bar with Multiple News */
.notice-bar {
	background: var(--accent);
	color: var(--dark);
	padding: 12px 0;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notice-content {
	display: flex;
	align-items: center;
	gap: 15px;
}

.notice-label {
	background: var(--danger);
	color: white;
	padding: 4px 12px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.85rem;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
}

.news-container {
	flex: 1;
	overflow: hidden;
	position: relative;
	height: 24px;
}

.news-track {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: transform 0.5s ease;
}

.news-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 2px 0;
	white-space: nowrap;
}

.news-icon {
	color: var(--danger);
	font-size: 0.9rem;
}

.close-notice {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 1.2rem;
	background: rgba(0, 0, 0, 0.1);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Header Styles */
header {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo i {
	color: var(--primary);
	font-size: 2.2rem;
	margin-right: 12px;
}

.logo-text {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: -0.5px;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 25px;
	position: relative;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 600;
	transition: color 0.3s;
	font-size: 1.05rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	color: var(--primary);
}

.dropdown {
	position: relative;
}

.dropdown-content {
	display: none;
	position: absolute;
	background: white;
	min-width: 220px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	z-index: 1;
	top: 100%;
	left: 0;
	padding: 10px 0;
}

.dropdown-content a {
	padding: 12px 20px;
	display: block;
	color: var(--dark);
	text-decoration: none;
	transition: background 0.3s;
}

.dropdown-content a:hover {
	background: var(--light);
	color: var(--primary);
}

.dropdown:hover .dropdown-content {
	display: block;
}

.login-btn {
	background: var(--primary);
	color: white !important;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 600;
}

.mobile-menu {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--primary);
}

/* Hero Slider */
.hero-slider {
	margin-top: 0;
	position: relative;
	height: 85vh;
	overflow: hidden;
}

.slides {
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.slide.active {
	opacity: 1;
}

.slide-content {
	max-width: 650px;
	margin-left: 10%;
	background: rgba(255, 255, 255, 0.9);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.slide-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: var(--primary-dark);
	line-height: 1.2;
}

.slide-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: var(--gray);
}

.slide-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.indicator {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.indicator.active {
	background: white;
}

.slide-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.7);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 1.5rem;
	color: var(--primary);
}

.slide-nav:hover {
	background: white;
}

.prev {
	left: 30px;
}

.next {
	right: 30px;
}

/* About Section */
.about {
	background: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 2.2rem;
	color: var(--primary-dark);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 25px;
	color: var(--gray);
	font-size: 1.1rem;
	line-height: 1.7;
}

.about-image {
	flex: 1;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Stats Section */
.stats {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	color: white;
	text-align: center;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.stat-card {
	padding: 30px 20px;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--accent);
}

.stat-text {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision {
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.mv-container {
	display: flex;
	gap: 40px;
}

.mv-card {
	flex: 1;
	background: white;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
}

.mv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mv-icon {
	font-size: 3.5rem;
	color: var(--primary);
	margin-bottom: 25px;
}

.mv-card h3 {
	font-size: 1.8rem;
	color: var(--primary-dark);
	margin-bottom: 20px;
}

.mv-card p {
	color: var(--gray);
	line-height: 1.7;
}

/* Services Section */
.services {
	background: white;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--light);
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--primary);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 3.2rem;
	color: var(--primary);
	margin-bottom: 25px;
}

.service-card h3 {
	margin-bottom: 15px;
	color: var(--primary-dark);
	font-size: 1.4rem;
}

/* Health Packages Section */
.packages {
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.packages-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.package-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s;
}

.package-card:hover {
	transform: translateY(-10px);
}

.package-header {
	background: var(--primary);
	color: white;
	padding: 25px;
	text-align: center;
}

.package-header h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.package-price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.package-duration {
	opacity: 0.9;
}

.package-features {
	padding: 25px;
}

.package-features ul {
	list-style: none;
	margin-bottom: 25px;
}

.package-features li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.package-features i {
	color: var(--secondary);
	margin-right: 10px;
	font-size: 1.1rem;
}

/* Doctors Section with Auto Scroll */
.doctors {
	background: white;
}

.doctors-slider {
	position: relative;
	overflow: hidden;
	padding: 0 20px;
}

.doctors-track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 30px;
}

.doctor-card {
	min-width: 300px;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s;
}

.doctor-card:hover {
	transform: translateY(-10px);
}

.doctor-img {
	height: 280px;
	overflow: hidden;
}

.doctor-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.doctor-card:hover .doctor-img img {
	transform: scale(1.05);
}

.doctor-info {
	padding: 25px;
	text-align: center;
}

.doctor-info h3 {
	font-size: 1.4rem;
	color: var(--primary-dark);
	margin-bottom: 5px;
}

.doctor-info p {
	color: var(--secondary);
	font-weight: 600;
	margin-bottom: 10px;
}

.doctor-info .specialty {
	color: var(--gray);
	font-size: 0.9rem;
	margin-bottom: 15px;
}

/* Testimonials Section with Auto Scroll */
.testimonials {
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.testimonials-slider {
	position: relative;
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s ease;
}

.testimonial {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	text-align: center;
	margin: 0 20px;
	min-width: 100%;
}

.testimonial-text {
	font-size: 1.1rem;
	color: var(--gray);
	margin-bottom: 20px;
	font-style: italic;
	line-height: 1.7;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	color: var(--primary-dark);
	margin-bottom: 5px;
}

.author-info p {
	color: var(--gray);
	font-size: 0.9rem;
}

.testimonial-nav,
.doctors-nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.testimonial-dot,
.doctor-dot {
	width: 12px;
	height: 12px;
	background: var(--light-gray);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.testimonial-dot.active,
.doctor-dot.active {
	background: var(--primary);
}

/* Mobile App Section */
.mobile-app {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	color: white;
}

.mobile-app .section-title {
	color: white;
}

.mobile-app .section-title::after {
	background: var(--accent);
}

.app-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
}

.app-content {
	flex: 1;
	text-align: left;
	padding-right: 50px;
}

.app-content h3 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.app-content p {
	margin-bottom: 25px;
	font-size: 1.1rem;
	line-height: 1.7;
	opacity: 0.9;
}

.app-features {
	list-style: none;
	margin-bottom: 30px;
}

.app-features li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.app-features i {
	color: var(--accent);
	margin-right: 12px;
	font-size: 1.2rem;
}

.app-download {
	display: flex;
	gap: 15px;
}

.download-btn {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 14px 22px;
	border-radius: 10px;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn i {
	font-size: 2.2rem;
	margin-right: 12px;
}

.download-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.download-text span:first-child {
	font-size: 0.8rem;
	opacity: 0.8;
}

.download-text span:last-child {
	font-size: 1.2rem;
	font-weight: 600;
}

.app-image {
	flex: 1;
	text-align: center;
}

.app-image img {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Location Section with Google Map */
.location {
	background: white;
}

.location-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.location-info {
	padding-right: 20px;
}

.location-info h3 {
	font-size: 1.8rem;
	color: var(--primary-dark);
	margin-bottom: 20px;
}

.location-info p {
	margin-bottom: 15px;
	color: var(--gray);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.location-info i {
	color: var(--primary);
	margin-top: 3px;
}

.map-container {
	height: 400px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Login Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: white;
	width: 90%;
	max-width: 450px;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	position: relative;
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--gray);
	transition: color 0.3s;
}

.close-modal:hover {
	color: var(--dark);
}

.modal-title {
	text-align: center;
	margin-bottom: 30px;
	color: var(--primary-dark);
	font-size: 1.8rem;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dark);
}

.form-control {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--light-gray);
	border-radius: 6px;
	font-size: 1rem;
	transition: border 0.3s;
}

.form-control:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--primary);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
}

/* Footer */
footer {
	background: var(--dark);
	color: white;
	padding: 70px 0 25px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	margin-bottom: 25px;
	font-size: 1.4rem;
	position: relative;
	padding-bottom: 12px;
}

.footer-column h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--secondary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #bdc1c6;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.contact-info {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.contact-info i {
	margin-right: 12px;
	color: var(--secondary);
	width: 20px;
}

.footer-app-download {
	margin-top: 25px;
}

.footer-app-download .download-btn {
	margin-bottom: 10px;
	padding: 12px 18px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
	color: #bdc1c6;
	font-size: 0.95rem;
}

.developer-credit a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.developer-credit a:hover {
	color: white;
	text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.slide-content h1 {
		font-size: 2.5rem;
	}

	.about-content {
		gap: 40px;
	}

	.location-container {
		grid-template-columns: 1fr;
	}

	.location-info {
		padding-right: 0;
	}
}

@media (max-width: 992px) {
	.hero-slider {
		height: 70vh;
	}

	.slide-content {
		margin: 0 auto;
		max-width: 90%;
	}

	.about-content {
		flex-direction: column;
	}

	.about-text,
	.about-image {
		width: 100%;
	}

	.mv-container {
		flex-direction: column;
	}

	.app-container {
		flex-direction: column;
	}

	.app-content {
		padding-right: 0;
		margin-bottom: 40px;
		text-align: center;
	}

	.app-features li {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		padding: 25px 0;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		margin: 0;
		text-align: center;
		padding: 12px 0;
	}

	.dropdown-content {
		position: static;
		box-shadow: none;
		background: var(--light);
		margin-top: 10px;
		border-radius: 8px;
	}

	.mobile-menu {
		display: block;
	}

	.hero-slider {
		height: 60vh;
	}

	.slide-content {
		padding: 30px;
	}

	.slide-content h1 {
		font-size: 2rem;
	}

	.slide-nav {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.prev {
		left: 15px;
	}

	.next {
		right: 15px;
	}

	.section-title {
		font-size: 1.9rem;
	}

	.app-download {
		flex-direction: column;
		align-items: center;
	}

	.download-btn {
		width: 220px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.doctor-card {
		min-width: 250px;
	}

	.notice-content {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.close-notice {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		margin-top: 10px;
	}

	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 576px) {
	.hero-slider {
		height: 70vh;
	}

	.slide-content h1 {
		font-size: 1.8rem;
	}

	.slide-content p {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.7rem;
	}

	.mv-card {
		padding: 30px 25px;
	}

	section {
		padding: 60px 0;
	}

	.modal-content {
		padding: 30px 25px;
	}

	.doctor-card {
		min-width: 220px;
	}

	.package-card {
		min-width: 100%;
	}
}
