/* Hide scrollbar for all browsers */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}
.first_tx{
    position: relative;
    padding: 100px;
    text-align: center;
    line-height: 2.5;
    overflow: hidden;
}
.first_tx-desc{
    font-size: 1.5rem;
    color: #14bda7;
    margin: 0 auto;
    line-height: 1.6;
}
.first_tx-title{
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 20px;
	color: #848787;

}

.first_tx::before{
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('assets/img/nhlogo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    opacity: 0.15; /* adjust opacity */
    z-index: -1;
}

.first_tx h2{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0px;
}
/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr)!important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-card {
    background:white !important;
    border-radius: 20px !important;
    padding: 20px !important;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
    border: none !important;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    align-items: flex-start !important;
}

.solution-card::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(20, 189, 167, 0.15);
    line-height: 1;
    z-index: 0;
    font-family: 'Poppins', sans-serif;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: rgba(20, 189, 167, 0.10) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.solution-card:hover .solution-icon {
    transform: scale(1.05);
    background: var(--primary-color) !important;
    color: var(--white);
}

.solution-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.solution-card h3 {
    font-size: 1.25rem;
    color: #00695c !important;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.solution-card p {
    color: #2d3748;
    font-size: 12px;
    line-height:1;
    margin-bottom: 12px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #00897b;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.solution-card:hover .learn-more {
    color: #00695c;
}

.solution-card:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .solutions-grid {
        max-width: 1200px;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
	.neofit-section{
		padding: 0 60px !important;
	}
	.neofit-section i{
		width: 30px !important;
		text-align: left !important;

	}
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .solution-card {
        padding: 15px !important;
        min-height: 160px;
        gap: 15px;
    }
    
    .solution-icon {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        font-size: 35px !important;
    }
    
    .solution-card h3 {
        font-size: 1.1rem;
    }
    
    .solution-card p {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solution-card {
        padding: 18px !important;
        min-height: 140px;
    }
    
    .solution-icon {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* NeoFit App Section */
.neofit-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
	position: relative;
	overflow: hidden;
}

.neofit-section .container {
	padding: 0 10px;
}

.neofit-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0px;
	position: relative;
	z-index: 1;
	flex-wrap: nowrap;
}

.neofit-text {
	flex: 0 0 55%;
	max-width: 55%;
	animation: fadeInUp 0.8s ease-out;
	padding-right: 20px;
}

.neofit-text h2 {
	font-size: 3.5rem;
	font-family: 'Poppins', sans-serif;
	color: #222;
	margin-bottom: 15px;
	font-weight: 700;
	text-transform: lowercase;
	letter-spacing: 1px;
}

.neofit-text h2 span {
	color: #b9eb1e;
}

.neofit-text h3 {
	font-size: 1.8rem;
	color: #2d3748;
	margin-bottom: 20px;
	font-weight: 600;
}

.neofit-text p {
	color: #4a5568;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.neofit-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.neofit-features li {
	margin-bottom: 15px;
	color: #2d3748;
	font-size: 1rem;
	display: flex;
	align-items: flex-start;
	line-height: 1.5;
}

.neofit-features i {
	color: #b9eb1e;
	margin-right: 0px;
	margin-top: 0px;
	font-size: 1.1rem;
	width:30px;
}

/* Mobile view: left align neofit features */
@media (max-width: 768px) {
	.neofit-features li {
		justify-content: flex-start !important;
		text-align: left !important;
		padding-left:25px;
	}
}

.app-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.app-store-btn,
.play-store-btn {
	display: inline-block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.app-store-btn img,
.play-store-btn img {
	height: 45px;
	width: auto;
	border-radius: 8px;
}

.neofit-image {
	flex: 0 0 40%;
}

.neofit-image img {
	width: auto;
	max-width: 100%;
	max-height: 500px;
	height: auto;
	display: block;
	border-radius: 20px;
	transition: transform 0.3s ease;
	object-fit: contain;
}

.neofit-image img:hover {
	transform: scale(1.03);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.neofit-btn {
	background-color: #b9eb1e;
	color: #1a1a1a;
	border: none;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	display: inline-block;
	margin-top: 15px;
	font-family: 'Poppins', sans-serif;
	position: relative;
	overflow: hidden;
	text-align: left;
	width:250px;
}
.ccr{
	position:absolute; 
	right:10px;
	top:50%;
	transform: translateY(-50%); 
	margin:0; 
	padding:0; 
	color:#000; 
	font-size:32px;
}
.neofit-btn:hover .ccr{
	color:#b9eb1e; 
}


.neofit-btn:hover {
	background-color: #222;
	transform: translateY(-2px);
	color: #b9eb1e;
}

.neofit-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(185, 235, 30, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.neofit-btn {
		padding: 10px 24px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.neofit-btn {
		width: 60%;
		padding: 18px;
		font-size: 0.95rem;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.neofit-section {
		margin-top: 0 !important;
		padding-top: 80px !important;
	}
}

@media (max-width: 992px) {
	.neofit-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.neofit-features {
		padding-left: 200px;
	}

	.app-buttons {
		justify-content: center;
	}

	.neofit-image {
		flex: 0 0 auto;
		width: 100%;
		max-width: 400px;
		margin: 40px auto 0;
		justify-content: center;
	}

	.neofit-text {
		flex: 1;
		max-width: 100%;
		padding-right: 0;
	}

	.neofit-text h2 {
		font-size: 2.2rem;
	}

	.neofit-text h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.neofit-section {
		padding: 50px 0;
		margin-top: 0 !important;
	}

	.neofit-section .container {
		padding: 0 5px;
	}

	.neofit-text h2 {
		font-size: 1.8rem;
	}

	.neofit-text h3 {
		font-size: 1.3rem;
	}

	.neofit-text p {
		font-size: 1rem;
	}

	.app-buttons {
		flex-direction: column;
		align-items: center;
	}

	.app-store-btn img,
	.play-store-btn img {
		height: 40px;
	}

	.neofit-features li {
		font-size: 0.8rem;
	}
}

/* Technology Showcase Section */
.technology-showcase {
	padding: 80px 0;
	background-color: #f8fafc;
	position: relative;
	overflow: hidden;
}

.showcase-container {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
}

/* iPad Frame - Landscape Orientation */
/* Screen Area - Landscape */
.ipad-screen {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 Aspect Ratio for landscape */
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.9);
	margin: 0 auto;
	z-index: 2;
}

/* iPad Camera - Landscape Position */
.ipad-camera {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #1a1a1a;
	border-radius: 50%;
	border: 2px solid #333;
	z-index: 3;
}

/* Camera Housing - iPad Style */
.ipad-camera::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

/* Side Buttons - Landscape */
.ipad-side-button {
	position: absolute;
	background: #d1d1d6;
	z-index: 10;
}

/* Power Button - Top in Landscape */
.ipad-power {
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 6px;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(to bottom, #e0e0e5, #c8c8ce);
	border-bottom: 1px solid #a0a0a5;
}

/* Volume Buttons - Right Side in Landscape */
.ipad-volume-up,
.ipad-volume-down {
	right: -6px;
	width: 6px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(to right, #e0e0e5, #c8c8ce);
	border-left: 1px solid #a0a0a5;
}

.ipad-volume-up {
	top: 25%;
	height: 60px;
}

.ipad-volume-down {
	top: 45%;
	height: 60px;
}

/* Home Button - Left Side in Landscape */
.ipad-home-button {
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 100px;
	background: linear-gradient(to left, #e0e0e5, #c8c8ce);
	border-radius: 3px 0 0 3px;
	border-right: 1px solid #a0a0a5;
	z-index: 3;
}

/* Hover Effect */
.ipad-frame:hover {
	transform: perspective(1200px) rotateY(0);
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.1) inset, 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Carousel Styles */
.solutions-carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.solution-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 2;
}

.solution-slide.active {
	opacity: 1;
	z-index: 3;
}

.solution-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Solutions Content Styles */
.solutions-content {
	flex: 1;
	max-width: 600px;
}

.solution-details {
	display: none;
	animation: fadeIn 0.5s ease;
}

.solution-details.active {
	display: block;
}

.solution-details h3 {
	font-size: 28px;
	color: #1a365d;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
}

.solution-details h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: #14bda7;
	transition: width 0.3s ease;
}

.solution-details p {
	color: #4a5568;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 25px;
}

.solution-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.solution-features li {
	flex: 1;
	min-width: 120px;
	color: #21695c;
	font-size: 13px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #0eb57926;
	padding: 20px 15px;
	border-radius: 12px;
	gap: 10px;
}

.solution-features li i {
	font-size: 20px;
}

/* Solution Navigation */
.solution-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}

.nav-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e2e8f0;
	color: #4a5568;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-arrow:hover {
	background: #14bda7;
	color: #fff;
	border-color: #14bda7;
}

.solution-dots {
	display: flex;
	gap: 10px;
	margin: 0 15px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e2e8f0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #14bda7;
	transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.showcase-container {
		flex-direction: column;
		text-align: center;
	}

	.solutions-content {
		max-width: 100%;
	}

	.solution-navigation {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.technology-showcase {
		padding: 50px 0;
	}
	.solutions-content {
		padding-left:10px;
		padding-right:10px;

	}

	.solution-details h3 {
		font-size: 24px;
	}
	.solution-features {
		margin-left: 0;
		justify-content: center;
	}
	
.solution-details h3::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 0;
	width: 60px;
	height: 3px;
	background: #14bda7;
	transition: width 0.3s ease;
}

	.solution-details p {
		font-size: 15px;
	}

	solutions-carousel {
		border-radius: 0px !important;
	}

	solution-slide {
		border-radius: 0px !important;
	}
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	height: 80px;
}

/* Adjust container to account for fixed header */
body {
	padding-top: 80px;
	/* Match header height */
	margin: 0;
	overflow-x: hidden;
}

/* Hero Slider Section */
.hero-slider-section {
	position: relative;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
	width: 6px !important;
	height: 6px !important;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	margin: 0 4px !important;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
	background: #fff;
	width: 16px;
}

/* Make dots smaller on mobile */
@media (max-width: 768px) {
	.hero-swiper .swiper-pagination-bullet {
		width: 4px;
		height: 4px;
	}

	.hero-swiper .swiper-pagination-bullet-active {
		width: 12px;
	}
}

.hero-slider-section {
	position: relative;
	height: calc(100vh - 80px);
	/* Viewport height minus header */
	min-height: 500px;
	/* Reduced from 600px for better mobile view */
	max-height: 1200px;
	/* Prevent excessive height on large screens */
	display: flex;
	align-items: center;
}

.hero-swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 80px);
	/* Subtract header height */
	min-height: 600px;
	/* Match hero section min-height */
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	overflow: hidden;
}

/* Hero Slide Caption Styles */
.slide-caption {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	text-align: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
	padding: 0 20px;
	max-width: 90%;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out;
}

/* Responsive adjustments for captions */
@media (max-width: 992px) {
	.slide-caption {
		font-size: 1.5rem;
		bottom: 40px;
		text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
	}
}

@media (max-width: 768px) {
	.slide-caption {
		font-size: 1.25rem;
		bottom: 30px;
		max-width: 95%;
	}
}

@media (max-width: 480px) {
	.slide-caption {
		font-size: 0.6rem;
		bottom: 25px;
		padding: 0 10px;
		line-height: 1.3;
	}
}

.slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	object-fit: cover;
	object-position: center;
	min-height: 100%;
	min-width: 100%;
}

.slide-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	padding: 0;
	background: transparent;
	backdrop-filter: none;
}

.slide-content h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
	font-size: 1.25rem;
	margin-bottom: 25px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.btn-primary:hover {
	background-color: transparent;
	border-color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
	color: white;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 1.5rem;
}

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

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--primary-color);
	transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.slide-content h1 {
		font-size: 2.2rem;
	}

	.slide-content p {
		font-size: 1.1rem;
	}
}

@media (max-width: 1024px) {
	.hero-slider-section {
		min-height: 500px;
		max-height: calc(100vh - 60px);
	}

	.swiper-slide {
		min-height: 500px;
	}

	.slide-content h1 {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.slide-content p {
		font-size: 1.1rem;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 60px;
		/* Reduced padding for mobile */
	}

	.header {
		height: 60px;
	}

	.hero-slider-section {
		height: auto;
		min-height: 0;
	}

	.swiper-slide {
		height: auto !important;
		min-height: 0;
	}

	.slide-content {
		padding: 15px 10px;
		width: 100%;
	}

	.slide-content h1 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}

	.slide-content p {
		font-size: 1rem;
		margin-bottom: 15px;
	}

	.btn-primary {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 36px;
		height: 36px;
		display: none;
		/* Hide on mobile for better touch experience */
	}
}

@media (max-width: 768px) {
	.swiper-wrapper {
		height: auto !important;
	}

	.swiper-slide {
		display: flex;
		align-items: center;
	}

	.slide-image {
		position: relative;
		height: auto;
	}

	.slide-image img {
		position: relative;
		height: auto;
		min-height: 0;
	}
}

@media (max-width:520px) {
	body {
		padding-top: 60px;
	}

	.hero-slider-section {
		height: auto;
		min-height: 0;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.hero-swiper {
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.swiper {
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.swiper-slide {
		height: 100% !important;
		min-height: 0;
		display: flex;
		flex-direction: column;
	}

	.slide-image {
		height: 100%;
		display: flex;
		align-items: flex-start;
	}

	.slide-image img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}

	.slide-content {
		padding: 10px 5px;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
		padding: 30px 15px 15px;
	}

	.slide-content h1 {
		font-size: 1.5rem;
		margin-bottom: 8px;
	}

	.slide-content p {
		font-size: 0.9rem;
		margin-bottom: 12px;
		display: none;
		/* Hide paragraph on mobile for cleaner look */
	}

	.swiper-pagination {
		display: none !important;
		bottom: 20px !important;
	}

	.btn-primary {
		padding: 8px 16px;
		font-size: 0.8rem;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

/* Base Styles */
:root {
	--primary-color: #14bda7;
	--secondary-color: #14bda7;
	--accent-color: #14bda7;
	--accent-2: #0ea5e9;
	--text-color: #1f2937;
	--text-light: #6b7280;
	--light-bg: #f9fafb;
	--white: #ffffff;
	--transition: all 0.3s ease;
	--elevation-1: 0 4px 12px rgba(0, 0, 0, .18), 0 2px 4px rgba(0, 0, 0, .12);
	--elevation-2: 0 14px 40px rgba(0, 0, 0, .25), 0 8px 14px rgba(0, 0, 0, .12);
	/* semi-transparent brand tokens */
	--primary-55: rgba(20, 189, 167, 0.55);
	--accent2-50: rgba(14, 165, 233, 0.5);
}

.hero-tiles {
	position: absolute;
	inset: 0;
	z-index: 2;
	/* under captions, above overlay/slider */
	display: grid;
	grid-template-columns: repeat(14, 1fr);
	/* desktop strips */
	grid-auto-rows: 100%;
	pointer-events: none;
}

.hero-tiles .tile {
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	/* will be overridden per tile */
	opacity: 0;
	/* hidden by default, shown during animation */
}

@media (max-width: 1024px) {
	.hero-tiles {
		grid-template-columns: repeat(10, 1fr);
		/* tablet strips */
	}
}

@media (max-width: 640px) {
	.hero-tiles {
		grid-template-columns: repeat(6, 1fr);
		/* mobile strips */
	}
	
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #1a365d;
	background-color: var(--white);
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-header h2::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	background: var(--primary-color);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.section-header p {
	color: var(--text-light);
	max-width: 1200px;
	margin: 0 auto;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	outline: none;
	font-size: 1rem;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
}

.btn-primary:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(20, 189, 167, 0.2);
}

.btn-mary {
	background-color: #0eb57926;
	color: #21695c;
	padding: 12px 30px !important;
}

.btn-mary:hover {
	background-color: var(--primary-color);
	color: #fff;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(20, 189, 167, 0.2);
}

.btn-text i {
	margin-left: 5px;
	transition: var(--transition);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Specialties Section with Mobile Frame */
.specialties {
	position: relative;
	padding: 100px 0;
	background-color: #f8f9fa;
	overflow: hidden;
}

.specialties .section.company-cta {
	margin-top: 30px;
	text-align: center;
}

.company-cta .btn-primary {
	background-color: #14bda7;
	color: #ff;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.company-cta .btn-primary:hover {
	background: #0eb57926;
	color: #21695c;
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.specialties .section-header h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 15px;
}

.specialties .section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.specialties-container {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	min-height: 600px;
}

/* iPad Frame (Landscape) */
.ipad-frame {
	position: relative;
	width: 700px;
	height: 500px;
	background: linear-gradient(45deg, #333, #444);
	border-radius: 40px;
	border: 12px solid #333;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
	margin-right: 80px;
	overflow: hidden;
	z-index: 2;
	transform: rotate(0deg) translateZ(0);
	transition: all 0.3s ease;
	-webkit-overflow-scrolling: touch;
	backface-visibility: hidden;
	perspective: 1000px;
	will-change: transform;
}

.ipad-screen {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	overflow: hidden;
	border-radius: 28px;
	/* Slightly smaller to account for the border */
	-webkit-overflow-scrolling: touch;
	transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000px;
	will-change: transform;
}

.ipad-content {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000px;
	will-change: transform;
}

.ipad-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	z-index: 1;
	pointer-events: none;
	box-sizing: border-box;
	will-change: opacity;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.ipad-slide.active {
	opacity: 1;
	z-index: 2;
}

.ipad-slide-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ipad-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ipad-slide-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}

.slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.ipad-slide.active .slide-image {
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ipad-slide h3 {
	font-size: 1.8rem;
	margin: 15px 0;
	color: #2c3e50;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.ipad-slide p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
	max-width: 600px;
	margin: 10px auto 0;
	padding: 0 20px;
	transition: all 0.3s ease;
}

.ipad-button {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 60px;
	background: #c8c8c8;
	border-radius: 2px;
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
}

/* iPad frame details */
.ipad-frame::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -6px;
	transform: translateY(-50%);
	width: 8px;
	height: 60px;
	background: #b8b8b8;
	border-radius: 4px 0 0 4px;
	z-index: 3;
}

.ipad-frame::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -6px;
	transform: translateY(-50%);
	width: 8px;
	height: 100px;
	background: #b8b8b8;
	border-radius: 0 4px 4px 0;
	z-index: 3;
}

/* Specialties List */
.specialties-list {
	flex: 1;
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.specialty-item {
	max-width: 600px;
	margin-bottom: 60px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	pointer-events: none;
	padding-top: 60px;
	/* Add space for the number */
	position: relative;
}

.specialty-item.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%);
	pointer-events: auto;
	position: relative;
	top: auto;
	left: auto;
	display: block;
}

/* Make all items visible but only active one is fully opaque */
.specialty-item:not(.active) {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.specialty-number {
	position: absolute;
	left: 0;
	top: -20px;
	/* Position above the content */
	font-size: 3.5rem;
	font-weight: 700;
	color: rgba(20, 189, 167, 0.15);
	line-height: 1;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

.specialty-item.active .specialty-number {
	color: rgba(20, 189, 167, 0.15);
}

.specialty-details {
	position: relative;
	z-index: 2;
}

.specialty-details h3 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	position: relative;
}

.specialty-item.active .specialty-details h3 {
	color: #14bda7;
}

.specialty-details p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Bounce animation (kept as it might be used elsewhere) */
@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.specialties-container {
		padding: 0 40px;
	}

	.ipad-slide h3 {
		font-size: 1.8rem;
	}

	.ipad-slide p {
		font-size: 1.1rem;
	}
}

@media (max-width: 992px) {
	.specialties-container {
		flex-direction: column;
		align-items: center;
		min-height: auto;
		padding: 0 20px;
	}

	.ipad-frame {
		position: relative;
		top: 0;
		margin: 0 0 60px 0;
		width: 700px;
		height: 500px;
	}

	.specialties-list {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
		padding: 0;
	}

	.specialty-item {
		max-width: 100%;
		margin-bottom: 30px;
	}
}

@media (max-width: 992px) {
	.ipad-slide h3 {
		font-size: 1.6rem;
	}

	.ipad-slide p {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.ipad-frame {
		width: 90%;
		height: 400px;
		border-width: 10px;
		border-radius: 25px;
	}

	.ipad-slide {
		padding: 25px 20px;
	}

	.ipad-slide h3 {
		font-size: 1.4rem;
		margin: 10px 0;
	}

	.ipad-slide p {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.slide-image {
		max-height: 50%;
		margin-bottom: 15px;
	}

	.ipad-button {
		height: 35px;
	}
}

@media (max-width: 576px) {
	.specialties {
		padding: 50px 0;
	}

	.specialties .section-header h2 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}

	.specialties .section-header p {
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.company-cta .btn-primary {
		width:60%;
    display: block;
    margin: 0 auto;
	}

	.ipad-frame {
		width: 100%;
		height: 280px;
		border-width: 8px;
		border-radius: 35px;
		margin-bottom: 30px;
	}

	.ipad-slide {
		padding: 15px;
	}

	.ipad-slide h3 {
		font-size: 1.2rem;
		margin: 8px 0 5px;
	}

	.ipad-slide p {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-top: 5px;
	}

	.slide-image {
		max-height: 45%;
		margin-bottom: 10px;
	}

	.specialty-details h3 {
		font-size: 1.3rem;
	}

	.specialty-details p {
		font-size: 0.95rem;
	}
}

/* Add overlay to improve text readability */
.specialty-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Responsive styles */
@media (max-width: 1200px) {
	.specialty-slide .slide-text {
		padding: 30px;
	}

	.specialty-slide h2 {
		font-size: 2.2rem;
	}
}

@media (max-width: 992px) {
	.specialty-content {
		padding: 0 40px;
	}

	.specialty-slide .slide-text {
		padding: 30px;
	}

	.specialty-slide h2 {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.first_tx{
	padding:20px;
	text-align: center;
    line-height: 1.5;
	padding-bottom: 50px;
}
	.specialty-content {
		padding: 0 30px;
	}

	.specialty-slide h2 {
		font-size: 1.8rem;
	}

	.specialty-slide p {
		font-size: 1rem;
	}

	.specialty-slide .slide-text {
		padding: 25px;
	}
}

@media (max-width: 576px) {
	.specialty-content {
		padding: 0 20px;
	}

	.specialty-slide .slide-text {
		padding: 20px 15px;
	}

	.specialty-slide h2 {
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}

	.specialty-slide p {
		font-size: 0.95rem;
	}
	.navbar{
	margin-top:-10px;
	}
}

/* Footer Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	font-size: 1.8rem;
	font-weight: 700;
	color: #21695c;
}

.logo span {
	color: var(--primary-color);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-links a {
	color: #21695c;
	font-weight: 500;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

/* Prevent underline effect for button-styled links in the navbar */
.nav-links a.btn::after,
.nav-links a.btn-mary::after {
	display: none;
}

.nav-links a.active {
	color: var(--primary-color);
}

/* Ensure default font color for Contact Us button in nav */
.nav-links a.btn-mary {
	color: #21695c;
}

/* Ensure nav button (.btn-mary) uses white text and primary background on hover/active */
.nav-links a.btn-mary:hover,
.nav-links a.btn-mary:active,
.nav-links a.btn.btn-mary:hover,
.nav-links a.btn.btn-mary:active,
.btn-mary:hover,
.btn-mary:active,
.btn-mary.active,
.nav-links a.btn-mary.active {
	background-color: var(--primary-color);
	color: #fff;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--text-color);
	margin: 3px 0;
	transition: var(--transition);
}

/* Hero Section */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #f0fff9 0%, #e6fff6 100%);
}

.hero-slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	z-index: 1;
	pointer-events: none;
}

/* Particle Effect */
.hero-slider::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 1px), radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px), radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.15) 1px, transparent 1px), radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 50px 50px, 80px 80px, 60px 60px, 70px 70px, 90px 90px;
	animation: particleFloat 20s linear infinite;
	z-index: 1;
	pointer-events: none;
	opacity: 0.6;
}

@keyframes particleFloat {
	0% {
		transform: translateY(0px) translateX(0px);
	}

	25% {
		transform: translateY(-10px) translateX(5px);
	}

	50% {
		transform: translateY(-5px) translateX(-5px);
	}

	75% {
		transform: translateY(-15px) translateX(3px);
	}

	100% {
		transform: translateY(0px) translateX(0px);
	}
}

.hero-slider .swiper-slide {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.slide-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.slide-content {
	padding-right: 2rem;
	animation: slideInLeft 0.8s ease-out;
}

.slide-badge {
	display: inline-block;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.badge-text {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.6s ease-out 0.3s both;
}

.slide-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

.slide-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.8);
	animation: fadeInUp 0.6s ease-out 0.5s both;
}

.slide-actions {
	display: flex;
	gap: 1rem;
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

.slide-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	animation: slideInRight 0.8s ease-out;
}

.visual-element {
	position: relative;
	width: 300px;
	height: 300px;
}

.floating-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	width: 200px;
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.floating-card i {
	font-size: 3rem;
	color: white;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.floating-card span {
	font-size: 1rem;
	font-weight: 600;
	color: white;
	opacity: 0.9;
}

.floating-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.floating-card:hover::before {
	left: 100%;
}

.floating-card:hover {
	transform: translate(-50%, -50%) translateY(-25px) scale(1.05);
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced Navigation */
.slider-navigation {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 15;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 1rem 2rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev,
.swiper-button-next {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.8;
	position: relative;
	overflow: hidden;
}

.swiper-button-prev::before,
.swiper-button-next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
	z-index: -1;
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
	width: 100%;
	height: 100%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.15) translateY(-2px);
	opacity: 1;
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.swiper-button-prev:active,
.swiper-button-next:active {
	transform: scale(1.05) translateY(0px);
}

/* Enhanced Pagination */
.swiper-pagination {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255, 255, 255, 0.6);
	position: relative;
	overflow: hidden;
}

.swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover::before {
	width: 100%;
	height: 100%;
}

.swiper-pagination-bullet-active {
	background: white;
	transform: scale(1.3);
	box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
	border-color: white;
}

.swiper-pagination-bullet-active::before {
	width: 100%;
	height: 100%;
}

/* Performance Optimizations */
.hero-slider .swiper-slide {
	will-change: transform, opacity;
	backface-visibility: hidden;
	perspective: 1000px;
}

/* Voice Control Button */
.voice-control-btn {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.8;
	position: relative;
	overflow: hidden;
	font-size: 18px;
}

.voice-control-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
	z-index: -1;
}

.voice-control-btn:hover::before {
	width: 100%;
	height: 100%;
}

.voice-control-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.15) translateY(-2px);
	opacity: 1;
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.voice-control-btn:active {
	transform: scale(1.05) translateY(0px);
}

.voice-control-btn.active {
	background: rgba(255, 87, 34, 0.8);
	border-color: rgba(255, 87, 34, 0.9);
	box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
	}
}

/* Enhanced Video Background Styles */
.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	border-radius: inherit;
}

.background-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	opacity: 0.4;
	filter: blur(0.5px) brightness(0.8);
	transition: opacity 0.5s ease;
}

.background-video.loaded {
	opacity: 0.3;
}

.background-video.error {
	display: none;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
	transition: background 0.5s ease;
}

/* Video Loading State */
.video-background::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top: 3px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: spin 1s linear infinite;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-background.loading::after {
	opacity: 1;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Ensure slide content appears above video */
.hero-slider .swiper-slide .slide-container {
	position: relative;
	z-index: 2;
}

/* Video Performance Optimizations */
.background-video {
	will-change: transform;
	backface-visibility: hidden;
}

/* Enhanced video overlay for better text readability */
.hero-slider .swiper-slide[data-video] .slide-content {
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2px);
	border-radius: 20px;
	padding: 2rem;
	margin: 1rem;
}

.hero-slider .swiper-slide[data-video] .slide-title,
.hero-slider .swiper-slide[data-video] .slide-subtitle,
.hero-slider .swiper-slide[data-video] .slide-description {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile optimization for video backgrounds */
@media (max-width: 768px) {
	.background-video {
		opacity: 0.2;
		filter: blur(1px) brightness(0.7);
	}

	.hero-slider .swiper-slide[data-video] .slide-content {
		padding: 1rem;
		margin: 0.5rem;
	}

	.first_tx{
		margin-top:30px;
	}
	.first_tx-desc{
    font-size: 1.3rem;
    color: #14bda7;
    margin: 0 auto;
    line-height: 1.2;
}
.first_tx-title{
    font-size: 1rem;
    line-height: 1.1;
	margin-top:5px;
    margin-bottom: 20px;
	color: #848787;

}
}

/* Disable video backgrounds on low-performance devices */
@media (prefers-reduced-motion: reduce) {
	.background-video {
		display: none;
	}

	.video-background::after {
		display: none;
	}
}

/* Video Error State */
.video-background.error {
	display: none;
}

.video-background.error::after {
	content: 'Video unavailable';
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	text-align: center;
	opacity: 1;
	border: none;
	width: auto;
	height: auto;
	animation: none;
}

/* Animations */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translate(-50%, -50%) translateY(0px);
	}

	50% {
		transform: translate(-50%, -50%) translateY(-20px);
	}
}

/* Tablet and Mobile */
@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.footer-about {
		grid-column: 1 / -1;
	}
}

	/* iPad portrait Mode */
	@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
		.footer-content {
			grid-template-columns: 1fr;
			margin-left:50px !important;
		}

		.footer-newsletter h3 {
			margin-bottom: 15px;
		}

		.newsletter-form {
			max-width: 500px;
			margin: 0 auto;
		}
	}

.slide-content {
	padding-right: 0;
	order: 2;
}


.slide-visual {
	order: 1;
}

.slide-title {
	font-size: 2.5rem;
}

.slide-subtitle {
	font-size: 1.2rem;
}
}

/* Tablet Portrait - 4 modules per row */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	.modules-grid {
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 1rem !important;
	}

	/* Adjust module card sizes for better fit */
	.module-card {
		padding: 1rem 0.75rem !important;
	}

	.module-card h3 {
		font-size: 0.9rem !important;
	}

	.module-card p {
		font-size: 0.8rem !important;
	}

	.module-card .icon {
		width: 36px !important;
		height: 36px !important;
		font-size: 1.1rem !important;
	}
}

/* Mobile Landscape - 4 modules per row */
@media (max-width: 1024px) and (orientation: landscape) and (max-height: 600px) {
	.modules-grid {
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 1rem !important;
	}

	.module-card {
		padding: 1rem 0.75rem !important;
	}

	.module-card h3 {
		font-size: 0.9rem !important;
	}

	.module-card p {
		font-size: 0.8rem !important;
	}

	.module-card .icon {
		width: 36px !important;
		height: 36px !important;
		font-size: 1.1rem !important;
	}
}

@media (max-width: 768px) {
	.slide-container {
		padding: 0 1rem;
	}

	.slide-title {
		font-size: 2rem;
	}

	.slide-subtitle {
		font-size: 1rem;
	}

	.slide-description {
		font-size: 1rem;
	}

	.slide-actions {
		flex-direction: column;
		align-items: center;
	}

	.visual-element {
		width: 250px;
		height: 250px;
	}

	.floating-card {
		width: 150px;
		height: 150px;
		padding: 1.5rem;
	}

	.floating-card i {
		font-size: 2rem;
	}

	.floating-card span {
		font-size: 0.875rem;
	}

	.slider-navigation {
		bottom: 1.5rem;
		gap: 1.5rem;
		padding: 0.75rem 1.5rem;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 45px;
		height: 45px;
	}

	.swiper-button-prev svg,
	.swiper-button-next svg {
		width: 18px;
		height: 18px;
	}

	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 576px) {
	.slide-title {
		font-size: 1.75rem;
	}

	.slide-subtitle {
		font-size: 0.9rem;
	}

	.slide-description {
		font-size: 0.9rem;
	}

	.visual-element {
		width: 200px;
		height: 200px;
	}

	.floating-card {
		width: 120px;
		height: 120px;
		padding: 1rem;
	}

	.floating-card i {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}

	.floating-card span {
		font-size: 0.75rem;
	}
}

/* Services Section */
.services {
	padding: 100px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
	align-items: stretch;
	grid-auto-rows: 1fr;
}

.service-card {
	background: var(--white);
	padding: 20px 20px !important;
	border-radius: 10px;
	text-align: center;
	transition: var(--transition);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, rgba(20, 189, 167, 0.1) 0%, rgba(20, 189, 167, 0.05) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--primary-color);
	transition: var(--transition);
}

.service-card:hover .icon {
	background: var(--primary-color);
	color: var(--white);
	transform: rotateY(180deg);
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.service-card p {
	color: var(--text-light);
	margin-bottom: 0px ;
	font-size: 0.95rem;
}

/* Solutions Section */
.solutions {
	padding: 100px 0;
	background-color: var(--light-bg);
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
	align-items: stretch;
	grid-auto-rows: 1fr;
}

.solution-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.solution-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-card .card-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.solution-card h3 {
	font-size: 0.8rem;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.solution-card p {
	color: var(--text-light);
	margin-bottom: 0px;
	font-size: 0.6rem;
}

/* Special Featured Cards with Doctor Image - Exact Match */
.special-modules-container {
	display: flex;
	gap: 0;
	margin-bottom: 60px;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	position: relative;
}

/* Flipped layout - image on left, content on right */
.special-modules-container.flipped {
	flex-direction: row-reverse;
}

.special-modules-container.flipped .special-modules-image {
	border-radius: 0 12px 12px 0;
}

.special-modules-container.flipped .special-modules-content {
	border-radius: 12px 0 0 12px;
}

.special-modules-content {
	flex: 1;
	padding: 40px 50px;
	max-width: 55%;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.special-module {
	padding: 20px 0;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
	padding-left: 70px;
	display: flex;
	align-items: flex-start;
}

.special-module:last-child {
	border-bottom: none;
}

/* 04 NeoLab module background */
.special-modules-content .special-module:nth-child(4) {
	background: rgba(20, 189, 167, 0.15);
	border-radius: 8px;
	margin: 0 -10px;
	padding-left: 80px;
	padding-right: 10px;
}
.special-modules-content .special-module:nth-child(4) .module-number{
color:#fff;
margin-left:7px;
}
.special-modules-content .special-module:nth-child(4)  .trusted-badge{
	margin-right:7px;
}
.special-modules-content .special-module:nth-child(4) .badge-year-center1{
	margin-left: -11px;
}
/* Trusted By Badge for 01 Hospital Information System - Circular Design */
.trusted-badge {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #14bda7 0%, #0d8f7e 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(20, 189, 167, 0.4);
	z-index: 10;
	overflow: visible;
}

.badge-svg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.badge-curved-text {
	fill: white;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.badge-year-center {
	position: absolute;
	color: white;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	text-align:left;
	z-index: 2;
	margin-top:-5px;
	margin-left:-20px;
}
.badge-year-center1{
	position: absolute;
	color: white;
	font-size: 0.4rem;
	font-weight: 300;
	line-height: 1;
	text-align:left;
	z-index: 2;
	margin-top:15px;
	margin-left:-17px;
}

.special-modules-content .special-module {
	position: relative;
}

.module-number {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2.8rem;
	font-weight: 700;
	color: rgba(20, 189, 167, 0.15);
	line-height: 1;
	font-family: 'Poppins', sans-serif;
}

.module-card {
	position: relative;
	padding-left: 50px;
	min-height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.module-content {
	flex: 1;
}

.special-module h3 {
	font-size: 1.6rem;
	margin-bottom: 8px;
	color: #2d3748;
	font-weight: 600;
	line-height: 1.4;
}

.success-message {
	display: none;
	color: #10b981;
	margin-top: 15px;
	font-size: 0.9rem;
	font-weight: 500;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.success-message.visible {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.learn-more {
	display: inline-flex;
	align-items: center;
	color: #14bda7;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-decoration: none;
	margin-top: 5px;
	background:#0eb57926;
	padding: 5px 15px;
	border-radius: 50px;
}

.learn-more i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.learn-more:hover {
	color: #21695c;
}

.learn-more:hover i {
	transform: translateX(5px);
}

.special-modules-image {
	flex: 0 0 45%;
	position: relative;
	min-height: 100%;
	display: flex;
	align-items: stretch;
	background: white;
	border-radius: 12px 0 0 12px;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.special-modules-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.special-modules-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 1;
}

.doctor-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	position: relative;
	z-index: 2;
	transition: transform 0.5s ease;
	display: block;
}

/* Remove hover effect for exact match */
/* Special Featured Cards (old styles) */
.special-modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.special-module-card {
	background: white;
	padding: 35px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(20, 189, 167, 0.2);
}

.special-module-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}

.special-module-card .icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.special-module-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--text-color);
}

.special-module-card p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.6;
}

.special-badge {
	position: absolute;
	top: 15px;
	right: -30px;
	background: var(--primary-color);
	color: white;
	padding: 5px 30px;
	transform: rotate(45deg);
	font-size: 0.75rem;
	font-weight: 600;
	width: 120px;
	text-align: center;
}

/* Modules (Why Choose style) */
.modules {
	margin-top: -15px;
	padding: 50px 0;
	background: linear-gradient(135deg, #e0f7f4 0%, #f0fffe 50%, #e8f9f7 100%);
}

.modules-grid {
	display: flex;
	gap: 20px;
	margin-top: 48px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	align-items: flex-start;
}

/* Left section - 3x4 grid for cards 04-15 (12 cards) */
.modules-grid-left {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	flex: 0 0 60%;
	grid-auto-rows: 1fr;
}

/* Ensure all left section cards are square */
.modules-grid-left .module-card {
	aspect-ratio: 1 / 1;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Center align content in left section cards */
.modules-grid-left .module-card .module-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.modules-grid-left .module-card .icon {
	margin: 0 auto 16px;
}

.modules-grid-left .module-card h3 {
	text-align: center;
}

.modules-grid-left .module-card p {
	text-align: center;
}

/* Right section - vertical list for cards 16+ */
.modules-grid-right {
	flex: 0 0 38%;
	display: flex;
	flex-direction: column;
	gap:0px;
}

/* Cards in right section (16+) - horizontal layout with full height icon */
.modules-grid-right .module-card {
	padding: 0 !important;
	min-height: 70px;
	height: 70px;
	display: flex !important;
	flex-direction: row !important;
	align-items: stretch !important;
	text-align: left !important;
	gap: 0;
	position: relative;
	overflow: hidden;
	border-radius: 8px !important;
}

/* Right section card numbers - positioned after icon */
.modules-grid-right .module-card .module-number {
	position: absolute;
	top: 5px;
	left: 85px;
	font-size: 1.8rem;
	font-weight: 700;
	color: rgba(20, 189, 167, 0.15);
	line-height: 1;
	font-family: 'Poppins', sans-serif;
	z-index: 2;
}

/* Right section icon - full height */
.modules-grid-right .module-card .icon {
	width: 45px !important;
	height: 45px !important;
	font-size: 18px !important;
	margin: 0 !important;
	flex-shrink: 0;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(20, 189, 167, 0.08) !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
	margin-left:10px !important;
}

/* Remove transform on hover for right section cards */
.modules-grid-right .module-card:hover {
	transform: none !important;
}

/* Icon hover effect - change background to primary color */
.modules-grid-right .module-card:hover .icon {
	background: #14bda7 !important;
	color: white !important;
}

/* Right section content wrapper */
.modules-grid-right .module-card .module-link {
	display: grid !important;
	grid-template-columns: 80px 1fr;
	grid-template-rows: auto auto;
	align-items: center !important;
	flex: 1;
	text-align: left !important;
	gap: 0;
	position: relative;
	z-index: 1;
	width: 100%;
}

/* Icon stays on left - spans both rows */
.modules-grid-right .module-card .module-link .icon {
	grid-column: 1;
	grid-row: 1 / 3;
	align-self: center;
}

/* Heading in top right - centered */
.modules-grid-right .module-card h3 {
	grid-column: 2;
	grid-row: 1;
	font-size: 0.95rem !important;
	margin: 0 !important;
	text-align: center !important;
	line-height: 1.3;
	font-weight: 600;
	padding: 0 50px 1px 15px;
	align-self: center;
	margin-top:5px !important;
}

/* Paragraph directly below heading - centered */
.modules-grid-right .module-card p {
	grid-column: 2;
	grid-row: 2;
	font-size: 0.55rem !important;
	line-height: 1 !important;
	margin: 0 !important;
	text-align: center !important;
	color: #666;
	padding: 1px 50px 0 15px;
	align-self: center;
	margin-top:-30px !important;
}

/* Plus icon positioning for right section */
.modules-grid-right .module-card::after {
	top: 8px !important;
	right: 8px !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.modules-grid {
		flex-direction: column;
	}
	
	.modules-grid-left {
		flex: 1;
		width: 100%;
		grid-template-columns: repeat(4, 1fr);
	}
	
	.modules-grid-right {
		flex: 1;
		width: 100%;
		max-height: none;
		overflow: visible;
		display: flex !important;
		flex-direction: column !important;
	}
}


@media (max-width: 768px) {
	.modules-grid-left {
		grid-template-columns: repeat(3, 1fr) !important;
		flex: 1 !important;
		width: 100% !important;
		display: grid !important;
	}
	
	.modules-grid-left .module-card {
		width: 100% !important;
	}
	
	.modules-grid-left .module-card .module-number {
		font-size: 1.5rem !important;
		top: -10px !important;
		left: -8px !important;
	}
	
	
	
	.modules-grid-right {
		max-height: none !important;
		width: 100% !important;
		overflow: visible !important;
		display: flex !important;
		flex-direction: column !important;
	}
	.modules-grid-right .module-card .icon{
		position:absolute;
		align-items: center;
		justify-content: center;
		vertical-align: center !important;
		top:15px;
		left:30px;
	}
	.modules-grid-right .module-card .module-number{
		position:absolute;
		left:5px;
	}
	.modules-grid-right .module-card h3{
		position:absolute;
		width:100%;
		text-align:center;
		top:22px;

	
	}
	
}

.module-card {
	background: var(--white);
	padding: 32px 26px;
	border-radius: 16px;
	text-align: center;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: visible;
}

/* Card number styling */
.module-card .module-number {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 2.8rem;
	font-weight: 700;
	color: rgba(20, 189, 167, 0.15);
	line-height: 1;
	font-family: 'Poppins', sans-serif;
	z-index: 0;
}

/* Left section card numbers - extreme left top corner */
.modules-grid-left .module-card .module-number {
	top: -17px;
	left: -15px;
	right: auto;
	font-size: 2.5rem;
	line-height: 0.8;
}

.module-card .module-link {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

/* Plus icon at top-right of cards */
.service-card::after,
.solution-card::after,
.module-card::after {
	content: '+';
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	opacity: 0.8;
	line-height: 1;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(20, 189, 167, 0.1);
	border-radius: 50%;
}

.module-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 28px rgba(20, 189, 167, 0.12);
	border-color: rgba(20, 189, 167, 0.25);
}

.module-card .icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 189, 167, 0.10);
	color: var(--primary-color);
	font-size: 26px;
	transition: var(--transition);
}

.module-card:hover .icon {
	background: var(--primary-color);
	color: var(--white);
}

.module-card h3 {
	font-size: 1rem;
	margin-bottom: 10px;
}

.module-card p {
	color: var(--text-light);
	font-size: 0.60rem;
}

/* Company Section */
.company {
	padding: 80px 20px;
	position: relative;
	background-color: #f9fafb;
	max-width: 1400px;
	margin: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	border-radius: 12px;
}

/* Mobile Portrait View - Force stats in a single row */
@media (max-width: 768px) {
	.company {
		margin: 0 15px;
		padding: 60px 15px;
		grid-template-columns: 1fr;
	}

	.company-content {
		order: 1;
	}

	.company-video {
		order: 2;
	}
	.vision-card h3:after {
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	background: var(--primary-color);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.vision-card:hover h3:after {
	width: 80px;
}

.service-card::after,
.solution-card::after,
.module-card::after {
	content: '+';
	position: absolute;
	top: 8px;
	right: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	opacity: 0.8;
	line-height: 1;
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(20, 189, 167, 0.1);
	border-radius: 50%;
}
	.company-stats {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 8px !important;
		margin: 20px 0 30px !important;
		padding: 0 !important;
		width: 100% !important;
		overflow: visible !important;
	}

	.stat-item {
		flex: 1 1 0% !important;
		min-width: 0 !important;
		width: auto !important;
		padding: 0 5px !important;
		margin: 0 !important;
		text-align: center !important;
		float: none !important;
		display: block !important;
	}

	.stat-item h3 {
		font-size: 1.5rem !important;
		margin: 0 0 2px 0 !important;
		white-space: nowrap !important;
		line-height: 1.2 !important;
	}

	.stat-item p {
		font-size: 0.7rem !important;
		margin: 0 !important;
		white-space: nowrap !important;
		line-height: 1.2 !important;
	}
}

.company-content {
	padding: 20px 0;
	max-width: 100%;
}

#company {
	background-color: #fff;
}

/* Desktop View - Side by side layout */
@media (min-width: 1025px) {
	.company {
		grid-template-columns: 1fr 1fr;
		padding: 60px 30px;
		gap: 40px;
	}

	.company-content {
		order: 1;
		padding: 0 20px 0 0;
	}

	.company-video {
		order: 2;
		margin: 0;
	}
}

/* Tablet and Mobile Portrait - Video on top, text below */
/* Vision Section */
.vision-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.vision-section .section-header {
	max-width: 800px;
	margin: 0 auto 60px;
}

.vision-section .section-header h2 {
	font-size: 2.5rem;
	color: #1a1a1a;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.vision-section .section-header h2:after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.vision-section .section-header p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-top: 20px;
}

.vision-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.vision-card {
	background: #fff;
	border-radius: 10px;
	padding: 40px 30px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.vision-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: rgba(20, 189, 167, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
	background: var(--primary-color);
	transform: rotateY(180deg);
}

.vision-icon i {
	font-size: 2.5rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.vision-card:hover .vision-icon i {
	color: #fff;
}

.vision-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #1a1a1a;
	position: relative;
	padding-bottom: 15px;
}

.vision-card h3:after {
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	background: var(--primary-color);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.vision-card:hover h3:after {
	width: 80px;
}

.vision-card p {
	color: #666;
	font-size: 1rem;
	line-height: 1.7;
	margin-top: 20px;
}

/* iPhone XR specific fixes */
@supports (-webkit-touch-callout: none) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
	.certifications-container {
		-webkit-mask-image: -webkit-radial-gradient(white, black);
		-webkit-backface-visibility: hidden;
		overflow: hidden !important;
		-webkit-transform: translateZ(0) scale(1);
		transform: translateZ(0) scale(1);
	}

}

.certifications-container {
	width: 100%;
	overflow: hidden !important;
	position: relative;
	padding: 20px 0;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	max-width: 100%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}


@media (max-width: 480px) {
	.certification-item {
		width: 100%;
		max-width: 220px;
	}
}

@media (max-width: 1024px) and (min-width: 769px) and (orientation: portrait) {
	.company {
		grid-template-columns: 1fr;
		padding: 40px 20px;
		gap: 30px;
	}

	.company .container {
		display: flex;
		flex-direction: column;
	}

	.company-content {
		order: 1;
		padding: 0;
		width: 100%;
	}

	/* Video container for mobile portrait */
	.company-video {
		order: 2;
		width: 100%;
		margin: 0 0 30px 0;
		line-height: 0;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	}

	.company-video video {
		width: 100%;
		height: auto;
		display: block;
	}

	.company-video video {
		width: 100%;
		height: auto;
		max-width: 100%;
		display: block;
		/* Removes bottom space */
		vertical-align: bottom;
		/* Removes space below inline elements */
	}
}

@media (max-width: 1024px) and (min-width: 769px) and (orientation: landscape) {
	.company {
		grid-template-columns: 1fr 1fr;
		padding: 40px 20px;
		gap: 40px;
	}

	.company .container {
		flex-direction: row;
		align-items: center;
	}

	.company-content {
		order: 1;
		padding: 0 0 0 20px;
	}

	.company-video {
		order: 2;
		margin: 0;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	}
}

.company-content {
	padding-right: 20px;
}

.company-content h2 {
	font-size: 2.5rem;
	color: #1f2937;
	margin-bottom: 20px;
}

.company-content p {
	color: #6b7280;
	margin-bottom: 20px;
	line-height: 1.6;
}

.company-stats {
	display: flex;
	gap: 15px;
	margin: 30px 0;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 2rem;
	color: #14bda7;
	margin-bottom: 5px;
}

.stat-item p {
	color: #6b7280;
	font-size: 0.9rem;
}

.company-video {
	flex: 1;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	width: 100%;
	background-color: transparent;
}

.company-video video {
	width: 100%;
	height: auto;
	display: block;
}

/* Ensure the container has enough height */
.company .container {
	display: flex;
	align-items: stretch;
	/* Changed from center to stretch */
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	/* Added vertical padding */
	min-height: 500px;
	/* Ensure minimum container height */
}

/* Responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
	.company .container {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.company-content {
		order: 1;
		padding-right: 0;
		width: 100%;
	}

	#company {
		padding: 60px 0;
	}

	.company-stats {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.stat-item {
		flex: 0 0 45%;
		margin-bottom: 20px;
	}
}

/* Video Play Button for iOS */
.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	color: white;
	font-size: 24px;
}

.video-play-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
	margin-left: 5px;
	/* Adjust play icon position */
}

.company-video {
	position: relative;
}

.company-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

/* iOS Play Button Styles */
.ios-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(20, 189, 167, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 40px;
	z-index: 10;
	cursor: pointer;
	opacity: 1;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ios-play-button:hover {
	background: rgba(16, 158, 140, 0.9);
	transform: translate(-50%, -50%) scale(1.05);
}

.ios-play-button:active {
	transform: translate(-50%, -50%) scale(0.95);
}

/* Fallback image styling */
.video-fallback {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.video-fallback img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Touch device optimizations */
@media (hover: none) {
	.ios-play-button {
		opacity: 1 !important;
	}
}

/* Fallback for when video doesn't load or autoplay is blocked */
.video-fallback {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 2rem 0;
	padding: 1.5rem 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.company-stats .stat-item {
	text-align: center;
	padding: 30px 0px !important;
}

.company-stats .stat-item h3 {
	font-size: 2rem;
	color: #14bda7;
	margin-bottom: 5px;
}

.company-stats .stat-item p {
	color: var(--text-light);
	font-size: 0.9rem;
	margin: 0;
}

/* CTA button */
.company-cta {
	margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.company .container {
		padding: 0 30px;
	}
}

/* Mobile View - Text First, Then Video */
@media (max-width: 768px) {
	.company .container {
		display: flex;
		flex-direction: column;
		gap: 30px;
		padding: 0 20px;
	}

	.company-content {
		order: 1;
		text-align: left;
		padding: 0;
		width: 100%;
	}

	.company-video {
		order: 2;
		margin: 0 0 30px 0;
		max-width: 100%;
		width: 100%;
	}

	.company-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		margin: 1.5rem 0;
		padding: 1rem 0;
	}

	.company-content h2::after {
		left: 0;
		transform: none;
	}

	.company-cta {
		text-align: left;
	}
}

.company-content h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #1f2937;
	position: relative;
	display: inline-block;
}

.company-content h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 60px;
	height: 3px;
	background: var(--primary-color);
}

.company-content p {
	color: #4b5563;
	margin-bottom: 2rem;
	line-height: 1.8;
	font-size: 1.05rem;
}

.company-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 2.5rem 0;
	padding: 1.5rem 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.stat-item {
	flex: 1;
	min-width: 120px;
	text-align: center;
	padding: 15px 10px;
	border-radius: 8px;
}

.stat-item h3 {
	font-size: 2rem;
	color: #14bda7;
	margin: 0 0 8px;
	font-weight: 700;
	line-height: 1.2;
	display: inline-block;
}

.stat-item p {
	color: #4b5563;
	margin: 12px 0 0;
	font-size: 0.85rem;
	/* Reduced from 0.95rem */
	font-weight: 500;
	letter-spacing: 0.2px;
	/* Slightly reduced letter spacing */
}

/* Contact Section */
.contact {
	padding: 0;
	background: transparent;
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
}

.contact .section-header {
	text-align: center;
	margin-bottom: 20px;
	/* Reduced from 60px */
}

.contact .section-header h2 {
	font-size: 2.5rem;
	color: #1a365d;
	margin-bottom: 15px;
	font-weight: 700;
	position: relative;
	display: inline-block;
}

.contact .section-header h2::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: #14bda7;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.contact-container {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	/* Adjusted to make form even wider */
	width: 100%;
	max-width: 1600px;
	/* Added max-width for better control */
	margin: 0 auto;
	/* Center the container */
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	min-height: 600px;
	/* Ensure minimum height */
	align-items: stretch;
	/* Make children stretch to full height */
}

/* Removed duplicate .contact-container rule */
.contact-image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	transition: transform 0.5s ease;
	margin-top: -15px;
}

/* Show mobile image by default, hide desktop */
.contact-image .mobile-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-image .desktop-image {
	display: none;
}

/* Show desktop image and hide mobile on larger screens */
@media (min-width: 993px) {
	.contact-container {
		align-items: flex-start;
		/* Align items to the top */
		height: 600px;
		/* Increased height for the container */
	}

	.contact-image {
		position: relative;
		overflow: hidden;
		border-radius: 12px 0 0 12px;
		height: 100%;
		/* Take full height of grid cell */
		display: flex;
		align-items: stretch;
	}

	.contact-image .mobile-image {
		display: none;
	}

	.contact-image .desktop-image {
		display: block;
		width: 100%;
		height: 600px;
		/* Fixed height to match container */
		object-fit: cover;
		object-position: center;
	}

	.contact-form {
		position: relative;
		z-index: 2;
	}
}

.contact-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
	padding: 40px;
	text-align: left;
}

.contact-overlay h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.contact-overlay p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0;
	opacity: 0.9;
}

.contact-form-container {
	padding: 40px 50px;
	/* Adjusted padding */
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Center vertically */
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	background: white;
	border-radius: 0 12px 12px 0;
	height: 100%;
	/* Take full height of grid cell */
	overflow: hidden;
	/* Prevent scrolling */
}

.contact-form {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.contact-form .form-group {
	margin-bottom: 15px;
}

/* Form row for side by side fields */
.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}

.form-row .form-group {
	flex: 1;
	margin-bottom: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
		gap: 20px;
	}
}

.contact-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #4a5568;
	font-size: 0.95rem;
}

.contact-form .required {
	color: #e53e3e;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e2e8f0;
	border-radius: 50px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color:  rgba(20, 189, 167, 0.05);
	font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
	min-height: 180px;
	resize: vertical;
	border-radius: 20px !important;
	background-color:  rgba(20, 189, 167, 0.05) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #14bda7;
	box-shadow: 0 0 0 3px rgba(20, 189, 167, 0.2);
	outline: none;
	
	
}

.btn-submit {
	background: #14bda7;
	color: white;
	border: none;
	padding: 14px 30px;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	width: 100%;
	margin-top: 10px;
	font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
	background: #14bda7;
	transform: translateY(-2px);
}

.contact-info-sidebar {
	width: 350px;
	background: #f8fafc;
	padding: 40px 30px;
	border-left: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
}

.company-info h3 {
	font-size: 1.5rem;
	color: #1a365d;
	margin-bottom: 5px;
	font-weight: 700;
}

.company-info p {
	color: #4a5568;
	margin-bottom: 5px;
	font-size: 0.95rem;
}

.powered-by {
	font-size: 0.9rem;
	color: #718096;
	margin-top: 10px;
	font-style: italic;
}

.quick-links,
.contact-details,
.social-links {
	margin-top: 30px;
}

.quick-links h4,
.contact-details h4,
.social-links h4 {
	font-size: 1.1rem;
	color: #1a365d;
	margin-bottom: 15px;
	font-weight: 600;
	position: relative;
	padding-bottom: 8px;
}

.quick-links h4::after,
.contact-details h4::after,
.social-links h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: #14bda7;
}

.quick-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.quick-links li {
	margin-bottom: 8px;
}

.quick-links a {
	color: #4a5568;
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
	padding: 5px 0;
	font-size: 0.95rem;
}

.quick-links a:hover {
	color: #14bda7;
	padding-left: 5px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}

.contact-method i {
	color: #14bda7;
	margin-right: 12px;
	margin-top: 3px;
	font-size: 1rem;
	width: 20px;
	text-align: center;
}

.contact-method span {
	color: #4a5568;
	font-size: 0.95rem;
	line-height: 1.5;
}

.social-icons {
	display: flex;
	gap: 12px;
	margin-top: 10px;
}

.social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #e2e8f0;
	color: #4a5568;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-icons a:hover {
	background: #14bda7;
	color: white;
	transform: translateY(-3px);
}

.copyright {
	margin-top: auto;
	padding-top: 30px;
	text-align: center;
	color: #718096;
	font-size: 0.85rem;
	border-top: 1px solid #e2e8f0;
	margin-top: 30px;
	padding-top: 20px;
}

/* Form Validation */
.validation-icon {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	display: none;
	font-size: 1.1rem;
}

.validation-icon.success {
	color: #10b981;
}

.validation-icon.error {
	color: #ef4444;
}

.error-message {
	color: #ef4444;
	font-size: 0.8rem;
	margin-top: 5px;
	display: none;
}

.form-group.error input,
.form-group.error textarea {
	border-color: #ef4444;
}

.form-group.error .error-message {
	display: block;
}

.form-group.valid .validation-icon.success {
	display: block;
}

.form-group.error .validation-icon.error {
	display: block;
}

.char-count {
	text-align: right;
	font-size: 0.8rem;
	color: #6b7280;
	margin-top: 5px;
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 992px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 0;
		background-color: #fff;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0);
	}

	.contact-image {
		margin: 0 -20px;
		width: calc(100% + 40px);
		padding: 0;
	}

	.contact-image img {
		width: 100%;
		height: auto;
		display: block;
	}

	.contact-form-container {
		padding: 40px 20px !important;
		padding-top: 50px !important;
		border-top: 5px solid var(--primary-color);
		border-radius: 10px;
		margin-top: -15px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}
}

@media (max-width: 768px) {
	.contact {
		padding: 60px 0;
	}

	.contact .section-header h2 {
		font-size: 2rem;
	}

	.contact-overlay {
		padding: 30px 20px;
	}

	.contact-overlay h3 {
		font-size: 1.5rem;
	}

	.contact-form-container {
		padding: 60px 20px;
		max-width: 100%;
		border-top: 5px solid var(--primary-color) !important;
		border-radius: 10px;
		margin-top: -15px;
	}
}

@media (max-width: 480px) {
	.contact .section-header h2 {
		font-size: 1.8rem;
	}

	.contact-overlay h3 {
		font-size: 1.3rem;
	}

	.contact-overlay p {
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.contact {
		padding: 60px 0;
	}

	.contact .section-header h2 {
		font-size: 2rem;
	}

	.contact-form-container {
		padding: 25px 20px;
	}

	.contact-info-sidebar {
		padding: 30px 20px;
	}

	.social-icons {
		justify-content: center;
	}

	.btn-submit {
		padding: 12px 20px;
	}
}

@media (max-width: 480px) {
	.contact {
		padding: 50px 0;
	}

	.contact .section-header h2 {
		font-size: 1.8rem;
	}

	.contact-form-container,
	.contact-info-sidebar {
		padding: 20px 15px;
	}

	.company-info h3 {
		font-size: 1.3rem;
	}

	.quick-links h4,
	.contact-details h4,
	.social-links h4 {
		font-size: 1rem;
	}
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: #ffffff;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(20, 189, 167, 0.1);
}

.info-item .icon {
	width: 60px;
	height: 60px;
	background: #0eb57926;
	color: #21695c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.info-item:hover .icon {
	background: var(--primary-color);
	color: #ffffff;
	transform: rotate(5deg) scale(1.1);
}

.info-item .text h3 {
	font-size: 1.3rem;
	color: #1f2937;
	margin-bottom: 8px;
	font-weight: 600;
}

.info-item .text p,
.info-item .text a {
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.info-item .text a:hover {
	color: var(--primary-color);
}

.contact-form {
	padding: 15px 20px 20px;
	border-radius: 15px;
	position: relative;
	overflow: visible;
	width: 100%;
	box-sizing: border-box;
	transform: scale(0.95);
	transform-origin: top center;
}

/* Mobile view - show only top border */
@media (max-width: 992px) {
	.contact-container {
		border: none;
		padding-top: 0;
	}

	.contact-form {
		border: none;
		box-shadow: none;
		padding: 0;
	}
}

/* Desktop view - show border on container */
@media (min-width: 993px) {
	.contact-container {
		border-top: 5px solid transparent;
		background-image: linear-gradient(white, white), linear-gradient(90deg, var(--primary-color), #0f8a7a);
		background-origin: border-box;
		background-clip: padding-box, border-box;
		padding-top: 25px;
	}
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	/* Reduced margin */
	font-weight: 500;
	color: #374151;
	font-size: 0.9rem;
	/* Slightly smaller font */
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 189, 167, 0.2);
	background-color: #ffffff;
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.btn-submit {
	background: #0eb57926;
	color: #21695c;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: none;
	position: relative;
	overflow: hidden;
}

.btn-submit:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-3px);
}

.btn-submit:active {
	transform: translateY(0);
}

.btn-submit .btn-icon {
	transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
	transform: translateX(3px);
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
	border-color: #ef4444;
	padding-right: 40px;

		{
			{
			...
		}
	}
}

.form-group.success input,
.form-group.success textarea {
	border-color: #10b981;
	padding-right: 40px;
}

.form-group .validation-icon {
	position: absolute;
	right: 15px;
	top: 42px;
	font-size: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.form-group.error .validation-icon.error,
.form-group.success .validation-icon.success {
	opacity: 1;
}

.form-group .error-message {
	color: #ef4444;
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.form-group.error .error-message {
	display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.contact {
		padding: 60px 0;
	}

	.contact .section-header h2 {
		font-size: 2rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
		gap: 0px;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.info-item {
		padding: 20px;
	}

	.info-item .icon {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
}

/* Footer */
.footer {
	background-color: #1f2937;
	color: var(--white);
	padding: 80px 0 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.footer-about h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.footer-about p {
	color: #d1d5db;
	margin-bottom: 20px;
}

.footer-about img {
	max-width: 80px;
	height: auto;
	margin: 10px 0;
	transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.footer-about img {
		max-width: 70px;
	}
		.special-modules-container {
		flex-direction: column;
		gap: 0;
	}

	.special-modules-image {
		flex: 0 0 auto;
		width: 100%;
		height: 700px;
		/* Fixed height for mobile */
		border-radius: 12px 12px 0 0 !important;
		padding: 0;
		margin: 0;
	}

	.special-modules-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.special-modules-content {
		max-width: 100%;
		padding: 30px 20px;
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.footer-about img {
		max-width: 60px;
	}
}

/* Hover effect */
.footer-about img:hover {
	transform: scale(1.05);
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--white);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
	margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
	color: #d1d5db;
	transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.footer-newsletter p {
	color: #d1d5db;
	margin: 8px 0;
	line-height: 1.6;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-newsletter i {
	width: 20px;
	text-align: center;
	color: var(--primary-color);
	font-size: 16px;
}

.footer-newsletter .fa-whatsapp {
	color: #25D366;
	/* WhatsApp brand color */
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form input {
	flex: 1;
	padding: 12px 15px;
	border: none;
	border-radius: 5px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.9rem;
}

.newsletter-form button {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-form button:hover {
	background: var(--secondary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	color: #9ca3af;
	font-size: 0.9rem;
}

.footer-bottom a {
	color: var(--primary-color);
	font-weight: 500;
}

/* Mobile Responsive Styles for Modules */
@media (max-width: 768px) {
	
	.modules {
		padding: 50px 0 50px 0 !important;
		margin-bottom: 0 !important;
	}
	
	.modules-grid-right {
		margin-bottom: 40px !important;
	}

	/* Special modules (01-03) - single column */
	.special-modules-container {
		flex-direction: column;
		gap: 0;
	}

	.special-modules-image {
		flex: 0 0 auto;
		width: 100%;
		height: 300px;
		/* Fixed height for mobile */
		border-radius: 12px 12px 0 0 !important;
		padding: 0;
		margin: 0;
	}

	.special-modules-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.special-modules-content {
		max-width: 100%;
		padding: 30px 20px;
		justify-content: flex-start;
	}

	.special-module {
		margin-bottom: 20px;
	}

	.special-module:last-child {
		margin-bottom: 0;
	}

	/* Mobile - two columns */
	.modules-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	#solutions.modules{
		padding-bottom: 0px !important;

	}

	.modules-grid-left {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 10px !important;
		flex: 1 !important;
		width: 100% !important;
		display: grid !important;
	}
	
	.modules-grid-left .module-card {
		width: 100% !important;
		aspect-ratio: 1 / 1 !important;
	}
	
	.modules-grid-left .module-card .module-number {
		font-size: 1.5rem !important;
		top: -10px !important;
		left: -8px !important;
	}
	
	.modules-grid-right .module-card .module-number {
		font-size: 1.5rem !important;
	}

	.module-card {
		padding: 20px 15px;
	}

	.module-card .icon {
		width: 45px;
		height: 45px;
		margin-bottom: 12px;
		font-size:18px !important;
	}

	.module-card h3 {
		font-size: 0.6rem;
	}

	.module-card p {
		font-size: 0.55rem;
		display:none;
	}
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.company .container {
		flex-direction: column;
		gap: 40px;
	}

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

	.company-content h2::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.company-stats {
		grid-template-columns: repeat(3, 1fr);
		margin: 2rem 0;
	}

	.company-image {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}

/* Mobile Menu Styles */
.menu-open {
	overflow: hidden;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-links a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.nav-links a.active {
	color: var(--primary-color);
	font-weight: 600;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: px;
	background-color: var(--primary-color);
	transform: scaleX(1);
	transition: transform 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
		z-index: 1000;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		height: calc(100vh - 80px);
		background: var(--white);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: var(--transition);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		left: 0;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.hero .container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content {
		margin-bottom: 50px;
	}

	.cta-buttons {
		justify-content: center;
	}

	.company-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.section-header h2 {
		font-size: 2rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.btn {
		width: 100%;
	}

	.company-stats {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 10px !important;
		margin: 20px 0 30px !important;
		padding: 0 !important;
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none;
		/* For Firefox */
	}

	.company-stats::-webkit-scrollbar {
		display: none;
		/* Hide scrollbar for Webkit browsers */
	}

	.stat-item {
		flex: 1 0 auto !important;
		min-width: 80px !important;
		padding: 10px 5px !important;
		margin: 0 !important;
	}

	.stat-item h3 {
		font-size: 1.5rem !important;
		margin: 0 0 5px 0 !important;
	}

	.stat-item p {
		font-size: 0.7rem !important;
		margin: 0 !important;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		margin-left:20px; 
	}
	.neofit-section{
		padding:5px !important;
	}
	.neofit-features {
		padding-left: 10px;
	}
}


/* Show All Modules Button - Mobile Only */
.show-all-modules-btn {
	display: none;
	width: 100%;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column !important;
}

.show-all-modules-btn:hover {
	transform: translateY(-2px);
}

.show-all-modules-btn i {
	transition: transform 0.3s ease;
}

.show-all-modules-btn.expanded i {
	transform: rotate(180deg);
}

/* Show Less Button - Mobile Only */
.show-less-modules-btn {
	display: none;
	width: 80%;
	padding: 10px 10px 10px 60px;
	background: #14bda7;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
	align-items: center;
	justify-content: space-between;
	margin:auto;
	margin-top: 20px;
	gap: 10px;
}

.show-less-modules-btn:hover {
	background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
	box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
	transform: translateY(-2px);
}

/* Hidden modules - default hidden on mobile */
.hidden-module {
	display: none !important;
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

.hidden-module.show {
	display: block !important;
	height: auto !important;
	min-height: 72.4px !important;
	margin-bottom: 7px !important;
	padding: 0 !important;
	animation: slideIn 0.4s ease forwards;
}

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

/* Desktop: Show button and hide modules by default only on mobile */
@media (min-width: 1025px) {
	.show-all-modules-btn,
	.show-less-modules-btn {
		display: none !important;
	}
	
	.hidden-module {
		display: block !important;
		opacity: 1 !important;
		transform: none !important;
		height: auto !important;
		min-height: 72.4px !important;
		margin-bottom: 7px !important;
	}
}

/* Desktop: Show button and hide modules by default only on mobile */
@media (max-width: 1024px) {

.hidden-module {
	display: none !important;
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}
	.modules-grid-right{
		display: grid !important;
		grid-template-columns: repeat(2, 1fr);
		gap:10px;	
	}
	.modules-grid-right .module-number{
		left: 60px !important;

	}
	.modules-grid-right .module-card h3 {
    font-size: 1.2rem !important;
    font-weight: 600;
	margin-top: 15px !important;
}

.modules-grid-right .module-card p {
    font-size: 1.05rem;
    line-height: 1.7;
	margin-top:5px !important;
}
.show-all-modules-btn {
		width:50% !important;
		margin: auto !important;
	}
		.show-less-modules-btn {
		width:40% !important;
		margin: auto !important;
	}
	.solution-details{
		padding: 50px  !important;
		position: relative;		
	}
	.solution-details h3::after {
	content: '';
	position: absolute;
	left: 50% ;
	transform: translate(-50%);
	bottom: 0;
	width: 60px;
	height: 3px;
	background: #14bda7;
	transition: width 0.3s ease;
}
.company-cta .btn-primary {
		width:50%;
    display: block;
    margin: 0 auto;
	}



}

@media (max-width: 480px) {
		.hidden-module {
	display: none !important;
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

	.footer-content {
		grid-template-columns: 1fr 1fr !important;
		gap: 20px !important;
	}
	.footer-about {
		grid-column: 1 / -1;
	}
	.footer-newsletter {
		grid-column: 1 / -1;
	}
		
	.modules-grid-right {
		
		flex: 1;
		width: 100%;
		max-height: none;
		overflow: visible;
		display: flex !important;
		flex-direction: column !important;
		gap:0px;
	}
		.modules-grid-right .module-number{
		left: 10px !important;

	}
	.modules-grid-right .module-card h3 {
    font-size: 0.95rem !important;
    font-weight: 600;
	margin-top: 0px !important;
}

.show-all-modules-btn {
		width:100% !important;
		margin: auto !important;
	}
		.show-less-modules-btn {
		width:80% !important;
		margin: auto !important;
		margin-top:-20px !important;
		margin-bottom:20px !important;
	}
	.company-cta .btn-primary {
		width:80%;
    display: block;
    margin: 0 auto;
	}

}
