@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.homepage-hero-section{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: -80px;
	padding: 9rem 50px; 
	min-height: 108vh;
	justify-content: center;
	text-align: center;
	position: relative;
	align-content: center;
	background-color: rgba(255,255,255,0.65);
	z-index: 2; 
	width: 100%;
	box-sizing: border-box;
}


h1.homepage-hero-section-bottom-header{
	margin-top: 230px;
	font-family: "Poppins", sans-serif;
    color:#000;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    font-size: 6.5rem;
    line-height: normal;
}

#homepage-hero-header-span{
	color: #53A2E8;
	display:inline-block;
	transition: opacity 0.4s ease;
}

p.homepage-hero-section-paragraph{
    color:#374754;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
	font-family: "DM Sans", sans-serif;
    line-height: normal;
    padding: 5px 0;
    max-width: 1800px;
	margin: 0 auto;
	text-align: center;
    width: 100%;
}


.homepage-hero-section-button-group{
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
	margin: 0 auto;
    padding: 25px 0;
}


.homepage-hero-section-button.get-in-touch-button{

	background-color: #53A2E8;
	border: 2px solid #53A2E8;
	color: #F5FCFF;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 15px;
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
	
}

.homepage-hero-section-button.get-in-touch-button:hover{

	background-color: transparent;
	border: 2px solid #53A2E8;
	color: #53A2E8;
	
}



.homepage-hero-section-button.learn-more-button{
    
	background-color: #fff;
	border: 2px solid #53A2E8;
	color: #53A2E8;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 15px;
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
	
}

.homepage-hero-section-button.learn-more-button:hover{

	background-color: #53A2E8;
	border: 2px solid #53A2E8;
	color: #F5FCFF;
	
}

.homepage-hero-section-image{
	width: 100%;
	max-width: 1400px;
	/* don't force a fixed height here — allow image to size naturally while capping with max-height */
	height: auto;
	max-height: 700px;
	margin: 40px auto;
	object-fit: cover;
}


.homepage-video-container-relative{
	position: relative; 
	margin-top: -80px; 
	overflow: hidden; 
}

/* Video Container */
.homepage-video-container {
	position: absolute; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	text-align: center;
}

.homepage-video-iframe,
.homepage-video {
	width: 100%;
	height: 100%; /* fill the container which mirrors the hero height */
	min-height: 360px; /* provide a reasonable minimum for small screens */
	border: none;
	display: block;
	object-fit: cover; /* keep aspect and cover the hero area */
}

/* If you want the hero to overlap above the video (visual offset), use padding or negative margins on the hero content instead of positioning the hero absolutely. */



.hero-section-two{
    width: 100%;
    padding: 50px 75px;
    background-color: #F4F6FF;
    width: 100%;
    text-align: center;
    justify-content: center;
}


.hero-section-two-inner{
    margin: 40px auto;
    width: 100%;
    max-width: 1800px;
    width: 100%;
    text-align: center;
}


.hero-section-two-inner h5{
    font-size: 32px;
    font-weight: 400;
	font-family: "DM Sans", sans-serif;
    line-height: normal;
    color: #374754;
    text-align: start;
    margin: 0 auto;
}



/* Homepage Image Grid Section */
.homepage-image-grid-section {
	padding: 80px 75px;
	background-color: #fff;
}

.image-grid-container {
	max-width: 1800px;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	align-items: center;
	overflow: hidden; 
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
	animation: scroll 15s linear infinite;
    flex-wrap: nowrap;
    will-change: transform;
}

.marquee-strip {
	display: flex;
	gap: 40px;
	align-items: center;
	flex: 0 0 auto;
}



.image-grid-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 0;
}

.image-grid-item img {
	height: 82px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	display: block;
}



@media (min-width: 1200px) {

/* keep the same layout behaviour but maintain marquee flex container */
.image-grid-container {
	max-width: 1800px;
	margin: 0 auto;
	padding: 30px 0;
}

}

/* Image Grid Responsive Design */
@media (max-width: 1200px) {
	.homepage-image-grid-section {
		padding: 60px 50px;
	}
	
	.image-grid-container {
		display: flex;
		gap: 20px;
		padding: 20px 0;
		overflow: hidden;
		align-items: center;
	}

	.hero-section-two-inner h5{
		font-size: 28px;
	}
	
}

@media (max-width: 900px) {
	.homepage-image-grid-section {
		padding: 50px 30px;
	}
	
	.image-grid-container {
		display: flex;
		gap: 18px;
		padding: 18px 0;
		overflow: hidden;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.homepage-image-grid-section {
		padding: 40px 20px;
	}
	
	.image-grid-container {
		display: flex;
		gap: 14px;
		padding: 14px 0;
		overflow: hidden;
		align-items: center;
	}
	
	.image-grid-item img {
		height: 60px;
		width: 100%;
	}

	.hero-section-two-inner h5{
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.homepage-image-grid-section {
		padding: 30px 15px;
	}
	
	.image-grid-container {
		display: flex;
		gap: 12px;
		padding: 12px 0;
		overflow: hidden;
		align-items: center;
	}

	.image-grid-item {
		width: 70px;
	}

	
	.image-grid-item img {
		height: 50px;
		max-width: 80px;
		width: auto;
	}
}



/* How We Stand Out Section */
.how-we-stand-out-section {
	padding: 9rem 75px;
	background-color: #fff;
}

.stand-out-container {
	max-width: 1800px;
	padding: 75px 0px;
	margin: 0 auto;
}

.stand-out-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.stand-out-text {
	color: #fff;
	text-align: start;
}

.stand-out-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #3A3A4D;
	margin-bottom: 30px;
	line-height: 1.2;
}

.stand-out-intro {
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	color: #374754;
	margin-bottom: 15px;
	/* line-height: 1.6; */
    font-weight: 400;
}

.stand-out-list {
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.stand-out-list li {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	color: #374754;
    font-weight: 350;
	/* line-height: 1.5; */
}

.checkmark-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.stand-out-image {
	position: relative;
}

.stand-out-image img {
	width: 100%;
	height: 100%;
	border-radius: 30px;
	object-fit: cover;
}

/* How We Stand Out Responsive Design */
@media (max-width: 1200px) {

	.stand-out-container {
		padding: 0px 50px;
	}

	.how-we-stand-out-section {
		padding: 80px 50px;
	}
	
	.stand-out-content {
		gap: 60px;
	}
	
	.stand-out-heading {
		font-size: 42px;
	}
	
	.stand-out-image img {
		border-radius: 25px;
	}
}

@media (max-width: 900px) {
	.how-we-stand-out-section {
		padding: 60px 30px;
	}
	
	.stand-out-content {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: start;
	}
	
	.stand-out-heading {
		font-size: 36px;
		margin-bottom: 25px;
	}
	
	.stand-out-intro {
		font-size: 16px;
		margin-bottom: 20px;
	}
	
	.stand-out-list {
		margin: 30px 0 0 0;
	}
	
	.stand-out-list li {
		justify-content: flex-start;
		text-align: left;
		max-width: 500px;
		margin-left: 0;
		margin-right: 0;
		display: flex;
		align-items: center;
	}
	
	.stand-out-image {
		order: -1;
	}
	
	.stand-out-image img {
		border-radius: 20px;
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 768px) {
	.how-we-stand-out-section {
		padding: 70px 25px;
	}
	
	.stand-out-content {
		gap: 40px;
	}
	
	.stand-out-heading {
		font-size: 32px;
		margin-bottom: 20px;
	}
	
	.stand-out-intro {
		font-size: 15px;
		margin-bottom: 15px;
	}
	
	.stand-out-list li {
		font-size: 16px;
		margin-bottom: 18px;
		gap: 12px;
		justify-content: flex-start;
		text-align: left;
		max-width: 500px;
		margin-left: 0;
		margin-right: 0;
		display: flex;
		align-items: flex-start;
	}
	
	.stand-out-image img {
		border-radius: 15px;
	}
}

@media (max-width: 600px) {
	.how-we-stand-out-section {
		padding: 40px 20px;
	}

		.stand-out-container {
		padding: 0px 10px;
	}

	
	
	.stand-out-content {
		gap: 35px;
	}
	
	.stand-out-heading {
		font-size: 28px;
		margin-bottom: 15px;
	}
	
	.stand-out-intro {
		font-size: 14px;
		margin-bottom: 15px;
	}
	
	.stand-out-list {
		margin: 25px 0 0 0;
	}
	
	.stand-out-list li {
		font-size: 15px;
		margin-bottom: 15px;
		gap: 10px;
		justify-content: flex-start;
		text-align: left;
		max-width: 500px;
		margin-left:0;
		margin-right: 0;
		display: flex;
		align-items: flex-start;
	}
	
	.checkmark-icon {
		margin-top: 1px;
		flex-shrink: 0;
	}
	
	.stand-out-image img {
		border-radius: 12px;
	}
}

@media (max-width: 480px) {
	.how-we-stand-out-section {
		padding: 35px 15px;
	}
		.stand-out-container {
		padding: 0px 10px;
	}

	
	.stand-out-content {
		gap: 30px;
	}
	
	.stand-out-heading {
		font-size: 24px;
		margin-bottom: 15px;
		line-height: 1.3;
	}
	
	.stand-out-intro {
		font-size: 13px;
		margin-bottom: 15px;
		line-height: 1.4;
	}
	
	.stand-out-list {
		margin: 20px 0 0 0;
	}
	
	.stand-out-list li {
		font-size: 14px;
		margin-bottom: 12px;
		gap: 8px;
		line-height: 1.4;
		justify-content: flex-start;
		text-align: left;
		max-width: 500px;
		margin-left: 0;
		margin-right: 0;
		display: flex;
		align-items: flex-start;
	}
	
	.stand-out-image img {
		border-radius: 10px;
	}
}

@media (max-width: 360px) {
	.how-we-stand-out-section {
		padding: 30px 12px;
	}
	
	.stand-out-heading {
		font-size: 22px;
	}
	
	.stand-out-intro {
		font-size: 12px;
	}
	
	.stand-out-list li {
		font-size: 13px;
		margin-bottom: 10px;
		justify-content: flex-start;
		text-align: left;
		max-width: 500px;
		margin-left: 0;
		margin-right: 0;
		display: flex;
		align-items: flex-start;
	}
}
@media (max-width: 1850px) {

h1.homepage-hero-section-bottom-header{
    font-size: 5rem;
}
}

@media (max-width: 1500px) {

h1.homepage-hero-section-bottom-header{
    font-size: 4rem;
}

}


/* Responsive Design */
@media (max-width: 1200px) {
    .homepage-hero-section {
        padding: 80px 50px 40px 50px;
        height: auto;
        min-height: 100vh;
    }
    
    h1.homepage-hero-section-bottom-header {
        font-size: 48px;
		margin-top: 150px;
    }
    
    p.homepage-hero-section-paragraph {
        font-size: 24px;
        max-width: 700px;
    }
    
}

@media (max-width: 768px) {
    .homepage-hero-section {
       padding: 80px 20px 40px 20px;
    }
}

@media (max-width: 480px) {
    .homepage-hero-section {
        padding: 40px 20px 20px 20px;
    }
    
    h1.homepage-hero-section-bottom-header {
        font-size: 28px;
        margin: 15px 0;
		margin-top: 180px;
    }
    
    p.homepage-hero-section-paragraph {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .homepage-video-container {
        margin: 0px auto;
        padding: 0px;
    }
    
}

/* We Won't Waste Your Time Section */
.wont-waste-time-section {
	padding: 9rem 75px;
	background-color: #53A2E8;
}

.wont-waste-container {
	max-width: 1800px;
	padding: 75px 0px;
	margin: 0 auto;
	color: #fff;
}

.wont-waste-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.wont-waste-image {
	position: relative;
	height: 100%;
}

.wont-waste-image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.wont-waste-text {
	color: #fff;
	text-align: start;
}

.wont-waste-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #fff;
}

.right-fit-box {
	/* background-color: #5db3f91f; */
	/* border-radius: 8px; */
	padding: 5px 0px;
	/* display: inline-block; */
	margin-bottom: 40px;
}

.right-fit-text {
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	/* font-weight: 400; */

}

.wont-waste-list {
	margin-top: 50px;
	list-style: none;
    align-items: center;
	padding: 0;
	margin: 0;
}

.wont-waste-list li {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	color: #fff;
	font-weight: 350;
	line-height: 1.5;
}

.wont-waste-list .checkmark-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.wont-waste-list .checkmark-icon img{
	height: 30px;

}
/* We Won't Waste Your Time Responsive Design */
@media (max-width: 1200px) {
	.wont-waste-time-section {
		text-align: start;
		padding: 80px 50px;
	}

	
	.wont-waste-container {
		padding: 80px 50px;
	}
	
	.wont-waste-content {
		gap: 60px;
		text-align: start;
	}
	
	.wont-waste-heading {
		text-align: start;
		font-size: 42px;
	}
	
	.wont-waste-image img {
		border-radius: 18px;
	}
}

@media (max-width: 900px) {
	.wont-waste-time-section {
		text-align: start;
		/* padding: 60px 30px; */
	}
		
	.wont-waste-container {
		padding: 0px 25px;
	}
	
	.wont-waste-content {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: start;
	}
	
	.wont-waste-heading {
		font-size: 36px;
		margin-bottom: 25px;
	}
	
	.right-fit-box {
		margin-bottom: 30px;
		display: inline-block;
	}
	
	.right-fit-text {
		font-size: 18px;
	}
	
	.wont-waste-list {
		margin: 0;
	}
	
	.wont-waste-list li {
		justify-content: flex-start;
		text-align: left;
		font-size: 16px;
		max-width: 500px;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 18px;
	}
	
	.wont-waste-image {
		order: -1;
	}
	
	.wont-waste-image img {
		border-radius: 15px;
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 768px) {
	.wont-waste-time-section {
		padding: 0px 25px;
	}
	
	.wont-waste-content {
		gap: 40px;
	}
	
	.wont-waste-heading {
		font-size: 32px;
		margin-bottom: 20px;
	}
	
	.right-fit-box {
		margin-bottom: 25px;
		padding: 12px 20px;
	}
	
	.right-fit-text {
		font-size: 16px;
	}
	
	.wont-waste-list li {
		font-size: 15px;
		margin-bottom: 16px;
		gap: 12px;
	}
	
	.wont-waste-image img {
		border-radius: 12px;
	}
}

@media (max-width: 600px) {
	.wont-waste-time-section {
		padding: 40px 20px;
	}
	
	.wont-waste-content {
		gap: 35px;
	}
	
	.wont-waste-heading {
		font-size: 28px;
		margin-bottom: 15px;
	}
	
	.right-fit-box {
		padding: 10px 18px;
		margin-bottom: 20px;
	}
	
	.right-fit-text {
		font-size: 16px;
	}
	
	.wont-waste-list {
		margin: 0;
	}
	
	.wont-waste-list li {
		font-size: 14px;
		margin-bottom: 14px;
		gap: 10px;
	}
	
	.wont-waste-list .checkmark-icon {
		margin-top: 1px;
		flex-shrink: 0;
	}
	
	.wont-waste-image img {
		border-radius: 10px;
	}
}

@media (max-width: 480px) {
	.wont-waste-time-section {
		padding: 35px 15px;
	}
	
	.wont-waste-content {
		gap: 30px;
	}
	
	.wont-waste-heading {
		font-size: 24px;
		margin-bottom: 15px;
		line-height: 1.3;
	}
	
	.right-fit-box {
		padding: 8px 16px;
		margin-bottom: 18px;
	}
	
	.right-fit-text {
		font-size: 16px;
	}
	
	.wont-waste-list li {
		font-size: 13px;
		margin-bottom: 12px;
		gap: 8px;
		line-height: 1.4;
	}
	
	.wont-waste-image img {
		border-radius: 8px;
	}
}

@media (max-width: 360px) {
	.wont-waste-time-section {
		padding: 30px 12px;
	}
	
	.wont-waste-heading {
		font-size: 22px;
	}
	
	.right-fit-box {
		padding: 6px 14px;
		margin-bottom: 15px;
	}
	
	.right-fit-text {
		font-size: 15px;
	}
	
	.wont-waste-list li {
		font-size: 12px;
		margin-bottom: 10px;
	}
}

/* We Typically Work With Section */
.typically-work-with-section {
	padding: 0px 75px;
	position: relative;
	overflow: hidden;
}

.typically-work-with-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(165deg, #fff 0%, #fff 50%, #17617B 50%, #17617B 100%);
	z-index: -1;
}

.typically-work-container {
	max-width: 1800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.typically-work-content {
	display: flex;
	gap: 80px;
	align-items: center;
	justify-content: center;
	padding: 75px;
}

.typically-work-info-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typically-work-info-box-inner{
    height: 460px;
    width: 560px;
    margin-left: auto;
	margin-right: auto;
	border-radius: 20px;
	padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.typically-work-heading {
	font-family: "Poppins", sans-serif;
	font-size: 38px;
	font-weight: 600;
	color: #F3ECEC;
	margin-bottom: 30px;
	line-height: 1.2;
}

.business-criteria-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}


.criteria-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.criteria-icon {
	flex-shrink: 0;
}

.icon-circle {
	width: 50px;
	height: 50px;
	background-color: #f0f0f0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-text {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #F3ECEC;
}

.criteria-text {
	flex: 1;
}

.criteria-text span {
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	color: #F3ECEC;
	font-weight: 400;
	line-height: 1.5;
}

.typically-work-image {
	position: relative;
}

.typically-work-image img {
	width: 100%;
	height: 700px;
	border-radius: 20px;
	object-fit: contain;
}

/* We Typically Work With Responsive Design */
@media (max-width: 1200px) {
	.typically-work-with-section {
		padding: 0px 140px;
	}
	
	.typically-work-content {
		grid-template-columns: 1fr;
		gap: 0px;
		align-items: center;
		justify-content: center;
	}
	
	.typically-work-info-box {
		width: 100%;
		margin-bottom: 40px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.typically-work-heading {
		font-size: 32px;
	}
	
	.typically-work-info-box-inner {
		height: 400px;
		width: 480px;
		padding: 35px 25px;
		margin: 0 auto;
	}
	
	.typically-work-image img {
		/* height: 600px; */
		display: none;
	}
}

@media (max-width: 900px) {
	.typically-work-with-section {
		padding: 0px 140px;
	}
	
	.typically-work-content {
		grid-template-columns: 1fr;
		gap: 0px;
		align-items: center;
		justify-content: center;
	}
	
	.typically-work-info-box {
		width: 100%;
		margin-bottom: 40px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.typically-work-info-box-inner {
		height: 350px;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		padding: 30px 25px;
	}
	
	.typically-work-heading {
		font-size: 28px;
		margin-bottom: 25px;
	}
	
	.business-criteria-list {
		gap: 20px;
	}
	
	.criteria-item {
		gap: 15px;
	}
	
	.icon-circle {
		width: 45px;
		height: 45px;
	}
	
	.icon-text {
		font-size: 16px;
	}
	
	.criteria-text span {
		font-size: 16px;
	}
	
	.typically-work-image {
		display: none;
	}
}

@media (max-width: 600px) {
	.typically-work-with-section {
		padding: 0px 20px;
	}
	
	.typically-work-info-box-inner {
		height: 320px;
		padding: 25px 20px;
	}
	
	.typically-work-heading {
		font-size: 24px;
	}
	
	.business-criteria-list {
		gap: 18px;
	}
	
	.criteria-item {
		gap: 12px;
	}
	
	.icon-circle {
		width: 40px;
		height: 40px;
	}
	
	.icon-text {
		font-size: 14px;
	}
	
	.criteria-text span {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.typically-work-info-box-inner {
		height: 300px;
		padding: 20px 18px;
	}
	
	.typically-work-heading {
		font-size: 20px;
	}
	
	.business-criteria-list {
		gap: 15px;
	}
	
	.icon-circle {
		width: 35px;
		height: 35px;
	}
	
	.icon-text {
		font-size: 12px;
	}
	
	.criteria-text span {
		font-size: 14px;
	}
}

/* If You're Serious About Growth Section */
.serious-growth-section {
	padding: 140px 75px;
	background-color: #F4F6FF;
}

.serious-growth-container {
	max-width: 1800px;
	margin: 0 auto;
}

.serious-growth-header {
	text-align: center;
	margin-bottom: 40px;
}

.serious-growth-heading {
	font-family: "Poppins", sans-serif;
    max-width: 1600px;
    width: 100%;
	font-size: 48px;
	font-weight: 600;
	color: #3A3A4D;
	margin-bottom: 20px;
    margin: 0 auto;
    text-align: center;
	line-height: 1.2;
}

.serious-growth-subheading {
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	color: #374754;
    margin: 0 auto;
    max-width: 885px;
    width: 100%;
    text-align: center;
	font-weight: 400;
	margin: 0 auto;
	line-height: 1.5;
}

.feature-cards-grid {
    display: flex;
	margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
}

.feature-card {
	background-color: #fff;
	border-radius: 30px;
    width: 255px;
    height: 240px;
    padding: 20px;
	text-align: center;
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.feature-card:hover {
	transform: translateY(-5px);
	/* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
}

.feature-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.feature-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.feature-title {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #252B42;
	margin: 0;
	line-height: 1.4;
}

.video-section {
	width: 100%;
	max-width: 1800px;
	margin: 20px auto;
}

.video-container {
	width: 100%;
}

.video-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	/* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
}

.serious-growth-video {
	width: 100%;
	height: 850px;
	object-fit: cover;
	display: block;
}

.play-button-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-button-overlay:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
	width: 120px;
	height: 120px;
	background-color: #53A2E8;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	/* box-shadow: 0 4px 20px rgba(83, 162, 232, 0.3); */
}

.loading-spinner {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	display: flex;
	align-items: center !important;
	justify-content: center !important;
}

.spinner {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(83, 162, 232, 0.3);
	border-top: 4px solid #53A2E8;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Serious Growth Section Responsive Design */
@media (max-width: 1200px) {
	.serious-growth-section {
		padding: 100px 50px;
	}
	
	.serious-growth-heading {
		font-size: 36px;
	}
	
	.serious-growth-subheading {
		font-size: 18px;
	}
	
	.feature-cards-grid {
		gap: 30px;
		margin-bottom: 60px;
	}
	
	.feature-card {
		padding: 35px 25px;
	}
	
	.feature-title {
		font-size: 18px;
	}
	
	.serious-growth-video {
		height: 400px;
	}
}

@media (max-width: 900px) {
	.serious-growth-section {
		padding: 80px 30px;
	}
	
	.serious-growth-header {
		margin-bottom: 60px;
	}
	
	.serious-growth-heading {
		font-size: 36px;
	}
	
	.serious-growth-subheading {
		font-size: 16px;
	}
	
	.feature-cards-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-bottom: 50px;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.feature-card {
		width: 100%;
		height: 180px;
		padding: 15px 12px;
	}
	
	.feature-icon {
		margin-bottom: 12px;
	}
	
	.feature-icon img {
		width: 35px;
		height: 35px;
	}
	
	.feature-title {
		font-size: 14px;
		line-height: 1.3;
	}
	
	.serious-growth-video {
		height: 450px;
	}
	
	.play-button {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 600px) {
	.serious-growth-section {
		padding: 70px 20px;
	}
	
	.serious-growth-header {
		margin-bottom: 50px;
	}
	
	.serious-growth-heading {
		font-size: 28px;
	}
	
	.serious-growth-subheading {
		font-size: 15px;
	}
	
	.feature-cards-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 15px;
		margin-bottom: 40px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.feature-card {
		width: 100%;
		height: 160px;
		padding: 12px 10px;
	}
	
	.feature-icon {
		margin-bottom: 10px;
	}
	
	.feature-icon img {
		width: 30px;
		height: 30px;
	}
	
	.feature-title {
		font-size: 13px;
		line-height: 1.3;
	}
	
	.serious-growth-video {
		height: 350px;
	}
	
	.play-button {
		width: 60px;
		height: 60px;
	}

	.play-button svg{
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.serious-growth-section {
		padding: 50px 35px;
	}
	
	.serious-growth-header {
		margin-bottom: 40px;
	}
	
	.serious-growth-heading {
		font-size: 24px;
	}
	
	.serious-growth-subheading {
		font-size: 14px;
	}
	
	.feature-cards-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		margin-bottom: 35px;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.feature-card {
		width: 100%;
		height: 140px;
		padding: 10px 8px;
	}
	
	.feature-icon {
		margin-bottom: 8px;
	}
	
	.feature-icon img {
		width: 25px;
		height: 25px;
	}
	
	.feature-title {
		font-size: 12px;
		line-height: 1.3;
	}
	
	.serious-growth-video {
		height: 250px;
	}
	
	.play-button {
		width: 50px;
		height: 50px;
	}
	
	.play-button svg{
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 360px) {
	.serious-growth-section {
		padding: 35px 12px;
	}
	
	.serious-growth-header {
		margin-bottom: 35px;
	}
	
	.serious-growth-heading {
		font-size: 22px;
	}
	
	.serious-growth-subheading {
		font-size: 13px;
	}
	
	.feature-cards-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-bottom: 30px;
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.feature-card {
		width: 100%;
		height: 130px;
		padding: 8px 6px;
	}
	
	.feature-icon {
		margin-bottom: 6px;
	}
	
	.feature-icon img {
		width: 22px;
		height: 22px;
	}
	
	.feature-title {
		font-size: 11px;
		line-height: 1.3;
	}
	
	.serious-growth-video {
		height: 250px;
	}
	
	.play-button {
		width: 45px;
		height: 45px;
	}
}

/* Let's Make It Happen Section */
.lets-make-it-happen-section {
	padding: 9rem 75px;
	background-color: #fff;	
	max-width: 1800px;
	margin: 0 auto;
}

.lets-make-it-container {
	background-repeat: no-repeat;
	width: 100%;
	background-size: cover;
	background-position: center;
	border-radius: 30px;
	margin: 0 auto;
	align-items: center;
}

.lets-make-it-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* background: linear-gradient(135deg, #4A90E2 0%, #3B82F6 100%); */
	border-radius: 20px;
	padding: 60px 50px;
	min-height: 370px;
	
	position: relative;
	overflow: hidden;
}

/* .lets-make-it-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.3) 0%, transparent 50%);
	z-index: 1;
} */

.lets-make-it-left {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	flex: 1;
}

.lets-make-it-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.1;
	text-align: left;
}

.lets-make-it-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* gap: 30px; */
	align-items: start;
	text-align: start;
	position: relative;
	z-index: 2;
	flex: 1;
}

.lets-make-it-subtitle {
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 15px 0;
	/* line-height: 1.3; */
}

.lets-make-it-description {
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	/* margin: 0 0 40px 0; */
	/* line-height: 1; */
}

.reach-out-button {
	background-color: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 15px 30px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #374151;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	margin-top: 20px;
	display: inline-block;
}

.reach-out-button:hover {
	background-color: #F9FAFB;
	border-color: #D1D5DB;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Let's Make It Happen Responsive Design */

@media (max-width: 1500px) {
	
	.lets-make-it-happen-section {
		padding: 80px 50px;
	}
	
	
}

@media (max-width: 1200px) {
	.lets-make-it-happen-section {
		padding: 80px 50px;
	}
	
	.lets-make-it-content {
		padding: 50px 40px;
	}
	
	.lets-make-it-heading {
		font-size: 56px;
	}
	
	.lets-make-it-subtitle {
		font-size: 22px;
	}
	
	.lets-make-it-description {
		font-size: 18px;
	}
}

@media (max-width: 900px) {
	.lets-make-it-happen-section {
		padding: 60px 30px;
	}
	
	.lets-make-it-content {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
		gap: 20px;
	}
	
	.lets-make-it-left {
		justify-content: center;
	}
	
	.lets-make-it-right {
		align-items: center;
		text-align: center;
	}
	
	.lets-make-it-heading {
		font-size: 48px;
		margin-bottom: 15px;
	}
	
	.lets-make-it-subtitle {
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.lets-make-it-description {
		font-size: 16px;
		margin-bottom: 25px;
	}
}

@media (max-width: 600px) {
	.lets-make-it-happen-section {
		padding: 50px 20px;
	}
	
	.lets-make-it-content {
		padding: 30px 20px;
		gap: 15px;
	}
	
	.lets-make-it-heading {
		font-size: 36px;
		margin-bottom: 10px;
	}
	
	.lets-make-it-subtitle {
		font-size: 18px;
		margin-bottom: 8px;
	}
	
	.lets-make-it-description {
		font-size: 15px;
		margin-bottom: 20px;
	}
	
	.reach-out-button {
		padding: 12px 25px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.lets-make-it-content {
		padding: 25px 15px;
		gap: 12px;
	}
	
	.lets-make-it-heading {
		font-size: 28px;
		margin-bottom: 8px;
	}
	
	.lets-make-it-subtitle {
		font-size: 16px;
		margin-bottom: 6px;
	}
	
	.lets-make-it-description {
		font-size: 14px;
		margin-bottom: 15px;
	}
	
	.reach-out-button {
		padding: 10px 20px;
		font-size: 14px;
	}
}

/* Process Flow Section */
.process-flow-section {
	padding: 120px 0px;
	overflow: hidden;
	background-color: #fff;
}

.process-flow-container {
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 0px;
}

.process-flow-header {
	margin-bottom: 80px;
}

.process-flow-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #000;
	margin-bottom: 30px;
	line-height: 1.2;
}

.process-flow-cta-button {
	background-color: #53A2E8;
	border: 2px solid #53A2E8;
	color: #fff !important;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.process-flow-cta-button:hover {
	background-color: transparent;
	border: 2px solid #53A2E8;
	color: #53A2E8 !important;
	transform: translateY(-2px);
}

.process-flow-wrapper {
	position: relative;
	width: 100%;
	height: 448px;
	cursor: pointer;
	overflow: visible;
}

.process-flow-svg {
	width: 100%;
	height: 100%;
}

.process-path {
	transition: all 0.3s ease;
}

.process-dot {
	fill: #E0E0E0;
	stroke: none;
	transition: all 0.3s ease;
}

.process-step {
	position: absolute;
	background: transparent;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 10;
	max-width: 220px;
	text-align: center;
	padding: 0 10px;
	display: block;
}

/* Adjust positioning for steps near edges to prevent overflow */
.process-step-left {
	transform: translate(-10%, -50%);
}

.process-step-right {
	transform: translate(-90%, -50%);
}

.process-step.visible {
	opacity: 1;
}

.process-step-number {
	/* position: absolute; */
	font-family: "Poppins", sans-serif;
	font-size: 130px;
	font-weight: 600;
	line-height: 1;
	color: #000000;
	opacity: 0.3;
	z-index: 1;
	pointer-events: none;
	/* transform: translate(-50%, -50%); */
}

.process-step-title {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
	line-height: 1.3;
}

.process-step-description {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	color: #374754;
	line-height: 1.4;
}

/* Process "Learn more" buttons */
.process-step-learn-more,
.process-step-mobile-learn-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	padding: 6px 16px;
	border-radius: 9999px;
	border: 1px solid #53A2E8;
	background-color: #53A2E8;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step-learn-more:hover,
.process-step-mobile-learn-more:hover {
	background-color: #ffffff;
	color: #53A2E8;
	box-shadow: 0 4px 10px rgba(83, 162, 232, 0.25);
	transform: translateY(-1px);
}

.process-step-learn-more:focus,
.process-step-mobile-learn-more:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(83, 162, 232, 0.4);
}

/* Mobile Process Flow Styles */
.process-step-mobile {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	border-radius: 18px;
	opacity: 0;
	background-color: #F4F6FF;
	padding: 25px 20px 25px 50px; /* Extra left padding for number on side */
	transition: all 0.5s ease;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	cursor: pointer;
}

.process-step-mobile.visible {
	opacity: 1;
	background-color: #fff;
}

.process-step-mobile-number-bg {
	position: absolute;
	left: -35px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Poppins", sans-serif;
	font-size: 80px;
	font-weight: 600;
	color: #000000;
	opacity: 0.3;
	line-height: 1;
	z-index: 1;
	pointer-events: none;
}

.process-step-mobile-content {
	position: relative;
	z-index: 2;
	flex: 1;
	text-align: left;
	padding-left: 0; /* No padding needed since number is outside */
}

.process-step-mobile-title {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
	line-height: 1.3;
}

.process-step-mobile-description {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	color: #374754;
	line-height: 1.4;
	margin-bottom: 12px;
}


/* Responsive Design for Process Flow Section */
@media (max-width: 2400px) {
	.process-flow-container {
		padding: 0 75px;
	}
}

@media (max-width: 1700px) {
	.process-flow-wrapper {
		height: 400px;
	}
	
	.process-flow-container {
		overflow: visible;
	}
	
	.process-step-number {
		font-size: 100px;
	}
	
	.process-step {
		max-width: 180px;
	}
	
	.process-step-title {
		font-size: 16px;
	}
	
	.process-step-description {
		font-size: 13px;
	}
	
	.process-step-learn-more {
		font-size: 12px;
		padding: 5px 12px;
	}
	
	/* Start adjusting edge steps */
	.process-step-right {
		transform: translate(-90%, -50%) !important;
	}
}

/* Laptop sweet spot: keep steps in view and readable */
@media (max-width: 1440px) {
	.process-flow-wrapper {
		height: 360px;
	}
	.process-step {
		max-width: 180px;
		padding: 0 8px;
	}
	.process-step-number {
		font-size: 90px;
	}
	.process-step-title {
		font-size: 16px;
	}
	.process-step-description {
		font-size: 12.5px;
	}
	.process-step-left {
		transform: translate(-5%, -50%);
	}
	.process-step-right {
		transform: translate(-105%, -50%);
	}
}

@media (max-width: 1500px) {
	.process-flow-wrapper {
		height: 380px;
	}
	
	.process-step-number {
		font-size: 85px;
	}
	
	.process-step {
		max-width: 160px;
		padding: 0 8px;
	}
	
	.process-step-title {
		font-size: 15px;
	}
	
	.process-step-description {
		font-size: 12px;
	}
	
	/* Slightly adjust right edge steps to prevent overflow */
	.process-step-right {
		transform: translate(-95%, -50%) !important;
	}
}

@media (max-width: 1300px) {
	.process-flow-wrapper {
		height: 360px;
	}
	
	.process-step-number {
		font-size: 70px;
	}
	
	.process-step {
		max-width: 140px;
		padding: 0 6px;
	}
	
	.process-step-title {
		font-size: 14px;
		margin-bottom: 6px;
	}
	
	.process-step-description {
		font-size: 11px;
		line-height: 1.3;
	}
	
	.process-step-learn-more {
		font-size: 11px;
		padding: 4px 10px;
		margin-top: 12px;
	}
	
	/* Adjust transform for edge steps to prevent overflow */
	.process-step-right {
		transform: translate(-100%, -50%) !important;
	}
	
	.process-step-left {
		transform: translate(0%, -50%) !important;
	}
}

@media (max-width: 1200px) {
	.process-flow-section {
		padding: 80px 0px;
		/* height: fit-content; */
		/* max-height: 900px; */
	}
	
	.process-flow-container {
		padding: 0 75px;
	}
	
	.process-flow-heading {
		font-size: 42px;
	}
	
	.process-flow-wrapper {
		height: 350px;
	}
	
	.process-step-number {
		font-size: 100px;
	}
}

@media (max-width: 900px) {
	.process-flow-section {
		padding: 60px 0px;
	}
	
	.process-flow-container {
		padding: 0 20px;
	}
	
	.process-flow-heading {
		font-size: 36px;
	}
	
	.process-step-number {
		font-size: 40px;
	}
	
	.process-step-title {
		font-size: 15px;
	}
	
	.process-step-description {
		font-size: 13px;
	}
}

@media (max-width: 900px) {

	.process-flow-heading {
		font-size: 22px;
	}
	
}

/* Hide the wrong version */
.desktop-svg { display: block; }
.mobile-svg  { display: none; }
.desktop-steps { display: block; }
#mobileStepsContainer { display: none; }

@media (max-width: 1199px) {
    .desktop-svg          { display: none; }
    .mobile-svg           { display: none; }  /* Hide SVG line on mobile */
    .desktop-steps        { display: none; }
    #mobileStepsContainer { 
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
        width: 100%;
        max-width: 600px;  /* Max width for tablet/mobile */
        margin: 0 auto;
        padding: 40px 20px 40px 60px; /* Extra left padding for side numbers */
        box-sizing: border-box;
    }

    .process-flow-wrapper {
        height: auto;
        padding: 40px 0;
        overflow: visible;
    }
    
    .process-step-mobile {
        max-width: 100%;
    }
}

/* Responsive breakpoints for mobile process steps */
@media (max-width: 900px) {
    #mobileStepsContainer {
        padding: 30px 15px 30px 50px; /* Extra left padding for side numbers */
        gap: 25px;
    }
    
    .process-step-mobile {
        padding: 20px 15px 20px 45px; /* Left padding for side number */
    }
    
    .process-step-mobile-number-bg {
        font-size: 60px;
        left: -30px; /* Position to the side */
    }
    
    .process-step-mobile-content {
        padding-left: 0;
    }
    
    .process-step-mobile-title {
        font-size: 16px;
    }
    
    .process-step-mobile-description {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    #mobileStepsContainer {
        padding: 20px 12px 20px 45px; /* Extra left padding for side numbers */
        gap: 20px;
    }
    
    .process-step-mobile {
        padding: 18px 12px 18px 40px; /* Left padding for side number */
    }
    
    .process-step-mobile-number-bg {
        font-size: 50px;
        left: -25px; /* Position to the side */
    }
    
    .process-step-mobile-content {
        padding-left: 0;
    }
    
    .process-step-mobile-title {
        font-size: 15px;
    }
    
    .process-step-mobile-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #mobileStepsContainer {
        padding: 15px 10px 15px 40px; /* Extra left padding for side numbers */
        gap: 18px;
    }
    
    .process-step-mobile {
        padding: 15px 10px 15px 35px; /* Left padding for side number */
    }
    
    .process-step-mobile-number-bg {
        font-size: 45px;
        left: -20px; /* Position to the side */
    }
    
    .process-step-mobile-content {
        padding-left: 0;
    }
    
    .process-step-mobile-title {
        font-size: 14px;
    }
    
    .process-step-mobile-description {
        font-size: 11px;
    }
}



/* Homepage Section Case Studies */
.homepage-section-case-studies {
	/* padding: 9rem 75px; */
	margin: 0 auto;
	background-color: #F4F6FF;
	width: 100%;
}

.homepage-section-case-studies-container {
	max-width: 1800px;
	width: 100%;
	padding: 9rem 75px;
	margin: 0 auto;
}

.homepage-section-case-studies-header {
	display: block;
	/* justify-content: space-between; */
	/* align-items: flex-start; */
	margin-bottom: 60px;
}

.homepage-section-case-studies-header-content {
	flex: 1;
	max-width: 1250px;
	text-align: center;
	margin: 0 auto;

}

.homepage-section-case-studies-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	text-align: center;
	color: #3A3A4D;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.homepage-section-case-studies-description {
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	color: #374754;
	line-height: 1.5;
	margin: 0 auto;

}

.homepage-section-case-studies-navigation {
	display: flex;
	margin: 0 auto;
	gap: 10px;
	margin-top: 40px;
	justify-content: center;
}

.homepage-section-case-studies-nav-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.homepage-section-case-studies-prev-button {
	background-color: #ffffff;
	color: #6B7280;
}

.homepage-section-case-studies-prev-button:hover {
	background-color: #E5E7EB;
}

.homepage-section-case-studies-next-button {
	background-color: #53A2E8;
	color: #fff;
}

.homepage-section-case-studies-next-button:hover {
	background-color: #3B82F6;
}

/* Glide.js Case Studies Styles */
.homepage-section-case-studies-glide {
	position: relative;
}

.homepage-section-case-studies-glide .glide__track {
	overflow: hidden;
}

.homepage-section-case-studies-glide .glide__slides {
	align-items: stretch;
}

.homepage-section-case-studies-glide .glide__slide {
	height: auto;
	display: flex;
}

.homepage-section-case-studies-card {
	width: 90%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 0 auto;
	height: 600px;
}


.homepage-section-case-studies-details {
	text-align: left;
}

.homepage-section-case-studies-detail-heading {
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 600;
	color: #3A3A4D;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.homepage-section-case-studies-detail-paragraph {
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #374754;
	line-height: 1.6;
	margin: 0 0 30px 0;
}

.homepage-section-case-studies-learn-more-button {
	background-color: #53A2E8;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 15px 30px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.homepage-section-case-studies-learn-more-button:hover {
	background-color: #3B82F6;
	transform: translateY(-2px);
}

/* Homepage Section Case Studies Responsive Design */
@media (max-width: 1200px) {
	.homepage-section-case-studies {
		padding: 80px 50px;
	}
	
	.homepage-section-case-studies-heading {
		font-size: 42px;
	}
	
	.homepage-section-case-studies-description {
		font-size: 18px;
	}
	
	.homepage-section-case-studies-detail-heading {
		font-size: 28px;
	}
	
	.homepage-section-case-studies-detail-paragraph {
		font-size: 16px;
	}
}

@media (max-width: 900px) {
	.homepage-section-case-studies {
		padding: 60px 30px;
	}

	.homepage-section-case-studies-container {
		padding: 60px 30px;
	}
	
	.homepage-section-case-studies-header {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 50px;
	}
	
	.homepage-section-case-studies-heading {
		font-size: 36px;
	}
	
	.homepage-section-case-studies-description {
		font-size: 16px;
	}
	

	.homepage-section-case-studies-detail-heading {
		font-size: 24px;
	}
	
	.homepage-section-case-studies-detail-paragraph {
		font-size: 15px;
	}
	
	.homepage-section-case-studies-nav-button {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 600px) {
	.homepage-section-case-studies {
		padding: 50px 20px;
	}

	.homepage-section-case-studies-container {
		padding: 40px 20px;
	}
	
	
	.homepage-section-case-studies-header {
		margin-bottom: 40px; 
	}
	
	.homepage-section-case-studies-heading {
		font-size: 28px;
	}
	
	.homepage-section-case-studies-description {
		font-size: 15px;
	}

	.homepage-section-case-studies-detail-heading {
		font-size: 20px;
	}
	
	.homepage-section-case-studies-detail-paragraph {
		font-size: 14px;
	}
	
	.homepage-section-case-studies-learn-more-button {
		padding: 12px 25px;
		font-size: 14px;
	}
	
	.homepage-section-case-studies-nav-button {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.homepage-section-case-studies {
		padding: 40px 5px;
	}
	
	.homepage-section-case-studies-heading {
		font-size: 24px;
	}
	
	.homepage-section-case-studies-description {
		font-size: 14px;
	}

	
	.homepage-section-case-studies-card-overlay-button {
		padding: 10px 20px;
		font-size: 13px;
	}
	
	.homepage-section-case-studies-detail-heading {
		font-size: 18px;
	}
	
	.homepage-section-case-studies-detail-paragraph {
		font-size: 13px;
	}
	
	.homepage-section-case-studies-learn-more-button {
		padding: 10px 20px;
		font-size: 13px;
	}
	
	.homepage-section-case-studies-nav-button {
		width: 35px;
		height: 35px;
	}
}

/* Homepage Section Testimonial */
.homepage-section-testimonial {
	padding: 9rem 75px;
	background-color: #fff;
}

.homepage-section-testimonial-container {
	max-width: 1800px;
	margin: 0 auto;
}

.homepage-section-testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

.homepage-section-testimonial-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #3A3A4D;
	margin: 0;
	line-height: 1.2;
}

.homepage-section-testimonial-navigation {
	display: flex;
	gap: 10px;
}

.homepage-section-testimonial-nav-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.homepage-section-testimonial-prev-button {
	background-color: #F3F4F6;
	color: #6B7280;
}

.homepage-section-testimonial-prev-button:hover {
	background-color: #E5E7EB;
}

.homepage-section-testimonial-next-button {
	background-color: #53A2E8;
	color: #fff;
}

.homepage-section-testimonial-next-button:hover {
	background-color: #3B82F6;
}
/* Swiper Testimonial - Equal Height Cards (works perfectly) */
.homepage-section-testimonial-swiper {
    overflow: hidden;
}

/* This is the magic line - makes all slides stretch to match the tallest one */
.homepage-section-testimonial-swiper .swiper-wrapper {
    align-items: stretch !important;
}

/* Make each slide fill the full height of the row */
.homepage-section-testimonial-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
}

/* Card takes full height of its slide */
.homepage-section-testimonial-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.homepage-section-testimonial-content {
    background-color: #F4F6FF;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    min-height: 400px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-sizing: border-box;
}


.homepage-section-testimonial-swiper .swiper-slide.active .homepage-section-testimonial-content {
    background-color: #53A2E8 !important;
    color: white !important;
}

.homepage-section-testimonial-swiper .swiper-slide.active .homepage-section-testimonial-profile-name,
.homepage-section-testimonial-swiper .swiper-slide.active .homepage-section-testimonial-profile-title,
.homepage-section-testimonial-swiper .swiper-slide.active .homepage-section-testimonial-text {
    color: white !important;
}


.homepage-section-testimonial-profile {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.homepage-section-testimonial-profile-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.homepage-section-testimonial-profile-info {
	color: #3A3A4D;
}

.homepage-section-testimonial-profile-name {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #3A3A4D;
	margin: 0 0 5px 0;
}

.homepage-section-testimonial-profile-title {
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #3A3A4D;
	margin: 0;
	opacity: 0.8;
}

.homepage-section-testimonial-text {
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #3A3A4D;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}



/* Homepage Section Testimonial Responsive Design */


@media (max-width: 1500px) {
	.homepage-section-testimonial {
		padding: 80px 50px;
	}
}

@media (max-width: 1200px) {
	.homepage-section-testimonial {
		padding: 80px 50px;
	}
	
	.homepage-section-testimonial-heading {
		font-size: 42px;
	}
	
	.homepage-section-testimonial-content {
		min-height: 380px;
		padding: 35px;
	}
	
	.homepage-section-testimonial-profile-image {
		width: 70px;
		height: 70px;
	}
	
	.homepage-section-testimonial-profile-name {
		font-size: 22px;
	}
	
	.homepage-section-testimonial-profile-title {
		font-size: 16px;
	}
	
	.homepage-section-testimonial-text {
		font-size: 18px;
	}
}

@media (max-width: 900px) {
	.homepage-section-testimonial {
		padding: 60px 30px;
	}
	
	.homepage-section-testimonial-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
		margin-bottom: 50px;
	}
	
	.homepage-section-testimonial-heading {
		font-size: 36px;
	}
	
	.homepage-section-testimonial-content {
		min-height: 360px;
		padding: 30px;
	}
	
	.homepage-section-testimonial-profile-image {
		width: 60px;
		height: 60px;
	}
	
	.homepage-section-testimonial-profile-name {
		font-size: 20px;
	}
	
	.homepage-section-testimonial-profile-title {
		font-size: 15px;
	}
	
	.homepage-section-testimonial-text {
		font-size: 16px;
	}
	
	.homepage-section-testimonial-nav-button {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 600px) {
	.homepage-section-testimonial {
		padding: 50px 20px;
	}
	
	.homepage-section-testimonial-header {
		margin-bottom: 40px;
	}
	
	.homepage-section-testimonial-heading {
		font-size: 28px;
	}
	
	.homepage-section-testimonial-content {
		min-height: 350px;
		padding: 25px;
	}
	
	.homepage-section-testimonial-profile {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		margin-bottom: 25px;
	}
	
	.homepage-section-testimonial-profile-image {
		width: 50px;
		height: 50px;
	}
	
	.homepage-section-testimonial-profile-name {
		font-size: 18px;
	}
	
	.homepage-section-testimonial-profile-title {
		font-size: 14px;
	}
	
	.homepage-section-testimonial-text {
		font-size: 15px;
		text-align: center;
	}
	
	.homepage-section-testimonial-nav-button {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.homepage-section-testimonial {
		padding: 40px 15px;
	}
	
	.homepage-section-testimonial-heading {
		font-size: 24px;
	}
	
	.homepage-section-testimonial-content {
		min-height: 320px;
		padding: 20px;
	}
	
	.homepage-section-testimonial-profile {
		margin-bottom: 20px;
	}
	
	.homepage-section-testimonial-profile-image {
		width: 45px;
		height: 45px;
	}
	
	.homepage-section-testimonial-profile-name {
		font-size: 16px;
	}
	
	.homepage-section-testimonial-profile-title {
		font-size: 13px;
	}
	
	.homepage-section-testimonial-text {
		font-size: 14px;
	}
	
	.homepage-section-testimonial-nav-button {
		width: 35px;
		height: 35px;
	}
}

/* Meet The Team Section */
.meet-team-section {
	padding: 9rem 75px;
	background-color: #fff;
}

.meet-team-container {
	padding: 0px 0px;
	max-width: 1800px;
	margin: 0 auto;
}

.team-header {
	margin-bottom: 80px;
}

.team-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #EFEBFE;
	border-radius: 6px;
	padding: 8px 16px;
	margin-bottom: 20px;
	color: #2596BE;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 500;
}

.team-tag svg {
	color: #6B7280;
}

.team-heading {
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #3A3A4D;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.team-subtitle {
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	color: #6B7280;
	margin: 0 0 40px 0;
	line-height: 1.5;
}

.team-cta-buttons {
	display: flex;
	gap: 20px;
}

.apply-now-button,
.contact-us-button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 12px;
	border: none;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.apply-now-button {
	background-color: #F3F4F6;
	color: #19191B;
}

.apply-now-button:hover {
	background-color: #E5E7EB;
}

.contact-us-button {
	background-color: #53A2E8;
	color: #fff;
}

.contact-us-button:hover {
	background-color: #3B82F6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.team-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 16px;
	gap: 15px;
	text-align: center;
	display:flex;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid #EAEBEC;
}

.team-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-image {
	height: 100%;
	max-width: 208px;
	min-width: 160px;
}

.team-image img {
	width: 196px;
	height: 208px;
	border-radius: 15px;
	object-fit: cover;
	background-color: #53A2E8;
}


.team-card-content{
	display: block;
	justify-content: start;
	text-align: start;
	max-width: 200px;
	min-width: 140px;
	align-items: center;
	align-content: center;
}

.team-name {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #19191B;
	justify-content: start;
	text-align: start;
	margin: 0 0 8px 0;
}

.team-role {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	justify-content: start;
	text-align: start;
	font-weight: 500;
	color: #53A2E8;
	margin: 0 0 15px 0;
}

.team-bio {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #787A82;
	/* line-height: 1.6; */
	margin: 0 0 20px 0;
	justify-content: start;
	text-align: start;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.homepage-team-section-team-social {
	display: flex;
	justify-content: start;
	/* gap: 30px; */
	width: fit-content;
	/* padding: 0 15px; */
}

.homepage-team-section-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	/* height: 32px; */
	padding: 10px 0;
	color: #ACAEB4 !important;
	transition: all 0.3s ease;
	text-decoration: none;
}

.homepage-team-section-social-icon:hover {
	color: #53A2E8;
}

/* Team Modal */
.homepage-team-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter:blur(5px);
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.homepage-team-modal-content {
	background-color: #fff;
	border-radius: 20px;
	max-width: 700px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.close-modal {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 28px;
	font-weight: bold;
	color: #6B7280;
	cursor: pointer;
	z-index: 1001;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #F3F4F6;
	transition: all 0.3s ease;
}

.close-modal:hover {
	background-color: #E5E7EB;
	color: #3A3A4D;
}

.homepage-team-modal-body {
	display: flex;
	padding: 40px;
	gap: 30px;
	align-items: flex-start;
}

.homepage-team-modal-image {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.homepage-team-modal-image img {
	width: 200px;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
	background-color: #53A2E8;
}

.homepage-team-modal-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}


.homepage-team-modal-info h2 {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #19191B;
	margin: 0 0 5px 0;
	line-height: 1.2;
}

.homepage-team-modal-info p:first-of-type {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #53A2E8;
	/* margin: 0 0 15px 0; */
	line-height: 1.3;
}

.homepage-team-modal-info p:last-of-type {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #787A82;
	line-height: 1.5;
	margin: 0 0 20px 0;
}

.homepage-team-modal-social {
	display: flex;
	gap: 5px;
}

.homepage-team-modal-social .homepage-team-section-social-icon {
	/* width: 40px; */
	/* height: 40px; */
	margin: 0;
}



/* Team Section Responsive Design */
@media (max-width: 1350px) {
.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
}

@media (max-width: 1200px) {
	.meet-team-section {
		padding: 80px 50px;
	}
	
	.team-heading {
		font-size: 42px;
	}
	
	.team-grid {
		gap: 25px;
	}
	
	.team-card {
		padding: 25px;
	}
}

@media (max-width: 900px) {
	.meet-team-section {
		padding: 60px 30px;
	}
	
	.team-header {
		margin-bottom: 60px;
	}
	
	.team-heading {
		font-size: 36px;
	}
	
	.team-subtitle {
		font-size: 18px;
	}
	
	.team-cta-buttons {
		flex-direction: column;
		gap: 15px;
	}
	
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.team-card {
		padding: 20px;
	}
	
	.team-image img {
		width: 100%;
		height: 100%;
	}
	
	.team-name {
		font-size: 20px;
	}
	
	.team-role {
		font-size: 14px;
	}
	
	.team-bio {
		font-size: 13px;
	}
	
	.homepage-team-modal-body {
		flex-direction: column;
		text-align: center;
		padding: 30px;
		gap: 20px;
	}
	
	.homepage-team-modal-image img {
		width: 100%;
		height: 100%;
	}
	
	.homepage-team-modal-info h2 {
		font-size: 20px;
		margin-bottom: 5px;
	}
	
	.homepage-team-modal-info p:first-of-type {
		font-size: 15px;
		margin-bottom: 8px;
	}
	
	.homepage-team-modal-info p:last-of-type {
		font-size: 14px;
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	
	.team-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.team-image img {
		width: 100%;
		height: 100%;
	}
	
	.team-image {
		min-width: 150px;
	}


	.homepage-team-modal-info .homepage-team-section-social-icon{
		margin-inline: auto;
	}
	
	.team-card-content{
		max-width: 200px;
		min-width: 140px;
		width: 100%;
	}
}

@media (max-width: 600px) {
	.meet-team-section {
		padding: 50px 20px;
	}
	
	.team-header {
		margin-bottom: 50px;
	}
	
	.team-heading {
		font-size: 28px;
	}
	
	.team-subtitle {
		font-size: 16px;
	}
	
	.team-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.team-card {
		padding: 20px;
	}

	.team-image {
		min-width: 120px;
		max-height: 180px;
	}
	
	.team-image img {
		width: 100%;
		height: 100%;
	}

	.team-card-content{
		width: 100%;
	}
	
	.team-name {
		font-size: 18px;
	}
	
	.team-role {
		font-size: 14px;
	}
	
	.team-bio {
		font-size: 13px;
	}
	
	.homepage-team-modal-content {
		margin: 10px;
		max-width: calc(100vw - 20px);
	}
	
	.homepage-team-modal-body {
		padding: 20px;
		gap: 15px;
	}
	
	.homepage-team-modal-image{
		text-align: center;
		margin: 0 auto;
	}

	.homepage-team-modal-image img {
		width: 140px;
		height: 140px;
		text-align: center;
		margin: 0 auto;
	}
	
	.homepage-team-modal-info h2 {
		font-size: 18px;
		margin-bottom: 4px;
	}
	
	.homepage-team-modal-info p:first-of-type {
		font-size: 14px;
		margin-bottom: 6px;
	}
	
	.homepage-team-modal-info p:last-of-type {
		font-size: 13px;
		margin-bottom: 12px;
	}
}

@media (max-width: 480px) {

	.meet-team-container{
		padding: 40px 15px;
	}

	.meet-team-section {
		padding: 40px 15px;
	}
	
	.team-heading {
		font-size: 24px;
	}
	
	.team-subtitle {
		font-size: 14px;
	}
	
	.apply-now-button,
	.contact-us-button {
		padding: 10px 20px;
		font-size: 14px;
	}
	
	.team-card {
		padding: 15px;
	}
	
	.team-image img {
		width: 100%;
		height: 100%;
	}
	
	.team-name {
		font-size: 16px;
	}
	
	.team-role {
		font-size: 13px;
	}
	
	.team-bio {
		font-size: 12px;
	}
	
	.homepage-team-section-social-icon {
		width: 28px;
		height: 28px;
	}
	
	.homepage-team-modal-body {
		padding: 15px;
		gap: 12px;
	}
	
	.homepage-team-modal-image img {
		width: 120px;
		height: 120px;
	}
	
	.homepage-team-modal-info h2 {
		font-size: 16px;
		margin-bottom: 3px;
	}
	
	.homepage-team-modal-info p:first-of-type {
		font-size: 13px;
		margin-bottom: 5px;
	}
	
	.homepage-team-modal-info p:last-of-type {
		font-size: 12px;
		margin-bottom: 10px;
	}
	
	.homepage-team-modal-social .homepage-team-section-social-icon {
		width: 35px;
		height: 35px;
	}
}



.homepage-section-case-studies-stack {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 60px auto;
	height: 550px;
	transform-style: preserve-3d;
	perspective: 1000px;
	isolation: isolate;
  }
  
  .homepage-case-card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 18px;
	background-size: cover;
	background-position: center;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
	overflow: hidden;
	-webkit-transform: translateZ(0);  
	transform: translateZ(0);     
	backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
	-webkit-mask-image: radial-gradient(white, white);
          mask-image: radial-gradient(white, white);
	/* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); */
  }
  
  .homepage-case-card .overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
	color: #fff;
	padding: 40px 30px;
	display: block;
	align-items: end;
	align-content: end;
  }
  
  .homepage-case-card .overlay h3 {
	font-size: 24px;
	margin: 0 0 10px;
	color: floralwhite;
  }
  
  .homepage-case-card .overlay p {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.5;
  }
  
  .home-page-case-studies-case-controls {
	position: absolute;
	bottom: -60px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 20px;
  }
  
  .home-page-case-studies-case-controls button {
	background: #1b1b1b;
	color: #fff;
	border: none;
	font-size: 22px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s ease;
  }
  
  .home-page-case-studies-case-controls button:hover {
	background: #444;
  }
  
  /* Mobile slider styles */
@media (max-width: 768px) {
	.homepage-section-case-studies-stack {
	  height: 480px;
	  overflow: hidden;
	}
  
	.homepage-case-card {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	  opacity: 0;
	}
  
	
	.homepage-case-card .overlay {
	  padding: 30px 20px;
	}
	.homepage-case-card .overlay h3 {
	  font-size: 20px;
	}
	.homepage-case-card .overlay p {
	  font-size: 14px;
	}
  }
  


  
/* Preloader stroke thickness override */
.preloader .preloader-path-1,
.preloader .preloader-path-2 {
	stroke-width: 20 !important;
}

  


/* Section wrappers: constrain content area and add horizontal padding */
#timeline-container,
#story-section,
#services-section,
#values-section {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

#timeline-container .max-w-5xl,
#story-section .max-w-4xl,
#services-section .max-w-4xl,
#values-section .max-w-5xl {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure timeline items stack nicely on smaller screens */
@media (max-width: 900px) {
    .timeline-event .media-card,
    .timeline-event .content-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    #timeline-container,
    #story-section,
    #services-section,
    #values-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}


.dm-banner-image{
	margin: 25px auto;
	width: 100%;
	max-width: 2000px;
}

.dm-banner-image img{
	width: 100%;
	height: auto;
	object-fit: auto;
	object-position: center;
}


.award-images-list{
	display: flex;
	text-align: center;
	justify-content: center;
	gap: 50px;
}

.award-images-list img {
	width: 200px;
	height: auto;
}

@media (max-width: 900px) {

	.award-images-list{
		gap:20px;
		width: 100%;
	}

	.award-images-list img {
		max-width: 120px;
		height: auto;
		width: auto;
	}
}

@media (max-width: 480px) {

	.award-images-list{
		width: 100%;
		gap:10px;
	}

	.award-images-list img {
		max-width: 80px;
		height: auto;
		width: auto;
	}
}