.hero {
	width: 100%;
	height: 100vh;
	background: url('../img/2022-09-01-road-in-the-forest-1-53220.jpeg')
		center/cover no-repeat;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.hero__inner {
	display: flex;
	align-items: center;
	height: 80vh;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.hero__content {
	max-width: 550px;
	color: #fff;
}

.hero__title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero__title span {
	color: #ffcc00;
	position: relative;
}
.hero__title span b:nth-child(2) {
	font-size: 30px;
}
.hero__title span b {
	font-weight: 700;
}

.hero__subtitle {
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 1.5;
	color: #ddd;
}

.hero__buttons {
	display: flex;
	gap: 15px;
}

.hero__img {
	position: relative;
	width: 500px;
	max-width: 90%;
	animation: float 6s ease-in-out infinite;
}

.hero__img img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0);
	}
}

.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
	width: 50%;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #f1c40f;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}
.examination-procedure__title {
	font-size: 24px;
	margin: 15px 0;
}
.examination-procedure b {
	font-size: 18px;
	margin-bottom: 15px;
	display: block;
}
.examination-procedure p {
	font-size: 16px;
	margin-bottom: 20px;
	display: block;
	line-height: 130%;
}
.examination-procedure span {
	display: block;
	margin-bottom: 10px;
	margin-left: 15px;
	font-size: 15px;
	line-height: 130%;
}

.examination-procedure img {
	margin-bottom: 15px;
}

.examination-procedure strong {
	display: block;
	margin: 15px 0 10px 20px;
}
.students .container {
	position: relative;
}

.swiper-button-next,
.swiper-button-prev {
	color: #f1c40f !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
}
.students__link a {
	position: absolute;
	top: 28%;
	right: 30px;
	z-index: 1;
	color: #fff;
	background: #ffcc00;
	padding: 10px 12px;
	border-radius: 10px;
	transition: all 0.3s ease 0s;
}
.students__link a:hover {
	background: #ffd633cb;
}
.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	height: auto !important;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 272px;
	object-fit: cover;
	border-radius: 10px;
}

/* ===== MODAL ===== */
.tests-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.tests-modal.active {
	display: flex;
}

.tests-modal__content {
	background: #19191b;
	padding: 30px;
	border-radius: 16px;
	text-align: center;
	min-width: 300px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tests-modal__content h3 {
	color: #fff;
	margin-bottom: 20px;
	margin-top: 15px;
	font-size: 20px;
}

.tests-modal__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tests-modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
}

.team {
	padding: 30px 0;
	background: #f7f7f7;
}

.team-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.team-header p {
	color: #555;
	margin-top: 10px;
	font-size: 16px;
	line-height: 136%;
}

.team-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 25px;
}

.team-card {
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-card img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	object-position: top;
	border-radius: 50%;
	margin-bottom: 15px;
	border: 4px solid #f1c40f;
}

.team-card h3 {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 130%;
}

.team-card span {
	display: block;
	color: #f1c40f;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 16px;
}

.team-card p {
	font-size: 14px;
	color: #666;
	line-height: 130%;
}

.about {
	background: #f8f9fb;
	font-family: Arial, sans-serif;
	padding-bottom: 20px;
}

.about-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.about-header h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: #1a1a1a;
}

.about-header p {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
}

.about-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.about-card {
	background: #fff;
	padding: 30px 25px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.about-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: #ffcc00;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.about-cards {
	grid-template-columns: repeat(2, 1fr);
}

.about-card h3 {
	font-size: 34px;
	font-weight: bold;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.about-card h4 {
	font-size: 18px;
	color: #ffcc00;
	margin-bottom: 12px;
}

.about-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}
.location {
	margin-bottom: 30px;
}
.location-info {
	display: flex;
	align-items: center;
	gap: 20px;
}

#map {
	position: relative;
	flex: 0 1 48%;
}
#map a {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
	background-color: white;
	padding: 20px 50px;
	font-size: 14px;
}
.location-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	flex: 0 1 48%;
}
.location-list li {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 17px;
}

.location-list li.social-item {
	display: flex;
	align-items: center;
	gap: 20px;
}
.location-phoneNumbers {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.location-list li a {
	transition: color 0.3s ease;
}
.location-list li a:hover {
	color: #f1c40f;
}

.social-item img {
	width: 50px;
	height: 50px;
}
@media (max-width: 992px) {
	.hero__inner {
		flex-direction: column;
		margin-top: 50px;
		align-items: center;
	}
	.hero__img {
		margin-top: 30px;
	}
	.hero__imb img {
		max-width: 500px;
	}

	.hero__title {
		font-size: 30px;
	}
	.hero__title span b:nth-child(2) {
		font-size: 20px;
	}

	.hero__subtitle {
		font-size: 16px;
	}

	.team {
		padding: 20px 0;
	}
	.team-header {
		margin-bottom: 20px;
	}

	.team-card {
		padding: 20px;
	}

	.location-info {
		flex-direction: column;
	}
	#map {
		flex: 0 1 100%;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.hero__inner {
		margin-top: 80px;
	}
	.hero__buttons {
		justify-content: center;
	}
	.hero__content {
		text-align: center;
	}
	.team-header p {
		font-size: 15px;
	}

	.team-cards {
		grid-template-columns: 1fr;
	}

	.team-card h3 {
		font-size: 17px;
	}

	.team-card span {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.hero__title {
		font-size: 28px;
	}
	.hero__title span b:nth-child(2) {
		font-size: 20px;
	}

	.hero__img {
		width: 250px;
	}
	.hero__buttons .btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.tab button {
		padding: 14px 8px;
	}
	.examination-procedure__title {
		font-size: 18px;
	}
	.examination-procedure b {
		font-size: 16px;
		margin-bottom: 10px;
		line-height: 130%;
	}
	.examination-procedure p {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.about-header h2 {
		font-size: 28px;
	}

	.about-cards {
		grid-template-columns: 1fr;
	}

	.location-list li {
		font-size: 15px;
	}
	#map a {
		padding: 10px 20px;
	}
}

@media (max-width: 480px) {
	.team-card {
		padding: 18px;
		border-radius: 14px;
	}

	.team-card p {
		font-size: 13px;
	}
}
