iframe {
  max-width: 100%;
}
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 65.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SECTION 2 */
.slider-v5 {
	position: relative;
	width: 100%;
	height: 610px;
	max-width: 100vw;
	overflow: hidden;
	border-radius: 0 0 0px 0px;
	background: #0B3A66;
}

/* Curved wave */
.slider-v5-wave {
	position: absolute;
	bottom: -30px;
	left: -10%;
	width: 130%;
	height: 280px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

/* Slides */
.v5-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	 padding: 60px 20px;
	gap: 60px;
	opacity: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: center;
}

.v5-slide.active {
	opacity: 1;
}

/* Overlay */
.v5-overlay {
	position: absolute;
	inset: 0;
	/* background:rgba(0,0,0,0.55);
    backdrop-filter: blur(0px); */
}

/* Content Box */
.v5-content {
	position: relative;
	max-width: 620px;
	padding: 40px;
	/* background: rgba(255,255,255,0.12); */
	border-radius: 18px;
	/* border:1px solid rgba(255,255,255,0.25); */
	/* backdrop-filter: blur(12px); */
	/* z-index: 10; */
}

/* Title */
.v5-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 18px;
	color: white;
}

.v5-title span {
	color: #0051A3;
}

/* Text */
.v5-text {
	font-size: 19px;
	line-height: 1.6;
	color: #E6F2FF;
	margin-bottom: 30px;
}

/* Button */
.v5-btn {
	padding: 14px 34px;
	background: #0b3a66;
	color: white;
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	transition: 0.3s;
}

.v5-btn:hover {
	background: #0b3a66;
	color: white;
}

/* Arrows */
.v5-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 46px;
	/* padding:8px 18px;
    background:rgba(255,255,255,0.2); */
	color: white;
	/* border-radius:12px; */
	cursor: pointer;
	/* backdrop-filter:blur(5px); */
	z-index: 20;
}

.v5-arrow:hover {
	/* background:rgba(255,255,255,0.35); */
	background: transparent;
}

.v5-prev {
	left: 25px;
}

.v5-next {
	right: 25px;
}

/* Dots */
.v5-dots {
	position: absolute;
	bottom: 28px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 12px;
	z-index: 20;
}

.v5-dot {
	width: 14px;
	height: 14px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.v5-dot.active {
	background: #0b3a66;
}

/* ===== ABOUT SECTION 3 ===== */
.about-section {
	padding: 48px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.about-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	align-items: flex-start;
}

/* LEFT */
.about-content {
	flex: 1 1 460px;
	min-width: 280px;
}

.about-heading h2 {
	font-size: 28px;
	color: #0b3a66;
	letter-spacing: 0.4px;
	line-height: 1.15;
	margin-bottom: 14px;
}

.about-text p {
	color: #475569;
	font-size: 15.5px;
	line-height: 1.75;
	margin-bottom: 12px;
}

/* CTA */
.about-cta {
	margin-top: 18px;
}

.btn-primary {
	display: inline-block;
	padding: 10px 18px;
	background: #04192e;
	color: #ffffff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s ease;
}

.btn-primary:hover {
	background: #092d52;
}

/* RIGHT FEATURES */
.about-features {
	flex: 1 1 520px;
	min-width: 260px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.feature-card {
	flex: 1 1 calc(50% - 14px);
	min-width: 220px;
	background: #ffffff;
	padding: 16px;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(12, 36, 60, 0.05);
	display: flex;
	gap: 14px;
}

.feature-card h3 {
	font-size: 17px;
	color: #0b3a66;
	margin-bottom: 6px;
}

.feature-card p {
	font-size: 14.5px;
	color: #475569;
	line-height: 1.55;
}

/* ICONS */
.feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.feature-icon.blue {
	background: linear-gradient(135deg, #dff3ff, #eaf7ff);
}

.feature-icon.orange {
	background: linear-gradient(135deg, #fff0e6, #fff6ef);
}

.feature-icon.sky {
	background: linear-gradient(135deg, #f3f8ff, #eef6ff);
}

.feature-icon.green {
	background: linear-gradient(135deg, #f0fff7, #ecfff1);
}

/* RESPONSIVE */
.desktop-only {
	display: block;
}

.mobile-only {
	display: none;
}

@media (max-width: 900px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}
}

/* SECTON 4 *****************************/
.stairs-v3-section {
	padding: 40px 20px;
	background: #F6FAFF;
	text-align: center;
}

.stairs-v3-title {
	font-size: 34px;
	font-weight: 900;
	text-transform: uppercase;
	color: #0B3A66;
	margin-bottom: 40px;
}

/* ANIMATED LINE */
.stair-v3-line {
	width: 92%;
	max-width: 900px;
	margin: 0 auto 50px;
	height: 5px;
	background: linear-gradient(to right, #4FB3FF, #87D0FF);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.stair-v3-line::after {
	content: "";
	position: absolute;
	width: 0;
	height: 4px;
	background: #4FB3FF;
	animation: growLine 3s infinite alternate ease-in-out;
}

@keyframes growLine {
	0% {
		width: 5%;
	}

	100% {
		width: 100%;
	}
}

/* WRAPPER */
.stairs-v3-wrapper {
	max-width: 1000px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px;
}

/* BOX DESIGN */
.stair-v3 {
	padding: 28px;
	border-radius: 16px;
	background: linear-gradient(145deg, #0A2F55, #0B3A66, #134A82);
	color: white;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.30);
	transition: 0.35s ease;
	border-top: 3px solid rgba(255, 255, 255, 0.25);
	border-left: 3px solid rgba(255, 255, 255, 0.15);
	min-height: 260px;
	position: relative;
}

/* 3D TOP EDGE */
.stair-v3::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	width: 100%;
	height: 12px;
	background: linear-gradient(to right, #1C5A8C, #3578B3);
	border-radius: 6px 6px 0 0;
}

/* ICON */
.stair-v3-icon {
	font-size: 40px;
	margin-bottom: 12px;
	color: #4FB3FF;
}

/* YEAR */
.stair-v3-year {
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 10px;
}

/* TEXT */
.stair-v3-text {
	font-size: 15px;
	line-height: 1.6;
	color: #EAF4FF;
}

/* HOVER ANIMATION */
.stair-v3:hover {
	transform: translateY(-10px);
	box-shadow: 0px 28px 55px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE — TABLET */
@media(max-width: 1024px) {
	.stairs-v3-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* RESPONSIVE — MOBILE LARGE */
@media(max-width: 768px) {
	.stairs-v3-wrapper {
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
	}

	.stairs-v3-title {
		font-size: 28px;
	}

	.stair-v3 {
		min-height: 230px;
	}
}

/* RESPONSIVE — MOBILE SMALL */
@media(max-width: 480px) {
	.stairs-v3-wrapper {
		grid-template-columns: 1fr;
	}

	.stair-v3 {
		min-height: auto;
		padding: 22px;
	}

	.stair-v3-title {
		font-size: 24px;
	}
}

/* SECTION BACKGROUND - 5 ***************** */


/* ================= WHY SECTION (FINAL FIX) ================= */

.why-sec {
  overflow-x: hidden;
}


/* Centered container */
.why-card {
  max-width: 1223px;
  margin: 0 auto;
  background: #fff;
  border-radius: 26px;
  padding: 50px;
  display: flex;
  gap: 50px;
  align-items: center;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
}

/* LEFT CONTENT */
.why-content {
  flex: 1.8;
}

/* RIGHT IMAGE */
.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.18);
}

/* TITLES */
.why-title {
  font-size: 38px;
  font-weight: 900;
  color: #0B3A66;
  margin-bottom: 18px;
}

.why-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #354556;
  margin-bottom: 35px;
}

/* LIST ITEMS */
.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: #0B3A66;
  border-radius: 14px;
  box-shadow: 0px 8px 18px rgba(11, 58, 102, 0.3);
  flex-shrink: 0;
}

.why-item-icon .icon {
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.why-item-text h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #0B3A66;
}

.why-item-text p {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: #4B5A6A;
}

@media (max-width: 768px) {
  .why-card {
    flex-direction: column;
    padding: 24px;
  }

  .why-image {
    width: 100%;
    justify-content: center;
  }

  .why-image img {
    max-width: 280px;
    margin: 0 auto;
  }
}





/* SECTION -6 ************************** */
.sector-section {
	padding: 15px 100px;
	background: #F5F9FF;
}

/* TITLE */
.sector-title {
	text-align: center;
	font-size: 38px;
	font-weight: 900;
	color: #0B3A66;
	margin-bottom: 40px;
}

/* CATEGORY TITLE */
.sector-category {
	margin-bottom: 50px;
}

.sector-category h3 {
	font-size: 26px;
	font-weight: 800;
	color: #0B3A66;
	margin-bottom: 20px;
	border-left: 5px solid #0B3A66;
	padding-left: 12px;
}

/* GRID */
.sector-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
}

/* CARD */
.sector-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.08);
	transition: 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s forwards;
}

/* FADE + SLIDE UP */
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}






/* Hover animation */
.sector-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0px 22px 60px rgba(0, 0, 0, 0.20);
}

/* IMAGE */
.sector-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: 0.3s ease;
}

/* Zoom image on hover */
.sector-card:hover img {
	transform: scale(1.1);
}

/* TITLE INSIDE CARD */
.sector-card h4 {
	margin: 0;
	padding: 14px 18px;
	font-size: 18px;
	font-weight: 700;
	color: #0B3A66;
	text-align: center;
}

/* RESPONSIVE FIX: CARD FULL WIDTH ON MOBILE */
@media (max-width: 768px) {
	.sector-section {
		padding: 40px 20px;
	}

	.sector-title {
		font-size: 32px;
	}

	.sector-grid {
		grid-template-columns: 1fr;
	}

	.sector-card img {
		height: 180px;
	}
}

/* ===== CSR SECTION 7. ===== */
.csr-section {
	padding: 90px 20px;
	background: linear-gradient(135deg, #f8fafc, #eef3f8);
}

.csr-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

/* LEFT CONTENT */
.csr-content h2 {
	font-size: 36px;
	font-weight: 800;
	color: #0b3a66;
	margin-bottom: 20px;
}

.csr-content p {
	font-size: 17px;
	line-height: 1.8;
	color: #444;
}

/* RIGHT CARDS */
.csr-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.csr-card {
	background: #ffffff;
	padding: 26px;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	transition: 0.35s ease;
}

.csr-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.csr-card .icon {
	font-size: 34px;
	margin-bottom: 14px;
}

.csr-card h3 {
	font-size: 20px;
	color: #0b3a66;
	margin-bottom: 10px;
}

.csr-card p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.csr-container {
		grid-template-columns: 1fr;
	}

	.csr-cards {
		grid-template-columns: 1fr;
	}

	.csr-content h2 {
		font-size: 30px;
	}
}


/* SECTION --- 8 ******* */
.mvv-section {
	padding: 80px 20px;
	background: linear-gradient(135deg, #f2f7fc, #e9f1fa);
}

/* WRAPPER */
.mvv-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

/* CARD */
.mvv-card {
	background: #ffffff;
	width: 250px;
	padding: 30px 25px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 18px 45px rgba(11, 58, 102, 0.12);
	transition: 0.3s ease;
	position: relative;
	animation: fadeUp 0.9s ease forwards;
	opacity: 0;
}

/* ANIMATION */
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ICON WRAPPER (GLOW EFFECT) */
.mvv-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 35px rgba(11, 58, 102, 0.18);
	transition: 0.3s ease;
}

.mvv-icon img {
	width: 65%;
	height: 65%;
	object-fit: contain;
}

/* HOVER EFFECT */
.mvv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 26px 60px rgba(11, 58, 102, 0.25);
}

.mvv-card:hover .mvv-icon {
	transform: scale(1.08);
	box-shadow: 0 15px 45px rgba(11, 58, 102, 0.28);
}

/* TITLE */
.mvv-card h3 {
	font-size: 22px;
	font-weight: 800;
	color: #0B3A66;
	margin: 12px 0;
}

/* TEXT */
.mvv-card p {
	font-size: 15px;
	line-height: 1.7;
	color: #4a5b70;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.mvv-card {
		width: 100%;
	}
}


/* ===== SERVICES SECTION 9 ********************===== */
.services-section {
	/* padding: 80px 20px; */
	padding-bottom: 20;
	background: #f8fafc;
}

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

/* Header */
.services-header {
	text-align: center;
	margin-bottom: 50px;
}

.services-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: #0b3a66;
	margin-bottom: 10px;
}

.services-header p {
	max-width: 720px;
	margin: auto;
	font-size: 16px;
	color: #556172;
	line-height: 1.7;
}

/* Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}



/* Card */
.service-card {
	background: #ffffff;
	padding: 28px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(12, 36, 60, 0.08);
	text-align: center;
	transition: 0.35s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 22px 48px rgba(12, 36, 60, 0.15);
}

/* .service-card img {
	width: 90px;
	height: 90px;
	object-fit: contain;
	margin-bottom: 16px;
} */

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 16px auto; /* 🔥 CENTER */
  display: block;          /* 🔥 REQUIRED */
}


.service-card h3 {
	font-size: 20px;
	color: #0b3a66;
	margin-bottom: 10px;
}

.service-card p {
	font-size: 15px;
	color: #475569;
	line-height: 1.6;
}

/* Button */
.service-btn {
	display: inline-block;
	margin-top: 14px;
	padding: 10px 18px;
	background: #0b3a66;
	color: #ffffff;
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	transition: background 0.3s ease;
}

.service-btn:hover {
	background: #092d52;
}

/* Responsive */
@media (max-width: 768px) {
	.services-header h2 {
		font-size: 30px;
	}
}

/* SECTON 10 ************************/
.cert-section {
	padding: 70px 20px;
	background: linear-gradient(#f3f7fb, #eef3f9);
}

.cert-box {
	max-width: 1200px;
	margin: auto;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 24px;
	padding: 50px;
	backdrop-filter: blur(14px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.cert-title {
	font-size: 34px;
	font-weight: 900;
	color: #0b3a66;
	margin-bottom: 10px;
}

.cert-desc {
	max-width: 750px;
	margin: auto;
	color: #445566;
	font-size: 16px;
	line-height: 1.7;
}

.cert-grid {
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	padding: 10px;
}

.cert-card {
	background: #fff;
	padding: 20px;
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
}

.cert-card:hover {
	transform: translateY(-6px);
}

.cert-card img {
	width: 100%;
	border-radius: 12px;
}

.cert-label {
	font-weight: 700;
	color: #0b3a66;
	margin-top: 12px;
	font-size: 15px;
}


/* SECTON 11 *******************/
.psara-section {
	padding: 70px 20px;
	background: #f7faff;
}

.psara-box {
	max-width: 1200px;
	margin: auto;
	padding: 50px;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.psara-grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
}

.psara-card {
	background: #f3f7fc;
	padding: 20px;
	border-radius: 18px;
	border: 1px solid #e2e8f0;
	transition: 0.3s;
}

.psara-card:hover {
	transform: translateY(-6px);
}

.psara-card img {
	width: 100%;
	border-radius: 12px;
}

.psara-label {
	margin-top: 12px;
	font-weight: 700;
	font-size: 15px;
	color: #0b3a66;
}


/* ---------- SECTION 12 ---------- */
.india-presence {
	padding: 80px 40px;
	background: #f8fafc;
}

.presence-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1300px;
	margin: auto;
	gap: 50px;
	flex-wrap: wrap;
}

/* ---------- LEFT MAP ---------- */
.presence-map {
	flex: 1.1;
	min-width: 300px;
	text-align: center;
}

.presence-map img {
	max-width: 480px;
	width: 100%;
	border-radius: 12px;
	filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.12));
	transition: 0.3s;
}

.presence-map img:hover {
	transform: scale(1.03);
}

/* ---------- RIGHT TEXT ---------- */
.presence-text {
	flex: 1;
	min-width: 320px;
}

.presence-title {
	font-size: 36px;
	font-weight: 900;
	color: #0b3a66;
	margin-bottom: 18px;
}

.presence-desc {
	font-size: 16px;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 25px;
	max-width: 650px;
}

/* ---------- HIGHLIGHT ITEMS ---------- */
.presence-stats {
	display: grid;
	gap: 12px;
	max-width: 500px;
}

.presence-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 600;
	color: #ffac27;
}

.presence-item i {
	font-size: 20px;
	color: #ffac27;
}

/* ---------- TABLET RESPONSIVE ---------- */
@media (max-width: 1024px) {
	.presence-container {
		flex-direction: column;
		text-align: center;
		gap: 35px;
	}

	.presence-title {
		font-size: 32px;
	}

	.presence-desc {
		max-width: 90%;
		margin: 0 auto 25px;
	}

	.presence-stats {
		margin: auto;
	}
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
	.india-presence {
		padding: 60px 20px;
	}

	.presence-title {
		font-size: 28px;
	}

	.presence-desc {
		font-size: 15px;
		line-height: 1.6;
	}

	.presence-map img {
		max-width: 360px;
	}
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

	.presence-title {
		font-size: 24px;
	}

	.presence-item {
		font-size: 16px;
	}

	.presence-map img {
		max-width: 310px;
	}
}


/* ---------------------- CONTACT SECTION ---------------------- */
.contact-sec {
	padding: 70px 20px;
	background: #F5F8FC;
}

.contact-wrapper {
	max-width: 1250px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

/* LEFT COLUMN */
.contact-left {
	flex: 1 1 480px;
}

.contact-title {
	font-size: 34px;
	font-weight: 800;
	color: #0B3A66;
	margin-bottom: 10px;
}

.contact-sub {
	font-size: 16px;
	color: #475569;
	margin-bottom: 25px;
}

/* INFO BOXES */
.info-box {
	background: #fff;
	border-radius: 14px;
	padding: 22px 26px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	margin-bottom: 25px;
}

.info-title {
	font-size: 20px;
	font-weight: 700;
	color: #0B3A66;
	margin-bottom: 12px;
}

.info-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 10px;
	color: #334155;
	line-height: 1.6;
	font-size: 15px;
}

/* ICON STYLE */
.info-list svg {
	width: 18px;
	fill: #0B3A66;
	margin-top: 3px;
}

/* GOOGLE MAP */
.map-box {
	flex: 1 1 400px;
	background: #fff;
	padding: 10px;
	border-radius: 16px;
	margin-top: 125px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

.map-box iframe {
	width: 100%;
	height: 460px;
	border: none;
	border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.contact-title {
		text-align: center;
	}

	.contact-sub {
		text-align: center;
	}
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
	padding: 70px 20px;
	background: #ffffff;
}

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

.clients-container h2 {
	font-size: 34px;
	font-weight: 800;
	color: #dddfe1;
	margin-bottom: 10px;
}

.clients-container p {
	max-width: 720px;
	margin: auto;
	color: #556172;
	font-size: 16px;
	margin-bottom: 40px;
}

/* MARQUEE */
.logo-marquee {
	overflow: hidden;
	position: relative;
}

.logo-track {
	display: flex;
	gap: 70px;
	animation: scroll 28s linear infinite;
}

.logo-item {
	flex: 0 0 auto;
	opacity: 0.85;
	transition: 0.3s ease;
}

.logo-item img {
	height: 70px;
	object-fit: contain;
	filter: grayscale(0%);
}

.logo-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* MOBILE */
@media (max-width: 768px) {
	.logo-item img {
		height: 50px;
	}
}

/*  SECTION 14**********/
.stats-section {
	padding: 80px 20px;
	background: #F4F7FC;
}

.stats-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

/* CARD */
.stat-card {
	flex: 1;
	min-width: 200px;
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 25px;
	text-align: center;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transition: 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
}

/* CIRCULAR ICON */
.stat-icon-circle {
	width: 85px;
	height: 85px;
	margin: 0 auto 18px;
	background: #0B3A66;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 10px 25px rgba(11, 58, 102, 0.25);
}

.stat-icon-circle span {
	font-size: 40px;
	color: white;
}

/* NUMBERS */
.stat-number {
	font-size: 42px;
	font-weight: 800;
	color: #0B3A66;
	margin: 10px 0 0;
}

/* LABEL */
.stat-label {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #425466;
	letter-spacing: 0.2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.stat-card {
		flex: 1 1 45%;
	}
}

@media (max-width: 520px) {
	.stat-card {
		flex: 1 1 100%;
	}
}



@media (max-width: 768px) {
  .slider-v5 {
    height: 460px;
  }

  .v5-slide {
    padding: 40px 18px;
    align-items: flex-end;
  }

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

  .v5-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .v5-text {
    font-size: 14.5px;
    margin-bottom: 18px;
  }

  .v5-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .about-section {
    padding: 40px 16px;
  }

  .about-heading h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-text p {
    font-size: 14.5px;
    text-align: center;
  }

  .about-cta {
    text-align: center;
  }

  .about-features {
    gap: 12px;
  }

  .feature-card {
    flex: 1 1 100%;
  }
}





@media (max-width: 768px) {
  .sector-section {
    padding: 30px 16px;
  }

  .sector-title {
    font-size: 26px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .csr-section {
    padding: 50px 16px;
  }

  .csr-content h2 {
    font-size: 26px;
    text-align: center;
  }

  .csr-content p {
    font-size: 14.5px;
    text-align: center;
  }

  .csr-card {
    padding: 20px;
  }
}


@media (max-width: 768px) {
  .services-section {
    padding: 50px 16px;
  }

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

  .service-card {
    padding: 22px;
  }
}


@media (max-width: 768px) {
  .contact-sec {
    padding: 50px 16px;
  }

  .contact-title {
    font-size: 26px;
    text-align: center;
  }

  .map-box iframe {
    height: 280px;
  }
  .map-box{
	margin-top: 0px;
  }
}
