:root {
	--white: white;
	--primary-color: #00416b;
	--secondary-color: #19d3c5;
	--light-color: #ddeeed;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
	background-color: var(--white);
	color: #333;
	padding-top: 80px;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--white);
}

.color-title-blue {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 600;
}

/* Navbar */
.navbar {
	background-color: var(--primary-color);
	height: auto;
	min-height: 120px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.logo {
	width: 250px;
	height: auto;
}

.nav-item .nav-link {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	padding: 1rem;
}

.nav-item .nav-link:hover {
	color: var(--secondary-color);
}

.nav-item.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
}

.dropdown-menu {
	background-color: var(--primary-color);
	border: none;
}

.nav-item.dropdown > .nav-link::after {
	display: none !important;
}

.dropdown-item {
	color: #fff;
	font-weight: 500;
}

.dropdown-item:hover {
	background-color: var(--secondary-color);
	color: #fff;
}

.mobile {
	display: none;
}

.address-info {
	position: fixed;
	top: 120px;
	left: 0;
	padding: 5px 0;
	z-index: 998;
	border-top: 4px solid var(--secondary-color);
	background-color: var(--light-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.address-info p {
	font-size: 1rem;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
	padding: 0.5rem;
}

/*Hero Section*/
.hero-section {
	width: 100%;
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
		url("../assets/images/background-image.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.wave-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	transform: translateY(80px);
}

.wave {
	width: 100%;
	display: block;
}

.hero-content {
	width: 100%;
	color: #fff;
	text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

.principal-title {
	font-size: 3rem;
	font-weight: 600;
}

.btn-primary {
	background-color: #19d3c5;
	border: 1px solid #19d3c5;
}

.btn-primary:hover {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-secondary {
	background-color: #19d3c5;
	border: 1px solid #19d3c5;
}

.btn-secondary:hover {
	background-color: var(--white);
	border: 1px solid var(--secondary-color);
	color: #19d3c5;
}

.icons-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	padding: 10px;
}

.icon-box {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	gap: 10px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-box i {
	font-size: 1.5rem;
	color: #fff;
	transition: color 0.3s ease;
}

.icon-box:hover {
	background-color: var(--primary-color);
	cursor: pointer;
	transform: scale(1.1);
}

/*Our Services*/

.our-services-section {
	height: auto;
	min-height: 100px;
	background: linear-gradient(
		to bottom,
		rgba(0, 65, 107, 0.95) 0%,
		var(--primary-color) 100%
	);
	border-bottom: var(--secondary-color) 4px solid;
}

.service-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 10px;
	gap: 40px;
	transition: transform 0.3s ease-out;
}

.service-container:hover {
	transform: scale(1.1);
	cursor: pointer;
}

.service-container img {
	width: 70%;
	transition: transform 0.3s ease-out;
}

.service-container h3 {
	color: var(--white);
	transition: color 0.3s ease-out;
}

.service-container:hover h3 {
	color: var(--secondary-color);
}

/*Meet our Doctors*/
.doctors-section-wrapper {
	position: relative;
	background-color: #19d3c31f;
	overflow: hidden;
}

.bottom-wave-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
}

.bottom-wave-wrapper svg {
	width: 100%;
	height: 100%;
	display: block;
}

/*our Doctors*/
.doctor-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 15px;
	gap: 20px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.doctor-card:hover {
	transform: translateY(-10px) scale(1.05);
	cursor: pointer;
}

.doctor-card img {
	width: 70%;
	border-radius: 50%;
	border: 5px solid var(--primary-color);
	transition: border-color 0.4s ease, transform 0.4s ease;
}

.doctor-card:hover img {
	transform: scale(1.08) rotate(-2deg);
	border-color: var(--secondary-color);
}

.doctor-card h3 {
	margin-top: 15px;
	font-size: 1.2rem;
	color: var(--primary-color);
	transition: color 0.4s ease;
}

.doctor-card:hover h3 {
	color: var(--secondary-color);
}

/*diferent services*/

.diferent-services {
	background-color: var(--white);
}

.services-cards {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
	margin-bottom: 100px;
}

.service-card {
	position: relative;
	width: 300px;
	height: 350px;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

/* Overlay */
.service-overlay {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(25, 211, 195, 0.9);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: bottom 0.5s ease;
	text-align: center;
	padding: 20px;
}

.service-card:hover .service-overlay {
	bottom: 0;
}

.service-overlay i {
	font-size: 2.5rem;
	margin-bottom: 15px;
	transition: color 0.4s ease, transform 0.4s ease;
	color: #fff;
}

.service-card:hover .service-overlay i {
	color: var(--primary-color);
	transform: scale(1.2);
}

.service-overlay h3 {
	font-size: 1.5rem;
	margin: 0;
}

/*PARALLAX COUNTER*/
.parallax-counter {
	position: relative;
	background-image: url("../assets/images/background-counter.webp");
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 20px;
	color: #fff;
	text-align: center;
	border-top: 5px solid var(--secondary-color);
}

.parallax-overlay {
	background: linear-gradient(
		rgba(255, 255, 255, 0.6),
		rgba(255, 255, 255, 0.6)
	);
	padding: 80px 20px;
}

.counters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px;
}

.counter-item {
	flex: 1 1 200px;
}

.counter-item h2 {
	font-size: 3rem;
	margin: 0;
	color: #19d3c3;
	font-weight: bold;
}

.counter-item p {
	margin: 10px 0 0;
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
}
/*Footer*/

.footer {
	background-color: var(--light-color);
}

.footer-info {
	height: auto;
	min-height: 100px;
	width: 100%;
	border-top: var(--secondary-color) 4px solid;
	background-color: var(--primary-color);
}

.logo-footer-container {
	width: 80%;
	height: auto;
}

.logo-footer-container img {
	width: 100%;
	object-fit: cover;
}

.hostipal-info h3 {
	color: var(--secondary-color);
	font-weight: 600;
}

.hostipal-info .p-green {
	color: var(--secondary-color);
	font-size: 1.2rem;
	font-weight: 500;
}

.hostipal-info .p-white {
	color: var(--white);
	font-weight: 500;
	font-size: 1.2rem;
}

.site-construction {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
	width: 100%;
	color: #00416b;
	font-size: 5rem;
}

.page-title {
	height: auto;
	min-height: 30vh;
	width: 100%;
	background-color: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-title h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	margin-top: 50px;
}

.mission-section {
	background-color: var(--light-color);
	padding-top: 80px;
	padding-bottom: 80px;
}

.mission-section h2,
.mission-section h3 {
	color: var(--primary-color);
}

.mission-section .mission-list {
	list-style: none;
	padding-left: 0;
}

.mission-section .mission-list li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 1.25rem;
}

.mission-section .mission-list li::before {
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--secondary-color);
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 0.6rem;
}

/*conatct us*/

.contact-us-section {
	background-color: var(--light-color);
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-info h2 {
	color: var(--primary-color);
	font-weight: 700;
}

.contact-info p {
	font-size: 1rem;
}

.map-container iframe {
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.map-container iframe:hover {
	transform: scale(1.02);
}

/* Services Page */
.services-section {
	padding: 80px 0;
}

.services-section .lead {
	max-width: 900px;
	margin: 0 auto;
	color: var(--dark-color);
	line-height: 1.8;
	font-size: 1.2rem;
}

.service-card {
	position: relative;
	width: 300px;
	height: 350px;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

.service-bottom-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: rgba(25, 211, 195, 0.9);
	color: #fff;
	text-align: center;
	transition: background 0.4s ease;
}

.service-card:hover .service-bottom-title {
	background: rgba(25, 211, 195, 1);
}

.service-bottom-title h3 {
	font-size: 1.3rem;
	margin: 0;
	font-weight: 600;
}

/*wellness care*/
.wellness-care-section {
	background-color: var(--light-color);
}

.wellness-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.wellness-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.wellness-text ul {
	margin-left: 1.2rem;
	list-style-type: disc;
}

.wellness-text a.text-primary {
	text-decoration: none;
}

.wellness-text a.text-primary:hover {
	text-decoration: underline;
}

/*Dental*/

.dental-care-section {
	background-color: var(--light-color);
}

.dental-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.dental-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.dental-text a.text-primary {
	text-decoration: none;
}

.dental-text a.text-primary:hover {
	text-decoration: underline;
}

/*surgical*/
.surgical-care-section {
	background-color: var(--light-color);
}

.surgical-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.surgical-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.surgical-text a.text-primary {
	text-decoration: none;
}

.surgical-text a.text-primary:hover {
	text-decoration: underline;
}

/*diagnostic*/
.diagnostic-care-section {
	background-color: var(--light-color);
}

.diagnostic-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.diagnostic-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.diagnostic-text a.text-primary {
	text-decoration: none;
}

.diagnostic-text a.text-primary:hover {
	text-decoration: underline;
}

/*emergency*/

.emergency-care-section {
	background-color: var(--light-color);
}

.emergency-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.emergency-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.emergency-text a.text-primary {
	text-decoration: none;
}

.emergency-text a.text-primary:hover {
	text-decoration: underline;
}

/*adpot*/
.adopt-pet-section {
	background-color: var(--light-color);
}

.adopt-pet-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.adopt-pet-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.adopt-pet-text a.text-primary {
	text-decoration: none;
}

.adopt-pet-text a.text-primary:hover {
	text-decoration: underline;
}

/*nutrition*/

.nutrition-section {
	background-color: var(--light-color);
}

.nutrition-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.nutrition-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.nutrition-text a.text-primary {
	text-decoration: none;
}

.nutrition-text a.text-primary:hover {
	text-decoration: underline;
}

/*behavior*/
.behavior-section {
	background-color: var(--light-color);
}

.behavior-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.behavior-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.behavior-text a.text-primary {
	text-decoration: none;
}

.behavior-text a.text-primary:hover {
	text-decoration: underline;
}

.behavior-text ul {
	text-align: left;
	margin-top: 1rem;
	padding-left: 1.5rem;
}

.behavior-text ul li {
	margin-bottom: 0.8rem;
}

/*behavior united*/
.behavior-united-section {
	background-color: var(--light-color);
}

.behavior-united-image-container img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.behavior-united-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.behavior-united-text a.text-primary {
	text-decoration: none;
}

.behavior-united-text a.text-primary:hover {
	text-decoration: underline;
}

.behavior-united-text .btn {
	border-radius: 25px;
	padding: 10px 25px;
	font-weight: 600;
}

/*prescription policy*/
.prescription-policy-section {
	background-color: var(--light-color);
}

.prescription-policy-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.prescription-policy-text ul {
	text-align: left;
	margin-bottom: 1.5rem;
}

.prescription-policy-text ul li {
	margin-bottom: 0.6rem;
}

.prescription-policy-text a.text-primary {
	text-decoration: none;
}

.prescription-policy-text a.text-primary:hover {
	text-decoration: underline;
}

.prescription-policy-text h5 {
	margin-top: 1.8rem;
	font-weight: bold;
	color: #000;
}

/*our team*/

.our-team-section {
	background-color: var(--light-color);
}

.team-card-horizontal {
	display: flex;
	align-items: stretch;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-horizontal:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
	flex: 0 0 400px;
	max-width: 400px;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.team-card-horizontal:hover img {
	transform: scale(1.06);
}

.team-text {
	flex: 1;
	padding: 20px;
	color: #333;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.team-text h5 {
	margin-bottom: 10px;
	color: #00416b;
}

.team-text p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.team-image img.focus-right {
	object-position: 70% center; /* mueve el foco hacia la derecha */
}

/* Responsive */
@media (max-width: 768px) {
	.team-card-horizontal {
		flex-direction: column;
		text-align: center;
	}
	.team-image {
		max-width: 100%;
	}
	.team-text {
		text-align: left;
	}
}

/*New Clients*/
.new-clients-section {
	background-color: var(--light-color);
}

.new-clients-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.new-clients-text ul {
	text-align: left;
	margin-bottom: 1.5rem;
}

.new-clients-text ul li {
	margin-bottom: 0.6rem;
}

.new-clients-text h5 {
	margin-top: 1.8rem;
	font-weight: bold;
	color: #000;
}

.new-clients-text strong {
	color: #000;
}

.new-clients-text .btn {
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.new-clients-text .btn-primary:hover {
	background-color: #0056b3;
	color: #fff;
}

.new-clients-text .btn-outline-secondary:hover {
	background-color: #333;
	color: #fff;
}

/*appointment policy*/
.appointment-policy-section {
	background-color: var(--light-color);
}

.appointment-policy-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.appointment-policy-text h4 {
	font-weight: bold;
	color: #000;
	margin-bottom: 1.2rem;
}

.appointment-policy-text h5 {
	margin-top: 1.8rem;
	font-weight: bold;
	color: #000;
}

.appointment-policy-text ul {
	text-align: left;
	margin-bottom: 1.5rem;
}

.appointment-policy-text ul li {
	margin-bottom: 0.6rem;
}

.appointment-policy-text strong {
	color: #000;
}

.appointment-policy-text em {
	color: #555;
	font-style: italic;
}

/*conatc form*/
.appointment-policy-section .title-line {
	width: 80px;
	height: 4px;
	background-color: var(--primary-color);
	margin-top: 10px;
	margin-bottom: 30px;
	border-radius: 5px;
}

.appointment-policy-section p {
	line-height: 1.7;
	color: #333;
}

.appointment-policy-section h4 {
	color: var(--primary-color);
}

.appointment-form .form-control,
.appointment-form .form-select {
	border-radius: 10px;
	padding: 10px 12px;
}
