   :root {
       --blue: #0B5ED7;
       --blue-dark: #084298;
       --green: #2BB673;
       --green-light: #EAF7F1;
       --yellow: #FFC107;
       --dark: #1e1e1e;
       --white: #ffffff;
   }
   /* ================= WHO WE ARE ================= */
.who-we-are {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden; /* IMPORTANT */
}

/* Wrapper */
.who-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

/* Images common */
.who-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* BIG IMAGE */
.big-img {
  position: relative;
  z-index: 1;
}

/* SMALL IMAGE – ALWAYS LEFT */
.small-img {
  position: absolute;
  width: 38%;
  top: 20%;
  left: -60px;
  z-index: 2;
  /* border: 6px solid #ffffff; */
  border-radius: 18px;
}

/* 🔥 FLOAT ANIMATION */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(30px); }
  100% { transform: translateY(0); }
}

.floating-img {
  animation: floatUpDown 4.5s ease-in-out infinite;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
  .who-image-wrapper {
    margin: 0 auto;
  }

  .small-img {
    width: 42%;
    left: -40px;
    top: 18%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .who-we-are {
    padding: 70px 0;
  }

  .who-image-wrapper {
    max-width: 100%;
  }

  .small-img {
    width: 48%;        /* 👈 mobile size */
    left: -20px;       /* 👈 still left */
    top: 15%;
    border-width: 4px;
  }

  .floating-img {
    animation: floatUpDown 3.5s ease-in-out infinite;
  }
}

/* ================= VISION & MISSION DARK ================= */
.vision-mission-dark {
  padding: 110px 0;
  background: linear-gradient(135deg, #031633, #052c65);
  color: #ffffff;
}

/* Row spacing */
.vm-row {
  position: relative;
}

/* Image */
.vm-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

/* Text */
.vm-text {
  padding: 20px 10px;
}

.vm-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.vm-text p {
  font-size: 15.8px;
  line-height: 1.8;
  color: #dbe7ff;
  max-width: 520px;
}

/* Tag */
.vm-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2BB673;
}

/* Mission slight green tone */
.mission-text h2 {
  color: #9be3c0;
}

/* Mobile */
@media (max-width: 991px) {
  .vision-mission-dark {
    padding: 70px 0;
  }

  .vm-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .vm-text h2 {
    font-size: 26px;
  }
}
/* ================= WHY WE EXIST ================= */
.why-we-exist {
  padding: 100px 0;
  background: #F4F9FC;
}

.why-we-exist h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #555;
	text-align:center;
}

/* Cards */
.exist-card {
  height: 100%;
  padding: 35px 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.exist-card:hover {
  transform: translateY(-8px);
}

/* Problem cards */
.exist-card.problem h5 {
  color: #c0392b;
}

.exist-card.problem {
  border-top: 4px solid #e74c3c;
}

/* Solution card */
.exist-card.solution {
  background: linear-gradient(135deg, #2BB673, #8fe3c0);
  color: #ffffff;
  border-top: none;
}

.exist-card.solution h5,
.exist-card.solution p {
  color: #ffffff;
}

/* Text */
.exist-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.exist-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .why-we-exist {
    padding: 70px 0;
  }

  .why-we-exist h2 {
    font-size: 28px;
  }
}

/* ================= INDUSTRIES LIST ================= */
.industries-list-section {
  padding: 100px 0;
  background: #ffffff;
}

.industries-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.industries-heading p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #555;
}

/* LIST WRAPPER */
.industries-list {
  max-width: 900px;
  margin: 0 auto;
}

/* ROW */
.industry-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid #e6edf3;
}

.industry-row:last-child {
  border-bottom: none;
}

/* ICON */
.industry-icon i {
  font-size: 30px;
  color: #2BB673;
}

/* CONTENT */
.industry-content h5 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #084298;
}

.industry-content p {
  font-size: 14.8px;
  color: #555;
  margin: 0;
}

/* LINK */
.industry-link a {
  font-size: 14px;
  font-weight: 600;
  color: #2BB673;
  text-decoration: none;
  white-space: nowrap;
}

.industry-link a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .industries-list-section {
    padding: 70px 0;
  }

  .industry-row {
    grid-template-columns: 55px 1fr;
  }

  .industry-link {
    grid-column: 2 / 3;
    margin-top: 6px;
  }

  .industries-heading h2 {
    font-size: 28px;
  }
}
/* ================= OUR VALUES – SIGNAL ================= */
.our-values-signal {
  padding: 120px 0;
  background: radial-gradient(circle at top, #052c65, #031633);
  color: #ffffff;
}

/* Heading */
.values-signal-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
}

.values-signal-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.values-signal-heading p {
  font-size: 15.5px;
  color: #dbe7ff;
}

.values-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2BB673;
}

/* Grid */
.values-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
	 justify-items: center !important; 
}

/* Signal item */
.signal-item {
  text-align: center;
  padding: 10px;
}

/* Icon */
.signal-item i {
  font-size: 34px;
  margin-bottom: 14px;
  color: #2BB673;
}

/* Divider */
.signal-item span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 10px auto 14px;
  background: linear-gradient(to right, transparent, #2BB673, transparent);
}

/* Text */
.signal-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.signal-item p {
  font-size: 14.5px;
  color: #dbe7ff;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .values-signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-signal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-signal-heading h2 {
    font-size: 28px;
  }
}


/* ================= CONTACT INFO ================= */
.contact-info-section {
  padding: 90px 0;
  background: #f6fbfa;
}

.contact-box {
  height: 100%;
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-8px);
}

/* Icon */
.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 26px;
  color: #ffffff;
}

/* Text */
.contact-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084298;
}

.contact-box p {
  font-size: 14.8px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.contact-box a {
  color: #2BB673;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 60px 0;
  }
}

/* ================= CONTACT FORM DARK ================= */
.contact-form-dark {
  padding: 110px 0;
  background: linear-gradient(135deg, #031633, #052c65);
  color: #ffffff;
}

/* Image */
.contact-form-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Form Wrapper */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 45px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2BB673;
  margin-bottom: 10px;
}

.contact-form-wrapper h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  font-size: 14.8px;
  margin-bottom: 25px;
  color: #dbe7ff;
}

/* Inputs */
.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 14.5px;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bcd3ff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2BB673;
  background: rgba(255,255,255,0.12);
}

/* Error */
.error {
  color: #ff7675;
  font-size: 12px;
  display: none;
  margin-top: 4px;
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form-dark {
    padding: 70px 0;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .contact-form-wrapper h3 {
    font-size: 24px;
  }
}

/* ================= WHY CONTACT US ================= */
.why-contact-section {
  padding: 100px 0;
  background: #f6fbfa;
}

.why-contact-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #555;
}

/* Trust Item */
.trust-item {
  height: 100%;
  padding: 35px 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
}

/* Icon */
.trust-item i {
  font-size: 34px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.trust-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084298;
}

.trust-item p {
  font-size: 14.8px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .why-contact-section {
    padding: 70px 0;
  }

  .why-contact-section h2 {
    font-size: 28px;
  }
}

/* ================= SERVICES OVERVIEW ================= */
.services-overview-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Heading */
.services-overview-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.overview-subtitle {
  max-width: 750px;
  margin: 0 auto;
  font-size: 15.8px;
  line-height: 1.7;
  color: #555;
}

/* Highlight Box */
.service-highlight {
  height: 100%;
  padding: 35px 30px;
  text-align: center;
  border-radius: 18px;
  background: #f6fbfa;
  transition: 0.3s ease;
}

.service-highlight:hover {
  transform: translateY(-6px);
}

/* Icon */
.service-highlight i {
  font-size: 36px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.service-highlight h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084298;
}

.service-highlight p {
  font-size: 14.8px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .services-overview-section {
    padding: 70px 0;
  }

  .services-overview-heading h2 {
    font-size: 28px;
  }
}

/* ================= CORE SERVICES DARK ================= */
.core-services-dark {
  padding: 120px 0;
  background: linear-gradient(135deg, #031633, #052c65);
  color: #ffffff;
}

.core-services-dark h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.core-services-dark .section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #dbe7ff;
}

/* Card */
.core-service-card-dark {
  height: 100%;
  padding: 40px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.core-service-card-dark:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

/* Icon */
.service-icon-dark {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-dark i {
  font-size: 26px;
  color: #ffffff;
}

/* Title */
.core-service-card-dark h5 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}

/* List */
.core-service-card-dark ul {
  padding-left: 18px;
  margin: 0;
}

.core-service-card-dark ul li {
  font-size: 14.8px;
  line-height: 1.7;
  color: #dbe7ff;
  margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .core-services-dark {
    padding: 70px 0;
  }

  .core-services-dark h2 {
    font-size: 28px;
  }

  .core-service-card-dark {
    padding: 30px 24px;
  }
}

/* ================= PROCESS FLOW ================= */
.process-flow-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

/* Heading */
.process-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.process-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.process-heading p {
  font-size: 15.5px;
  color: #555;
}

/* Flow list */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Each step */
.flow-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Number */
.flow-item span {
  font-size: 28px;
  font-weight: 700;
  color: #2BB673;
  line-height: 1;
  min-width: 42px;
}

/* Text */
.flow-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #084298;
}

.flow-item p {
  font-size: 14.8px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Sticky video panel */
.process-visual {
  position: sticky;
  top: 120px;
}

.process-visual video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* Mobile */
@media (max-width: 768px) {
  .process-flow-section {
    padding: 70px 0;
  }

  .process-heading h2 {
    font-size: 28px;
  }

  .process-visual {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
}
