:root {
  --blue: #1e40af;
  --blue-mid: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-light: #1a5fc1;
  --blue-accent: #1a5fc1;
  --nav-active: #1a4ebb;
  --about-label: #1a4ebb;
  --founder-name: #1a4dba;
  --industry-label: #194dba;
  --founder-title: #333;
  --vision-label: #1a4ebb;
  --black: #111111;
  --why-black: #000;
  --header-menu: #111111;
  --vision-desc: #666666;
  --white: #fff;
  --off-white: #f8fafc;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-light: #575757;
  --border: #e2e8f0;
  --header-h: 70px;
  --trans: 0.3s ease;
  --faqbg: #F6F6F6;
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --faq-text: #000;
  --normalAbout: #F3F8FF;
  --chooseText: #666;
  --swiper-bullet-border: transparent;
  --visionAbout: #fff;
  --normalIndustry: brightness(100%);
  --toggleThemeBg: #F9F9F9;
  --toggle-border: #E5E5E5;
  --toggle-moon: brightness();
  --faq-testi-bg: #fff;
  --about-line: brightness();
  --scroll-down: brightness(100%) invert(0);
  --scroll-text: #111111;
}

[data-theme="dark"] {
  --scroll-text: #ffffff;
  --scroll-down: brightness(100%) invert(1);
  --about-line: brightness(0) invert(1);
  --toggle-moon: brightness(0) invert(1);
  --swiper-bullet-border: #fff;
  --nav-active: #fff;
  --header-menu: #dfdfdf;
  --founder-title: #fff;
  --vision-label: #2378cd;
  --vision-desc: #ffffff;
  --about-label: #407dff;
  --founder-name: #407dff;
  --industry-label: #177cae;
  --blue-light: #177cae;
  --why-black: #fff;
  --white: #000;
  --off-white: #1e293b;
  --gray-50: #1e293b;
  --gray-100: #334155;
  --gray-200: #475569;
  --gray-400: #94a3b8;
  --gray-600: #94a3b8;
  --gray-700: #cbd5e1;
  --gray-800: #e2e8f0;
  --gray-900: #f8fafc;
  --text: #f1f5f9;
  --text-light: #fff;
  --border: #334155;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --faqbg: #FFFFFF14;
  --faq-text: #fff;
  --normalAbout: linear-gradient(179.99deg, #111111 -20.88%, #003291 187.68%);
  --chooseText: #fff;
  --visionAbout: linear-gradient(180.01deg, #111111 -20.89%, #003291 99.99%);
  --normalIndustry: brightness(100%) invert(1);
  --toggleThemeBg: #F9F9F92E;
  --toggle-border: #FFFFFF9C;
  --faq-testi-bg: linear-gradient(179.99deg, #111111 -15.99%, #003291 111.16%);
}

/* ---------- Reset & Base ---------- */

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: inter-regular sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input,
textarea {
  font-family: var(--font);
}

.container {
  width: 85%;
  margin: 0 auto;
}

.section-pad {
  padding: 5% 0;
}

.vision-main-swiper .swiper-slide {
  height: 100vh !important;
}

.section-label {
  font-size: var(--fs20);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.founder-name {
  font-size: var(--fs26);
  font-weight: 400;
  color: var(--founder-name);
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-size: var(--fs40);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  color: var(--faq-text);
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: inter-medium sans-serif;
  letter-spacing: 0.5px;
  transition: all var(--trans);
  cursor: pointer;
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--white);
  border: 2px solid var(--blue-accent);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-accent);
}

.mt-6 {
  margin-top: 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.main-header {
  position: fixed;
  height: 80px;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  width: 100%;
  transition: 0.3s ease;
}

.logo-header-text {
  font-size: 7px;
  top: 62%;
  left: 50%;
  color: #000;

}

.main-header,
.vision-subheader {
  transition: 0.3s ease;
}

.main-header.nav--hidden,
.vision-subheader.nav--hidden,
.vision-mobile-subheader.nav--hidden {
  transform: translateY(-100%);
  transition: 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
  z-index: 998;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inter-bold sans-serif;
  font-size: var(--fs22);
  font-weight: 800;
  color: var(--blue-accent);
  white-space: nowrap;
  width: 9%;
  overflow-y: hidden;
}

.logo-icon {
  font-size: var(--fs26);
  color: var(--blue-accent);
  width: 90%;
  height: auto;
}

.logo-footer .logo-text {
  color: var(--white);
}

.logo-footer .logo-icon {
  color: var(--white);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2%;
  width: 100%;
  justify-content: flex-end;
  margin-right: 2%;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: var(--fs20);
  font-weight: 400;
  font-family: inter-regular sans-serif;
  color: var(--header-menu);
  border-radius: 4px;
  transition: all var(--trans);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 50%;
  height: 2px;
  background: var(--nav-active);
  transform: scaleX(0);
  transition: transform var(--trans);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--nav-active);
}

.nav-link.active {
  color: var(--nav-active);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Theme toggle */
.theme-toggle {
  cursor: pointer;
  width: 85px;
  height: 36px;
}

.theme-toggle input {
  display: none;
}

.toggle-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: var(--toggleThemeBg);
  border-radius: 50px;
  padding: 4px 8px;
  transition: background var(--trans);
  border: 0.5px solid var(--toggle-border);
  position: relative;
  height: 100%;
}

.toggle-thumb {
  width: 31px;
  height: 31px;
  display: inline-block;
  background: var(--blue-accent);
  border-radius: 50%;
  transition: all var(--trans);
  position: absolute;
}

.default-toggle {
  transform: translateX(-6px);
}

.toggler-move {
  transform: translateX(41px);
}

.icon-sun,
.icon-moon {

  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
}

.icon-moon {
  filter: var(--toggle-moon);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  transform: translateX(-120%);
  transition: all 0.3s ease;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  position: absolute;
  top: 80px;
  z-index: 993;
  left: 0;
  height: 100vh;
}

.mobile-nav.open {
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 3%;
}

.mobile-nav .nav-link {
  padding: 12px 0px;
  font-size: 15px;
  border-radius: 0;
  width: fit-content;
}

.mobile-nav .nav-link::after {
  display: block;
  left: 0;
}

.mobile-nav .nav-link.active {
  color: var(--nav-active);
  font-weight: 600;
}

.mobile-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   BANNER
   ============================================================ */
.banner-section {
  position: relative;
  height: calc(100vh - 80px);
  /* min-height: 600px; */
  overflow: hidden;
  margin-top: 80px;
}

.banner-swiper {
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 85%)
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 6%;
  padding-top: var(--header-h);
}

.slide-content * {
  width: 40%;
}

.slide-tag {
  font-size: 12px;
  font-weight: 700;
  font-family: inter-semi-bold sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}

.swiper-slide-active .slide-tag {
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.slide-content h1 {
  font-size: var(--fs68);
  font-family: inter-regular sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: none;
  width: 100%;
}

.swiper-slide-active .slide-content h1 {
  animation: fadeUp 0.7s ease 0.4s forwards;
  font-size: var(--fs55);
}

.slide-content h1 span {
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
}

.slide-desc {
  font-size: var(--fs18);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 65px;
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}

.swiper-slide-active .slide-desc {
  animation: fadeUp 0.7s ease 0.6s forwards;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}

.swiper-slide-active .slide-btns {
  animation: fadeUp 0.7s ease 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner pagination */
.banner-pagination {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: start;
  gap: 10%;
  padding: 0 24px;
  width: 88%;
  margin: 0 auto;
}

.pag-item {
  height: 2px;
  gap: 10px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--trans);
  width: 20%;
  background-color: #ffffff25;
}

.pag-item.active {
  opacity: 1;
}

.pag-num {
  font-size: 12px;
  font-weight: 700;
  font-family: inter-semi-bold sans-serif;
  color: var(--white);
  letter-spacing: 1px;
}

.pag-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.pag-bar-wrap+p {
  font-size: var(--fs20);
  color: #ffffff;
  margin-top: 5%;
}

.pag-bar {
  display: block;
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 2px;
  transition: none;
}

.pag-item.active .pag-bar {
  animation: barFill 5s linear forwards;
}

@keyframes barFill {
  to {
    width: 100%;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--normalAbout);
  padding-top: 5%;
  scroll-snap-align: start;
}

.about-section .container {
  width: 92%;
  margin-left: 7%;
}

.about-section .section-label {
  color: var(--about-label);
}

.about-section .section-title {
  font-size: var(--fs42);
}

.about-grid {
  display: grid;
  grid-template-columns: 62% 30%;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}


.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
  font-weight: 400;
  font-family: inter-regular sans-serif;
}

.about-line {
  width: 93.5%;
  filter: var(--about-line);
}

.about-line+a {
  padding: 2.5% 0 4.5% 0;
}

.about-text .about-last-para {
  margin-bottom: 3%;
}

.about-lead {
  font-weight: 400;
  font-family: inter-regular sans-serif;
  color: var(--founder-title) !important;
  font-size: var(--fs16);
}

.about-image {
  height: 100%;
  position: relative;
}

.about-img-wrap {
  height: 100%;
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  right: 0;
  width: 90%;
}

.about-img-wrap img {
  border-radius: 8px;
  width: 100%;
  object-fit: unset;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--blue-accent);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-cond);
  font-size: var(--fs32);
  font-weight: 800;
  font-family: inter-bold sans-serif;
  line-height: 1;
}

.badge-txt {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-connect-link {
  color: var(--vision-desc);
  width: fit-content;
}

.about-connect-link img {
  width: 50px;
}

/* ============================================================
   VISION
   ============================================================ */
.vision-main {
  width: 100%;
  position: sticky;
  top: 0px;
  z-index: 10;
  background: var(--blue-accent);
}

/* .vision-section {
  background: var(--visionAbout);
} */

.sticky-wrapper {
  background: var(--visionAbout);
}

.vision-section .main-swiper {
  background: var(--visionAbout);
}

.vision-section .swiper-wrapper {
  align-items: center;
}

.vision-thumb-swiper {
  width: 50%;
}

.vision-thumb-swiper .swiper-wrapper {
  justify-content: center !important;
  height: 80px;
}

.vision-thumb-swiper .swiper-wrapper .swiper-slide-thumb-active {
  color: var(--white);
  background-color: #31b0e644;
}

.vision-thumb-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.vision-tab-button {
  font-size: var(--fs20);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: all var(--trans);
  letter-spacing: 0.5px;
  display: flex;
  justify-self: center;
  align-items: center;
}

.vision-section .vision-pane h2 {
  font-size: var(--fs44);
  font-family: inter-bold sans-serif;
  color: var(--vision-label);
  font-weight: 700;
}

.vision-subheader {
  position: sticky;
  top: 80px;
  z-index: 500 !important;
}

.vision-subheader.below-main {
  top: var(--header-h);
}

.vision-tabs {
  width: 70%;
}

.vtab {
  padding: 2.5% 10%;
  font-size: var(--fs20);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: all var(--trans);
  letter-spacing: 0.5px;
}

.vtab:hover {
  color: var(--white);
}

.vtab.active {
  color: var(--white);
  background-color: #31b0e644;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3%;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}

.vision-pane {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.commitment-section {
  display: none;
  width: 100%;
  margin-top: 32px;
}

.commitment-section.active {
  display: block;
}

.vision-pane p {
  color: var(--vision-desc);
  margin-bottom: 16px;
  font-size: 18px;
  width: 50%;
  font-weight: 400;
}

.vision-card-texts {
  margin-bottom: 2%;
}

.commitment-headline {
  font-size: var(--fs18);
  font-weight: 400;
  font-family: inter-regular sans-serif;
  margin-bottom: 24px;
  color: var(--chooseText);
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.commitment-items {
  display: flex;
  gap: 4%;
  width: 30%;
  margin: 1% auto;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.commitment-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitment-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
}

.vision-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #fff;
  border-radius: 50px;
}

.vision-image img {
  transition: opacity 0.4s ease;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section-parent {
  /* background: var(--visionAbout); */
  margin-top: -10%;
}

.stats-section {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

.stats-bg {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(175.81deg, #15a1a5 -26.26%, #194dba 55.99%);
  border-radius: 50px;
}

.stats-bg img {
  object-fit: unset;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.1;
}

.stats-inner {
  position: relative;
}

.stats-headline h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2%;
  margin-top: 2%;
}

.stat-card {
  text-align: center;
  color: #fff;
  padding: 24px 16px 24px 0;
  gap: 5%;
  transition: transform var(--trans);
}

.right-time-texts {
  text-align: left;
}

.clients-texts {
  width: 95px;
}

.stat-card p {
  text-align: left;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card i {
  font-size: 28px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid .stat-card:nth-child(2) {
  position: relative;
}

.stats-grid .stat-card:nth-child(2)::after {
  position: absolute;
  content: url("../images/line/line.png");
  height: 100%;
  width: 1px;
  right: 20%;
}

.stats-grid .stat-card:nth-child(2)::before {
  position: absolute;
  content: url("../images/line/line.png");
  height: 100%;
  width: 1px;
  left: -30%;
}

.stats-grid .stat-card:nth-child(3) {
  position: relative;
}

.stats-grid .stat-card:nth-child(3)::after {
  position: absolute;
  content: url("../images/line/line.png");
  height: 100%;
  width: 1px;
  right: 17%;
}

.stat-val {
  font-family: inter-bold sans-serif;
  font-size: var(--fs45);
  font-weight: 700;

  margin-bottom: 8px;
}

.stat-card p {
  font-size: var(--fs22);
  font-weight: 400;
  font-family: inter-regular sans-serif;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 32px;
}

.why-image {
  border-radius: 8px;
  overflow: hidden;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: var(--fs65);
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  transform: translate(35%, -30%);
}

.why-num img {
  width: 110px;
  height: 110px;
}

.why-item h3 {
  font-size: var(--fs39);
  font-weight: 700;
  font-family: inter-bold sans-serif;
  margin-bottom: 1%;

  color: var(--why-black);
}

.why-item p {
  font-size: var(--fs18);
  line-height: 30px;
  padding-left: 3%;
  color: var(--chooseText);
  width: 81%;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background-image: url("../images/services/our-services-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.services-section .section-title {
  color: #fff;
}

.services-section .section-label {
  font-weight: 700;
  font-family: inter-bold sans-serif;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: 48% 46%;
  gap: 2%;
  margin-top: 3%;
  align-items: start;
  justify-content: space-between;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4px;

  overflow-y: auto;
}

.services-list::-webkit-scrollbar {
  width: 6px;
}

.services-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.services-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.services-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.svc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.4% 3%;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  font-family: inter-medium sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--trans);
  border-radius: 22px;
}

.svc-item>p {
  font-weight: 400;
  font-family: inter-regular sans-serif;
  font-size: var(--fs24);
  color: #ffffff;
}

.svc-item.active {
  background: #fff;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.5;
}

.svc-item.active .svc-dot {
  opacity: 1;
}

.svc-item.active>p {
  color: var(--black);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
}

.main-service-icon {
  display: block;
}

.dummy-service-logo {
  display: none;
}

.svc-item.active .main-service-icon {
  display: none;
}

.svc-item.active .dummy-service-logo {
  display: block;
}

.svc-item i {
  margin-left: auto;
  opacity: 0;
  transition: opacity var(--trans);
}

.svc-item.active i {
  opacity: 1;
}

.svc-visual {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  height: 80%;
  margin: auto;
  border-radius: 50px;
  position: relative;
}

#svc-img {
  transition: opacity 0.4s ease;
}

#svc-text.svc-points {
  list-style: none;
  padding: 20px 16px;
  margin: 0;
  text-align: left;
  transition: opacity 0.35s ease;
  background: var(--bg-light);
  position: absolute;
  bottom: 0;
  /* left: 5%; */
  width: 100%;
  z-index: 11;
  bottom: 5%;
}

#svc-text.svc-points li {
  font-size: var(--fs20);
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-weight: 500;
  font-family: inter-medium sans-serif;
}

#svc-text.svc-points li:last-child {
  margin-bottom: 0;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.industries-courosal {
  position: relative;
  width: 85%;
  height: clamp(600px, 75vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 140px;
}

.track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Slide ── */
.slide {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.65s cubic-bezier(0.77, 0, 0.175, 1),
    width 0.65s cubic-bezier(0.77, 0, 0.175, 1),
    height 0.65s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s ease,
    filter 0.5s ease;
  user-select: none;
  background: #0d1520;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.6s ease;
}

.slide:hover img {
  transform: scale(1.03);
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active .overlay {
  opacity: 1;
}

.slide .info {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 26px 32px;
  transform: translateY(8px);
  opacity: 0;
  transition:
    opacity 0.45s ease 0.15s,
    transform 0.45s ease 0.15s;
}

.slide.active .info {
  opacity: 1;
  transform: translateY(0);
}

.slide .info h2 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.slide .info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
  font-weight: 300;
  max-width: 380px;
}

/* Industries Text Display Below Carousel */
.industries-text-display {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  text-align: center;
  z-index: 50;
  padding: 24px;
}

.industries-text-display h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.industries-text-display p {
  font-size: 16px;
  color: var(--vision-desc);
  line-height: 1.6;
  width: 90%;
  margin: 0 auto;
  max-width: 700px;
}

/* ── Arrows ── */
.arrow {
  filter: var(--normalIndustry);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    opacity 0.25s;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.16);
}

.arrow.prev {
  rotate: 180deg;
}

.arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.testimonial-navigators {
  bottom: 18%;
  padding: 0 5%;
  z-index: 111;
  width: 60%;

}

.testimonials-section .swiper-wrapper {
  align-items: stretch;
}

.testimonials-section .swiper-slide {
  height: auto;
  display: flex;
}

/* ── Pagination ── */
.pagination {
  display: flex;
  gap: 6px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;

  border: 0.5px solid #b9b9b9;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot:hover {
  background: var(--blue-light);
  transform: scale(1.1);
}

.dot.active {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.projects-section {
  background: linear-gradient(175.75deg, #15A1A5 -17.6%, #194DBA 95.67%);

}

.projects-section.section-pad {
  padding-bottom: 0;
}

.projects-section .section-title {
  font-size: var(--fs48);
  font-family: inter-semi-bold sans-serif;
  font-weight: 600;
  color: #fff;
}

.projects-section .section-label {
  color: #ffffff;
  font-size: var(--fs20);
  font-family: inter-bold sans-serif;
  font-weight: 700;
}

.proj-header-right {
  margin-bottom: 4.65%;
}

.proj-header-right p {
  font-size: var(--fs18);
  font-weight: 400;
  font-family: inter-regular sans-serif;
  color: #ffffff;
  line-height: var(--fs29);
}

.core-program-section {
  background: #2A82B3;
  padding: 2% 0;
  width: 100%;
  padding: 2% 4%;
  margin-bottom: -3%;
}

.program-containers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15%;
}

.program-containers>img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.program-header>p {
  font-weight: 500;
  font-family: inter-medium sans-serif;
  font-size: var(--fs35);
  color: #fff;
  white-space: nowrap;
  margin: auto;
  padding-right: 10%;
}

.our-projects-x-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.program-containers>img+p {
  text-align: center;
  font-weight: 500;
  font-family: inter-medium sans-serif;
  font-size: var(--fs24);
  color: #fff;
  white-space: nowrap;
  padding-top: 20px;
}

.program-header {
  width: 18%;
  display: flex;
  border-right: 1px solid #FFFFFF26;
}

.proj-header {
  gap: 3%;
}

.proj-header-left {
  width: 80%;
  margin-bottom: auto;
  text-align: center;
}

.proj-header-right {
  width: 80%;
  text-align: center;
}

.proj-grid {
  width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  transform: translateY(25%);
}

.proj-card {
  position: relative;
  overflow: hidden;
  margin: 0px;
  cursor: pointer;
}

.proj-card:nth-child(2),
.proj-card:nth-child(4) {
  transform: translateY(20%) !important;
}

.proj-card img {
  transition: transform 0.5s ease;
}

.proj-card:hover img {
  transform: scale(1.08);
}

.proj-base {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  padding: 40px 16px 16px;
}

.proj-base h4 {
  font-size: var(--fs22);
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  color: #ffffff;
  line-height: 1.2;
}

.proj-base h4 em {
  font-style: normal;
  opacity: 0.75;
}

.proj-hover {
  position: absolute;
  inset: 0;

  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.proj-card:hover .proj-hover {
  opacity: 1;
  transform: translateY(0);
}

.proj-card:hover .proj-base {
  opacity: 0;
}

.proj-hover h4 {
  font-family: var(--font-cond);
  font-size: var(--fs20);
  font-weight: 600;
  color: #ffffff;
  font-family: inter-semi-bold sans-serif;
  margin-bottom: 12px;
  line-height: 1.2;
}

.proj-hover p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.faq-testimonials-contact-common-parent {
  background: var(--faq-testi-bg);
}

.testimonials-section {
  padding: 23% 0 3% 0;
}

.testimonials-section .section-title {
  font-size: var(--fs48);
  color: var(--why-black);
}

.testimonials-swiper {
  margin-top: 40px;
  padding-bottom: 50px !important;
}

.testi-card {
  max-width: 69%;
  margin: 0 auto;
  text-align: center;
  padding: 4% 4% 3%;
  background-color: #B5D2FB;
  margin-top: 5%;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-q {
  font-size: var(--fs36);
  color: var(--blue-light);
  margin-bottom: 20px;
  opacity: 0.3;
}

.testi-card>img {
  position: absolute;
  right: 10%;
  top: -15%;
  width: 110px;
  height: 110px;
  object-fit: unset;
}

.testi-card p {
  font-size: var(--fs20);
  line-height: 1.8;
  margin-bottom: 28px;
  color: #333333;
  width: 85%;
  text-align: left;
}

.testi-card b {
  color: #000;
  font-size: var(--fs28);
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}

.testi-author p {
  font-weight: 400;
  font-size: var(--fs20);
  font-family: inter-regular sans-serif;
  margin-bottom: 0;
}

.testi-author p+span {
  font-weight: 400;
  font-size: var(--fs18);
  font-family: inter-regular sans-serif;
}

.testi-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-author div {
  text-align: left;
  width: 100%;
}

.testi-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: inter-semi-bold sans-serif;
  color: var(--text);
}

.testi-author span {
  font-size: 13px;
  color: var(--text-light);
}

.testi-pag {
  bottom: 0 !important;
}

.testi-pag .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-200);
  opacity: 1;
}

.testi-pag .swiper-pagination-bullet-active {
  background: var(--blue-accent);
  border-radius: 5px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section .section-title {
  font-size: var(--fs48);
  color: var(--why-black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 74%;
  gap: 4%;
  align-items: start;
  justify-content: center;
}

.faq-left .section-label {
  font-size: var(--fs20);
  font-weight: 700;
  font-family: inter-bold sans-serif;
  color: #1a5fc1;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  margin-bottom: 3%;
  border-radius: 20px;
  padding: 2% 3%;
  background-color: var(--faqbg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-q {
  width: 100%;
  /* padding-bottom: 2%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: var(--fs23);
  font-family: inter-regular sans-serif;
  color: var(--why-black);
  text-align: left;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.faq-up-arrow {
  display: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-down-arrow {
  display: block;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: var(--about-line);
}

.faq-q i {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--blue-accent);
  font-size: 13px;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-item.open .faq-down-arrow {
  display: none;
  opacity: 0;
}

.faq-item.open .faq-up-arrow {
  display: block;
  opacity: 1;
}

.faq-item.open {
  background-color: #194dba;
}

.faq-item.open .faq-q {
  color: #ffffff;
  font-family: inter-medium sans-serif;
  font-weight: 500;
}

.faq-item.open .faq-a p {
  color: #ffffff;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0;
}

.faq-a>* {
  overflow: hidden;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  width: 86%;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;

  grid-template-columns: 58% 40%;
  gap: 1%;
  align-items: stretch;
}

.contact-left {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.contact-bg-img {
  width: 100%;
  height: auto;
}

.contact-bg-img {
  position: absolute;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  align-items: center;
}

.contact-info img {
  width: 8%;
}

.contact-info span {
  font-weight: 400;
  font-family: inter-regular sans-serif;
  font-size: var(--fs18);
}

.contact-right {
  padding: 8%;
  border-radius: 10px;
  background-color: #edf4ff;
}

.contact-right .section-label {
  font-size: var(--fs32);
  color: #111111;
}

.contact-right .section-label+p {
  color: #666;
  font-weight: 400;
  font-size: var(--fs18);
  width: 90%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-captcha-container {
  display: flex;
  align-items: center;
  gap: 3%;
  user-select: none;
}

.form-captcha-container+button {
  justify-content: center;
  font-weight: 600;
  font-family: inter-semi-bold sans-serif;
  font-size: var(--fs20);
  padding: 3% 0;
  margin-top: 10%;
  color: #fff;
}

.captcha-generator {
  width: 35%;
  height: 60px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #e2e2e2;
  font-size: var(--fs24);
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #e2e2e2;
  font-size: var(--fs16);
  font-family: inter-regular sans-serif;
  font-weight: 400;
  color: #333333;

  transition:
    border-color var(--trans),
    box-shadow var(--trans);
  outline: none;
  margin-bottom: 3%;
}

.contact-form textarea {
  resize: vertical;
}

.captcha-input {
  height: 60px;
  background-color: #e7edf7 !important;
  font-size: 12px;
  border-radius: 10px;
  border: none !important;
  text-align: center;
}

.contact-form .error {
  color: red;
  font-size: 13px;
  margin-top: 4px;
  position: absolute;
  bottom: -8px;
}

#captchaError {
  bottom: -18px;
}

.refresh-btn {
  bottom: 15%;
  right: 5%;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-bg-image {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;

  padding: 64px 24px 48px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-icon {
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.f-line {
  height: 1px;
}


.contact-type {
  width: fit-content;
  color: #fff;
  font-size: var(--fs18);
}

.contact-type img {
  width: 38px;
  height: 38px;
}

.contact-section.section-pad {
  padding-bottom: 2%;
}

.contact-parent-container {
  margin-top: 3%;
}

.social-icons {
  display: flex;
  gap: 1%;
  justify-content: center;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all var(--trans);
}

.social-icons a:hover {
  background: var(--blue-accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-brand {
  width: 30%;
  margin: 0 auto;
}

.footer-bottom {
  padding: 1% 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  gap: 12px;

  background: #fff;
}

.footer-bottom p {
  font-size: var(--fs16);
  font-weight: 400;
  color: #000;
}

/* SVG Path Animations */
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

#my-unique-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#my-unique-path.animate {
  animation: drawPath 2.5s ease-in-out forwards;
}

.scroll-to-top {
  top: -4%;
  right: 5%;
  animation: scroll-footerarrow 2s ease-in-out infinite;
}



@keyframes scroll-footerarrow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: visible;
}

.loader-wrapper img {
  width: 220px;
  height: 220px;
  object-fit: contain;

}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}



/* Dark theme loader */
[data-theme="dark"] .loader-wrapper {
  background: var(--white);
}

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.vision-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

/* TOP TABS */
.left-container {
  width: 100%;
  position: sticky;
  top: 80px;
  z-index: 10;
  background: var(--blue-accent);
}

/* CONTENT AREA */
.right-container {
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  position: relative;
}

.commitment-bottom-texts-container {
  margin: 3% 0 5% 0;
}

.commitment-description {
  width: 100% !important;
  text-align: center;
}

.sub-cont {
  width: 30%;
}

.sub-cont img {
  width: 50px;
  height: 50px;
}

.commitment-description+div,
.sub-points-container {
  width: 55%;
  margin: 0 auto;
}

.sub-cont>p {
  width: 100% !important;
  margin-bottom: 0 !important;
}

.right-content {
  width: 100%;
}

.right-element {
  width: 75%;
  margin: 0 auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 1%;
  color: white;
  font-weight: bold;
  max-width: 1000px;
}

.vision-card-image {
  width: 100%;
  height: auto;
}

.vision-card-image img {
  width: 100%;
  height: auto;
}

.vision-content-main {
  width: 100%;
  height: 85vh;
}

.contact-type span {
  font-size: 18px;
}

.faq-left {
  text-align: center;
}

/* --- Swiper Section --- */
.swiper-section {
  height: 500vh;
  width: 100%;
  position: relative;
}

/* Sticky wrapper under main header */
.sticky-wrapper {
  position: sticky;
  top: 80px;
  height: calc(108vh - 80px);
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 500;
}

/* --- Thumbs (top tabs) --- */
.thumb-swiper {
  height: 80px;
  width: 100%;
  background: var(--blue-accent);
  z-index: 1;
}

.thumb-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  transition: 0.3s;
  font-weight: bold;
  width: 20% !important;
  font-size: 20px;
}

.thumb-swiper .swiper-slide-thumb-active {
  color: #fff;
  background-color: #31b0e644;
}

.thumb-swiper .swiper-slide-thumb-active .swiper-slide {
  color: #fff;
}

/* --- Main Swiper --- */
.main-swiper {
  flex: 1;
  width: 100%;
}

.main-swiper .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
}

.scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 40px 20px;
  overflow-x: hidden;
}

.headline {
  text-align: center;
}

.headline h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

.headline p {
  color: #999;
  font-size: 0.8rem;
  margin-top: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── STACK ─── */
.stack-wrapper {
  position: relative;
  width: 300px;
  height: 460px;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.card:active {
  cursor: grabbing;
}

.card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 30%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.8) 100%);
}

.card-counter {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  z-index: 2;
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 24px 30px;
  color: #fff;
  z-index: 2;
}

.card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  margin-bottom: 12px;
}

.card-title {
  font-family: inter-semi-bold sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 9px;
}

.card-desc {
  font-size: 0.76rem;
  line-height: 1.55;

  font-weight: 300;
}

/* ─── CONTROLS ─── */
.controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nav-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: transparent;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.25s ease;
  outline: none;
}

.arrow-btn:hover {
  background: var(--blue-accent);
  color: #f0ece4;
  border-color: #1a1a2e;
  transform: scale(1.05);
}

#svc-text.svc-points {
  opacity: 1 !important;
}

.desktop-vision {
  width: 100%;
  padding-top: 7%;
  padding-bottom: 20%;
  overflow-y: hidden;

}

.vision-section-wrapper .container {
  width: 87%;

}

.vision-section-wrapper .section-title {
  margin-bottom: 3%;
}

.vision-bg-gradient {
  background: linear-gradient(360deg, #194DBA -0.09%, #168EAA 99.09%);
  opacity: 20%;
  width: 100%;
  bottom: 0%;
  height: 100%;
  z-index: 0;
}

.vision-mission-parentwrapper {
  right: 0;
  bottom: 0;
  height: 100%;
}

.desktop-vision .right-element {
  align-self: start;
}

.desktop-logo {
  gap: 10px;
  width: 30%;
}

.desktop-logo img {
  width: 45px;
  height: 45px;
}

.desktop-logo>p {
  font-size: var(--fs17) !important;
}

.vision-cars-heading {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 3;
  cursor: pointer;
  overflow: hidden;
  padding: 5% 10%;
}

.vision-cars-heading h2 {
  font-size: var(--fs26);
  color: #1D1D1D;
}

.vision-texts {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 4;
  padding: 5%;
  padding-bottom: 7%;
}

.vision-texts h2 {
  font-size: var(--fs30);
  color: #1A4EBB;
}

.vision-texts p {
  color: #666;
  line-height: 30px;
  font-size: var(--fs21);
}

.vision-texts li {
  color: #333;
}

.desktop-vision-swiper-slide {
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.desktop-vision-swiper-slide:hover .vision-texts {
  transform: translateY(0);
}

.tab {
  overflow: hidden;

  background: linear-gradient(175.81deg, #15A1A5 -26.26%, #194DBA 55.99%);

  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 70px;
  z-index: 501;
}

#vision-mobile-subheader {
  top: 80px;
  z-index: 500;
  transition: top 0.3s ease;
}

#vision-mobile-subheader.below-main {
  top: 0;
}

/* Style the buttons inside the tab */
.tab a {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 17px;
  color: #fff;
  align-content: center;
}

/* Change background color of buttons on hover */

/* Create an active/current tablink class */
/* .tab button.active {
  background-color: #31b0e644;
} */

/* Style the tab content */
.tabcontent {
  /* display: none; */
  padding: 6px 12px 7% 12px;

  border-top: none;
}

.social-media-hover {
  display: none;
}

.vision-mobile-nav-link.active {
  background-color: #31b0e644;
}

.social-icons-container>a:hover .social-media-hover {
  display: block;
}

.social-icons-container>a:hover .social-media-normal {
  display: none;
}

/* .faq-section {
  background: var(--faq-testi-bg);
} */

.why-section {
  /* background: var(--visionAbout); */
  padding-top: 10%;
}

/* .contact-section {
  background: var(--faq-testi-bg);
} */
.vision-stats-parent {
  background: var(--visionAbout);
}


.industries-section {
  overflow-x: hidden;
  background: var(--faq-testi-bg);
}

.industries-section .section-label {
  color: var(--industry-label);
}

.industries-section .section-title {
  font-size: var(--fs47);
}

.mobile-new-project-swiper {
  width: 300px;
  height: 400px;
}

.mobile-new-project-swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.industries-section .swiper-pagination-bullet {
  border: 1px solid var(--swiper-bullet-border) !important;
}

.footer-nav-menu {
  font-size: 18px;
}

.mobile-header-actions {
  display: none;
}

.mobile-about-readmore {
  display: none;
}

.read-more-hide {
  display: inline;
}

.mobile-about-read-more-btn {
  color: var(--text-light);
  font-weight: 500;
  font-size: 18px;
  font-family: inter-medium sans-serif;
}

/* svg #my-unique-path {
  fill: transparent;
  stroke: url(#textGradient);
  stroke-width: 2;

  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;

  animation: drawText 17ms ease-out infinite;
}

@keyframes drawText {
  0% {
    stroke-dashoffset: 2000;
  }

  80% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 2000;
  }
} */

.line-mobile-about {
  height: 1px;
}

/* .swiper-container {
            width: 100%;
            height: auto;
        } */
/* .core-programs-x-slide-section {
  height: 230px;
} */
.core-programs-x-slide-section {
  padding: 2% 0;
}

.our-projects-x-swiper {
  /* height: 75%; */
  margin: auto;
}

.our-projects-x-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .our-projects-x-slide img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
} */

/* .core-programs-x-slide-section {
  background-color: #2A82B4;
} */
/* .our-projects-x-slide-wrapper {
  padding: 2% 0;
} */

.our-projects-x-swiper .swiper-free-mode>.our-projects-x-slide-wrapper {
  transition-timing-function: linear;
  margin: 0 auto;
}

.about-sectiontab-hide-content {
  display: none;
}

.footer-brand .logo {
  width: 100%;
}

.core-programs-x-slide-section-wrapper>* {
  pointer-events: none;
}

@media (max-width: 1700px) {
  .vision-content-main {
    width: 100%;
    height: 80vh;
  }
}

@media (max-width: 1600px) {
  .container {
    width: 90%;
  }

  .banner-pagination {
    width: 90%;
  }

  .right-element {
    height: auto;
  }

  .vision-content-main {
    width: 100%;
    height: 85vh;
  }

  .stats-section {
    width: 95%;
    padding: 3% 0;
    /* background: var(--white); */
  }

  /* .industries-section .slide {
    height: 400px !important;
  }
  .industries-section .slide.active {
    height: 500px !important;
  } */
  /* .industries-courosal {
    height: 65vh;
    padding-bottom: 140px;
  } */
  /* .proj-grid {
    margin-top: 7%;
  } */

  .vision-section .vision-pane h2 {
    font-size: 30px;
  }

  .thumb-swiper .swiper-slide {
    font-size: 16px;
  }

  .thumb-swiper {
    height: 70px;
  }

  .vision-subheader {
    top: 70px;
  }

  .vision-pane p {
    font-size: 16px;
  }

  .vision-card-image {
    margin: 0 auto;
    max-width: 800px;
  }




  .testimonial-navigators {
    bottom: 23%;
  }

  /* Sticky wrapper under main header */
  .sticky-wrapper {

    height: calc(110vh - 80px);

  }

  .contact-type {
    gap: 7px;
  }

  .contact-icons {
    gap: 10px;
  }

  /* .core-programs-x-slide-section {
    height: 170px;
  } */
  .vision-texts p {
    color: #666;
    line-height: 25px;
    font-size: var(--fs21);
  }

  .about-grid {

    grid-template-columns: 62% 35%;

  }

  .logo {

    width: 12%;
  }

}

@media (max-width:1536px) and (max-height: 730px) {
  .sticky-wrapper {
    height: calc(120vh - 80px);
  }


}

@media (max-width: 1440px) {
  .banner-section .slide-content {
    padding-bottom: 11%;
  }


  .slide-desc {
    font-size: 20px;
    margin-bottom: 0;
  }

  .pag-bar-wrap+p {
    font-size: 15px;
  }

  .vision-content-main {
    width: 100%;
    height: 85vh;
  }

  .nav-link {
    font-size: 16px;
  }

  .vision-tab-button {
    font-size: 20px;
  }

  .stats-inner {
    width: 95%;
  }

  /* .industries-section .slide {
    height: 300px !important;
  }
  .industries-section .slide.active {
    height: 400px !important;
  }
  .industries-courosal {
    height: 60vh;
    padding-bottom: 100px;
  } */
  /* .arrow.prev {
    bottom: 23%;
  }
  .arrow.next {
    bottom: 20.7%;
  } */
  .pagination {
    /* transform: translateX(-30%); */
    bottom: 22%;
  }

  .industries-text-display {
    bottom: -12%;
  }

  .industries-section {
    padding-bottom: 10%;
  }

  .proj-header-right p {
    font-size: var(--fs24);
    line-height: 30px;
  }

  /* .proj-header-right {
    margin-bottom: 0%;
  } */

  .vision-pane p {
    font-size: 20px;
  }

  .right-element {
    width: 60%;
  }

  .commitment-description+div,
  .sub-points-container {
    width: 90%;
    margin: 0 auto;
  }

  .stats-grid {
    margin-top: 1%;
  }

  .section-label {
    font-size: 20px;
  }

  .why-num img {
    width: 80px;
    height: 80px;
  }

  .why-item p {
    font-size: 16px;
    padding-left: 5%;
    line-height: 24px;
  }

  .why-num {
    transform: translate(45%, -30%);
  }

  .svc-item>p {
    font-size: 22px;
  }

  .industries-text-display p {
    font-size: 18px;
    width: 85%;
  }

  .projects-section .section-label {
    font-size: 18px;
  }

  .proj-base h4 {
    font-size: 18px;
  }

  .proj-hover h4 {
    font-size: 18px;
  }

  .proj-grid {
    width: 90%;
  }

  .proj-hover p {
    font-size: 16px;
    line-height: 1.3;
  }

  .testi-card p {
    font-size: 18px;
    line-height: 1.4;
  }

  .faq-left .section-label {
    font-size: 18px;
  }

  .faq-q {
    font-size: 20px;
  }

  .faq-a p {
    font-size: 16px;
  }

  .contact-right .section-label {
    font-size: 29px;
    letter-spacing: 0;
  }

  .contact-right .section-label+p {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .captcha-generator {
    font-size: 22px;
  }

  .form-captcha-container+button {
    font-size: 18px;
  }

  .footer-bottom p {
    font-size: 16px;
  }

  #svc-text.svc-points li {
    font-size: 20px;
  }

  #svc-text.svc-points {
    left: 0%;
  }

  .testimonial-navigators {
    bottom: 23%;
    width: 55%;
  }

  .desktop-footer-menu {
    gap: 16px;
  }

  .about-text p {
    line-height: normal;
  }
}

@media (max-width: 1366px) {
  .main-nav {
    width: 80%;
  }

  .banner-section {
    height: calc(100vh);
  }

  .about-text p {
    font-size: 14px;
  }

  .about-line {
    width: 94.5%;
    filter: var(--about-line);
  }

  .sticky-wrapper {

    height: calc(105vh - 80px);

  }

  .stats-section-parent {
    padding-top: 5%;
  }

  .about-grid {
    grid-template-columns: 70% 25%;
  }

  .about-line+a {
    padding: 1% 0 3.5% 0;
  }

  .slide-desc {
    font-size: 18px;
  }

  .container {
    width: 90%;
  }

  .mobile-nav ul li:last-child {
    margin-top: 3%;
  }

  .about-section .container {

    margin-left: 5%;
  }

  .banner-pagination {
    width: 100%;
    padding: 0 70px;
  }

  .slide-desc {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 17px;
  }





  .vision-card-texts {
    margin-bottom: 2%;
  }

  .vision-card-texts {
    margin-bottom: 2%;
  }

  .stats-section {
    /* margin-top: 8%; */
    padding: 2% 0;
  }

  .stats-headline h2 {
    font-size: 25px;
  }

  .industries-section {
    padding-bottom: 8%;
  }

  .industries-text-display {
    bottom: -12%;
  }

  .why-num img {
    width: 80px;
    height: 80px;
  }

  .why-num {
    transform: translate(41%, -29%);
  }

  .pagination {
    bottom: 15%;
  }

  .arrow.next {
    bottom: 13.7%;
  }

  .vision-content-main {
    width: 100%;
    height: 70vh;
  }

  .vision-section .vision-pane h2 {
    font-size: 30px;
  }

  .vision-card-image {
    max-width: 800px;
    margin: 0 auto;
  }

  .right-element {
    width: 60%;
  }

  .vision-pane p {
    font-size: 16px;
  }

  .thumb-swiper .swiper-slide {
    font-size: 16px;
  }

  .testimonial-navigators {
    bottom: 26%;

    width: 53%;
  }

  .footer-top.container {
    width: 95%;
  }

  /* .core-programs-x-slide-section {
    height: 140px;
  } */
  .desktop-vision {

    padding-bottom: 10%;
  }

  .desktop-logo img {
    width: 35px;
    height: 35px;
  }

  .desktop-logo>p {
    font-size: 14px !important;
  }

  .vision-texts ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .vision-texts ul li {
    width: 45%;
    padding-bottom: 5%;
  }

  .vision-texts {

    gap: 10%;
  }
}

@media (max-width: 1366px) and (max-height:600px) {
  .vision-card-image {
    max-width: 550px;
  }

  .vision-card-texts {
    margin-bottom: 0%;
  }

  .vision-pane p {
    margin-bottom: 10px;

  }

  .commitment-bottom-texts-container {
    margin: 1% 0 5% 0;
  }
}

@media (max-width: 1280px) {
  .sticky-wrapper {

    height: calc(104vh - 80px);

  }

  .about-line {
    width: 93.5%;
    filter: var(--about-line);
  }

  .banner-section .slide-content {
    padding-bottom: 10%;
  }

  .testimonial-navigators {
    bottom: 26%;
  }

  .about-grid {
    grid-template-columns: 70% 30%;
  }

  .industries-text-display {
    bottom: -16%;
  }

  .vision-content-main {
    height: 65vh;
  }

  .vision-thumb-swiper {
    width: 75%;
  }

  .main-nav {
    width: 90%;
  }

  .commitment-bottom-texts-container {
    margin: 3% 0 0% 0;
  }

  .tabcontent {
    /* display: none; */
    padding: 25px 12px 0% 12px;
    border-top: none;
  }

  .vision-card-texts {
    margin-bottom: 0%;
  }

  .vision-card-image {
    max-width: 100%;
    margin: 0;
    padding-bottom: 0%;
  }

  .commitment-description+div,
  .sub-points-container {
    width: 100%;
  }

  .industries-courosal {
    height: clamp(500px, 62vh, 900px);
    padding-bottom: 100px;
  }

  .refresh-btn {
    bottom: 5%;
    right: 3%;
    width: 15px;
  }

  .program-containers>img+p {
    font-size: 16px;
    white-space: normal;
  }

  .contact-parent-container ul {
    gap: 15px;
  }

  .contact-type {
    gap: 10px;
  }

  .contact-icons {
    gap: 15px;
  }

  .footer-top {

    padding: 64px 0px 48px;
  }

  .vision-texts {
    gap: 0%;
  }
}

@media (max-width:1200px) {
  .main-nav ul {

    gap: 1%;

  }

  .why-num img {
    width: 60px;
    height: 60px;
  }

  .why-num {
    transform: translate(55%, -29%);
  }

  .testimonial-navigators {
    bottom: 20%;
    width: 60%;
  }

  .industries-text-display {
    bottom: -18%;
  }

  .industries-section {
    padding-bottom: 11%;
  }

  .contact-parent-container ul {
    gap: 10px;
  }

  .footer-nav-menu,
  .contact-type span {
    font-size: 14px;
  }



  .contact-type {
    gap: 5px;
  }

  .contact-icons {
    gap: 12px;
  }

  .contact-type img {
    width: 33px;
    height: 33px;

  }

  .program-header>p {
    margin-left: -15%;
  }

  .vision-texts p {

    line-height: normal;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .scroll-down-arrow {

    width: 8%;
  }

  .scroll-down-arrow img {
    animation: scroll-arrow 2s ease-in-out infinite;
    filter: var(--scroll-down);
    width: 50px;
    margin: 0 auto;
  }

  @keyframes scroll-arrow {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(10px);
    }

    100% {
      transform: translateY(0);
    }
  }

  .scroll-down-arrow p {
    font-size: 16px;
    text-align: center;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 8px;
    color: var(--faq-text);
  }

  .main-header {
    position: fixed;

  }

  .header-inner {
    width: 97%;
  }

  .mobile-linkedin-logo {
    top: 18%;
    right: 5%;
    width: 50px;
    height: 50px;

  }

  .tabcontent {
    padding: 4% 12px 0% 12px;
  }

  .swiper-slide-active .slide-content h1 {
    font-size: 35px;
    text-align: center;
    animation: none;
    opacity: 1;
  }

  .swiper-slide-active .slide-desc {
    animation: none;
    opacity: 1;
  }

  .banner-swiper {
    background: #fff;
  }

  .desktop-banner {
    display: none;
  }

  .banner-section {
    background: var(--normalAbout);
    ;
    height: calc(100vh - 60px);
  }

  .mobile-new-banner {
    display: flex;
    height: 100%;
    padding-bottom: 5%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .about-section {
    background: var(--normalAbout);
  }

  .about-pattern-left {
    left: 0;
    bottom: 0;
    width: 20%;
    height: 100%;
    z-index: 1;
  }

  .profile-img-wrapper {
    z-index: 5;
  }

  .about-section .container {
    background: var(--normalAbout);
  }

  .tab {
    gap: 5%;
  }

  .about-img-wrap {
    position: static;
  }

  .mobile-industry-content img {
    border-radius: 20px;
  }

  .slide-desc {
    margin-bottom: 35px;
    width: 70%;
  }

  .banner-pagination {
    padding: 0 50px;
  }

  .about-section .section-label {
    font-size: 25px;
    color: #FFFFFF80;
  }

  .about-section .section-title {
    font-size: 30px;
  }

  .desktop-about {
    display: none;
  }

  .mobile-about {
    display: block;
  }

  .main-nav {
    width: 85%;
  }

  .nav-link {
    font-size: 14px;
  }

  .main-header .logo {
    width: 15%;
  }

  .slide-desc {
    font-size: 18px;
  }

  .about-section .about-text {
    padding-bottom: 0;
  }

  .about-section .container {
    width: 100%;
    padding-left: 5%;
    margin: 0;
  }

  .about-image {
    /* padding-bottom: 5%; */
  }

  .founder-name {
    font-size: 23px !important;
  }

  .about-lead {
    font-size: 20px !important;
  }

  .about-text p {
    font-size: 18px;
  }

  .about-connect-link {
    font-size: 20px;
  }

  .mobile-about .about-img-wrap img {
    width: auto;
    height: 100%;
  }

  .about-img-wrap {
    height: 100%;
  }

  /* .about-mobile-text-parent-wrapper {
    height: 300px;
    overflow: scroll;
    webkit-scrollbar: none;
  } */



  .about-mobile-text-parent-wrapper {
    height: 300px;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .about-mobile-text-parent-wrapper::-webkit-scrollbar {
    display: none;
  }

  .about-item {
    /* display: none; */
    margin-bottom: 14px;
  }

  .about-item.visible {
    display: block;
  }

  .about-btn-group {
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    justify-content: center;
  }



  .about-mobile-text-parent-wrapper p {
    margin-bottom: 0;
  }

  .about-btn {
    background: none;
    border: none;
    color: #0a66c2;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    font-size: 16px;
  }


  .tab a {
    font-size: 22px;
  }

  .vision-section .vision-pane h2 {
    font-size: 35px;
    margin-bottom: 8px;
  }

  .pag-bar-wrap+p {
    font-size: 18px;
  }

  .stats-section-parent {

    margin-top: 5%;
  }

  .about-grid {
    display: flex;
    /* flex-direction: column-reverse; */
    flex-direction: row-reverse;
    padding-bottom: 0%;
    position: relative;
    margin-top: 5%;
  }

  .about-section .about-text {
    width: 70%;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    /* width: 25%; */
    height: 100%;
  }

  .vision-thumb-swiper {
    width: 80%;
  }

  .vision-pane p {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
    width: 80%;
  }

  .stats-inner {
    padding-top: 3%;
  }

  .stat-val {
    font-size: 30px;
  }

  .stat-card p {
    font-size: 18px;
  }

  .why-section .section-label {
    font-size: 25px;
  }

  .why-section .section-title {
    font-size: 30px;
  }

  .why-num img {
    width: 75px;
    height: 75px;
  }

  .why-num {
    transform: translate(46%, -29%);
  }

  .why-item h3 {
    font-size: 25px;
  }

  .services-section .section-label {
    font-size: 25px;
  }

  .services-section .section-title {
    font-size: 30px;
  }

  .industries-section .section-label {
    font-size: 25px;
  }

  .industries-section .section-title {
    font-size: 30px;
  }

  .projects-section .section-label {
    font-size: 25px;
  }

  .projects-section .section-title {
    font-size: 30px;
  }

  .core-programs-x-slide-section-wrapper {
    flex-direction: column;
  }

  .our-projects-x-swiper {
    width: 100%;
  }

  .testimonials-section .section-label {
    font-size: 25px;
  }

  .testi-card b {
    font-size: 18px;
  }

  .faq-left .section-label {
    font-size: 25px;
  }

  .faq-left .section-title {
    font-size: 30px;
  }

  .contact-right .section-label+p {
    font-size: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 19px;
  }

  .form-captcha-container+button {
    font-size: 20px;
  }

  .footer-bottom p {
    font-size: 18px;
  }

  /* .vision-content-main {
    height: 57vh;
  } */
  .vision-main {
    display: none;
  }

  .vision-content-main {
    display: none;
  }

  .vision-mobile {
    display: block;
  }

  /* Vision Mobile Header & Tabs */
  .vision-mobile-header {
    display: flex;
    gap: 0;
    background: var(--blue-accent);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 80px;
    z-index: 95;
    transition: 0.5s ease;
  }

  .vision-mobile-tab {
    flex: 1;
    padding: 2rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    text-align: center;
  }

  .vision-mobile .right-element {
    margin-bottom: 5%;
  }

  .vision-mobile-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
  }

  .vision-mobile-tab.active {
    color: var(--white);
    border-bottom-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .stat-card {
    width: 30%;
    justify-content: center;
  }

  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-grid .stat-card:nth-child(2)::after {
    right: 6%;
  }

  .stats-grid .stat-card:nth-child(2)::before {
    left: -14%;
  }

  .stats-grid .stat-card:nth-child(3)::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-visual {
    position: relative;
    top: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .industries-section .slide.active {
    height: 300px !important;
  }

  .industries-section .slide {
    height: 222px !important;
  }

  .industries-text-display p {
    font-size: 15px;
    width: 100%;
  }

  .pagination {
    transform: translateX(-16%);
    bottom: 22%;
  }

  /* .arrow.prev {
    bottom: 23.5%;
  } */
  /* .arrow.next {
    bottom: 20.5%;
  } */
  .industries-text-display {
    bottom: -23%;
  }

  .proj-header {
    flex-direction: column;
    /* width: 100%; */
  }

  .proj-header-right {
    width: 100%;
  }

  .proj-header-left {
    width: 100%;
  }

  .proj-grid {
    display: flex;
  }

  .proj-header {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    max-width: 80%;
  }

  .testi-card>img {
    width: 80px;
    height: 80px;
  }

  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .contact-left {
    height: 70vh;
    margin-bottom: 5%;
  }

  .contact-bg-img {
    height: 100%;
  }

  .contact-bg-img img {
    height: auto;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-image {
    max-width: 600px;
  }

  /* .industries-courosal {
    height: 45vh;
  } */
  .faq-left {
    position: static;
  }

  .desktop-services-section {
    display: none;
  }

  .mobile-services-section {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  /* .mobile-services-cards {
    width: 80%;
  }
  .mobile-service-img {
    height: 300px;
  } */
  .mobile-services-cards .section-title {
    padding-top: 2%;
  }

  .mobile-services-cards .section-title+p {
    color: #fff;
    padding-bottom: 5%;
    width: 80%;
    font-size: 23px;
  }

  .proj-header-right p {
    font-size: 16px;
    line-height: 25px;
  }

  .vision-card-texts {
    flex-direction: column;
  }

  .proj-grid {
    display: none;
  }

  .projects-section {
    background-image: none;
    background: linear-gradient(360deg, #194dba -0.09%, #168eaa 99.09%);
    padding-bottom: 2%;
  }

  .about-section .about-text {
    /* height: 410px; */
    overflow: visible;
  }

  .mobile-projects {
    display: block;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 10% 0 20% 0;
  }

  .mobile-project-swiper-paginations {
    width: 100%;
  }

  .mobile-project-swiper-paginations-prev {
    content: url("../images/projects/svg-arrow.svg") !important;
    rotate: 180deg;
    left: 10% !important;
    width: 40px;
    height: 40px;
    filter: brightness(100%) invert(1);

  }

  .mobile-project-swiper-paginations-next {
    content: url("../images/projects/svg-arrow.svg") !important;
    left: 30% !important;
    width: 40px;
    height: 40px;
    filter: brightness(100%) invert(1);
  }

  .mobile-new-project-swiper {
    width: 400px;
    height: 500px;
  }

  .mobile-project-swiper-paginations {
    position: absolute;
    bottom: -18%;
    left: 26%;
  }

  .testimonials-section {
    padding: 5% 0 3% 0;
  }

  .testi-card p {
    font-size: 16px;
  }

  .footer-brand {
    width: 60%;
  }

  .thumb-swiper .swiper-slide {
    width: 30% !important;
  }

  .scene .arrow-btn {
    font-size: 40px;
  }

  .desktop-vision {
    display: none;
  }

  .mobile-vision {
    display: block;
  }

  .mobile-projects {
    overflow-x: hidden;
  }

  .industries-courosal {
    display: none;
  }

  .idustries-mobile {
    display: block;
    height: max-content;
    width: 80%;
    margin: 0 auto;
  }

  .industry-mobile-texts {
    width: 80%;
    margin: 5% auto 0 auto;
    padding-bottom: 15%;
  }

  .industries-section {
    padding-bottom: 0%;
  }

  .industries-section .swiper {
    height: 100%;
  }

  .industries-section .swiper-pagination {
    top: 88% !important;
  }

  .right-element {
    width: 80%;
  }

  .vision-card-texts {
    flex-direction: column;
    gap: 0;
    padding-top: 3%;
  }

  .vision-card-texts h2 {
    font-size: 1.8rem;
  }

  .vision-card-texts p {
    font-size: 20px;
    width: 100%;
    margin-bottom: 0;
  }

  .core-program-section {
    background: transparent;
    flex-wrap: wrap;
    justify-content: center;
  }

  .program-containers {
    width: 100%;
  }

  .program-header>p {
    font-size: 18px;
    padding-top: 2%;
    margin: 0 0 25px 0;
    font-family: inter-italic sans-serif;
    text-align: center;
    width: 100%;
  }

  .program-header>p br {
    display: none;
  }

  .program-header {
    border-right: none;
    width: 100%;
    padding-bottom: 0;
    text-align: center;

  }

  .program-containers>img+p {
    padding-top: 5%;
  }

  .contact-parent-container {
    flex-direction: column;

  }

  .contact-parent-container ul {
    margin-bottom: 2%;
  }

  .desktop-footer-menu {
    display: none;
  }

  .mobile-footer-menu-links {
    display: flex;
  }

  .mobile-hidden-about {
    display: none;
  }

  .about-sectiontab-hide-content-dots {
    display: inline;
  }

  .mobile-about-read-more-btn {
    display: inline;
  }

  .about-sectiontab-hide-content {
    display: none;
  }

  .mobile-about-header {
    background: linear-gradient(175.81deg, #15A1A5 -26.26%, #194DBA 55.99%);
    padding-top: 2%;
    padding-bottom: 9px;
    padding-left: 13px;

  }

  .about-pattern {
    right: 0;
    top: 0;
    bottom: 0;
  }

  .mobile-about-profile {
    background: var(--normalAbout);
  }

  .mobile-about-description {
    padding-top: 3%;
    color: #575757;
    padding-bottom: 6%;
    padding-right: 3%;
  }

  .mobile-about-description p {
    margin-bottom: 2%;
    color: var(--text-light);
  }

  .hidden-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .hidden-content.show {
    display: block;
    max-height: none;
  }

  .read-more-btn {
    background: none;
    color: var(--blue-accent);
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inter-semi-bold sans-serif;
    transition: color 0.3s ease;
    margin-top: 1%;
    display: flex;
    margin-left: auto;
  }

  .mobile-about-wrapper .founder-name+p {
    color: var(--text-light);
  }

  .read-more-btn:hover {
    color: var(--blue-dark);
    text-decoration: underline;
  }

  .about-section .section-title {
    color: #fff;
  }

  .about-lead {
    padding-bottom: 3%;
  }

  .slide-bg {

    /* background-size: cover;
  background-position: center; */

    background-repeat: no-repeat;
    /* background-position: top; */
    /* background-size: 90%; */
    /* transform: scale(1.08);
  transition: transform 7s ease; */
    /* margin-top: 5%; */
  }

  .slidebg1,
  .slidebg2,
  .slidebg4 {
    display: none;
  }

  .mobile-slide-images {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-top: 5%;
  }

  .slide-content {
    height: auto;
  }



  .slide-content h1 {
    color: #111;
  }

  .slide-overlay {

    background: transparent;
  }

  .slide-content h1 {
    color: var(--faq-text);
  }

  .slide-content p {
    color: var(--vision-desc);
  }

  .slide-content-3 h1 {
    font-size: var(--fs68);
    font-family: inter-regular sans-serif;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: none;
    width: 100%;
  }

  .swiper-slide-3 .banner-pagination {
    bottom: 12%;
  }

  .slide-content-3 .slide-desc {
    color: rgba(255, 255, 255, 0.85);
  }

  .swiper-slide-3 .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 85%)
  }

  .pag-item {
    background: #11111120;
  }

  .pag-bar {
    background-color: #111111;
  }

  .banner-section .slide-content {
    padding-bottom: 0%;
    padding-top: 0%;
  }

  .banner-pagination {
    gap: 40px;
    bottom: 9%;
    padding: 0 37px;
  }

  .pag-item {
    width: 80%;
    margin: 0 auto;
  }

  .slide-desc {
    width: 100%;
    text-align: center;
  }

  .pag-bar-wrap+p {
    text-align: center;
    color: #000;
    margin-top: 20px;
  }

  .about-section {
    background: var(--white);
  }

  .right-banner {
    display: none;
  }

  .right-mob-banner {
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20%;
  }

  .banner-section {
    height: 100dvh;
  }

  .mobile-new-banner img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* MAIN SWIPER */
  .munis-mobile-banner-swiper-container {
    width: 100%;
    height: auto !important;
  }

  .munis-mobile-banner-swiper-container .swiper-wrapper {
    height: auto !important;
  }

  .munis-mobile-banner-swiper-slide {
    height: auto !important;
  }

  /* IMAGE WRAPPER */
  .mobile-banner-image-wrapper {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 5% 0 0 0;
    height: 60%;
  }

  .mobile-banner-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }



  /* HEADING */
  .mobile-banner-heading {
    width: 90%;
    margin: 0px auto;
    text-align: center;
    background: #194DBA;
    padding: 6px 0;
    color: #F3F8FF;
  }

  .mobile-banner-heading p {
    font-family: inter-italic sans-serif;

  }

  .about-section {
    padding-top: 0%;
  }

  /* THUMB SWIPER */
  .munis-mobile-banner-thumbswiper {
    width: 60%;
    padding: 5% 0;
    box-sizing: border-box;
  }

  /* THUMB SLIDES */
  .munis-mobile-banner-thumbswiper .swiper-slide {

    border-radius: 4px;
    overflow: hidden;
    transform: scale(0.7);
  }

  .munis-mobile-banner-thumbswiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale();
  }

  /* ACTIVE THUMB */
  .munis-mobile-banner-thumbswiper .swiper-slide-thumb-active {

    transform: scale(0.9);

  }

  .munis-mobile-banner-thumbswiper .swiper-slide-thumb-active img {
    filter: brightness(100%);

  }

  /* OPTIONAL */
  .munis-mobile-banner-swiper-thumbslide {
    border-radius: 5px;
  }

  .thumbs-main-parent {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
  }

  .thumbs-main-parent .swiper-slide div {
    width: 100%;
    height: auto;
  }

  .thumbs-main-parent .swiper-slide div img {
    width: 100%;

  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .banner-section {
    height: auto;
  }
}

@media (max-width: 992px) {
  .program-containers>img {
    width: 40px;
    height: 40px;
  }

  .slide-content * {
    width: 60%;
  }

  .banner-pagination {
    bottom: 12%;
  }

  .hamburger span:nth-child(2) {
    width: 30px;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .main-header {
    width: 100%;
  }

  .mobile-nav {
    transform: translateY(-120%);
    width: 100%;
  }



  .header-inner {
    width: 100%;
    padding: 0 5%;
    background-color: inherit;
    height: 100%;
  }

  .pag-item {
    width: 80%;
    margin: 0 auto;
  }

  .slide-content * {
    width: 80%;
    text-align: center;
  }

  .slide-desc {
    width: 100%;
  }

  .pag-bar-wrap+p {
    text-align: center;
    color: #000;
    margin-top: 20px;
  }

  .commitment-bottom-texts-container {
    margin-bottom: 0;
  }

  .mobile-nav .mobile-contact {
    background-color: #1954B8;
    color: #fff;
    border-radius: 20px;
    width: 115px;
  }

  .mobile-nav .mobile-contact::after {
    background-color: transparent;
  }

  .toggler-move {
    transform: translateX(26px);
  }

  .theme-toggle {
    width: 70px;
  }

  .banner-pagination {
    padding: 0 37px;
  }

  .about-section .section-title {
    font-size: 25px;
  }

  .founder-name {
    font-size: 23px !important;
  }

  .hamburger {
    display: flex;
    gap: 0;
    align-items: flex-end;
  }

  .main-nav {
    display: none;
  }

  .hamburger span {
    display: block;
    width: 20px;
    height: 4px;
    margin: 2px;
  }

  /* .about-section .about-text {
    height: 308px;

  } */

  .mobile-nav.open {
    width: 100%;
    transform: translateY(0%);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 1;

  }

  /* .banner-section .slide-content {
    padding-bottom: 10%;
    padding-top: 3%;
  } */


  .swiper-slide-3 .pag-item {

    background-color: #ffffff25;
  }



  .banner-pagination {
    gap: 40px;
  }

  .slide-content {
    padding-bottom: 15%;
  }

  .about-text p {
    font-size: 16px !important;
    line-height: 1.3;
  }

  .founder-name {
    font-size: 18px !important;
  }

  .about-section .section-title {
    margin-bottom: 8px;
  }

  .about-lead {
    font-size: 18px !important;
  }

  .mobile-about-read-more-btn {
    font-size: 16px;
  }

  .mobile-hidden-about {
    display: inline;
  }

  .tab a {
    font-size: 20px;
  }

  .about-connect-link {
    font-size: 16px;
    margin-top: 20px;
  }

  .stats-inner {
    padding-top: 0;
  }

  .testimonials-section .section-title {
    font-size: 25px;
  }

  .faq-left .section-label {
    font-size: 22px;
  }

  .faq-left .section-title {
    font-size: 25px;
  }

  .contact-right .section-label {
    font-size: 25px;
  }

  .contact-right {
    padding: 6%;
  }

  .footer-brand {
    width: 50%;
  }

  .mobile-services-cards .section-title+p {
    font-size: 18px;
    line-height: 1.4;
  }

  .vision-pane p {
    font-size: 18px;
  }

  .vision-content-main {
    height: 65vh;
  }

  .right-element {
    width: 90%;
  }

  .commitment-description+div,
  .sub-points-container {
    width: 85%;
  }

  .stat-card {
    width: 45%;
    justify-content: center;
  }

  .stats-grid .stat-card:nth-child(2)::before,
  .stats-grid .stat-card:nth-child(2)::after {
    display: none;
  }

  .stats-section {
    padding: 5% 3%;
  }

  .why-section .section-label {
    font-size: 22px;
  }

  .why-section .section-title {
    font-size: 25px;
  }

  .services-section .section-label {
    font-size: 22px;
  }

  .services-section .section-title {
    font-size: 25px;
    margin-top: 2%;
  }

  .industries-section .section-label {
    font-size: 22px;
  }

  .industries-section .section-title {
    font-size: 25px;
  }

  .projects-section .section-label {
    font-size: 22px;
  }

  .projects-section .section-title {
    font-size: 25px;
  }

  .stat-card p {
    font-size: 20px;
  }

  .stat-card {
    justify-content: start;
  }

  .why-item h3 {
    font-size: 25px;
  }

  /* .industries-courosal {
    height: 45vh;
  } */
  .idustries-mobile {

    /* height: 75vh; */

  }

  .industries-text-display p {
    font-size: 18px;
  }

  .industries-text-display h3 {
    font-size: 25px;
  }

  .proj-header-right p {
    font-size: 18px;
  }

  .mobile-services-cards .section-title {
    margin-bottom: 10px;
  }

  .industries-text-display {
    bottom: -25%;
  }

  .industries-text-display p {
    font-size: 16px;
    width: 90%;
  }

  .footer-top {
    padding: 30px 0px 30px;
  }

  .stats-section {
    width: 90%;
  }

  .stats-bg {
    border-radius: 20px;
  }

  .vision-section .vision-pane h2 {
    font-size: 25px;
  }

  .vision-card-texts p {
    font-size: 18px;
    width: 100%;
  }

  .industry-mobile-texts {
    margin-top: 5%;
    padding-bottom: 3%;
  }

  .mobile-industry-content {
    padding-bottom: 12%;
  }



  /* .program-containers {
    width: 30%;
  } */

  .program-header {

    text-align: center;

  }

  .mobile-header-actions {
    display: flex;
    margin-left: auto;
  }

  .about-text p {
    margin-bottom: 5px;
  }

  .about-connect-link {

    margin-top: 15px;
  }

  .footer-bottom {
    padding: 1% 3%;

  }

  .about-section {
    background: var(--white);
  }

  .about-section {
    background: #fff;
  }

  .munis-mobile-banner-thumbswiper {
    margin: 5px auto 0;

  }

}

@media (max-width: 850px) {

  .about-section .about-text {
    width: 68%;
  }

  .slide-desc {
    margin-bottom: 20px;

  }

  .mobile-banner-image-wrapper {

    height: 55%;
  }

  .scroll-down-arrow {

    top: 5%;
  }
}


@media (max-width: 768px) {
  .main-header .logo {
    width: 20%;
  }

  .scroll-down-arrow img {

    width: 40px;
  }

  .industry-mobile-texts {
    width: 100%;

  }

  .mobile-linkedin-logo {
    width: 40px;
    height: 40px;
  }

  .mobile-about-description p {
    font-size: 14px;
  }

  .tabcontent {
    padding-bottom: 0;
  }

  .swiper-slide-active .slide-content h1 {
    font-size: 35px;
  }

  .banner-section .slide-content {
    /* padding-bottom: 15%;
    padding-top: 10%; */
  }

  .swiper-slide-2 .slide-content h1 br {
    display: none;
  }

  .about-sectiontab-hide-content {
    display: block;
  }

  .contact-bg-img img {
    height: 100%;
  }

  .slide-desc {
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
  }

  .pag-bar-wrap+p {
    font-size: 16px;
    text-align: center;
  }

  .about-section .section-label {
    font-size: 20px;
  }

  .about-section .section-title {
    font-size: 22px;
  }

  .founder-name {
    font-size: 18px !important;
  }

  .about-lead {
    font-size: 16px !important;
  }

  .about-text p {
    font-size: 15px !important;
    line-height: 1.4;
  }

  .about-connect-link {
    font-size: 15px;
    margin-top: 14px;
  }

  .about-image {
    left: -3%;
    width: 30%;
    position: static;
  }

  .mobile-about .about-img-wrap img {
    width: 100%;
    height: 100%;
  }

  /* .about-section .about-text {
    height: 350px;
  } */

  /* .about-section .about-text {
    height: 277px;
  } */
  .about-section .about-text {
    width: 60%;
  }

  .about-image {
    width: 30%;
  }

  .about-mobile-text-parent-wrapper {
    height: 270px;

  }

  .tab a {
    padding: 14px 35px;
    font-size: 16px;
  }

  .vision-section .vision-pane h2 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .vision-card-texts {
    margin-bottom: 0;
  }

  .stats-headline h2 {
    font-size: 22px;
  }

  .hamburger {
    gap: 0px;
  }

  .hamburger span {
    margin: 2px;
  }



  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: flex-end;
  }



  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-card {
    padding: 28px 40px;
  }

  .testimonials-swiper {
    margin-top: 20px;
  }

  .testi-card>img {
    width: 50px;
    height: 50px;
    top: 8%;
  }

  .faq-q {
    font-size: 17px;
  }

  .faq-a p {
    line-height: 1.4;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testi-card {
    max-width: 95%;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .contact-type span {
    font-size: 18px;
  }

  .pag-bar-wrap {
    width: 50px;
  }

  .sub-cont {
    width: 45%;
  }

  .commitment-description+div,
  .sub-points-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-btn {

    font-size: 14px;
  }

  .stat-val {
    font-size: 25px;
  }

  .stat-card p {
    font-size: 16px;
  }

  .why-section .section-title {
    font-size: 22px;
  }

  .why-section .section-label {
    font-size: 20px;
  }

  .why-item h3 {
    font-size: 22px;
  }

  .why-item p {
    font-size: 16px;
    line-height: 1.4;
    width: 90%;
  }

  .why-num img {
    width: 60px;
    height: 60px;
  }

  .why-num {
    transform: translate(52%, -29%);
  }

  .services-section .section-label {
    font-size: 20px;
  }

  .services-section .section-title {
    font-size: 20px;
  }

  .industries-section .section-label {
    font-size: 20px;
  }

  .industries-section .section-title {
    font-size: 22px;
  }

  .industries-section .swiper-pagination {
    top: 90% !important;
  }

  .projects-section .section-label {
    font-size: 20px;
  }

  .projects-section .section-title {
    font-size: 22px;
  }

  .testimonials-section .section-title {
    font-size: 22px;
  }

  .testi-card>img {
    top: -10%;
  }

  .faq-left .section-label {
    font-size: 20px;
  }

  .faq-left .section-title {
    font-size: 22px;
  }

  .contact-right .section-label {
    font-size: 22px;
  }

  .contact-right .section-label+p {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 17px;
  }

  .contact-right {
    padding: 5%;
  }

  .proj-header-right p {
    line-height: 1.4;
  }

  .card-desc {
    font-size: 13px;
    line-height: 1.4;
  }

  .testimonials-section .section-label {
    font-size: 20px;
  }

  .scene .arrow-btn {
    font-size: 35px;
  }

  .vision-tab-button {
    font-size: 15px;
    text-align: center;
  }

  .stats-bg {
    border-radius: 20px;
  }

  .industry-mobile-texts {

    padding-bottom: 12%;
  }

  .industries-section {
    padding-bottom: 0%;
  }

  .idustries-mobile .idustries-mobile-swiper {
    width: 100%;
    height: 100%;
  }

  .idustries-mobile .idustries-mobile-swiper .swiper-wrapper {
    height: 90%;
  }

  .idustries-mobile .idustries-mobile-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
  }

  .idustries-mobile .idustries-mobile-swiper .swiper-slide img {
    border-radius: 10px;
    margin-bottom: 3%;
  }

  .industry-mobile-texts h3 {
    margin-bottom: 2%;
  }

  .idustries-mobile .idustries-mobile-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .footer-brand {
    width: 50%;
    margin: 0 auto;
    height: 230px;
    display: flex;
  }

  .thumb-swiper .swiper-slide {
    width: 30% !important;
    font-size: 16px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px 0px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .mobile-services-cards .section-title+p {
    font-size: 16px;
    line-height: 1.4;
  }

  .proj-header-right p {
    font-size: 15px;
  }

  .testi-card p {
    font-size: 15px;
  }

  .contact-icons {
    flex-wrap: wrap;
  }

  .contact-type {
    width: 45%;
    justify-content: center;
  }

  .contact-type img {
    width: 50px;
    height: 50px;
  }

  svg {
    width: 100%;
    height: 100%;
    margin: auto;
  }

  .vision-pane p {
    font-size: 14px;
  }

  /* .main-header {
    height: 60px;
  }

  .mobile-nav {
    top: 60px;
  } */


  .mobile-industry-content {
    padding-bottom: 0%;
  }

  .idustries-mobil .swiper-pagination {
    top: 90% !important;
  }

  .industries-text-display {
    bottom: -25%;
    width: 90%;
  }

  .industries-text-display h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .industries-text-display p {
    font-size: 0.9rem;
    width: 95%;
    line-height: 1.5;
  }

  .right-element {
    width: 90%;
    padding: 1.5rem;
    padding-bottom: 0;
    padding-top: 0;
  }



  .vision-card-texts {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }

  .vision-card-texts h2 {
    font-size: 1.5rem;
  }

  .vision-card-texts p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .vision-card-image {
    width: 100%;
    margin-top: 1rem;
  }

  .vision-card-image img {
    border-radius: 8px;
  }

  .commitment-bottom-texts-container {
    margin: 1.5rem 0 0 0;
  }

  .sub-cont {
    width: 30%;
  }

  .program-containers {
    width: 65%;
  }

  .program-header {
    width: 100%;

  }

  /* .program-header {

    text-align: center;
  } */

  .mobile-project-swiper-paginations {
    bottom: -14%;
  }

  .tabcontent {
    /* display: none; */
    padding: 45px 12px 0% 12px;
    border-top: none;
  }

  .read-more-btn {
    font-size: 14px;
  }

  /* .thumbs-main-parent {
    top: -10%;
  } */
}



@media (max-width: 640px) {
  .swiper-slide-active .slide-content h1 {

    /* padding-bottom: 5%; */
  }

  .scroll-to-top {
    width: 11%;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }

  .mobile-banner-image-wrapper {
    height: auto;
  }

  .mobile-slide-images {

    padding-top: 20%;
  }

  .core-programs-x-slide-section-wrapper {
    width: 85%;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .industries-text-display {
    bottom: -30%;
    width: 95%;
    padding: 16px;
  }

  .about-section .about-text {
    width: 60%;
  }

  .about-image {
    width: 40%;
    left: -3%;
  }

  .about-section .about-text {
    width: 66%;
  }

  /* .mobile-about .about-img-wrap img {
    width: 100%;
  } */

  .industries-text-display h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .industries-text-display p {
    font-size: 0.85rem;
    width: 100%;
  }

  .right-element {
    width: 95%;
    padding: 1rem;
  }

  .vision-card-texts {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .vision-card-texts h2 {
    font-size: 1.3rem;
  }

  .vision-card-texts p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .vision-card-image {
    margin-top: 0.8rem;
  }

  .commitment-description {
    font-size: 0.9rem;
  }

  .sub-cont {
    /* width: 48%; */
    font-size: 0.85rem;
  }

  .commitment-bottom-texts-container {
    margin: 0;
  }

  .sub-cont img {
    width: 40px;
    height: 40px;
  }

  .commitment-description+div,
  .sub-points-container {
    /* justify-content: start; */
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .stats-section {
    margin-top: 0;
  }

  .footer-bottom p {
    text-align: left;
  }


}

@media (max-width: 576px) {
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .read-more-btn {

    font-size: 12px;

  }

  .swiper-slide-active .slide-content h1 {
    font-size: 25px;
    margin-bottom: 7%;
  }

  .banner-pagination {

    bottom: 20%;
  }

  .pag-bar-wrap+p {

    margin-top: 0%;
  }

  .mobile-about-description p {
    font-size: 12px;
  }

  .contact-type span {
    font-size: 16px;
  }

  .contact-type img {
    width: 40px;
    height: 40px;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-header .logo {
    width: 27%;
  }

  .slide-desc {
    width: 100%;
    font-size: 15px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .pag-bar-wrap+p {
    padding-top: 8%;
  }

  .about-section .about-text {
    width: 75%;
  }

  .about-image {
    width: 35%;
  }

  .mobile-about .about-img-wrap img {
    width: 100%;
  }

  .sub-cont {
    /* width: 100%; */
  }

  .tabcontent {
    padding-top: 0;
  }

  .tab {
    height: 60px;
  }

  .vision-content-main {
    height: 70vh;
  }

  .about-btn {

    font-size: 12px;
  }

  .commitment-description+div,
  .sub-points-container {
    width: 100%;
    justify-content: start;
  }

  .vision-card-texts {
    flex-wrap: wrap;
  }

  .vision-pane p {
    width: 100% !important;
    line-height: 1.4;
  }

  /* .stat-card {
    width: 100%;
  } */

  .section-title {
    font-size: 20px;
  }

  .mobile-services-cards .section-title+p {
    font-size: 15px;
    line-height: 1.4;
  }

  .footer-brand {
    width: 65%;
  }

  .contact-icons {
    flex-direction: column;
    align-self: flex-start;

  }

  .contact-type {
    width: 100%;
    justify-content: start;
  }

  /* .idustries-mobile {
    height: 55vh;
  } */

  .our-projects-x-swiper {
    /* width: 70%; */
    margin: 0;
  }

  .contact-right .section-label {
    font-size: 20px;
  }

  .why-item h3 {
    font-size: 20px;
  }

  .why-num img {
    width: 60px;
    height: 60px;
  }

  .why-item p {
    font-size: 15px;
    padding-left: 5%;
  }

  .program-containers {
    width: 60%;
  }

  .program-header {

    text-align: center;
    padding-top: 2%;
  }

  .core-programs-x-slide-section-wrapper {
    justify-content: space-between;
  }

  .program-containers>img+p {
    font-size: 14px;

  }

  .program-containers>img+p>br {
    display: none;
    ;

  }

  .program-header>p {
    font-size: 20px;
    white-space: initial;
  }

  .services-section .section-title {

    margin-top: 3%;
  }

  .mobile-services-cards .section-title+p {
    padding-bottom: 7%;
    width: 100%;
  }

  .contact-parent-container ul {
    flex-direction: column;
    align-self: flex-start;
    align-items: flex-start;
    margin-bottom: 8%;
    padding-left: 3%;
  }

  .mobile-new-project-swiper {
    width: 300px;
    height: 400px;
  }

  .mobile-project-swiper-paginations-next,
  .mobile-project-swiper-paginations-prev {

    width: 30px;
    height: 30px;
  }

  .footer-nav-menu {
    font-size: 15px;
  }

  .about-section .section-title {
    font-size: 18px;
  }

  .about-section .section-label {
    font-size: 20px;
  }

  .about-lead {
    font-size: 16px !important;
  }

  .founder-name {
    font-size: 17px !important;
  }

  .about-section .section-title {
    margin-bottom: 8px;
  }

  .about-text p {
    font-size: 13px !important;
  }

  .about-connect-link {
    font-size: 15px;
  }

  .about-connect-link {
    margin-top: 10px;
  }

  .about-connect-link img {
    width: 40px;
  }

  .mobile-about-read-more-btn {
    font-size: 13px;
  }

  .scroll-to-top>p {
    font-size: 14px;
    padding-top: 6px;
    white-space: nowrap;
  }

  .about-mobile-text-parent-wrapper {
    height: 125px;
  }

  .contact-left {
    height: 45vh;
  }

  .contact-icons {
    padding-left: 3%;
  }

  .right-mob-banner {

    width: 35%;
  }

  .faq-heading {
    width: 85%;
  }

  .mobile-services-section .service-main-label {
    margin-bottom: 0;
  }

  .mobile-services-section .service-main-label+h2 {
    margin-top: 2%;
  }
}

@media (max-width: 480px) {
  .banner-section {
    height: auto;
  }

  .scroll-down-arrow img {

    width: 30px;
  }

  .scroll-down-arrow p {
    font-size: 12px;
  }

  .swiper-slide-active .slide-content h1 {
    font-size: 25px;
  }

  .mobile-linkedin-logo {
    width: 35px;
    height: 35px;
  }

  .read-more-btn {

    font-size: 11px;

  }

  .mobile-about-description p {
    font-size: 12px;
  }

  .mobile-slide-images {
    padding-top: 16%;
  }

  .theme-toggle {
    width: 85px;
  }

  .swiper-slide-active .slide-content h1 {
    margin-bottom: 9%;
  }

  /* .banner-section .slide-content {
    padding-bottom: 15%;
    padding-top: 15%;
  } */

  .toggler-move {
    transform: translateX(42px);
  }

  /* .about-section .about-text {
    height: 280px;
  } */

  .about-image {
    width: 40%;
  }

  .slide-desc {
    line-height: 1.4;
    font-size: 13px;
  }

  .banner-pagination {
    padding: 0 20px;
  }

  .pag-bar-wrap+p {
    font-size: 13px;
  }

  .about-section .section-label {
    font-size: 18px;
  }

  .about-section .section-title {
    font-size: 18px;
  }

  .about-text p {
    font-size: 12px;
  }

  .founder-name {
    font-size: 16px !important;
  }

  .about-text p {
    font-size: 12px !important;
  }

  .about-text p {
    margin-bottom: 5px;
  }

  .about-connect-link {
    margin-top: 5px;
  }

  .about-connect-link {
    font-size: 12px;
  }

  .tab {
    height: 50px;

  }

  .tab a {
    font-size: 12px;
    padding: 14px;
  }

  .vision-section .vision-pane h2 {
    font-size: 14px;
  }

  .line-mobile-about {
    margin-top: 3%;
  }

  .about-connect-link img {
    width: 30px;
  }

  .thumb-swiper .swiper-slide {
    font-size: 12px;
  }

  .stats-headline h2 {
    font-size: 18px;
  }

  .sub-cont>p {
    white-space: normal;
  }


  .mobile-new-banner {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;


  }

  .munis-mobile-banner-thumbswiper {
    width: 100%;

  }

  /* .banner-section {
    height: 72vh;
    min-height: auto;
  } */

  .section-pad {
    padding: 56px 0;
  }

  .proj-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stat-val {
    font-size: 32px;
  }

  .slide-btns {
    flex-direction: column;
    gap: 12px;
  }

  .stats-grid {

    justify-content: space-between;
  }

  .stat-val {
    font-size: 25px;
  }

  .stat-card p {
    font-size: 16px;
  }

  .right-time-logo {
    width: 45px;
    height: 45px;
  }

  .section-title {
    font-size: 16px;
  }

  .right-time-texts {
    width: 50%;
  }

  .mobile-services-cards .section-title+p {
    font-size: 13px;
  }

  .industry-mobile-texts p {
    font-size: 13px;
  }

  .faq-item {
    margin-bottom: 3%;
    border-radius: 10px;
    padding: 2% 3%;
    /* background-color: #f6f6f6; */
  }

  .section-label {
    font-size: 16px;
  }

  .projects-section .section-title {
    font-size: 18px;
  }

  .proj-header-right p {
    font-size: 13px;
    line-height: 1.4;
  }

  .proj-header-right p {
    font-size: 12px;
  }

  .card-title {
    font-size: 14px;
    line-height: 1.2;
  }

  .card-desc {
    font-size: 12px;
  }

  .industries-section .swiper-pagination {
    top: 95% !important;
  }

  .scene .arrow-btn {
    font-size: 27px;
  }

  .scene {
    padding-bottom: 0;
  }

  .testimonials-section {
    padding: 10% 0 7% 0;
  }

  .testimonials-section .section-label {
    font-size: 14px;
  }

  .testimonials-section .section-title {
    font-size: 14px;
  }

  .faq-left .section-label {
    font-size: 14px;
  }

  .faq-left .section-title {
    font-size: 14px;
    margin-bottom: 0;
  }

  .contact-right .section-label {
    font-size: 16px;
  }

  .contact-form {
    gap: 0;
  }

  .testi-card>img {
    top: -8%;
  }

  .testi-card {
    padding: 20px 20px;
  }

  .testi-card p {
    font-size: 12px;
    margin-bottom: 15px;
    width: 80%;
  }

  .core-programs-x-slide-section-wrapper {
    justify-content: center;
  }

  /* .our-projects-x-swiper {
    width: 60%;

  } */

  .testi-card b {
    font-size: 14px;
  }

  .testi-author img {
    width: 35px;
    height: 35px;
  }

  .faq-q {
    font-size: 12px;
  }

  .faq-a p {
    font-size: 12px;
  }

  .faq-section .arrows-parent {
    width: 35px;
    height: 35px;
  }

  .contact-right .section-label+p {
    width: 95%;
    font-size: 13px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
  }

  .captcha-generator {
    font-size: 15px;
  }

  .refresh-btn {
    bottom: 5%;
  }

  .contact-type span {
    font-size: 14px;
  }

  .contact-type {
    justify-content: start;
  }

  .contact-icons {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 3%;
  }

  /* .hamburger span {
    width: 30px;
  } */

  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .why-item p {
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
  }

  .why-num {
    transform: translate(0%, -29%);
  }

  .why-item {
    gap: 0;
  }

  .why-item h3 {
    font-size: 18px;
    margin-left: -4%;
  }

  .stats-bg {
    border-radius: 10px;
  }

  .footer-brand {
    height: 150px;
  }

  .testi-card {
    border-radius: 10px;
  }



  .form-captcha-container+button {
    font-size: 14px;
  }

  .footer-brand {
    width: 50%;
    height: 110px;
  }

  .contact-type img {
    width: 32px;
    height: 32px;
  }

  .scroll-to-top {
    top: 2%;
    right: 5%;
    width: 13%;
  }

  .about-btn {

    font-size: 11px;
  }

  .banner-pagination {
    gap: 15px;
  }

  .banner-pagination {
    bottom: 14%;
  }

  .industries-text-display {
    bottom: -35%;
    width: 98%;
    padding: 12px;
  }

  .industries-text-display h3 {
    font-size: 0.95rem;
  }

  .industries-text-display p {
    font-size: 0.8rem;
    width: 100%;
    line-height: 1.4;
    text-align: match-parent;
  }

  .right-element {
    width: 98%;
    padding: 0.8rem;
    margin: 0 auto;
  }

  .vision-card-texts {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .vision-card-texts h2 {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .vision-card-texts p {
    font-size: 12px;
    line-height: 1.3;
  }

  .vision-card-image {
    margin-top: 0.6rem;
  }

  .vision-card-image img {
    border-radius: 6px;
  }

  .commitment-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .commitment-description+div,
  .sub-points-container {
    /* flex-direction: column; */
    gap: 0.4rem;
  }

  .sub-cont {
    /* width: 100%; */
    justify-content: flex-start;
  }

  .vision-card-texts p {
    margin-bottom: 0;
  }

  .sub-cont img {
    width: 32px;
    height: 32px;
  }

  .sub-cont>p {
    font-size: 0.8rem;
  }

  .commitment-bottom-texts-container {
    margin: 0;
  }

  .stat-val {
    font-size: 22px;
  }

  .stat-card p {
    font-size: 14px;

  }

  .section-pad {
    padding: 45px 0;
  }

  .why-section .section-label {
    font-size: 14px;
  }

  .why-section .section-title {
    font-size: 16px;
  }

  .why-num img {
    width: 50px;
    height: 50px;
  }

  .why-item h3 {
    font-size: 15px;
    margin-left: -3%;
  }

  .why-item p {
    font-size: 12px;
  }

  .services-section .section-label {
    font-size: 14px;
  }

  .services-section .section-title {
    font-size: 16px;
  }

  .idustries-mobile {

    width: 90%;

  }

  .mobile-services-cards .section-title+p {
    font-size: 12px;
  }

  .industries-section .section-label {
    font-size: 14px;
    margin-bottom: 0;
  }

  .industries-section .section-title {
    font-size: 14px;
    margin-bottom: 0;
  }

  .industry-mobile-texts h3 {
    font-size: 14px;
  }

  .industry-mobile-texts p {
    font-size: 12px;
  }

  /* .idustries-mobile {
    height: 40vh;
  } */

  .projects-section .section-label {
    font-size: 14px;
  }

  .projects-section .section-title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .industries-section .container {
    margin-bottom: 5%;
  }

  .contact-form .error {
    font-size: 11px;
  }

  .mobile-new-project-swiper {
    width: 250px;
    height: 325px;
  }

  .mobile-project-swiper-paginations-prev {

    width: 25px;
    height: 25px;

  }

  .mobile-project-swiper-paginations-next {

    width: 25px;
    height: 25px;
  }

  .program-header>p {
    font-size: 14px;
  }

  .program-containers>img+p {
    font-size: 12px;
  }

  .card-body {

    padding: 12px 10px 30px;

  }

  /* .program-header>p>br {
    display: none;
  } */

  .mobile-projects {
    padding: 10% 0 25% 0;
  }

  .mobile-project-swiper-paginations {
    bottom: -17%;
  }

  .mobile-about-read-more-btn {
    font-size: 10px;
  }

  .scroll-to-top>p {

    margin-left: -10px;
  }

  .form-captcha-container {
    padding-top: 6%;
  }
}

@media (max-width: 428px) {
  .swiper-slide-active .slide-content h1 {
    font-size: 19px;
  }

  .swiper-slide-active .slide-content h1 {
    /* margin-bottom: 16%; */
  }

  /* .banner-section {
    height: 65vh;

  } */



  .about-mobile-text-parent-wrapper {
    height: 150px;
  }

  .vision-pane p {
    font-size: 12px;
  }

  .commitment-bottom-texts-container {
    margin-top: 3%;
  }

  .about-image {
    position: absolute;
    left: -7%;
  }

  .about-section .about-text {
    width: 65%;
  }

  .scroll-to-top>p {
    font-size: 12px;
  }

  .slide-desc {
    margin-bottom: 0%;
    /* padding-bottom: 16%; */
  }

  .about-section .section-label {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .founder-name {
    font-size: 14px !important;
  }

  .about-lead {
    font-size: 12px !important;
  }

  .about-section .section-title {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .about-text p {
    font-size: 11px !important;
    margin-bottom: 5px;
  }

  .about-connect-link {
    padding-bottom: 4%;
    margin-top: 4%;
  }

  .tab {
    height: 50px;
  }

  .vision-card-texts {
    margin-bottom: 0;
  }

  .stats-headline h2 {
    font-size: 15px;
  }

  .why-grid {
    gap: 40px;
  }
}

@media (max-width: 390px) {
  .slide-desc {
    margin-bottom: 0;
    /* padding-bottom: 25%; */
  }

  .about-mobile-text-parent-wrapper {
    height: 120px;
  }

  /* .about-section .about-text {
    height: 300px;
  } */

  /* .idustries-mobile {
    height: 50vh;
  } */
  .sub-cont {
    gap: 8px;
  }

  .industry-mobile-texts {
    width: 100%;

  }

  .industries-section .swiper-pagination {
    top: 93% !important;
  }

  .stack-wrapper {
    overflow: hidden;

  }

  .mobile-new-project-swiper {
    width: 250px;
    height: 300px;
  }

  /* .mobile-project-swiper-paginations-prev {
    content: url("../images/icons/arrow.png") !important;
    rotate: 180deg;
    left: 10% !important;
    width: 20px;
    height: 20px;

  }

  .mobile-project-swiper-paginations-next {
    content: url("../images/icons/arrow.png") !important;
    left: 30% !important;
    width: 20px;
    height: 20px;
  } */
  .footer-bottom p {
    text-align: center;
  }
}

@media (max-width:350px) {
  .about-connect-link img {
    width: 25px;
  }
}

@media (max-width: 325px) {
  .tab a {
    font-size: 12px;
  }

  .banner-section {
    height: 100vh;
    min-height: auto;
  }

  .slide-desc {
    padding-bottom: 30%;
  }



  .footer-bottom p {
    font-size: 12px;
  }

  .refresh-btn {
    width: 15px;
  }


}