.hero-section {
	background: url("../images/hero.webp") no-repeat;
	background-size: cover;
	height: 550px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay {
	width: 100%;
	/* padding: 40px 5%; */
	padding-top: 40px;
	padding-right: 10px;
	padding-bottom: 40px;
	padding-left: 85px;
}

.hero-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.hero-left {
	flex: 1;
	color: #fff;
	max-width: 500px;
}

.hero-left h1 {
	font-size: 42px;
	line-height: 1.3;
}

.hero-left h1 .red {
	color: #e60000;
}

.hero-right {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 0px;
	max-width: 500px;
}

.service-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 200px;
}

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

.service-card p {
	background-color: #e60000;
	color: #fff;
	padding: 10px 0px;
	margin: 0;
	font-weight: 600;
}
/* Move first two cards up slightly */
/* .hero-right .service-card:nth-child(1),
.hero-right .service-card:nth-child(2) {
} */
.move-up {
	transform: translateY(-10px);
}
.move-down {
	transform: translateY(10px);
}

/* Responsive Code for Mobile 1st Section  */
/* Hero Section Responsive Styles */

@media (max-width: 1024px) {
	.hero-overlay {
		padding: 40px 40px;
	}

	.hero-left h1 {
		font-size: 36px;
	}

	.service-card {
		width: 150px;
	}

	.service-card img {
		height: 140px;
	}
}

@media (max-width: 768px) {
	.hero-section {
		height: auto;
		padding: 60px 0;
	}

	.hero-overlay {
		padding: 20px 20px;
	}

	.hero-content {
		flex-direction: column;
		gap: 30px;
	}

	.hero-left {
		max-width: 100%;
		text-align: center;
	}

	.hero-left h1 {
		font-size: 32px;
	}

	.hero-right {
		max-width: 100%;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.service-card {
		width: 100%;
		max-width: 160px;
	}

	.move-up,
	.move-down {
		transform: none;
	}
}

@media (max-width: 480px) {
	.hero-left h1 {
		font-size: 28px;
		line-height: 1.2;
	}

	.hero-right {
		grid-template-columns: 1fr;
		max-width: 300px;
	}

	.service-card {
		max-width: 100%;
	}

	.service-card img {
		height: 120px;
	}
}
/* Default card effect */
.service-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

/* Hover effect */
.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Initial card offset */
.move-up {
	transform: translateY(-5px);
}

.move-down {
	transform: translateY(5px);
}

/* Mobile: remove initial offset but keep hover lift */
@media (max-width: 768px) {
	.move-up,
	.move-down {
		transform: none !important;
	}
}

/* Responsive Code for Mobile 1st Section  */
/* Move last two cards down slightly */
/* .hero-right .service-card:nth-child(2),
.hero-right .service-card:nth-child(4) {
	transform: translateY(10px);
} */

/* ------------------------------------------------------------------------------------------------------  */

/* Our Services Section CSS Starts */
.our-services-section {
	height: 770px;
	width: 100%;
	padding: 64px 0px;
}

.our-services-header h2 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
}

.our-services-card {
	border: 5px solid #04245c;
	border-radius: 20px;
	font-weight: bold;
	text-align: center;
	width: 281px;
	font-size: 26px;
}
.our-services-card img {
	margin: 10px 0px;
}
/* Our Services Section CSS Starts */
/* .hero-title-start {
	font-size: 32px;
}
.hero-title-mid {
	font-size: 44px;
}
.hero-title-mid2 {
	font-size: 69px;
}
.hero-title-end {
	font-size: 69px;
} */

.hero-title {
	display: flex;
	flex-direction: column;
	gap: 0.3em; /* controls vertical spacing between lines */
}

.hero-title-start {
	font-size: 32px;
	line-height: 1.2;
}

.hero-title-mid {
	font-size: 44px;
	line-height: 1.1;
}

.hero-title-mid2 {
	font-size: 69px;
	line-height: 1;
}

.hero-title-end {
	font-size: 87px;
	line-height: 1;
	margin-top: -10px; /* optional fine-tuning */
}

/* Responsive  */
/* Our Services Section Responsive Styles */
@media (max-width: 1200px) {
	.our-services-section {
		height: auto;
		padding: 50px 0;
	}

	.our-services-header h2 {
		font-size: 42px;
	}

	.our-services-card {
		width: 100%;
		max-width: 281px;
		margin: 0 auto;
	}
}

@media (max-width: 992px) {
	.our-services-header h2 {
		font-size: 36px;
	}

	.our-services-card {
		font-size: 22px;
	}

	.row.g-4 {
		justify-content: center;
	}

	.col-md-3 {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.our-services-header h2 {
		font-size: 32px;
	}

	.our-services-header img {
		max-width: 80%;
	}

	.our-services-card {
		border-width: 3px;
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.our-services-header h2 {
		font-size: 28px;
	}

	.col-md-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.our-services-card {
		max-width: 250px;
		font-size: 18px;
	}

	.our-services-card img {
		/* max-height: 120px; */
		max-height: 190px;
		width: 100%;
		margin: 0px;
		border-radius: 20px;
	}

	.hero-title-end {
		font-size: 50px;
	}
}
/* Responsive  */
/* -----------------------------------------------------------------  */
/* How we work section starts  */
.how-we-work-section {
	height: auto;
	width: 100%;
	position: relative;
	background: url("../images/how-we-work.webp") no-repeat center center/cover;
	/* padding: 60px 0; */
	z-index: 1;
}

.how-we-work-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.how-card {
	background: #fff;
	border-radius: 15px;
	padding: 30px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
	height: 100%;
}

.how-card:hover {
	transform: translateY(-10px);
}

.how-card h5 {
	font-weight: 600;
	margin-bottom: 15px;
	color: #04245c;
}

.how-card p {
	font-size: 14px;
	color: #04245c;
}

.how-we-work-header h2 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
}

.how-we-work-content {
	padding-top: 87px;
	/* padding-bottom: 64px; */
	display: flex;
	flex-direction: column;
	gap: 57px;
}

/* ......................  */
.icon-hover {
	background-color: white;
	border-radius: 50%;
	padding: 20px;
	display: inline-block;
	transition: 0.3s ease;
}

.icon-img {
	width: 100px;
	height: 100px;
	transition: 0.3s ease;
	filter: brightness(0) saturate(100%) invert(22%) sepia(94%) saturate(5797%)
		hue-rotate(-6deg) brightness(95%) contrast(104%);
	/* red-ish */
}

.how-card:hover .icon-hover {
	background-color: #04245c;

	/* blue background on hover */
}

.how-card:hover .icon-img {
	filter: brightness(0) invert(1);
	/* icon becomes white on hover */
}

/* Responsive  */
/* How We Work Section Responsive Styles */
@media (max-width: 1200px) {
	.how-we-work-section {
		height: auto;
		padding: 0px 0;
	}

	.how-we-work-overlay {
		height: auto;
		min-height: 100%;
	}

	.how-we-work-content {
		padding: 60px 15px;
		gap: 40px;
	}

	.how-we-work-header h2 {
		font-size: 42px;
	}

	.how-card {
		padding: 25px 15px;
	}

	.icon-img {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 992px) {
	.how-we-work-header h2 {
		font-size: 36px;
	}

	.row.justify-content-center {
		gap: 20px 0;
	}

	.col-md-3 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.how-card {
		max-width: 350px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.how-we-work-header h2 {
		font-size: 32px;
	}

	.how-we-work-header img {
		max-width: 80%;
	}

	.how-card h5 {
		font-size: 18px;
	}

	.icon-hover {
		padding: 15px;
	}

	.icon-img {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 576px) {
	.how-we-work-header h2 {
		font-size: 28px;
	}

	.col-md-3,
	.col-sm-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.how-card {
		max-width: 300px;
		padding: 20px 15px;
	}

	.how-card p {
		font-size: 13px;
	}

	.icon-img {
		width: 60px;
		height: 60px;
	}
}
/* Responsive  */

/* ---------------------------------------------  */
/* best experts section starts  */
.best-experts-section {
	height: auto;
	width: 100%;
	position: relative;
	background: url("../images/best-experts-bg.webp") no-repeat center
		center/cover;
	/* padding: 60px 0; */
	z-index: 1;
}
.best-experts-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.best-experts-section-content {
	padding-top: 60px;
	padding-bottom: 60px;
}
.best-experts-section-header h2 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	color: white;
}

.best-experts-section-body {
	display: flex;
	gap: 115px;
	justify-content: center;
	margin-top: 30px;
}
.best-experts-section-body-top h2 {
	color: white;
	font-size: 39px;
	font-weight: bold;
}
.best-experts-section-body-top p {
	color: white;
}
.best-experts-section hr {
	color: white;
}

.best-experts-section-body-mid-card {
	position: relative;
	text-align: center;
	width: 152.68px;
	height: 71.88px;
	background: white;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding-top: 15px;
	margin-top: 15px;
}

.best-experts-section-body-mid-card a {
	display: block;
	text-decoration: none;
	height: 100%;
}

.best-experts-section-body-mid-card img {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 45px;
}

.best-experts-section-body-mid-card p {
	color: #04245c;
	font-size: 13px;
	margin-top: 10px; /* Space below icon */
	line-height: 1.2;
	font-weight: 600;
}

.best-experts-section-body-mid {
	display: flex;
	gap: 12px;
	margin: 50px 0px;
}

/* Responsive  */
/* Best Experts Section Responsive Styles */
@media (max-width: 1200px) {
	.best-experts-section-body {
		gap: 60px;
	}

	.best-experts-section-header h2 {
		font-size: 42px;
	}

	.best-experts-section-body-top h2 {
		font-size: 34px;
	}

	.best-experts-section-body-mid {
		margin: 40px 0;
	}
}

@media (max-width: 992px) {
	.best-experts-section-body {
		flex-direction: column;
		gap: 40px;
	}

	.best-experts-section-body-left {
		text-align: center;
	}

	.best-experts-section-body-left img {
		max-width: 100%;
		height: auto;
	}

	.best-experts-section-header h2 {
		font-size: 38px;
	}

	.best-experts-section-body-top h2 {
		font-size: 30px;
	}

	.best-experts-section-body-mid {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.best-experts-section-header h2 {
		font-size: 32px;
	}

	.best-experts-section-header img {
		max-width: 80%;
	}

	.best-experts-section-body-top h2 {
		font-size: 26px;
	}

	.best-experts-section-body-top p {
		font-size: 15px;
	}

	.best-experts-section-body-mid {
		flex-direction: column;
		align-items: center;
		gap: 40px;
		margin: 30px 0;
	}

	.best-experts-section-body-mid-card {
		width: 180px;
		height: 80px;
	}
}

@media (max-width: 576px) {
	.best-experts-section-header h2 {
		font-size: 28px;
	}

	.best-experts-section-content {
		padding: 40px 15px;
	}

	.best-experts-section-body-top h2 {
		font-size: 22px;
	}

	.best-experts-section-body-mid-card img {
		width: 40px;
		height: 40px;
		top: -20px;
	}

	.best-experts-section-body-mid-card p {
		font-size: 12px;
	}

	.btn-discover {
		width: 100%;
		text-align: center;
	}
}
/* Responsive  */

/* ----------------------------------------------------------------------  */
/* Offering Section  */
.offering-section-header h2 {
	font-size: 50px;
	font-weight: bold;
}

.offering-section-header p {
	font-size: 20px;
	font-weight: 600;
}

.offering-section-header {
	line-height: 75px;
}

.offering-section-content {
	padding-top: 60px;
	padding-bottom: 60px;
}
/* Cards  */
.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background-color: white;
	padding: 2rem;
	border-radius: 1.5rem;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 24rem;
}

.testimonial-image {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.testimonial-name {
	font-size: 1.25rem;
	font-weight: bold;
	color: rgb(31, 41, 55);
}

.testimonial-role {
	font-size: 0.875rem;
	color: rgb(75, 85, 99);
	margin-bottom: 1.5rem;
}

.testimonial-text {
	color: rgb(55, 65, 81);
	margin-bottom: 1.5rem;
	line-height: 1.625;
}

.rating {
	display: flex;
	gap: 0.25rem;
}

.star {
	width: 1.5rem;
	height: 1.5rem;
}

.star.filled {
	color: rgb(250, 204, 21);
	fill: rgb(250, 204, 21);
}

.star.empty {
	color: rgb(209, 213, 219);
}
/* Cards  */
/* Responsive  */
@media (max-width: 1200px) {
	.offering-section-header h2 {
		font-size: 42px;
	}

	.offering-section-header p {
		font-size: 18px;
	}
}
@media (max-width: 992px) {
	.offering-section-header h2 {
		font-size: 38px;
	}

	.offering-section-header {
		line-height: 60px;
	}
}
@media (max-width: 768px) {
	.offering-section-header h2 {
		font-size: 32px;
	}

	.offering-section-header p {
		font-size: 16px;
	}

	.offering-section-header img {
		max-width: 80%;
	}
	.cCarousel-section {
		padding: 0px 0px;
	}
}
@media (max-width: 576px) {
	.offering-section-header h2 {
		font-size: 28px;
	}

	.offering-section-content {
		padding: 40px 0px;
	}

	.offering-section-header {
		line-height: 50px;
	}
}

/* Responsive  */
/* Offering Section  */

/* Home Blogs Section  */
/* .home-blogs-section {
	height: 961px;
	width: 100%;
	position: relative;
	background: url("../images/home-blog-bg.webp") no-repeat center
		center/cover;
	z-index: 1;
}
.home-blogs-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.home-blogs-section-content {
	padding-top: 60px;
	padding-bottom: 60px;
}
.home-blogs-section-header h2 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	color: white;
} */

/* Home Blogs Section */
.home-blogs-section {
	height: 961px;
	width: 100%;
	position: relative;
	background: url("../images/home-blog-bg.webp") no-repeat center center/cover;
	z-index: 1;
}

.home-blogs-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.home-blogs-section-content {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	z-index: 3; /* Ensure content is above overlay */
}

.home-blogs-section-header h2 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	color: white;
}

/* Swiper Customization */
.swiper-slide {
	background-color: white;
	border-radius: 15px;
}
.myBlogSwiper {
	padding: 40px 0 60px;
	position: relative;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 24px;
	font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
	color: white;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background-color: #04245c;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(255, 255, 255, 0.4);
}

.swiper-pagination {
	position: absolute;
	bottom: 20px !important;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: white;
	opacity: 0.5;
	margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
	background: red;
	opacity: 1;
	transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.home-blogs-section {
		height: auto;
		/* padding: 60px 0; */
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
	.home-blogs-section-header img {
		max-width: 80%;
	}
}
.blog-card img {
	width: 100%;
	height: 220px; /* You can adjust height */
	object-fit: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.blog-card-description {
	max-height: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
/* Home Blog Cards  */

/* Home Blog Cards  */

/* -----------------------------------------------------------  */
