/* ========================
   Global Color Variables
======================== */
:root {
  --orange: #EA6E35;
  --black: #1E1E24;
  --dark-grey: #30282B;
  --white: #ffffff;
	
  --blue: #3F8CFF;
  --teal: #1EB7A8;
  --purple: #AF4DFF;
  --red: #FF6A5A;
  --card-radius: 14px;
  --card-padding: 22px;
  --muted: #6c737a;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

/* ========================
   Base Styles
======================== */
body {
  font-family: "Manrope", sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
  font-weight: 400;
  /* color: var(--dark-grey); */
      color: #6b7280;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--orange);
  text-decoration: none;
  transition: 1s;
  font-weight: 500;
}
a:hover {
  color: var(--black);
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
}
.btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}

.btn-outline-secondary {
    border-color: #f1f2f4;
    color: var(--dark-grey);
    font-weight: 500;
    background: #f1f2f4;
  padding: 10px 20px;
  border-radius: 10px;
}
.btn-outline-secondary:hover {
  background-color: var(--dark-grey);
  color: var(--white);
}

.section {
    padding: 80px 0;
}

@media (max-width:768px) {
.section {
    padding: 40px 0;
}
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    font-size: 16px;
    position: relative;
    top: 0px;
}

.text-orange {
	color: var(--orange);
}

.border-orange {
	border-color: var(--orange);
}

.border-left-orange {
	border-color: var(--orange);
	    border-left: 4px solid var(--orange);
		background-image: linear-gradient(to right, hsl(14 100% 57% / .1), transparent);
}

.bg-light {
	background-color: #f7f9fc!important;
}

.slick-dots {
    bottom: -60px;
}


/* Navbar */
.navbar {
  background-color: var(--white) !important;
  position: fixed;
    width: 100%;
	    z-index: 999;
}
.navbar-nav .nav-link {
  color: var(--black);
  margin-left: 1rem;
  font-weight: 600;
}
.navbar-nav .nav-link:hover {
  color: var(--orange);
}

.navbar-nav li {
    margin: 0 12px;
    padding: 12px 0;
}

.navbar-nav .sub-menu li {
    padding: 0;
}

.navbar-nav li a {
    color: var(--dark-grey);
    font-size: 16px;
    font-weight: 500;
    transition: 1s;
    text-decoration: none;
}

.navbar-nav li a:hover, .navbar-nav li.current-menu-item a {
    color: var(--orange);
}
/* Parent menu items should be relative */
.navbar-nav li {
  position: relative;
}

/* Parent arrow indicator */
.navbar-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.navbar-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6b7280; /* down arrow */
  transition: transform .2s ease, border-top-color .2s ease;
  transform-origin: center;
}
.navbar-nav .menu-item-has-children:hover > a::after {
  transform: rotate(180deg); /* up arrow on hover/open */
  border-top-color: var(--orange);
}

/* Submenu styles */
.navbar-nav li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;   /* just below parent */
  left: 0;     /* align with parent */
  background: #fff;
  padding: 8px;
  min-width: 300px; /* fixed px is better than % here */
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(16,23,40,0.12);
  border: 1px solid #eef0f4;
}

/* Show submenu on hover */
.navbar-nav li:hover > ul.sub-menu {
  display: block;
}

/* Submenu list items */
.navbar-nav li ul.sub-menu li {
  margin: 0;
  display: block;
}

.navbar-nav li ul.sub-menu li a {
  color: #1a1a1a;
  font-size: 14px;
  padding: 10px 14px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-nav li ul.sub-menu li a:hover {
  background: #FFF3E8;
  color: #1a1a1a;
  /* border-left: 3px solid var(--orange); */
  transform: translateX(2px);
}
.navbar-toggler:focus {
	box-shadow: none!important;
}

/* Navbar phone */
.navbar .navbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}
.navbar .navbar-phone i {
  color: var(--orange);
}
.navbar .navbar-phone:hover {
  color: var(--orange);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.modal-content {
  background: white;
  border-radius: 10px;
  padding: 3rem 2rem 0 2rem;
  max-width: 45%;
  width: 95%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
    right: 10px;
    top: -5px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ff8222;
}





/* Responsive */
@media (max-width: 768px) {


.modal-content {
    max-width: 85%;
}

/* .navbar {
    padding-bottom: 30px;
} */
}



.navbar-brand  img{
 	width:100%;
 	height:50px;
 }
 
.submenu-toggle { display: none; }
 
@media (max-width: 1399px) {
  #mainNavbar.collapse.show .navbar-nav li ul.sub-menu {
    position: static;
    left: auto;
    top: auto;
    min-width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: none;
  }
  #mainNavbar.collapse.show .navbar-nav .submenu-open > ul.sub-menu { display: block; }
  #mainNavbar.collapse.show .navbar-nav li ul.sub-menu li a {
    padding: 10px 14px 10px 24px;
  }
  .navbar-nav .menu-item-has-children > a {
    width: 100%;
    justify-content: space-between;
    position: relative;
  }
  .navbar-nav .menu-item-has-children > a::after { display: none; }
  .submenu-toggle {
    border: 0;
    background: transparent;
    color: #6b7280;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
  }
  .submenu-open > a .submenu-toggle i {
    transform: rotate(180deg);
    color: var(--orange);
    transition: transform .2s ease, color .2s ease;
  }
  .navbar-nav .submenu-open > a::after {
    transform: rotate(180deg);
    border-top-color: var(--orange);
  }
}


/* Footer Styles */
.main-footer {
  background: #11141A;
  color: var(--white);
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 15px;
}

.footer-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  color: #BDC0C5;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-contact li,
.footer-links li,
.footer-cert li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact li i,
.footer-cert li i {
  color: var(--orange);
  margin-right: 8px;
}

.footer-links li a {
  color: #BDC0C5;
  transition: .3s;
}
.footer-links li a:hover {
  color: var(--orange);
}

.footer-social a {
  color: var(--white);
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}
.footer-social a:hover {
  color: var(--orange);
}

/* Newsletter */
.footer-newsletter input {
  width: 100%;
  background: #1C1F26;
  border: none;
  padding: 10px;
  color: var(--white);
}
.footer-newsletter button {
  background: var(--orange);
  border: none;
  padding: 10px 14px;
  color: var(--white);
  margin-left: 6px;
  border-radius: 5px;
}
.footer-newsletter button:hover {
  background: var(--black);
}

/* Bottom text */
.footer-bottom {
  border-top: 1px solid #2C323C;
  color: #999;
  font-size: 14px;
}

.footer-bottom a:hover { color: #EA6E35; }
@media (max-width:991px) {
  .main-footer { border-radius: 1.1rem 1.1rem 0 0;}
  .footer-top { flex-direction: column; }
}
@media (max-width:600px) {
  .main-footer .footer-bottom { flex-direction: column; gap: 0.7rem; }
  .footer-social-icon { width: 39px; height: 39px; font-size: 1.3rem;}
  .footer-desc { font-size: 0.98rem;}
}
.footer-section .social-icons a:hover {
    color: #fff;
}
















.cta-contact-section {
			padding: 90px 0 70px 0;
			background: linear-gradient(135deg, #ff6842 0%, #fc5200 100%);
			color: #fff;
			position: relative;
			overflow: hidden;
		}
		.cta-contact-section h2, .cta-contact-section h5, .cta-contact-section h6, .cta-contact-section p, .cta-contact-section span{
			color:#fff;
		}
		.cta-contact-title h2{
			font-size: 36px;
			line-height: 40px;
		}
		.cta-contact-section .stat-number{
			text-align: left;
			margin: 0;
			padding: 0;
		}
		.cta-contact-title {
			font-size: 36px;
			font-weight: 800;
			line-height: 1.17;
			margin-bottom: 18px;
		}
		.cta-contact-desc {
			margin-bottom: 30px;
			font-weight: 500;
			color: #fff;
			font-size: 19px;
			line-height: 32px;
			color: #ffede0;
		}
		/* .cta-contact-btn {
			padding: 8px 30px;
			border-radius: 10px;
			background: #fff;
			color: #FF5100;
			font-size: 16px;
			font-weight: 700;
			text-decoration: none;
			margin: 15px 0 0px 0;
			display: inline-block;
			box-shadow: 0 8px 30px rgba(255, 76, 27, 0.17);
			transition: all 0.23s;
		}
		.cta-contact-btn:hover {
			color: #E53D00;
			background: #fff3eb;
			transform: translateY(-2.5px);
		}
		.cta-contact-btn i {
			font-size: 23px;
			line-height: 0;
		} */

		.cta-contact-stats-row {
			margin: 20px auto 20px auto;
			max-width: 670px;
		}
		.cta-contact-stat {
			margin-bottom: 30px;
			text-align: center;
			display: flex;
			gap:10px;
		}
		.stat-icon {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			border-radius: 8px;
			width: 34px;
			height: 44px;
			font-size: 23px;
			font-weight: 700;
			margin-bottom: 10px;
			background: rgba(255,255,255,.14) !important;
		}
		.stat-icon .bi { color: #fff; }
		.stat-number {
			display: block;
			font-size: 26px;
			font-weight: 800;
		}
		.stat-label {
			font-size: 15px;
			color: #fff;
			opacity: 0.92;
		}

		.cta-contact-info-row {
			margin-top: 10px;
		}
		.cta-contact-info-card {
			background: rgba(255, 255, 255, 0.13);
			border-radius: 18px;
			padding: 40px 60px;
			color: #fff;
			margin-bottom: 12px;
			min-height: 320px;
			transition: box-shadow .22s;
			box-shadow: 0 1px 24px rgba(255,106,34,0.05);
			text-align: center;
			backdrop-filter: blur(1.5px);
			transition: all 0.3s ease;
		}
		.cta-contact-info-card:hover {
			box-shadow: 0 4px 28px rgba(255,76,27,0.14);
			background: rgba(255,255,255,0.18);
			transform: translateY(-4px);
		}
		.cta-contact-info-card:hover .info-icon-bg{
			transform: scale(1.1);
		}
		.info-icon-bg {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			border-radius: 8px;
			width: 42px;
			height: 42px;
			font-size: 21px;
			background: rgba(255,255,255,0.19);
			margin-bottom: 14px;
		}
		.cta-contact-info-card h5 {
			font-size: 20px;
			font-weight: 700;
			margin-bottom: 7px;
			color: #fff;
		}
		.cta-contact-info-card p {
			font-size: 14px;
			color: #fff;
			opacity: 20px;
			margin-bottom: 14px;
		}
		.contact-phone, .contact-email, .contact-address {
			font-size: 18px;
			font-weight: 700;
			margin-bottom: 7px;
			line-height:28px;
		}
		.contact-email { text-transform: lowercase; }
		.info-note {
			font-size: 12px;
			color: #ffede0;
			margin-top: 7px;
		}
		@media (max-width:991px) {
			.cta-contact-section { padding: 60px 0 45px 0; }
			.cta-contact-title { font-size: 28px; }
			.cta-contact-info-row { margin-top: 0; }
			.cta-contact-info-card { padding: 22px 13px 15px 13px; min-height: 150px; }
			.section{
				padding:30px 0;
			}

		}
		@media (max-width:767px) {
			.cta-contact-title { font-size: 22px; }
			.cta-contact-desc { font-size: 15px;         line-height: 24px; }
			.cta-contact-info-row { row-gap: 0px; }
			/* .cta-contact-btn { font-size: 16px; padding: 14px 40px; }	 */
			.cta-contact-stat { margin-bottom: 15px; display: contents;}
			.cta-contact-stat .stat-number { font-size: 22px; justify-content: left; }
			.cta-contact-stat .stat-label { font-size: 14px; }
			.cta-contact-info-card h5 { font-size: 18px; }
			.cta-contact-info-card p { font-size: 14px; }
			.contact-phone, .contact-email, .contact-address { font-size: 16px; }
			.info-note { font-size: 12px; }
			.stat-icon {
    font-size: 20px;
    display: none;
}
.d-fle {
    margin: 0 12px;
}
		}

		















/* Single page banner */


/* Services Banner */
.services-banner {
  position: relative;
  width: 100%;
  /* height: 70vh; */
  background: url('/wp-content/uploads/2025/your-banner-image.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
      padding: 160px 0 80px 0;
}

.services-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.70); /* dark blue overlay */
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.banner-tag {
    display: inline-block;
    background: #4c3238;
    color: var(--orange);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.banner-title span {
  color: var(--orange);
}

.banner-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  /* .services-banner {
    height: 60vh;
  } */
  .banner-title {
    font-size: 2.2rem;
  }
  .banner-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
}







.foundation-section {
  background: linear-gradient(180deg, #F5F9FF 0%, #F8FAFF 100%);
}
.foundation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(234,110,53,0.12);
  border: 1px solid rgba(234,110,53,0.25);
  border-radius: 999px;
  color: var(--orange);
  font-weight: 700;
}
.foundation-title {
  font-size: 36px;
  font-weight: 800;
  margin-top: 12px;
}
.foundation-card {
  /* background: #fff; */
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(16,23,40,0.08);
}


.foundation-card {
	transition: transform .3s ease, box-shadow .3s ease;
}
.foundation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.foundation-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}
.foundation-icon .bi::before {
    font-size: 24px;
}

.values-card {
    background: #fafafa;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 28px rgb(255 76 27 / 6%);
}
.values-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}
.value-item {
  text-align: center;
  padding: 10px;
}
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
      background: rgb(234 110 53 / 10%);
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 8px;
}

.value-icon .bi::before {
    font-size: 22px;
}


.value-item h6 {
  font-weight: 700;
  margin-bottom: 6px;
}
.value-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 768px) {
  .foundation-title { font-size: 28px; }
  .foundation-card { padding: 22px; }
}

.choose-us-section { background: #fff; }
.choose-eyebrow {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
  margin-bottom: 8px;
}
.choose-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}
.choose-desc { color: #6b7280; }
.choose-list { list-style: none; padding: 0; margin: 0; }
.choose-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
}
.choose-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFEDE0 0%, #FFE3D6 100%);
  color: var(--orange);
}
.apart-card {
  border: 2px solid var(--orange);
  border-radius: 22px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(234,110,53,0.12);
}
.apart-title {
  font-weight: 800;
  margin-bottom: 14px;
}
.apart-stat-box {
  background: linear-gradient(180deg, #F3F8FF 0%, #F8FAFF 100%);
  border-radius: 16px;
  padding: 16px 12px;
  box-shadow: 0 8px 20px rgba(16,23,40,0.06);
}
.apart-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
}
.apart-label { color: #6b7280; font-size: 13px; }

@media (max-width: 768px) {
  .choose-title { font-size: 26px; }
}

.capabilities-section {
  background: linear-gradient(180deg, #0B1323 0%, #0E1628 100%);
  color: #fff;
}
.capabilities-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(234,110,53,0.18);
  border: 1px solid rgba(234,110,53,0.35);
  color: #ff8651;
  font-weight: 800;
}
.capabilities-title { font-size: 36px; font-weight: 800; }
.capabilities-subtitle { max-width: 720px; margin: 10px auto 22px auto; color: #BAC2D3; }
.capability-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 30px;
    min-height: 180px;
  /* display: flex; */
  align-items: center;
  gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.capability-card:hover {
	opacity: 0.7;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.capability-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255,133,81,0.18); */
  color: #FF7A3F;
  font-size: 22px;
  margin-bottom: 10px;
}

.capability-card .bi:before {
	    font-size: 34px;

}

.capability-title { font-weight: 700; color: #EAF0FF; }
.capabilities-note { color: #BAC2D3; }

@media (max-width: 768px) {
  .capabilities-title { font-size: 28px; }
}

.milestones-section { background: #fff; }
.milestones-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(234,110,53,0.12);
  border: 1px solid rgba(234,110,53,0.25);
  color: var(--orange);
  font-weight: 800;
}
.milestones-title { font-size: 36px; font-weight: 800; }
.milestones-wrapper { position: relative; padding: 10px 0; }
.milestone-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff8a57 0%, #ff5c39 100%);
}
.milestone-item {
  position: relative;
  display: flex;
  margin: 26px 0;
}
.milestone-item.left { justify-content: flex-end; }
.milestone-item.right { justify-content: flex-start; }
.milestone-card {
  background: #fafafa;
  border: 1px solid #fafafa;
  border-radius: 16px;
  padding: 30px;
  width: 43%;
  box-shadow: 0 10px 24px rgba(16,23,40,0.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.milestone-card:hover {
	transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.milestone-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #FFEDE0;
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}
.milestone-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,92,57,0.18);
}
@media (max-width: 991px) {
  .milestone-card { width: 70%; }
}
@media (max-width: 767px) {
  .milestone-card { width: 100%; }
  .milestone-item { justify-content: center; }
}

.testimonials-section {
  background: #eef2ff;
}
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(234,110,53,0.12);
  border: 1px solid rgba(234,110,53,0.25);
  color: var(--orange);
  font-weight: 800;
}
.testimonials-title { font-size: 34px; font-weight: 800; }
.testimonial-card {
  position: relative;
  background: #fafafa;
  border: 1px solid #fafafa;
  border-radius: 16px;
  padding: 22px;
    box-shadow: 0 10px 24px rgba(16,23,40,0.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
	transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}


.testimonial-card::after {
  content: '””';
  position: absolute;
  right: 20px;
  top: -10px;
  font-size: 72px;
  color: rgba(234, 110, 53, 0.18);
}
.testimonial-quote {
  font-size: 18px;
  color: #1a1a1a;
  line-height: 30px;
  margin-bottom: 16px;
}
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.testimonial-name { font-weight: 800; }
.testimonial-location { color: #6b7280; font-size: 14px; }

@media (max-width: 768px) {
  .testimonials-title { font-size: 26px; }
}

.projects-banner {
  position: relative;
  background: url('/wp-content/uploads/2025/projects-banner.jpg') center/cover no-repeat;
  color: #fff;
  padding: 160px 0 80px 0;
}
.projects-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.75);
}
.projects-banner .container { position: relative; z-index: 2; }
.projects-eyebrow {
  color: #ff9a73;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
  margin-bottom: 8px;
}
.projects-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
}
.projects-title .highlight { color: var(--orange); }
.projects-subtitle {
  color: #dbe3f5;
  font-size: 18px;
  max-width: 820px;
}
.projects-stats { margin-top: 20px; }
.projects-stat-box { color: #fff; }
.projects-stat-number { font-size: 26px; font-weight: 800; color: var(--orange); }
.projects-stat-label { color: #cbd5e1; font-size: 13px; }

@media (max-width: 768px) {
  .projects-title { font-size: 34px; }
  /* .projects-banner { padding: 60px 0; } */
}



@media (min-width: 768px) {
  #portfolioAccordion { display: none; }
  #industryAccordion { display: none !important; }
}
@media (max-width: 767px) {
  #project-grid-desktop { display: none !important; }
	.home-project-grid-desktop#project-grid-desktop { display: block !important; }
	
  .filter-buttons { display: none !important; }
  #industryAccordion { display: block !important; }
  .project-portfolio .accordion-button, .industries-section .accordion-button{ background-color: #ff5722; color: #fff; }
  .project-portfolio .accordion-button.collapsed, .industries-section .accordion-button.collapsed{ background-color: #000; }
  .project-portfolio button:focus:not(:focus-visible), .industries-section button:focus:not(:focus-visible){ outline:unset; border:unset; box-shadow: unset; }
  .project-portfolio .accordion-button::after, .industries-section .accordion-button::after{ filter: invert(1); }
}

.filter-buttons button .count {
        border: 2px solid transparent;
    border-radius: 50%;
    background: #fff;
}

.filter-buttons button.active .count {
    background: #ff7956;
}



.project-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.project-card:hover { transform: translateY(-6px); 
	    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15) !important; }

.project-card .badge {
	background-color: #e4f2ff;
}

.case-study-link {
    color: #ff5724;
    border: 1px solid #ff5724;
    border-radius: 10px;
    display: block;
    width: 100% !important;
    padding: 10px 20px;
    text-align: center;
}


.case-study-link:hover {
    background-color: #ff5724;
    color: #fff;
}

.case-study-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
        margin-left: 12px;
}
.case-study-link .bi.bi-arrow-right:before, .case-study-link .bi.bi-check-circle-fill:before {
    top: 1px;
}

.case-study-link:hover i {
    transform: translateX(4px);
}


.filter-buttons button.active {     background-color: #fe5624;
    color: #fff;
    border-color: transparent; }
.project-item { transition: opacity 0.3s ease; }
#project-count-display { font-size: 0.9rem; animation: fadeIn 0.5s ease; }
.hero-cta-buttons .bi-chevron-down::before{     font-size: 10px;
    left: 10px;
    font-weight: 800 !important; }
.hero-cta-buttons .common-btn.btn-explore{ background:#ff5724; color:#fff; transition: all 0.4s ease; }
.hero-cta-buttons .common-btn.btn-explore:hover{ background:#e63600; color:#fff; }
.hero-cta-buttons .common-btn.btn-explore:hover:hover .bi-chevron-down{ transform: translate(0px, 3px); }
.project-card .card-img-top { height: 250px; object-fit: cover; transition: transform .35s ease; will-change: transform; }
.project-card { overflow: hidden; }
.project-card:hover .card-img-top { transform: scale(1.08); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Position badges over the image area */
.project-card { position: relative; }
.project-card .card-body .badge:first-of-type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}
.project-item.ongoing .project-card::after {
  content: "Ongoing";
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #FF6A3A 0%, #FF3E00 100%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(234,110,53,0.22);
}

/* Projects page: enhanced filter pills */
.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f7f9fc;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(16,23,40,0.06);
}
.filter-buttons .btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,23,40,0.10); }
.filter-buttons .btn.active {
  background: linear-gradient(135deg, #FF6A3A 0%, #FF3E00 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(234,110,53,0.25);
}
.filter-buttons .btn .count {
  margin-left: 6px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5560;
}
.filter-buttons .btn.active .count {
  background: rgba(255, 255, 255, 0.25);
  border-color: transparent;
  color: #fff;
}

.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 12px; }
.filter-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #4b5560;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(16,23,40,0.06);
}
.filter-heading .bi::before { top: 0; }

/* Projects page: card styling to match hovered design */
.project-card {
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(16,23,40,0.08);
  border: 1px solid #f2f2f2;
  background: #fff;
}
.project-card .card-body { padding: 16px;     min-height: 360px;}
.project-card .card-title { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.project-card:hover .card-title { color: #FF5722; }
.project-card .text-muted.small { color: #6b7280 !important; }
.project-card .badge { background: #ffede0; color: #FF5722; border: 1px solid #FFE5E0; border-radius: 999px; font-weight: 700; }
.project-card .badge.bg-warning { background: #FF6A3A !important; color: #fff !important; border-color: transparent !important; }
.project-card ul { list-style: none; margin: 12px 0 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.project-card ul li {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #4b5560;
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 10px;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.15) !important; }

/* Meta row: location and year */
.project-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 10px;
}
.project-meta .meta-item { display: inline-flex; align-items: center; gap: 8px; }
.project-meta .meta-item i { color: #FF5722; }

/* View More button */
#view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6A3A 0%, #FF3E00 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 24px rgba(234,110,53,0.22);
}
#view-more-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(234,110,53,0.28); }

.testimonials-section.alt { padding: 80px 0; background-color: #eef2ff; }
.section-header { margin-bottom: 28px; }
.section-title { font-size: 30px; font-weight: 800; color: #1a1a1a; line-height: 36px; }
.section-title .highlight-green { background: linear-gradient(135deg, hsl(142 69% 58%), hsl(210 100% 56%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
.testimonials-slider { max-width: 750px; margin: 0 auto; position: relative; }
.slick-slide { outline: none; }
.testimonial-card.alt { background: #fff; border-radius: 20px; padding: 48px 36px 36px 36px; box-shadow: 0 2px 32px rgba(51, 88, 143, 0.08); text-align: center; position: relative; min-height: 400px; display: flex; flex-direction: column; align-items: center; transition: box-shadow 0.4s; }
.testimonial-icon { background: #ffe5e0; width: 54px; height: 54px; border-radius: 50%; font-size: 28px; color: #FF5722; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px auto; }
.testimonial-card.alt::after { content: none; }
.testimonial-icon .bi::before { top: 0; }
.testimonial-rating { margin-bottom: 14px; }
.testimonial-rating i { color: #FFC107; font-size: 19px; margin: 0 1.5px; }
.testimonial-text { font-size: 21px; line-height: 1.45; color: #222; margin-bottom: 26px; font-weight: 500; }
.testimonial-author { color: #1a1a1a; font-size: 17px; margin-bottom: 8px; font-family: 'Manrope', sans-serif; }
.testimonial-position { font-size: 14px; color: #888; }
.testimonial-company { font-size: 14px; font-weight: 700; color: #FF5722; }
.testimonial-facts { margin-top: 18px; border-top: 1px solid #f2f2f2; padding-top: 16px; margin-bottom:60px; }
.fact-value { font-size: 24px; font-weight: 700; margin-bottom: 2px; }
.fact-label { font-size: 14px; color: #6b7280; }
.orange-text { color: #FF5722 !important; }
.green-text { color: #19c37d !important; }
.slick-arrow { background: #f6faff; border: none; border-radius: 50%; width: 40px; height: 40px; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; font-size: 20px; transition: box-shadow .3s; box-shadow: 0 2px 8px rgba(0,0,0,0.09); }
.slick-prev { left: -60px; }
.slick-next { right: -60px; }
.slick-arrow:hover { background: #fff; }
.slick-dots { bottom: -34px; }
.slick-dots li button:before { font-size: 16px; color: #FF5722; }
@media (max-width: 767px) {
  .testimonials-section.alt { padding: 48px 0; }
  .testimonial-card.alt { padding: 30px 10px 22px 10px; min-height: 350px; }
  .testimonial-text { font-size: 16px; }
  .section-title { font-size: 26px; }
  .testimonial-facts { font-size: 13px; margin-top: 13px; }
  .slick-arrow { width: 32px; height: 32px; font-size: 15px; }
  .slick-prev { left: -30px; }
  .slick-next { right: -30px; }
}

.client-logos-section { padding: 56px 0; background: #eef2ff; }
.client-section-title { font-size: 24px; line-height:32px; font-weight: 800; color: #212632; margin-bottom: 34px; letter-spacing: 0; }
.client-logos-row { row-gap: 28px; column-gap: 0; }
.client-logo-cell { display: flex; justify-content: center; align-items: center; margin-bottom: 0; }
.client-logo-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(44, 108, 163, 0.06); padding: 22px 0; width: 100%; line-height:20px; max-width: 280px; text-align: center; font-size: 14px; font-weight: 500; color: #1a1a1a; transition: box-shadow 0.25s; border: none; }
.client-logo-card:hover { box-shadow: 0 6px 36px rgba(44, 108, 163, 0.11); }
@media (max-width: 991px) { .client-logo-card { font-size: 16px; } }
@media (max-width: 767px) { .client-section-title { font-size: 22px; } .client-logo-card { font-size: 15px; } }

.hero-section { padding: 160px 0 40px 0; background: linear-gradient(160deg, #F7E5DE 0%, #FFF8F6 50%, #FFFFFF 100%); overflow: hidden; }
.hero-content { padding-right: 30px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 24px; background-color: #fff; border-radius: 50px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); margin-bottom: 10px; font-size: 14px; color: #333; font-weight: 500; }

.hero-badge .bi::before {
    top: 0px;
}

.hero-badge i { color: #FF5722; font-size: 16px; }
.hero-heading { font-size: 36px; font-weight: 700; line-height: 40px; color: #1a1a1a; margin-bottom: 20px; font-family: 'Manrope', sans-serif; }
.hero-highlight { color: #FF5722; }
.hero-description { font-size: 18px; line-height: 1.6; color: #6b7280; margin-bottom: 32px; max-width: 540px; font-family: 'Manrope', sans-serif; }
.hero-cta-buttons { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.common-btn { display: inline-flex; align-items: center; gap: 8px; padding: 2px 35px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; font-family: 'Manrope', sans-serif; }
.common-btn i { font-size: 16px; }
.btn-primary { background-color: #FF5722; color: #fff; }
.btn-primary:hover { background-color: #E64A19; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3); }
.btn-secondary { background-color: #f0f2f4; color: #333; border: 2px solid #e0e0e0; }
.btn-secondary:hover { color: #fff; background: #f0f2f4; }
.btn-secondary i { font-size: 20px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.stat-item { display: flex; align-items: center; font-size: 15px; color: #666; font-weight: 500; font-family: 'Manrope', sans-serif; }

.stat-item .bi::before {
    top: 5px;
}

.stat-icon { font-size: 20px; }
.stat-icon-green { color: #4CAF50; }
.stat-icon-blue { color: #2196F3; }
.stat-icon-orange { color: #FF5722; }
.hero-image-container { position: relative; border-radius: 16px; overflow: visible; }
.hero-slider { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
.hero-slider .slide { position: relative; height: 500px; outline: none; }
.hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slider .slick-dots{ position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex !important; gap: 8px; list-style: none; margin: 0; padding: 0; z-index: 10; width: auto; }
.testimonials-slider .slick-dots{ position: absolute; bottom: 40px; left: 48%; transform: translateX(-50%); display: flex !important; gap: 8px; list-style: none; margin: 0; padding: 0; z-index: 10; width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; cursor: pointer; font-size: 0; transition: all 0.3s ease; }
.hero-slider .slick-dots li{ width: 10px; height: 10px; margin: 0; }
.testimonials-slider .slick-dots li{ width: 24px; height: 15px; margin: 0; }
.hero-slider .slick-dots li button{ width: 12px; height: 12px; padding: 0; border: none; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); cursor: pointer; font-size: 0; transition: all 0.3s ease; }
.testimonials-slider .slick-dots li button{ width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background-color: #f0f2f4; cursor: pointer; font-size: 0; transition: all 0.3s ease; }
.hero-slider .slick-dots li.slick-active button{ background-color: #FF5722; height: 14px; width: 14px; }
.testimonials-slider .slick-dots li.slick-active button{ background-color: #FF5722; width: 24px; border-radius: 5px; width: 24px; height: 10px; }
.testimonials-slider .slick-prev{ top: 90%; left: 5%; }
.testimonials-slider .slick-next{ right: 5%; top: 90%; }
.testimonials-slider .slick-prev, .testimonials-slider .slick-next { width: 40px!important; height: 40px!important; background:#f0f2f4; border: none; outline: none; cursor: pointer; }
.testimonials-slider .slick-prev:hover, .testimonials-slider .slick-next:hover{ background:#ff5724; }
.testimonials-slider .slick-prev:before { background-image: url('/wp-content/uploads/2025/10/left-chevron.png'); width: 20px!important; height: 20px!important; background-size: 15px; background-repeat: no-repeat; background-position: center; border: none; outline: none; cursor: pointer; color:unset; }
.testimonials-slider .slick-next:before { background-image: url('/wp-content/uploads/2025/10/right-arrow-angle.png'); width: 20px!important; height: 20px!important; background-size: 15px; background-repeat: no-repeat; background-position: center; border: none; outline: none; cursor: pointer; color:unset; }
.hero-slider .slick-dots li button:hover{ background-color: rgba(255, 255, 255, 0.8); }
.testimonials-slider .slick-dots li button:hover{ background-color: #6b7280; }
.hero-slider .slick-prev, .hero-slider .slick-next { display: none !important; }
.floating-badge { position: absolute; display: flex; align-items: center; gap: 12px; background-color: #fff; padding: 16px 20px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); z-index: 20; }

.badge-top { top: -20px; left: 0; }
.badge-bottom { bottom: -20px; right: 0; }
.badge-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; }
.badge-green { background-color: #4CAF50; }
.badge-blue { background-color: #2196F3; }
.badge-text { display: flex; flex-direction: column; gap: 2px; }
.badge-title { font-size: 18px; font-weight: 700; color: #1a1a1a; line-height: 1; font-family: 'Manrope', sans-serif; }
.badge-subtitle { font-size: 13px; color: #666; line-height: 1; font-family: 'Manrope', sans-serif; }
.slick-dots li button:before{ content:""; }

.stats-section { padding: 20px 0; background-color: #fff; }
.stats-wrapper { background-color: #fafafa; border-radius: 12px; padding: 40px 30px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }
.stat-box { text-align: center; padding: 10px; }
.stat-number { font-size: 36px; font-weight: 800; color: #FF5722; margin-bottom: 8px; font-family: 'Manrope', sans-serif; line-height: 40px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.stat-number.stat-success { color: #4CAF50; }
.stat-number.stat-info { color: #2196F3; }
.stat-number.stat-warning { color: #FF5722; }
.stat-number i { font-size: 32px; }
.stat-label { font-size: 14px; color: #666; font-weight: 500; font-family: 'Manrope', sans-serif; line-height: 1.4; }
.discover-more { text-align: center; padding: 10px; }
.discover-btn { background: transparent; border: none; color: #666; font-size: 14px; font-weight: 600; font-family: 'Manrope', sans-serif; cursor: pointer; display: inline-flex; flex-direction: column; align-items: center; gap: 5px; transition: all 0.3s ease; padding: 0; }
.discover-btn:hover { color: #FF5722; }
.discover-btn i { font-size: 16px; transition: transform 0.3s ease; }
.discover-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.collapse .stat-box { animation: fadeInUp 0.5s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.services-section { padding: 80px 0; background-color: #fff; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 20px; background-color: #ffede0; border: 1px solid #FFE5E0; border-radius: 50px; font-size: 14px; color: #FF5722; font-weight: 600; margin-bottom: 20px; font-family: 'Manrope', sans-serif; }

.section-badge .bi::before {
top: 0px;
}

.section-badge i { font-size: 16px; }
.section-title { font-size: 36px; font-weight: 800; color: #1a1a1a; margin-bottom: 20px; font-family: 'Manrope', sans-serif; line-height: 40px; }
.section-title .highlight { color: #FF5722; }
.section-description { font-size: 18px; line-height: 32px; color: #6b7280; 
  /* max-width: 900px;  */
  margin: 0 auto; font-family: 'Manrope', sans-serif; }
.service-card { background-color: #fff; border-radius: 16px; padding: 40px 30px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; height: 100%; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30); }
.service-icon-wrapper { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.service-icon { width: 70px; height: 70px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; transition: all 0.3s ease; }

.service-icon .bi.service-badge-icon::before {
font-size: 40px;
    top: 5px;
}


.service-card .bi.bi-arrow-right:before, .service-card .bi.bi-check-circle-fill:before {
top: 0px;
}
.blue-icon { background: #e5f2ff; }
.orange-icon { background: #ffede0; }
.red-icon { background: #fef2f2; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-badge { font-size: 12px; color: #666; font-weight: 500; font-family: 'Manrope', sans-serif; white-space: nowrap; }
.service-title { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; font-family: 'Manrope', sans-serif; }
.service-description { font-size: 15px; line-height: 1.7; color: #666; margin-bottom: 24px; font-family: 'Manrope', sans-serif; }
.service-features { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.service-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 15px; color: #555; font-family: 'Manrope', sans-serif; }
.service-features li i { color: #4CAF50; font-size: 18px; flex-shrink: 0; }
.service-link { align-items: center; gap: 8px; color: #FF5722; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; margin-top: auto; padding: 8px 15px; }

.service-link {
    border: 1px solid #FF5722;
    border-radius: 10px;
}

.service-link:hover {     color: white;
    background: #ff5722;
    border-radius: 8px; }
.service-link i { font-size: 16px; transition: transform 0.3s ease; float:right; }
.service-link:hover i { transform: translateX(4px); }
.cta-section { padding: 80px 0; background-color: #f2f3f5; }
.cta-box { background: linear-gradient(90deg, #ff5724 0%, #ff5724 100%, #e63600 100%); border-radius: 24px; padding: 40px 30px; text-align: center; position: relative; overflow: hidden; }
.cta-title { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 20px; font-family: 'Manrope', sans-serif; line-height: 40px; position: relative; z-index: 1; }
.cta-description { font-size: 18px; line-height: 26px; color: rgba(255, 255, 255, 0.95); margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; font-family: 'Manrope', sans-serif; position: relative; z-index: 1; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; padding: 5px 30px; background-color: #fff; color: #FF5722; font-size: 14px; font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); position: relative; z-index: 1; }

.cta-button .bi::before {
    top: -1px;
}

.cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); background-color: #FFF9F8; color: #E64A19; }
.industries-section { padding: 80px 0; background-color: #fff; }
.green-badge {
background-color: #bdf4d2; border: 1px solid #bdf4d2; color: #5ac07e;
 }
.green-badge i { color: #4CAF50; }
.highlight-green { color: #4CAF50; }
.industry-tabs-nav { gap: 12px; margin: 50px 0 40px 0; border: none; flex-wrap: wrap; }
.industry-tabs-nav .nav-item { margin: 0; }
.industry-tabs-nav .nav-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background-color: #f5f5f5; border: 2px solid transparent; border-radius: 16px; font-size: 16px; font-weight: 600; color: #000; cursor: pointer; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; }
.industry-tabs-nav .nav-link i { font-size: 18px; transition: transform 0.3s ease; }

.industry-tabs-nav .nav-link i:before {
	top: 0px;
}


.blue-badge {
background-color: #e5f2ff; border: 1px solid #e5f2ff; color: #1f8eff;
 }
.blue-badge i { color: #1f8eff; }
.highlight-blue { color: #1f8eff; }

.industry-tabs-nav .nav-link:hover { background-color: #e5e7eb; }
.industry-tabs-nav .nav-link.active { background-color: #ef4444; color: #fff; }
.industry-tabs-nav .nav-link.active i { transform: scale(1.1); }
.industry-tabs-content { margin-top: 50px; }
.tab-pane { animation: fadeIn 0.5s ease; }
.tab-content-left { padding-right: 30px; }
.tab-icon-c{ display:flex; gap:20px; }
.tab-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%); display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; margin-bottom: 24px; }

.tab-icon .bi:before {
    font-size: 24px;
}

.tab-title { font-size: 30px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; font-family: 'Manrope', sans-serif; }
.tab-subtitle { font-size: 16px; color: #FF5722; font-weight: 600; margin-bottom: 20px; font-family: 'Manrope', sans-serif; padding-bottom:0; }
.tab-description { font-size: 18px; line-height: 30px; color: #6b7280; margin-bottom: 30px; font-family: 'Manrope', sans-serif; }
.tab-stats { display: flex; margin-bottom: 30px; flex-wrap: wrap; justify-content: space-around; }
.tab-stat-item { text-align: left; }
.tab-stat-item .stat-number { font-size: 24px; font-weight: 800; color: #ff5724; margin-bottom: 4px; font-family: 'Manrope', sans-serif; line-height: 32px; }
.tab-stat-item .stat-number.stat-green { color: #4ade80; }
.tab-stat-item .stat-number.stat-blue { color: #1f8fff; font-size: 14px; font-weight: 700; }
.tab-stat-item .stat-label { font-size: 14px; line-height:20px; color: #6b7280; font-weight: 500; font-family: 'Manrope', sans-serif; }
.tab-features { list-style: none; padding: 0; margin: 0 0 30px 0; 
  /* display: grid; */
   grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tab-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #555; font-family: 'Manrope', sans-serif; position: relative; padding-left: 20px; margin-bottom: 12px; }
.tab-features li::before { content: ""; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; background: #ff5724; border-radius: 50%; display: inline-block; }
.tab-clients { margin-bottom: 30px; }

.tab-cta-btn .bi::before {
    top: 1px;
}

.clients-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #999; font-weight: 600; margin-bottom: 12px; font-family: 'Manrope', sans-serif; }
.clients-label i { color: #FFA726; font-size: 16px; }
.clients-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.client-tag { display: inline-block; padding: 6px 14px; background-color: #f5f5f5; border-radius: 6px; font-size: 13px; color: #666; font-weight: 500; font-family: 'Manrope', sans-serif; }
.tab-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background-color: #FF5722; color: #fff; font-size: 16px; font-weight: 600; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; }
.tab-cta-btn:hover { background-color: #E64A19; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3); gap: 12px; color: #fff; }
.tab-cta-btn i { font-size: 16px; transition: transform 0.3s ease; }
.tab-cta-btn:hover i { transform: translateX(4px); }
.tab-image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); position: relative; height: 600px; }
.tab-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.achievements-section { padding: 80px 0; background-color: #fafafa; }
.achievements-section .section-description{ font-size:20px; }
.orange-badge { background-color: #FFF3E0; border: 1px solid #FFE0B2; color: #FF5722; }
.orange-badge i { color: #FF5722; }
.achievement-card { background-color: #fff; border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; height: 100%; display: flex; flex-direction: column; align-items: center; }
.achievement-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); }
.achievement-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 24px; transition: all 0.3s ease; }

.achievement-icon .bi::before {
        font-size: 32px;
    top: 0px;
}



.cta-contact-btn { 
	    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    background-color: #fff;
    color: #FF5722;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
 }
.cta-contact-btn:hover { background-color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3); gap: 12px; color: #E64A19; }
.cta-contact-btn i { font-size: 16px; transition: transform 0.3s ease; }	
.cta-contact-btn:hover i { transform: translateX(4px); }

.cta-contact-btn .bi::before {
    top: 1px;
}

.achievement-card:hover .achievement-icon { transform: scale(1.1); }
.blue-bg { background-color: #E3F2FD; color: #2196F3; }
.orange-bg { background-color: #FFE5E0; color: #FF5722; }
.green-bg { background-color: #E8F5E9; color: #4CAF50; }
.purple-bg { background-color: #F3E5F5; color: #9C27B0; }
.achievement-number { font-size: 30px; font-weight: 800; color: #2196F3; margin-bottom: 16px; font-family: 'Manrope', sans-serif; line-height: 36px; }
.achievement-number.orange-text { color: #FF5722; }
.achievement-number.green-text { color: #4CAF50; }
.achievement-number.purple-text { color: #9C27B0; }
.achievement-title { font-size: 20px; font-weight: 700; color: #282c34; margin-bottom: 12px; font-family: 'Manrope', sans-serif; line-height: 28px; }
.achievement-description { font-size: 14px; line-height: 22px; color: #6b7280; margin: 0; font-family: 'Manrope', sans-serif; }

.certifications-section { padding: 80px 0; background-color: #fff; }
.certifications-grid { margin-top: 50px;    justify-content: center; }
.certification-card { display: flex; align-items: center; gap: 20px; padding: 28px 30px; background-color: #fafafa; border-radius: 12px; transition: all 0.3s ease; height: 100%;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.certification-card:hover { background-color: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); transform: translateY(-4px); }
.cert-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; transition: all 0.3s ease; }

.cert-icon .bi {
	font-size: 24px;
}

.certification-card:hover .cert-icon { transform: scale(1.1); }
.orange-icon { background-color: #FFE5E0; color: #FF5722; }
.red-icon { background-color: #FFEBEE; color: #F44336; }
.blue-icon { background-color: #E3F2FD; color: #2196F3; }
.green-icon { background-color: #E8F5E9; color: #4CAF50; }
.yellow-icon { background-color: #FFF9C4; color: #FFC107; }
.purple-icon { background-color: #F3E5F5; color: #9C27B0; }
.cert-content { flex: 1; }
.cert-title { font-size: 16px; font-weight: 700; color: #282c34; margin-bottom: 4px; font-family: 'Manrope', sans-serif; line-height: 1.3; }
.cert-subtitle { font-size: 14px; color: #6b7280; margin: 0; font-family: 'Manrope', sans-serif; line-height: 1.4; }

.experience-cta-box { background: linear-gradient(135deg, #FF6B35 0%, #FF5722 50%, #F4511E 100%); border-radius: 24px; padding: 60px 50px; text-align: center; box-shadow: 0 20px 60px rgba(255, 87, 34, 0.25); position: relative; overflow: hidden; margin-top: 30px; }
.experience-cta-box::before { content: ''; position: absolute; top: -40%; right: -8%; width: 350px; height: 350px; background: rgba(255, 255, 255, 0.08); border-radius: 50%; z-index: 0; }
.experience-cta-box::after { content: ''; position: absolute; bottom: -25%; left: -5%; width: 280px; height: 280px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; z-index: 0; }
.experience-cta-box .cta-title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 16px; font-family: 'Manrope', sans-serif; line-height: 1.2; position: relative; z-index: 1; }
.experience-cta-box .cta-description { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.95); margin-bottom: 35px; max-width: 750px; margin-left: auto; margin-right: auto; font-family: 'Manrope', sans-serif; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-primary-cta { display: inline-flex; align-items: center; justify-content: center; padding: 5px 30px; background-color: #fff; color: #FF5722; font-size: 17px; font-weight: 700; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); border: 2px solid transparent; }
.btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); background-color: #FFF9F8; color: #E64A19; }
.btn-secondary-cta { display: inline-flex; align-items: center; justify-content: center; padding: 5px 30px; background-color: transparent; color: #fff; font-size: 17px; font-weight: 700; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; border: 2px solid rgba(255, 255, 255, 0.5); }
.btn-secondary-cta:hover { background-color: rgba(255, 255, 255, 0.15); border-color: #fff; transform: translateY(-3px); color: #fff; }

@media (max-width: 991px) {
  .hero-section { padding: 120px 0 40px 0; }
  .hero-heading { font-size: 42px; }
  .hero-content { padding-right: 0; margin-bottom: 40px; }
  .badge-top { display: none; top: -25px; }
  .badge-bottom { display: none; bottom: 10px; right: 0; }
  .hero-slider .slide { height: 400px; }
  .stat-number { font-size: 36px; }
  .stat-number i { font-size: 24px; }
  .stat-label { font-size: 13px; }
  .services-section { padding: 60px 0; }
  .section-title { font-size: 38px; }
  .section-description { font-size: 16px; }
  .service-card { padding: 30px 25px; }
  .cta-section { padding: 60px 0; }
  .cta-box { padding: 60px 40px; }
  .cta-title { font-size: 38px; }
  .cta-description { font-size: 17px; }
  .cta-button { padding: 5px 24px; font-size: 17px; }
  .industries-section { padding: 60px 0; }
  .industry-tabs-nav { gap: 8px; }
  .industry-tabs-nav .nav-link { padding: 12px 20px; font-size: 14px; }
  .tab-content-left { padding-right: 0; margin-bottom: 40px; }
  .tab-title { font-size: 32px; }
  .tab-image { height: 400px; }
  .tab-features { grid-template-columns: 1fr; }
  .achievements-section { padding: 60px 0; }
  .achievement-card { padding: 35px 25px; }
  .achievement-icon { width: 70px; height: 70px; font-size: 32px; }
  .achievement-number { font-size: 42px; }
  .achievement-title { font-size: 18px; }
  .achievement-description { font-size: 14px; }
  .certifications-section { padding: 60px 0; }
  .certifications-grid { margin-top: 40px; }
  .certification-card { padding: 24px 25px; }
  /* .cert-icon { width: 55px; height: 55px; font-size: 26px; } */
  .cert-title { font-size: 17px; }
  .cert-subtitle { font-size: 13px; }
  .experience-cta-box { padding: 50px 40px; }
  .experience-cta-box .cta-title { font-size: 36px; }
  .experience-cta-box .cta-description { font-size: 17px; }
  .btn-primary-cta, .btn-secondary-cta { padding: 14px 32px; font-size: 16px; }


  
}
@media (max-width: 767px) {



  h1{ font-size: 28px!important; line-height:42px!important; }
  /* h2{ font-size:28px!important; line-height:36px!important; }
  h3{ font-size:22px!important; line-height:32px!important; } */
  .hero-description { font-size: 16px; }
  .hero-cta-buttons { flex-direction: column; }
  .common-btn { width: 100%; justify-content: center; }
  .hero-stats {
	/* flex-direction: column;  */
	gap: 5px;
justify-content: center;
 }
	.stat-item {
    font-size: 12px;
	}
	.stat-icon {
    border-radius: 4px;
    width: 32px;
	}
	    .hero-content {
        margin-bottom: 25px;
    }
  .hero-slider .slide { height: 300px; }
  .floating-badge { padding: 12px 16px; }
  .badge-icon { width: 40px; height: 40px; font-size: 20px; }
  .badge-title { font-size: 16px; }
  .badge-subtitle { font-size: 12px; }
  .stats-section { padding: 0; }
  .stats-wrapper { padding: 25px 15px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 12px; }
  .stat-box { margin-bottom: 20px; }
  .services-section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .section-title { font-size: 32px; }
  .section-description { font-size: 15px!important }
  .service-card { padding: 30px 20px; margin-bottom: 20px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30); }
  .service-icon { width: 60px; height: 60px; font-size: 28px; }
  .service-badge { font-size: 11px; }
  .service-title { font-size: 22px; }
  .service-description { font-size: 14px; }
  .service-features li { font-size: 14px; }
  .cta-section { padding: 50px 0; }
  .cta-box { padding: 30px; border-radius: 20px; }
  .cta-title { font-size: 32px; }
  .cta-description { font-size: 16px; margin-bottom: 30px; }
  .cta-button { padding: 10px 32px; font-size: 16px; width: 100%; }
  .cta-box::before, .cta-box::after { display: none; }
  .achievements-section { padding: 50px 0; }
  .achievement-card { padding: 30px 20px; }
  .achievement-icon .bi::before {
    font-size: 16px;
    top: -3px;
}
  .achievement-icon {  
width: 32px;
        height: 32px;
        font-size: 24px;}
  .achievement-number { font-size: 28px; }
  .achievement-title { font-size: 18px; }
  .achievement-description { font-size: 14px; }
  .industry-tabs-nav { gap: 6px; }
  .industry-tabs-nav .nav-link { padding: 10px 16px; font-size: 13px; }
  .industry-tabs-nav .nav-link i { font-size: 16px; }
  .tab-icon { width: 60px; height: 60px; font-size: 28px; }
  .tab-title { font-size: 28px; }
  .tab-subtitle { font-size: 14px; }
  .tab-description { font-size: 15px; }
  .tab-stats { gap: 20px; }
  .tab-stat-item .stat-number { font-size: 24px; }
  .tab-features li { font-size: 13px; }
  .tab-image { height: 300px; }
  .tab-cta-btn { width: 100%; justify-content: center;         border: none; }
  .certifications-section { padding: 50px 0; }
  .certifications-grid { margin-top: 30px; }
  .certification-card { padding: 20px; margin-bottom: 16px; }
  /* .cert-icon { width: 50px; height: 50px; font-size: 24px; } */
  .cert-title { font-size: 16px; }
  .cert-subtitle { font-size: 13px; }
  .experience-cta-box { padding: 40px 25px; border-radius: 20px; }
  .experience-cta-box .cta-title { font-size: 28px; }
  .experience-cta-box .cta-description { font-size: 16px; margin-bottom: 28px; }
  .cta-buttons { flex-direction: column; }
  .btn-primary-cta, .btn-secondary-cta { width: 100%; padding: 10px 30px; font-size: 16px; }
  .experience-cta-box::before, .experience-cta-box::after { display: none; }

.hero-badge {
    padding: 5px 15px;
}

.tab-features li::before {
    top: 7px;
}
}
@media (max-width: 575px) {
  .cta-box { padding: 20px; }
  .cta-title { font-size: 28px; }
  .cta-description { font-size: 14px; }
  .industries-section { padding: 50px 0; }
  .cert-title { font-size: 15px; }
  .cert-subtitle { font-size: 12px; }
  .experience-cta-box .cta-title { font-size: 24px; }
  .experience-cta-box .cta-description { font-size: 15px; }
}

/* Services page card gradient components moved from template */
.card-gradient{ border-radius: var(--card-radius); padding: 5px; background: linear-gradient(135deg,#eee,#eee); box-shadow: 0 10px 30px rgba(14,20,30,0.06); transition: transform .28s; }
.card-gradient--orange{ background: linear-gradient(135deg,#ffd4bf 0%, #ff8a57 40%, #ff5722 70%, #e64a19 100%); }
.card-gradient--blue{ background: linear-gradient(135deg,#cfe8ff 0%, #64b5f6 40%, #1e88e5 70%, #0d47a1 100%); }
.card-gradient--teal{ background: linear-gradient(135deg,#c8f7ef 0%, #54d1c6 40%, #1EB7A8 70%, #128f83 100%); }
.card-gradient--purple{ background: linear-gradient(135deg,#e9d7ff 0%, #b47ad1 40%, #9C27B0 70%, #6A1B9A 100%); }
.card-gradient--red{ background: linear-gradient(135deg,#ffd9d3 0%, #ff9e80 40%, #ff7043 70%, #ff5722 100%); }
.card-gradient:hover{ transform: translateY(-6px); }
.card-inner{ background: #fff; border-radius: calc(var(--card-radius) - 3px); padding: 50px; }
.card-gradient .icon-box{ width: 80px; height: 80px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }

.card-gradient .icon-box .bi::before {
    font-size: 42px;
    position: relative;
    top: 5px;
}

.icon-gradient{ background: linear-gradient(135deg,#ffe5e0,#ffd8cc); color: #FF5722; }
.icon-gradient--orange{ background: linear-gradient(135deg,#ffe5e0,#ffd8cc); color: #FF5722; }
.icon-gradient--teal{ background: linear-gradient(135deg,#e5f9f6,#d2f3ee); color: #1EB7A8; }
.card-title{ font-size: 18px; font-weight: 800; margin-bottom: 12px; color: #222; }
.card-list{ margin: 0; padding: 0; list-style: none; }
.card-list li{ position: relative; padding-left: 26px; margin-bottom: 10px; line-height: 1.4; color: #4b5560; font-size: 14px; }
/* .card-list li i::before{ content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); position: absolute; left: 0; top: 8px; box-shadow: 0 1px 0 rgba(0,0,0,0.05); } */

.card-list li .bi {
    color: #ff5722;
    position: relative;
    top: 3px;
    left: -12px;
}
.card-list li .bi::before {

}
.service-heading{ font-size: 22px; font-weight: 800; margin-bottom: 12px; color: #222; }
.service-text{ color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.learn-btn{ display: inline-flex; align-items:center; gap: 8px; padding: 9px 16px; border-radius: 8px; background: linear-gradient(180deg,var(--orange), #e1512a); color: #fff; text-decoration: none; font-weight: 600; box-shadow: 0 6px 18px rgba(234,110,53,0.18); }
.learn-btn i{ font-size: 18px; }
@media (max-width: 991.98px){ .card-gradient{ margin-bottom: 18px; } .service-heading{ text-align: left; } .service-row{ margin-bottom: 1.75rem; } }
@media (max-width: 575.98px){ .card-inner{ padding: 18px; } .icon-box{ width:48px; height:48px; font-size:20px; } .service-heading{ font-size:20px; } }



.zigzag-services {
	padding: 80px 0;
	background-color: #f4f8fe;
}

/* Contact Info (light version under banner) */
.contact-info-section { padding: 80px 0; background: #fff; }
.contact-info-card { background: #fff; border-radius: 16px; padding: 28px 30px; text-align: center; box-shadow: 0 10px 24px rgba(16,23,40,0.07); transition: all 0.3s ease; }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.contact-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; background: #FF5722; color: #fff; }
.contact-title { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.contact-subtitle { font-size: 14px; color: #6b7280; margin-bottom: 10px; }
.contact-phone { font-size: 20px; font-weight: 800; color: #FF5722; display: block; }
.contact-email { font-size: 20px; font-weight: 800; color: #FF5722; display: block; text-transform: lowercase; }
.contact-info-card--hover-only .contact-icon { background: #FF5722; color: #fff; }
.contact-info-card--hover-only:hover .contact-icon { background: #FF5722; color: #fff; }
.contact-info-card--hover-only:hover .contact-email { color: #FF5722; }

.contact-icon .bi:before {
      top: -3px;
}

/* Track Record Section */
.track-record-section { padding: 60px 0; background: #242a33; }
.track-title { font-size: 32px; font-weight: 800; color: #ffffff; margin-bottom: 8px; }
.track-subtitle { font-size: 14px; color: #b6c0ce; margin-bottom: 26px; }
.track-stat { text-align: center; }
.track-number { font-size: 40px; font-weight: 800; color: #ffffff; line-height: 1; }
.track-plus, .track-percent { color: #ff5722; margin-left: 4px; }
.track-label { font-size: 14px; color: #c9d1db; margin-top: 8px; }
@media (max-width: 767px) {
  .track-number { font-size: 34px; }
  .track-title { font-size: 28px; }
}



.about-overview .overview-box {
	transition: transform .3s ease, box-shadow .3s ease;
}
.about-overview .overview-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}
.about-overview .boxed-content {
      padding: 3rem;
}

.img-zoom-box { position: relative; overflow: hidden; border-radius: 16px; }
.img-zoom-box img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; will-change: transform; }
.img-zoom-box:hover img { transform: scale(1.08); }
.consultation-section { padding: 60px 0; background: #fff; }
.consult-card { background: #eaf2ff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 24px rgba(51,88,143,0.08); }
.consult-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.consult-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #ffede0; color: #FF5722; font-size: 20px; }
.consult-title { font-size: 22px; font-weight: 800; color: #1a1a1a; }
.consult-subtitle { font-size: 14px; color: #6b7280; }
.quote-form .form-control, .quote-form .form-select { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; box-shadow: none; }
.quote-form .form-label { font-size: 13px; color: #6b7280; }
.quote-btn { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; background: #FF5722; color: #fff; font-weight: 700; border: none; box-shadow: 0 8px 24px rgba(234,110,53,0.18); }
.quote-btn i { font-size: 18px; }
.map-card { background: #fff; border-radius: 16px; padding: 16px; box-shadow: 0 2px 24px rgba(51,88,143,0.08); margin-bottom: 18px; }
.map-title { font-weight: 800; margin-bottom: 10px; }
.map-title i { color: #FF5722; margin-right: 6px; }
.map-embed iframe { width: 100%; height: 250px; border-radius: 12px; }
.map-details { background: #f7fafc; border-radius: 12px; padding: 12px 14px; font-size: 14px; color: #1a1a1a; margin-top: 12px; }
.support-card { background: linear-gradient(135deg, #ff6b45 0%, #ff3e00 100%); color: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 8px 28px rgba(234,110,53,0.18); }
.support-title { font-weight: 800; margin-bottom: 8px; }
.support-title i { margin-right: 8px; }
.support-desc { font-size: 14px; opacity: 0.95; margin-bottom: 12px; }
.support-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: #fff; color: #FF5722; font-weight: 700; border-radius: 10px; text-decoration: none; }
.support-btn i { font-size: 16px; }

/* Careers benefits */
.careers-benefits-section { padding: 70px 0; }
.benefit-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 18px rgba(16,23,40,0.06); transition: transform .3s ease, box-shadow .3s ease; height: 100%; }
.benefit-icon { width: 44px; height: 44px; border-radius: 10px; background: #ffede0; color: #FF5722; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.benefit-title { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 6px; }
.benefit-desc { font-size: 14px; color: #6b7280; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.benefit-card:hover .benefit-icon { background: #FF5722; color: #fff; }

.culture-section { padding: 70px 0; }
.culture-card { position: relative; height: 220px; border-radius: 16px; box-shadow: 0 2px 18px rgba(16,23,40,0.06); }
.culture-card.img-zoom-box img { border-radius: 16px; }
.culture-overlay { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; border-radius: 12px; background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.55) 100%); }
.culture-title { color: #fff; font-size: 16px; font-weight: 700; }

.jobs-section { padding: 70px 0; }
.jobs-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.job-card { background: #fff; border-radius: 16px; padding: 20px 24px; box-shadow: 0 2px 18px rgba(16,23,40,0.06); border: 1.5px solid #f2f2f2; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position: relative; padding-right: 160px; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-color: #FF5722; }
.job-title { font-size: 18px; font-weight: 800; color: #1a1a1a; }
.job-card:hover .job-title { color: #FF5722; }
.job-meta { display: flex; gap: 18px; color: #6b7280; font-size: 14px; margin: 6px 0 10px; }
.job-meta i { color: #6b7280; margin-right: 6px; }
.job-label { font-weight: 700; color: #6b7280; font-size: 14px; margin-right: 6px; }
.job-desc { color: #4b5560; font-size: 14px; }
.apply-btn { display: inline-flex;     justify-content: center; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px; background: linear-gradient(180deg, #FF5722, #e1512a); color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 8px 24px rgba(234,110,53,0.18); }
.apply-btn i { font-size: 16px; }

/* Vertically center CTA within job card on larger screens */
.jobs-list .apply-btn { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 767.98px) {
  .jobs-list .apply-btn { position: static; transform: none; margin-top: 0px; }
  .job-card { padding-right: 24px; }
}

/* Careers CV section */
.cv-section { padding: 80px 0; background: #fff; }
/* .cv-left .section-title { color: #fff; } */
/* .cv-left .section-description { color: #c9d1db; } */
.cv-steps { margin-top: 16px; color: #000; }
.cv-step { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cv-badge { width: 28px; height: 28px; border-radius: 50%; background: #FF5722; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.cv-card { background: #2b323d; border-radius: 16px; padding: 18px; box-shadow: 0 2px 24px rgba(0,0,0,0.24); border: 1px solid rgba(255,255,255,0.06); }
.cv-form-title { color: #fff; font-weight: 800; margin-bottom: 10px; }
.cv-form .form-control, .cv-form .form-select { background: #343b47; border: 1px solid #424b59; color: #e7edf7; border-radius: 10px; box-shadow: none; transition: border-color .2s ease, box-shadow .2s ease; }
.cv-form .form-control::placeholder { color: #9aa3b2; }
.cv-form .form-select { color: #cfd6e3; }
.cv-form .form-control:hover, .cv-form .form-select:hover { border-color: #586379; }
.cv-form .form-control:focus, .cv-form .form-select:focus { border-color: #FF845F; box-shadow: 0 0 0 3px rgba(255,87,34,0.25); }
.cv-upload { background: #343b47; border: 1.5px dashed #586379; color: #cfd6e3; border-radius: 12px; padding: 16px; text-align: center; transition: border-color .2s ease, background .2s ease; }
.cv-upload i { font-size: 20px; color: #cfd6e3; margin-right: 6px; }
.cv-upload:hover { border-color: #FF845F; background: #3a4250; }






@media (max-width: 767px) {


  .banner-content {
    padding-top: 60px;
  }

.about-overview .boxed-content {
    padding: 0;
}


.milestone-line, .milestone-dot {
    display: none;
    }

    .service-row .col-content {
    padding: 0 20px;
    }


    .projects-stat-box {
    text-align: center;
}



.jobs-list .apply-btn i {

    display: none;
}

.jobs-list .apply-btn {
    gap: 0px;
        font-size: 12px;
        padding: 6px !important;
    border-radius: 12px;
    }

}


.cta-contact-info-card .contact-phone, .cta-contact-info-card .contact-email {
      color: #fff;
}



