/* Black */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Black Italic */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Extra Bold */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Extra Bold Italic */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Bold Italic */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Semi Bold */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Semi Bold Italic */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Medium Italic */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Italic */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/static/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}




.hero-section {
    position: relative;
    background-image: url('../img/header-background-image.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.container.text-content {
    position: relative;
    max-width: 600px;
}

.container.text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.container.text-content p {
    font-size: 1.2rem;
}

.info-cards {
    position: relative;
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin-top: 50px;
}

.card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
}

.card .icon {
    font-size: 2rem;
    color: #9b2c65; /* Accent color */
    margin-bottom: 10px;
}

.card h4 {
    margin-bottom: 10px;
    font-weight: bold;
}

.card p {
    font-size: 0.9rem;
    color: #555;
}

.card button {
    background-color: #9b2c65; /* Accent button color */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.card button:hover {
    background-color: #7a2350; /* Button hover color */
}

/* Responsive */
@media (max-width: 768px) {
    .info-cards {
        flex-direction: column;
    }
}


/* Presence section */
.presence-section {
    background-color: #fff;
    color: #333;
}

.presence-section h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.presence-section p {
    font-size: 0.95rem;
    color: #555;
}

.presence-section .icon {
    color: #9b2c65; /* Accent color */
}

.presence-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presence-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.text-primary {
    color: #9b2c65 !important;
}



.channel-partners-section {
	padding: 60px 0;
}

.reviews-link {
	color: #e91e63;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 30px;
}

.reviews-link:hover {
	color: #c2185b;
	text-decoration: none;
}

.section-title {
	font-size: 48px;
	font-weight: 400;
	color: #333;
	margin-bottom: 60px;
	font-family: 'Playfair Display', serif;
}

.partners-swiper {
	padding: 0 60px;
	margin-bottom: 40px;
}

.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
}

.partner-logo {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.partner-logo img {
	max-height: 100%;
	max-width: 150px;
	object-fit: contain;
	transition: all 0.3s ease;
}

.partner-logo img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* Custom Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
	color: #666;
	font-size: 20px;
	margin-top: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #333;
}

.swiper-button-next {
	right: 10px;
}

.swiper-button-prev {
	left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px;
	font-weight: bold;
}

/* Custom Swiper Pagination */
.swiper-pagination {
	position: static;
	margin-top: 30px;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: #ddd;
	opacity: 1;
	margin: 0 4px;
}

.swiper-pagination-bullet-active {
	background-color: #333;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.section-title {
		font-size: 40px;
	}
	.partners-swiper {
		padding: 0 50px;
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 32px;
		margin-bottom: 40px;
	}
	.partner-logo {
		height: 50px;
	}
	.partner-logo img {
		max-width: 120px;
	}
	.partners-swiper {
		padding: 0 40px;
	}
	.swiper-slide {
		height: 70px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 28px;
	}
	.partner-logo img {
		max-width: 100px;
	}
	.partners-swiper {
		padding: 0 30px;
	}
}



.testimonials-section {
	background-color: #f8f9fa;
	padding: 60px 0;
}

.reviews-link {
	color: #e91e63;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 30px;
}

.reviews-link:hover {
	color: #c2185b;
	text-decoration: none;
}

.section-title {
	font-size: 48px;
	font-weight: 400;
	color: #333;
	margin-bottom: 60px;
	font-family: 'Playfair Display', serif;
}

.testimonial-card {
	background: white;
	padding: 40px 30px 30px 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	height: 100%;
	position: relative;
	margin-bottom: 30px;
}

.stars {
	margin-bottom: 25px;
}

.star {
	color: #ffc107;
	font-size: 18px;
	margin-right: 2px;
}

.star.empty {
	color: #e0e0e0;
}

.testimonial-text {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 25px;
	text-align: left;
}

.client-info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.client-details h5 {
	color: #333;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.client-details p {
	color: #999;
	font-size: 13px;
	margin: 0;
}

.quote-mark {
	color: #d4a574;
	font-size: 60px;
	font-family: serif;
	line-height: 1;
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
	.section-title {
		font-size: 32px;
	}
	.testimonial-card {
		padding: 30px 20px 25px 20px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 28px;
	}
}



.contact-section {
	background-color: #ffffff;
	padding: 80px 0;
}

.contact-header {
	color: #a0376f;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.section-title {
	font-size: 48px;
	font-weight: 400;
	color: #333;
	margin-bottom: 50px;
	font-family: 'Playfair Display', serif;
}

.contact-info {
	margin-bottom: 60px;
}

.contact-item {
	margin-bottom: 40px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contact-icon {
	/* width: 50px;
	height: 50px;
	background-color: rgba(160, 55, 111, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; */
	color: #a0376f;
	font-size: 75px;
}

.contact-details h4 {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-details p {
	color: #666;
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
}

.map-container {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
	width: 100%;
	height: 300px;
	border: none;
}

.form-section h3 {
	color: #333;
	font-size: 36px;
	font-weight: 400;
	margin-bottom: 30px;
	font-family: 'Playfair Display', serif;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	color: #333;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 8px;
	display: block;
}

.form-control {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 15px;
	font-size: 15px;
	color: #333;
	background-color: #fafafa;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #a0376f;
	box-shadow: 0 0 0 0.2rem rgba(160, 55, 111, 0.15);
	background-color: #fff;
	outline: none;
}

.form-control::placeholder {
	color: #aaa;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.btn-send {
	background-color: #a0376f;
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 6px;
	transition: all 0.3s ease;
	width: 100%;
}

.btn-send:hover {
	background-color: #8a2f5f;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(160, 55, 111, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
	.section-title {
		font-size: 36px;
	}
	
	.form-section h3 {
		font-size: 28px;
	}

	.contact-section {
		padding: 60px 0;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 32px;
	}
	
	.form-section h3 {
		font-size: 24px;
	}
}


.team-section {
	background-color: #f8f9fa;
	padding: 80px 0;
}

.team-header {
	color: #a0376f;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.section-title {
	font-size: 48px;
	font-weight: 400;
	color: #333;
	margin-bottom: 60px;
	font-family: 'Playfair Display', serif;
}

.team-card {
	background: white;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	text-align: center;
	height: 100%;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 30px auto;
	overflow: hidden;
	border: 3px solid #f0f0f0;
}

.team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-name {
	color: #333;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
	font-family: 'Playfair Display', serif;
}

.team-designation {
	color: #666;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 20px;
}

.team-description {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.section-title {
		font-size: 36px;
	}
	
	.team-section {
		padding: 60px 0;
	}

	.team-card {
		padding: 30px 20px;
	}

	.team-image {
		width: 100px;
		height: 100px;
		margin-bottom: 20px;
	}

	.team-name {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 32px;
	}
}





.commitment-label {
	color: #a0376f;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.vision-title {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.2;
}

.vision-description {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 80px;
	max-width: 1000px;
}

.pillars-container {
	display: flex;
	gap: 60px;
	justify-content: space-between;
	align-items: flex-start;
}

.pillar {
	flex: 1;
	text-align: left;
}

.pillar-icon {
	width: 60px;
	height: 60px;
	background-color: #a0376f;
	border-radius: 50%;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
}

.pillar-title {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.3;
}

.pillar-description {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

@media (max-width: 768px) {
	.vision-container {
		padding: 40px 20px;
	}
	
	.vision-title {
		font-size: 36px;
	}
	
	.pillars-container {
		flex-direction: column;
		gap: 40px;
	}
	
	.pillar {
		text-align: center;
	}
}


.comprehensive-label {
	color: #a0376f;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
	letter-spacing: 0.3px;
}

.assistance-title {
	font-size: 56px;
	font-weight: 400;
	color: #2c2c2c;
	margin-bottom: 80px;
	line-height: 1.1;
	font-family: Georgia, serif;
}

.process-flow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin-top: 40px;
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	flex: 1;
}

.step-icon {
	width: 80px;
	height: 80px;
	background-color: #a0376f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	position: relative;
	z-index: 2;
}

.step-icon svg {
	width: 32px;
	height: 32px;
	fill: white;
	stroke: white;
}

.step-title {
	font-size: 18px;
	font-weight: 600;
	color: #2c2c2c;
	text-align: center;
	line-height: 1.3;
	font-family: Georgia, serif;
}

.connector-line {
	position: absolute;
	top: 40px;
	left: 50%;
	width: calc(100% - 80px);
	height: 2px;
	background-color: #a0376f;
	z-index: 1;
	transform: translateY(-50%);
}

.process-step:last-child .connector-line {
	display: none;
}

@media (max-width: 1024px) {
	.assistance-container {
		padding: 60px 40px;
	}
	
	.step-icon {
		width: 70px;
		height: 70px;
	}
	
	.step-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.step-title {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.assistance-container {
		padding: 40px 20px;
	}
	
	.assistance-title {
		font-size: 42px;
	}
	
	.process-flow {
		flex-direction: column;
		gap: 40px;
	}
	
	.connector-line {
		display: none !important;
	}
	
	.process-step {
		flex: none;
	}
}
