/* RESET */
body {
	margin: 0;
	font-family: "Montserrat", sans-serif;
}

/* NAVBAR WRAPPER */
.nav-wrapper {
	position: fixed;
	top: 20px;
	width: 100%;
	z-index: 999;
}

/* NAVBAR */
.custom-navbar {
	width: 90%;
	margin: auto;
	background: #ffffff59;
	padding: 10px 15px;
	border-radius: 5px;
}

/* LOGO */
.navbar-brand img {
	height: 90px;
}

/* LINKS */
.custom-navbar .nav-link {
	color: #000;
	font-size: 18px;
	font-weight: 800;
	padding: 8px 16px;
}

.custom-navbar .nav-link:hover {
	color: #e50914;
}

/* DROPDOWN */
.dropdown-menu {
	border-radius: 0;
}

/* TOGGLER */
.custom-toggler {
	background: #e50914;
	border: none;
	padding: 10px;
	border-radius: 0;
}

.custom-toggler span {
	display: block;
	width: 26px;
	height: 3px;
	background: #fff;
	margin: 5px 0;
}

/* HERO */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
}

.hero h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: 64px;
	font-weight: 700;
}

.hero p {
	font-size: 18px;
	max-width: 700px;
	margin: 20px auto;
}

.hero .btn {
	background: #e50914;
	border: none;
	padding: 14px 35px;
	border-radius: 0;
	letter-spacing: 1px;
}

/* MOBILE */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 35px;
	}

	.custom-navbar {
		padding: 12px 15px;
	}
}

/* About Us Section css */
.about-section {
	background: #faf5f3;
	padding: 100px 0;
}

/* SMALL TAG */
.section-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 2px;
	color: #8a6b75;
	margin-bottom: 15px;
	font-family: "Montserrat", sans-serif;
}

/* TITLE */
.about-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 64px;
	line-height: 1.15;
	color: #5a3d47;
	font-weight: 600;
}

/* UNDERLINE TEXT */
.about-title .highlight {
	position: relative;
	display: inline-block;
}

.about-title .highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 3px;
	background: #5a3d47;
}

/* RIGHT TEXT */
.about-text {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 1.9;
	color: #7a6a70;
}

/* BUTTON */
.read-btn {
	background: #e50914;
	color: #fff;
	padding: 14px 38px;
	font-size: 13px;
	letter-spacing: 2px;
	border-radius: 0;
	font-family: "Montserrat", sans-serif;
}

.read-btn:hover {
	background: #c80711;
	color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.about-title {
		font-size: 42px;
	}

	.about-section {
		padding: 70px 20px;
		text-align: center;
	}
}

/* About US Pages Table Details Css */
/* WRAPPER */
.table-scroll-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
}

/* SCROLLBAR STYLE (MODERN) */
.table-scroll-wrapper::-webkit-scrollbar {
	height: 8px;
}

.table-scroll-wrapper::-webkit-scrollbar-thumb {
	background: #e64a19;
	border-radius: 10px;
}

.table-scroll-wrapper::-webkit-scrollbar-track {
	background: #f8dcd3;
}

/* TABLE */
.member-table {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	/* IMPORTANT */
	border-collapse: collapse;
	font-family: "Cormorant Garamond", sans-serif;
}

/* HEADER */
.member-table thead th {
	background: #e64a19;
	color: #fff;
	padding: 14px 16px;
	text-align: left;
	white-space: nowrap;
	font-size: 25px;
}

/* BODY */
.member-table td {
	padding: 12px 16px;
	white-space: nowrap;
	font-size: 22px;
}

/* ROW COLORS */
.member-table tbody tr:nth-child(odd) {
	background: #fde1da;
}

.member-table tbody tr:nth-child(even) {
	background: #fdebe6;
}

/* HOVER EFFECT */
.member-table tbody tr:hover {
	background: #fbd0c2;
	transition: 0.3s;
}

/* TEXT */
.highlight {
	color: #c62828;
	font-weight: 600;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
	.member-table {
		min-width: 750px;
	}

	.member-table thead th,
	.member-table td {
		font-size: 14px;
	}
}

/* What we do section css */
.work-section {
	background: #ffffff;
	padding: 100px 0;
}

/* SECTION HEADER */
.section-tag {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	color: #f01b1b;
	font-weight: 700;
}

.section-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 48px;
	color: #4a2f39;
	margin-top: 5px;
	font-weight: 900;
}

/* WORK CARD */
.work-box {
	text-align: center;
	margin-bottom: 40px;
}

.work-box img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 0;
}

.work-box h4 {
	margin-top: 15px;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #ee1313;
	text-transform: uppercase;
}

/* MOBILE: SHOW ONLY ONE IMAGE */
@media (max-width: 767px) {
	.section-title {
		font-size: 36px;
	}

	.work-box img {
		height: 260px;
	}
}

/* JOIN OUR COMMUNITY Section CSS */
.join-section {
	position: relative;
	background: url("images/overlay.webp") center center / cover no-repeat fixed;
	padding: 120px 0;
	color: #fff;
}

/* DARK OVERLAY */
.join-section .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.774);
}

/* CONTENT */
.join-section .container {
	position: relative;
	z-index: 2;
}

.content-box {
	padding-left: 40px;
}

/* TAG */
.join-tag {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	color: #fff;
	display: inline-block;
	margin-bottom: 20px;
}

/* TEXT */
.join-text {
	font-family: "Cormorant Garamond", serif;
	font-size: 34px;
	/* line-height: 1.4; */
	margin-bottom: 40px;
}

/* BUTTON */
.join-btn {
	display: inline-block;
	background: #e50914;
	color: #fff;
	padding: 16px 40px;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	text-decoration: none;
}

.join-btn:hover {
	background: #c80711;
	color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.join-section {
		padding: 80px 0;
		background-attachment: scroll; /* better mobile performance */
	}

	.content-box {
		padding-left: 0;
		text-align: center;
	}

	.join-text {
		font-size: 26px;
	}
}

/* achievement Section Css */
.achievement-section {
	background: #ffffff;
	padding: 100px 0;
}

/* SECTION TAG */
.section-tag {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	color: #e50914;
	margin-bottom: 20px;
	display: inline-block;
	font-weight: 700;
}

/* TITLE */
.achievement-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 46px;
	color: #5a3d47;
	font-weight: 600;
}

/* UNDERLINE TEXT */
.achievement-title .highlight {
	position: relative;
	display: inline-block;
}

.achievement-title .highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background: #5a3d47;
}

/* IMAGE CARD */
.award-card {
	position: relative;
	overflow: hidden;
}

.award-card img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

/* OVERLAY */
.award-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px;
}

/* OVERLAY TEXT */
.award-overlay h4 {
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	margin-bottom: 25px;
}

/* BUTTON */
.award-btn {
	background: #e50914;
	color: #fff;
	padding: 14px 36px;
	font-size: 13px;
	letter-spacing: 2px;
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
}

.award-btn:hover {
	background: #c80711;
	color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.achievement-title {
		font-size: 34px;
	}

	.award-card img {
		height: 300px;
	}

	.achievement-section {
		padding: 70px 20px;
	}
}

/* Blog Section Css */
.achievement-grid {
	background: #fff2c9;
	padding: 100px 0;
}
.achievement {
	max-width: 1200px;
	margin: 0 auto;
}

.ach-box {
	margin-bottom: 50px;
}

.ach-date {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	color: #6b6b6b;
}

.ach-box hr {
	width: 60px;
	border-top: 1px solid #000;
	margin: 15px 0 25px;
}

.ach-box h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 26px;
	line-height: 1.3;
	color: #5a3d47;
	margin-bottom: 25px;
}

.ach-box img {
	width: 100%;
	height: 270px;
	object-fit: contain;
	margin-bottom: 20px;
}

.ach-box p {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 1.8;
	color: #7a6a70;
	margin-bottom: 30px;
	text-align: justify;
}

.read-btn {
	display: inline-block;
	background: #e50914;
	color: #fff;
	padding: 14px 36px;
	font-size: 13px;
	letter-spacing: 2px;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
}

.read-btn:hover {
	background: #c80711;
	color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.achievement-grid {
		padding: 70px 20px;
	}

	.ach-box h3 {
		font-size: 22px;
	}
}

/* Annual Section Css */
.reports-section {
	background: #fff2c9;
	padding: 80px 0;
}

/* IMAGE */
.report-image img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

/* EVENT CARD */
.event-card {
	background: #ffffff;
	padding: 50px 35px;
	margin-left: -120px;
	position: relative;
	z-index: 2;
}

.event-tag {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	letter-spacing: 2px;
	color: #e41717;
	font-weight: 700;
}

.event-card hr {
	width: 50px;
	margin: 20px 0;
	border-top: 1px solid #000;
}

.event-text {
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	line-height: 1.4;
	color: #5a3d47;
}

/* REPORT LIST */
.report-list {
	background: #ffffff;
	padding: 40px 25px;
}

.report-list h4 {
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
	color: #5a3d47;
}

.report-list hr {
	width: 60px;
	margin: 15px 0 25px;
}

.report-list ul {
	list-style: none;
	padding: 0;
}

.report-list ul li {
	margin-bottom: 14px;
}

.report-list ul li a {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	color: #8a6b75;
	text-decoration: none;
}

.report-list ul li a:hover {
	text-decoration: underline;
}

.get-more {
	display: inline-block;
	margin-top: 15px;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	color: #8a6b75;
	text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.event-card {
		margin-left: 0;
		margin-top: 30px;
	}

	.report-image img {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.reports-section {
		padding: 60px 20px;
	}

	.event-text {
		font-size: 22px;
	}
}

/* Gallery Pages Css */
.journey-section {
	background: #fbf6f3;
	padding: 100px 0;
}

/* TITLE */
.journey-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 52px;
	color: #5a3d47;
	line-height: 1.2;
	margin-bottom: 30px;
}

/* DIVIDER */
.journey-line {
	width: 70%;
	margin: 0 auto 60px;
	border-top: 1px solid #000;
}

/* GALLERY */
.gallery-row img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.journey-title {
		font-size: 36px;
	}

	.journey-line {
		width: 90%;
	}

	.gallery-row img {
		height: 220px;
		margin-bottom: 20px;
	}
}

/* Cooperatives Pages Css */
.coop-page {
	background: #fbf6f3;
}

/* COMMON */
.section-padding {
	padding: 80px 0;
}

.section-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 44px;
	color: #5a3d47;
}

.section-text,
.page-intro {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #6f6f6f;
}

.page-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 56px;
	padding-top: 60px;
	color: #5a3d47;
}

.section-line {
	width: 80px;
	margin: 25px auto 0;
}

/* MODEL CARD */
.model-card {
	background: #fff;
	padding: 30px;
	height: 100%;
}

.model-card h4 {
	font-family: "Cormorant Garamond", serif;
	font-size: 26px;
	margin-bottom: 15px;
}

/* COOP CARD */
.member-section {
	padding: 70px 20px;
	background: #faf5f3;
	font-family: "Georgia", serif;
}

.container {
	max-width: 1000px;
	margin: auto;
}

.member-title {
	text-align: center;
	font-size: 30px;
	color: #6a6a6a;
	margin-bottom: 30px;
}

.table-wrapper {
	overflow-x: auto;
}

.member-table {
	width: 100%;
	border-collapse: collapse;
	background: #f6d8d3;
}

.member-table thead th {
	background: #e14b1f;
	color: #fff;
	font-size: 18px;
	padding: 12px;
	text-align: center;
}

.member-table td {
	padding: 10px 14px;
	font-size: 17px;
	color: #000;
}

.member-table tbody tr:nth-child(even) {
	background: #fbe9e5;
}

.member-table tbody tr:nth-child(odd) {
	background: #f4d2cc;
}

.member-table td:last-child,
.member-table th:last-child {
	text-align: center;
	width: 180px;
}

.total-row td {
	font-weight: bold;
	background: #f1d3cf;
}

.member-note {
	margin-top: 20px;
	font-size: 16px;
	color: #000;
}

/* Career Pages Css */
.contact-section {
	background: #f3c6929f;
	padding: 80px 0;
}

/* TOP TEXT */
.cv-text {
	font-family: "Cormorant Garamond", serif;
	font-size: 32px;
	color: #5a3d47;
	margin-bottom: 40px;
	text-align: center;
}

.cv-text a {
	color: #5a3d47;
	text-decoration: none;
}

/* FORM */
.contact-form {
	max-width: 900px;
	margin: 0 auto;
}

.contact-form label {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	margin-bottom: 6px;
	display: block;
	font-weight: 900;
}

.contact-form label span {
	color: red;
}

/* NAME ROW */
.name-row {
	display: flex;
	gap: 30px;
	margin-bottom: 25px;
}

.name-row input {
	width: 100%;
}

.name-row small {
	font-size: 12px;
	color: #777;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #e5e5e5;
	margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #999;
}

/* BUTTON */
.submit-btn {
	background: #e50914;
	color: #fff;
	border: none;
	padding: 14px 40px;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 2px;
	cursor: pointer;
}

.submit-btn:hover {
	background: #c80711;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.cv-text {
		font-size: 24px;
	}

	.name-row {
		flex-direction: column;
		gap: 15px;
	}
}

/* Contact Us Pages Css */
.contact-page {
	background: #fbf6f3;
	padding: 90px 0;
}

/* LOCATIONS */
.location-box h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	color: #5a3d47;
}

.location-box hr {
	width: 60px;
	margin: 15px auto;
	border-top: 1px solid #000;
}

.location-box p {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	color: #6f6f6f;
}

.location-box i {
	color: #5a3d47;
	margin-right: 6px;
}

/* FORM */
.message-form label {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	display: block;
	margin-bottom: 6px;
}

.message-form span {
	color: red;
}

.message-form input,
.message-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #e5e5e5;
	margin-bottom: 20px;
}

.name-row {
	display: flex;
	gap: 25px;
}

.name-row small {
	font-size: 12px;
	color: #777;
}

/* BUTTON */
.send-btn {
	background: #e50914;
	color: #fff;
	padding: 14px 45px;
	border: none;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 2px;
}

/* MESSAGE TITLE */
.title-line {
	width: 100px;
	margin: 0 auto 20px;
}

.message-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 58px;
	color: #5a3d47;
}

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

	.message-title {
		margin-top: 40px;
		font-size: 36px;
	}
}

/* Testimonial Section css */

.testimonial-section {
	padding: 80px 20px;
}

.testimonial-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	text-align: center;
}

.testimonial-wrapper {
	position: relative;
}

.testimonial-slide {
	display: none;
	animation: fade 0.6s ease-in-out;
}

.testimonial-slide.active {
	display: block;
}

@keyframes fade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.testimonial-text {
	color: #9a6a7c;
	font-size: 18px;
	margin-bottom: 35px;
}

.testimonial-user {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.testimonial-user img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-user h4 {
	margin: 0;
	font-size: 15px;
	color: #7a3d56;
}

.testimonial-user span {
	font-size: 13px;
	color: #a38a94;
}

.testimonial-dots {
	margin-top: 25px;
}

.testimonial-dots span {
	width: 8px;
	height: 8px;
	background: #ddd;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
}

.testimonial-dots span.active {
	background: #000;
}

.nav-arrow {
	position: absolute;
	top: 40%;
	font-size: 28px;
	border: none;
	background: transparent;
	color: #ccc;
	cursor: pointer;
}

.nav-arrow.left {
	left: 0;
}
.nav-arrow.right {
	right: 0;
}

@media (max-width: 768px) {
	.nav-arrow {
		display: none;
	}
	.testimonial-text {
		font-size: 16px;
	}
}

/* Tieup section css */
.tieup-section {
	padding: 70px 0;
	background: #f7bf7fab;
	text-align: center;
}

.tieup-title {
	font-size: 26px;
	margin-bottom: 40px;
	color: #7a3d56;
}

.marquee {
	overflow: hidden;
	width: 100%;
	margin-top: 40px;
}

.marquee-track {
	display: flex;
	width: fit-content;
	animation: scroll 25s linear infinite;
}

.marquee-item {
	margin: 0 25px;
}

.marquee-item img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #eee;
	background: #fff;
}

/* RIGHT TO LEFT */
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.marquee-item img {
		width: 80px;
		height: 80px;
	}

	.tieup-title {
		font-size: 22px;
	}
}

/* Home Pages Video Section Css */
.video-hero {
	position: relative;
	width: 100%;
	min-height: 100vh; /* full screen height */
	background: url("images/video.jpeg") center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-family: "Montserrat", sans-serif;
}

/* OVERLAY */
.video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.video-content {
	position: relative;
	max-width: 900px;
	padding: 20px;
	z-index: 2;
}

.section-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #fa4d19;
	font-weight: bold;
}

.section-title {
	font-size: 42px;
	margin: 15px 0;
	font-family: "Montserrat" sans-serif;
}

.section-subtitle {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 40px;
}

/* PLAY BUTTON */
.play-btn {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #e64a19;
	border: none;
	font-size: 32px;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	position: relative;
}

.play-btn::before {
	content: "";
	position: absolute;
	inset: -18px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	animation: pulse 1.6s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
		opacity: 0.9;
	}
	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.play-btn {
		width: 65px;
		height: 65px;
		font-size: 24px;
	}
}

/* VIDEO BUTTON GROUP */
.video-btn-group {
	display: flex;
	gap: 650px; /* space between videos (desktop) */
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
	.video-btn-group {
		flex-direction: column; /* stack in column */
		gap: 30px; /* space between buttons */
	}
}

/* Bussiness Model section css */
.business-model-section {
	background: white;
}

.model-card {
	background: #fff2c9;
	padding: 25px;
	border-radius: 8px;
	height: 100%;
}

.model-title {
	font-weight: 600;
	margin-bottom: 15px;
}

.model-card ul {
	padding-left: 18px;
}

.model-card li {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* Mission & Vision section css */
.mission-vision-section {
	background-color: #fff2c9; /* Brown background */
}

.mv-wrapper {
	position: relative;
	padding-top: 20px;
}

.mv-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 10px;
}

.mv-card {
	background: #ffffff;
	padding: 30px;
	border-radius: 10px;
	min-height: 220px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mv-title {
	margin-bottom: 15px;
	font-weight: 700;
	color: #6b3f1d;
}

.mv-card p {
	color: #444;
	line-height: 1.7;
	text-align: justify;
}
