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

html {
  overflow-x: hidden;
}

* {
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
}

body {
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  color: #1a1a2e;
  max-width: 100vw;
}

/* p {
  text-align: justify;
} */

/* SECTION 1: HERO */
.hero {
  position: relative;
  width: 100%;
  padding: 0px 20px;
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-overlay {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 60px 40px;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-impact {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  display: inline;
}



.hero-content p {
  color: #d0d8f0;
  font-size: 18px;
}

/* ΓöÇΓöÇ HERO CARDS: Row1 (2 cards) + Row2 (3 cards centered) ΓöÇΓöÇ */
.hero-cards {
  width: 82%;
  margin: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 60px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Row 1 image cards — taller on desktop */
@media (min-width: 900px) {
  .hero-cards-row1 .hero-card {
    min-height: 240px;
  }
}

/* Row 1: featured (wider) + global operating model (narrower) */
.hero-cards-row1 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: stretch;
}

/* Row 2: 3 equal cards, same height */
.hero-cards-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.hero-cards-row2 .hero-card {
  height: 100%;
}

/* Featured card — left column, natural height */
.hero-card-featured {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  text-align: left;
  align-items: flex-start;
}

.hero-card-featured .hero-card-tag {
  align-self: auto;
  position: static;
  margin-bottom: 20px;
}

.hero-card-featured .learn-link {
  align-self: auto;
}

/* keep old .hero-cards-right for mobile fallback */
.hero-cards-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 14px;
  align-items: start;
}

/* ── Base card ── */
.hero-card {
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
  text-decoration: none;
  height: auto;
  /* reveal animation initial state */
  opacity: 0;
  transform: translateY(40px);
}

.hero-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
}

.hero-card.card-visible:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6);
}

.hero-card-featured {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 26px;
  justify-content: flex-start;
}

/* Shine sweep on hover */
.hero-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.13) 50%, transparent 60%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-card:hover::before {
  left: 130%;
}

/* Decorative circle */
.hero-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* ΓöÇΓöÇ Icon ΓöÇΓöÇ */
.hero-card-icon {
  display: none;
}

.hero-card-featured .hero-card-icon {
  display: none;
}

.hero-card-featured .hero-card-tag {
  position: static;
  margin-bottom: 16px;
}

/* ΓöÇΓöÇ Title ΓöÇΓöÇ */
.hero-card h3 {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.hero-card-featured h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* ΓöÇΓöÇ Description ΓöÇΓöÇ */
.hero-card-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
}

.hero-card:hover .hero-card-desc {
  animation: textRoll 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes textRoll {
  0%   { transform: translateY(0);     opacity: 1; }
  38%  { transform: translateY(-20px); opacity: 0; }
  39%  { transform: translateY(20px);  opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}

/* ΓöÇΓöÇ Tag pill (featured) ΓöÇΓöÇ */
.hero-card-tag {
  display: none;
}

/* ΓöÇΓöÇ Learn More link ΓöÇΓöÇ */
.learn-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 0;
  width: fit-content;
  position: relative;
  z-index: 2;
  transition: gap 0.25s;
}

.learn-link-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.25s, transform 0.25s;
}

.learn-link-inner i {
  font-size: 11px;
}

.hero-card:hover .learn-link {
  gap: 12px;
}

.hero-card:hover .learn-link-inner {
  background: rgba(255,255,255,0.35);
  transform: translateX(3px);
}

/* ΓöÇΓöÇ Gradients ΓöÇΓöÇ */
.hero-card.card-1 {
  background: linear-gradient(145deg, #6d28d9 0%, #4f46e5 50%, #2563eb 100%);
}

/* Background image card override */
.hero-card.hero-card-bg-img {
  background: none;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-image: url('images/Enterprise Data- Header.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-card.hero-card-bg-img .hero-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
  z-index: 1;
}

.hero-card.hero-card-bg-img .hero-card-bg-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.hero-card.hero-card-bg-img .hero-card-bg-content h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-card.card-2 {
  background: linear-gradient(145deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  background-image: url('images/Data platforms modernization & CDP.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-card.card-3 {
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
  background-image: url('images/Data science & AI.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-card.card-4 {
  background: linear-gradient(145deg, #065f46 0%, #0891b2 55%, #4338ca 100%);
  background-image: url('images/Data analytics and Business Intelligence.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-card.card-5 {
  background: linear-gradient(145deg, #c2410c 0%, #be185d 50%, #7c3aed 100%);
  background-image: url('images/Global-Header.jpeg');
  background-size: cover;
  background-position: center;
}

/* ΓöÇΓöÇ Responsive ΓöÇΓöÇ */
@media (max-width: 768px) {
  .hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 32px;
    overflow: visible;
    margin: 0 20px !important;
  }
  

  .hero-card-featured { 
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 10px;
  }
  .hero-card-featured .hero-card-tag { position: static; margin-bottom: 0; }
  .hero-cards-row1,
  .hero-cards-row2,
  .hero-cards-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  /* Compact horizontal card on mobile */
  .hero-card,
  .hero-card-featured {
    width: 100%;
    min-height: unset;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 16px 18px;
    border-radius: 14px;
    gap: 14px;
  }

  .hero-card::after { display: none; }

  .hero-card-icon {
    display: none;
  }

  .hero-card-featured .hero-card-icon {
    display: none;
  }

  /* Hide tag and description on mobile */
  .hero-card-tag { display: none; }
  .hero-card-desc { display: none; }

  .hero-card h3,
  .hero-card-featured h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    flex: 1;
  }

  .learn-link {
    padding-top: 0;
    margin-top: 0;
    flex-shrink: 0;
  }

  .learn-link-inner {
    width: 28px;
    height: 28px;
  }

  /* Hide the "Learn More" text, show only arrow */
  .learn-link-text { display: none; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero-card-featured h3 { font-size: 22px; }
  .hero-cards { width: 95%; }
  .hero-cards-row2 { grid-template-columns: repeat(3, 1fr); }
  .hero-cards-right { grid-template-columns: 1fr 1fr; }
  .hero-card-desc { font-size: 13px; }
}

/* ── PROVEN IMPACT ── */
.proven-impact {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.proven-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(124,92,191,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 85% 50%, rgba(30,60,120,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.pi-inner {

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.pi-left {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-align: center;
  max-width: 600px;
}

.pi-left.pi-visible {
  opacity: 1;
  transform: translateY(0);
}

.pi-eyebrow {
  display: inline-block;
  background: #e85d26;
  border: 1px solid rgba(167,139,250,0.4);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pi-heading {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  white-space: nowrap;
}

.pi-sub {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.7;
}

.pi-right {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.pi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: rgba(255,255,255,0.02);
}

.pi-item:last-child { border-right: none; }
.pi-item:first-child { border-top: none; }

.pi-item.pi-visible {
  opacity: 1;
  transform: translateY(0);
}

.pi-item:hover {
  background: rgba(124,92,191,0.1);
}

.pi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124,92,191,0.2);
  border: 1px solid rgba(124,92,191,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

.pi-item:hover .pi-icon {
  background: rgba(124,92,191,0.4);
  transform: scale(1.1);
}

.pi-val {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.pi-desc {
  font-size: 14px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}



@media (max-width: 768px) {
  .pi-inner {
    gap: 32px;
  }
  .pi-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    width: 100%;
  }
  .pi-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    justify-content: flex-start;
  }
  .pi-item:last-child { border-bottom: none; }
  .pi-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .pi-val {
    font-size: 22px;
    flex-shrink: 0;
    min-width: 70px;
  }
  .pi-desc {
    font-size: 12px;
    text-align: left;
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }
}

@media (max-width: 540px) {
  .proven-impact {
    padding: 40px 16px;
  }
  .pi-heading {
    font-size: clamp(20px, 5vw, 28px);
    white-space: normal;
  }
}
/* SECTION 2: SERVICES */
.services {
  background: #eaf0f0;
  padding: 56px 24px;
}

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

.services-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #000;
  text-align: center;
  margin: 0 0 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.svc-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.04);
}

.svc-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #e85d26;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.learn-more-arrow {
  color: #1a1a2e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.learn-more-arrow i {
  background: #e85d26;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
}

.learn-more-arrow:hover {
  color: #e85d26;
}

.learn-more-arrow:hover i {
  background: #cf4e1a;
}

/* SECTION 3: WHO WE ARE */
.who-we-are {
  padding: 60px 24px 60px;
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.who-we-are::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(124, 92, 191, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 60, 120, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.who-we-are .section-label {
  color: #fff;
}

.who-intro {
  color: #555;
  font-size: 16px;
  max-width: 680px;
  line-height: 1.7;
  margin: 0 auto 56px;
}

/* Mini stats row */
.who-mini-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.who-mini-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.who-mini-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-mini-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.who-mini-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 8px;
}

@media (max-width: 600px) {
  .who-mini-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }
  .who-mini-sep { width: 60px; height: 1px; margin: 0; }
}

/* WHO WE ARE — two column split */
.who-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.who-section-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 40px;
  background: #eaf0f0;
  padding: 20px 24px;
}

.who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-split-left {
  text-align: left;
}

.who-split-left .section-label {
  text-align: left;
}

.who-split-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.who-split-left .who-intro {
  margin: 0 0 0 0;
  text-align: left;
}

/* Right image */
.who-split-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 24px 64px rgba(0,0,0,0.5); */
  animation: whoImgFloat 5s ease-in-out infinite;
}

.who-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.who-img-wrap:hover .who-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Glowing border pulse */
.who-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;

  animation: whoGlowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whoImgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes whoGlowPulse {
  0%, 100% { border-color: rgba(167,139,250,0.3); box-shadow: 0 0 20px rgba(167,139,250,0.15); }
  50%       { border-color: rgba(167,139,250,0.7); box-shadow: 0 0 40px rgba(167,139,250,0.35); }
}
@media (min-width:768.9px){
  .who-split-left{
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .who-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .who-split-left { text-align: center; }
  .who-split-left .section-label { text-align: center; }
  .who-split-left .who-intro { text-align: center; }
  .who-split-left div { text-align: center; }
  .who-img { height: 260px; }
}
.blog {
  padding: 32px 24px;
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
}

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

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
}

.view-more {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.view-more i {
  background: #e85d26;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Carousel */
.blog-carousel-wrap {
  overflow: hidden;
  position: relative;
}

.blog-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(.22,.68,0,1.1);
  will-change: transform;
}

.blog-carousel-track .blog-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

@media (max-width: 768px) {
  .blog-carousel-track .blog-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }
}

@media (max-width: 399px) {
  .blog-carousel-track .blog-card {
    flex: 0 0 100%;
  }
}
}

.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.blog-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.blog-carousel-dots .dot.active {
  background: #7c5cbf;
  transform: scale(1.3);
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.blog-cat {
  color: #0d0d2b;
  font-size: 14px;
  font-weight: 800;
}

.blog-read {
  color: #999;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
}

.blog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.share-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.share-link:hover {
  color: #7c5cbf;
}

/* SECTION 4: CONTACT */
.contact {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(124, 92, 191, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30, 60, 120, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-left>p {
  color: #b0b8d4;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-email p {
  color: #b0b8d4;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-email a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.contact-email a:hover {
  color: #a78bfa;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  margin-bottom: 20px;
}

.form-group label {
  color: #e0e0f0;
  font-size: 13px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7c5cbf;
}

.form-group textarea {
  resize: vertical;
}

.btn-send {
  background: #e85d26;
  color: #fff;
  border: none;
  padding: 13px 40px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  display: block;
  margin: 0 auto;
}

.btn-send:hover {
  background: #cf4e1a;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  /* Keep animation but stack vertically on tablet/mobile */
  .services-layout {
    flex-direction: column;
    gap: 24px;
  }

  .services-image {
    display: block !important;
    width: 100% !important;
    border-radius: 12px !important;
  }

  .services-cards {
    width: 100% !important;
    opacity: 1 !important;
    overflow: visible !important;
    transform: none !important;
  }

  .services-cards-inner {
    width: 100% !important;
    min-width: unset !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }

  .section-label {
    color: #fff !important;
  }
  .who-section-wrap .section-label {
    color: #1a1a2e !important;
  }
}

@media (max-width: 768px) {
  .services-cards-inner {
    grid-template-columns: 1fr !important;
  }
  .services-container {
    padding-bottom: 10px;
  }
  .section-label{
    color: #fff !important;
        font-size: 18px !important;
        font-weight: 800;
        text-align: center;

  }
  .who-section-wrap .section-label {
    color: #1a1a2e !important;
  }
  .Domain-section{

    color: #000 !important;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero cards ΓÇö handled in component-level media query above */

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .hero-content {
    padding: 60px 40px 40px;
  }

  .hero-card-featured h3 { font-size: 22px; }
  .hero-card-desc { font-size: 13px; }

  .hero {
    padding: 0px 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-content {
    padding: 50px 24px 30px;
  }
}



@media (max-width: 480px) {
  .hero {
    padding: 0px !important;
  }

  .hero-content {
    padding: 24px 20px 20px;
  }

  .services,
  .blog,
  .contact {
    padding: 20px 16px;
  }
}

/* Know More About Us button */
.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e85d26;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-know-more:hover {
  background: #cf4e1a;
  transform: translateY(-2px);
}

/* ===== OPERATING MODEL SECTION ===== */
.op-model {
  padding: 20px 24px;
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  position: relative;
  overflow: hidden;
}

.op-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.op-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.op-header {
  text-align: center;
  margin-bottom: 60px;
}

.op-header h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 14px 0 18px;
}

.op-header .section-label {
  font-size: 32px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}

.op-subtitle {
  font-size: 16px;
  padding-top: 10px;
  color: #fff;
  max-width: 600px;
  line-height: 1.75;
  margin: 0 auto;
  text-align: center;
}

/* TABS ΓÇö vertical layout */
.op-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.op-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  text-align: left;
  width: 100%;
}

.op-tab:hover {
  background: rgba(124, 92, 191, 0.15);
  border-color: rgba(124, 92, 191, 0.4);
}

.op-tab.active {
  background: rgba(124, 92, 191, 0.25);
  border-color: #7c5cbf;
  box-shadow: 0 0 24px rgba(124, 92, 191, 0.3);
}

.op-tab-num {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  transition: color 0.3s;
}

.op-tab.active .op-tab-num {
  color: #a78bfa;
}

.op-tab-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  transition: color 0.3s;
}

.op-tab.active .op-tab-label {
  color: #fff;
}

.op-tab-label small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.op-tab.active .op-tab-label small {
  color: #a78bfa;
}

.op-tab-connector {
  display: none;
}

/* TAB + PANEL wrapper */
.op-tab-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* PANELS */
.op-panels {
  position: relative;
  min-height: 340px;
}

.op-panel {
  display: none;
  flex-direction: column;
  gap: 32px;
  animation: opFadeIn 0.45s ease;
}

.op-panel.active {
  display: flex;
}

@keyframes opFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* PANEL LEFT */
.op-panel-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.op-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.op-panel-left h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.op-panel-left>p {
  font-size: 15px;
  color: #b0b8d4;
  line-height: 1.75;
  margin: 0;
}

.op-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.op-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

/* PANEL RIGHT ΓÇö CARDS */
.op-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.op-card-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

.op-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  cursor: default;
}

.op-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.op-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  margin-bottom: 14px;
}

.op-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.op-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

/* BOTTOM PILLARS */
.op-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.op-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  transition: background 0.3s, transform 0.3s;
}

.op-pillar:hover {
  background: rgba(124, 92, 191, 0.12);
  transform: translateY(-3px);
}

.op-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, #7c5cbf, #5b3fa0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.op-pillar h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.op-pillar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .op-tab-layout {
    grid-template-columns: 1fr;
  }

  .op-card-grid,
  .op-card-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .op-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .op-card-grid,
  .op-card-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* Op model teaser (home page) */
.op-model-teaser .op-header {
  margin-bottom: 20px;
}

.op-teaser-image {
  display: none;
}

/* ΓöÇΓöÇ Global Operating Model Diagram ΓöÇΓöÇ */
.gom-outer {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.gom-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  align-items: stretch;
}

.gom-layers-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gom-row {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.gom-row-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  color: #fff;
}

.gom-onshore .gom-row-label {
  background: #4338ca;
}

.gom-hybrid .gom-row-label {
  background: #047857;
}

.gom-offshore .gom-row-label {
  background: #b45309;
}

.gom-row-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gom-onshore .gom-row-body {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.gom-hybrid .gom-row-body {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.gom-offshore .gom-row-body {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.gom-row-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gom-row-header i {
  font-size: 1.1rem;
  opacity: 0.9;
}

.gom-onshore .gom-row-header i {
  color: #4338ca;
}

.gom-hybrid .gom-row-header i {
  color: #047857;
}

.gom-offshore .gom-row-header i {
  color: #b45309;
}

.gom-row-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e1b4b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gom-row-sub {
  font-size: 0.6rem;
  color: #6b7280;
  margin-top: 2px;
}

.gom-row-cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gom-item {
  flex: 1;
  min-width: 120px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gom-item strong {
  font-size: 0.68rem;
  font-weight: 600;
  color: #111827;
}

.gom-item span {
  font-size: 0.58rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Side pillars */
.gom-side-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.gom-pillar {
  flex: 1;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gom-pillar-gov {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.gom-pillar-exp {
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.gom-pillar-sec {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.gom-pillar-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gom-pillar-gov .gom-pillar-title {
  color: #4338ca;
}

.gom-pillar-exp .gom-pillar-title {
  color: #7c3aed;
}

.gom-pillar-sec .gom-pillar-title {
  color: #dc2626;
}

.gom-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gom-pillar-item strong {
  font-size: 0.62rem;
  color: #111827;
  font-weight: 600;
}

.gom-pillar-item span {
  font-size: 0.56rem;
  color: #6b7280;
}

/* Bottom bar */
.gom-footer-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.gom-footer-item {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gom-fi-onshore {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #4338ca;
}

.gom-fi-hybrid {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #047857;
}

.gom-fi-offshore {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #b45309;
}

@media (max-width: 1199px) {
  .gom-outer {
    display: none;
  }

  .gom-mobile-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  .btn-op-more{
    margin-top: 20px;
  }
}

@media (min-width: 1200px) {
  .gom-outer {
    display: block;
  }

  .gom-mobile-img {
    display: none;
  }
 
}

.gom-main-img-wrap {
  width: 100%;
  height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  scrollbar-width: thin;
  scrollbar-color: rgba(124,92,191,0.5) transparent;
}

.gom-main-img-wrap::-webkit-scrollbar {
  width: 6px;
}

.gom-main-img-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.gom-main-img-wrap::-webkit-scrollbar-thumb {
  background: rgba(124,92,191,0.5);
  border-radius: 3px;
}

.gom-main-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .gom-main-img-wrap {
    height: auto;
    overflow: visible;
    box-shadow: none;
  }
     .btn-op-more{
      margin-top: 0px !important;
     }
   
}

.op-teaser-cta {
  text-align: center;
}

.btn-op-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e85d26;
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-op-more:hover {
  background: #cf4e1a;
  transform: translateY(-2px);
}

/* Operating Model — content below image */
.op-below-img {
  max-width: 1200px;
  margin: 10px auto 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.op-below-img p {
  font-size: 15px;
  color: #b0b8d4;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: left;
}

.op-below-img ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.op-below-img ul li {
  font-size: 15px;
  color: #fff;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.op-below-img ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
}

@media (max-width: 768px) {
  .op-below-img {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
