/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Ubuntu", sans-serif;
  color: #101010;
  background: #fff;
  line-height: 1.6;
  scrollbar-gutter: stable;
}

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Typography Variables */
  --display-size: 62px;
  --display-line: 58px;
  --display-weight: 800;
  --display-font: "Ubuntu Sans";
  
  --body-size: 18px;
  --body-line: 28px;
  --body-font: "Ubuntu";
  --body-weight: 300;
  
  --eyebrow-size: 18px;
  --eyebrow-line: 27px;
  --eyebrow-weight: 300;
  --eyebrow-spacing: 0.2em;
  --eyebrow-font: "Ubuntu Sans";
  
  --smooch-size: 32px;
  --smooch-line: 38px;
  --smooch-weight: 600;
  --smooch-font: "Smooch Sans";
  
  --detail-size: 18px;
  --detail-line: 21px;
  --detail-weight: 400;
  --detail-font: "Ubuntu";
  
  /* Color Variables */
  --teal-strong: #12a391;
  --mint: #26aca1;
  --sky: #5ec8ee;
  --aqua: #74cee3;
  --text: #101010;
  --line: #dff3fb;
  --bg-soft: #f5fbfc;
  --dark: #1a1a1a;
  --gradient:  linear-gradient(90deg, #179ACD, #06B716);
  --gradient2:  linear-gradient(90deg, #12A391, #86D6F2);

  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  
  /* Container */
  --container-max: 1692px;
  --container-pad: 24px;
}

@media (max-width: 1199px) {
  :root {
    --display-size: 48px;
    --display-line: 52px;
    --body-size: 16px;
    --body-line: 22px;
    --eyebrow-size: 16px;
    --container-pad: 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --display-size: 32px;
    --display-line: 38px;
    --body-size: 16px;
    --body-line: 20px;
    --eyebrow-size: 15px;
    --container-pad: 16px;
  }
}

/* ============================================
   Typography Classes
   ============================================ */
.display {
  font-family: var(--display-font);
  font-size: var(--display-size);
  line-height: var(--display-line);
  font-weight: var(--display-weight);
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
}

.lead {
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: var(--body-line);
  font-weight: var(--body-weight);
  margin-bottom: var(--spacing-md);
  color: var(--text);
}

.lead-Sans {
  font-family: var(--display-font);
  font-weight: 500;

}

.eyebrow {
  font-family: var(--eyebrow-font);
  font-size: var(--eyebrow-size);
  line-height: var(--eyebrow-line);
  font-weight: var(--eyebrow-weight);
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-spacing);
  margin-bottom: var(--spacing-md);
  color: var(text);
  display: block;
}

.stat-value {
  font-family: var(--smooch-font);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--teal-strong);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.detail {
  font-size: var(--detail-size);
  line-height: var(--detail-line);
  font-weight: var(--detail-weight);
  color: var(--text);
}

.gradient {
  background: linear-gradient(90deg, #179ACD, #06B716);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient2 {
  background: linear-gradient(90deg, #12A391, #86D6F2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bold{font-weight: 500;}

/* ============================================
   Layout & Container
   ============================================ */
.container {
  width: min(var(--container-max), calc(100% - var(--container-pad) * 2));
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.section-soft {
    background: #fff;
    /* background: var(--bg-soft); */
  
}

.section-cloud {
background-color: #ffffff;
}
 .para-text p, .para-text h5 {
   font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: var(--body-line);
  font-weight: var(--body-weight);
  margin-bottom: var(--spacing-md);
  color: var(--text);

}

 .para-text h5{
  font-family: var(--display-font);
  font-weight: 500;
}
 .para-text h5 strong{
  font-weight: bolder;
}

.hero {
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-2xl);
  background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
  position: relative;
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: var(--spacing-sm) 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.overlay-header .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.overlay-header .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
  .overlay-header .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.overlay-header .hero {
  padding-top: clamp(110px, 12vw, 150px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.brand {
  height: auto;
  width: clamp(100px, 10%, 160px);
  flex-shrink: 0;
}


/* #mega-menu-wrap-primary {
  background: transparent !important;
}


#mega-menu-wrap-primary #mega-menu-primary {
  display: flex;
  list-style: none;
  gap: var(--spacing-2xl);
  background: transparent !important;
  padding: 0;
  margin: 0;
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  text-decoration: none;
  color: var(--text) !important;
  font-weight: 300;
  transition: color 0.3s ease;
  background: transparent !important;
  font-size: 17px !important;
  font-weight: 300 !important;
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
  color: var(--teal-strong) !important;
  background: transparent !important;
} */


.nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-2xl);
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: var(--teal-strong);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* Mobile slide-down nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1099;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  will-change: max-height;
}

@media (max-width: 767px) {
  .mobile-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.mobile-nav.is-open {
  max-height: 320px;
}

.mobile-nav-list {
  list-style: none;
  padding: 72px 0 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-list a {
  display: block;
  padding: 18px 24px;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-list a:hover {
  color: var(--teal-strong);
  background: rgba(18, 163, 145, 0.05);
}

@media (max-width: 767px) {
  .nav-list {
    gap: var(--spacing-lg);
  }
  .container { width: 100%; }

  /* Hide text nav links on mobile; show only toggle */
  .nav-desktop-item {
    display: none;
  }

  /* Show mobile nav panel */
  .mobile-nav {
    display: block;
  }
}

@media (min-width: 768px) {
  /* Hide hamburger toggle on desktop */
  /* .mobile-menu-toggle {
    display: none;
  } */
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--detail-size);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-outline {
  border: 2px solid ;
   border-image-source: linear-gradient(90deg, #179ACD, #06B716);
  border-image-slice: 1;
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  background:  linear-gradient(90deg, #179ACD, #06B716);
  color: #fff;
}

.btn-solid {
  background: var(--teal-strong);
  color: #fff;
  border: 2px solid var(--teal-strong);
}

.btn-solid:hover {
  background: #0f8773;
  border-color: #0f8773;
}

.btn.light-border {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn.light-border:hover {
  background: #fff;
  color: var(--teal-strong);
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

#hero-particles canvas {
  display: block;
}

.hero-inner .eyebrow {
  margin-bottom: var(--spacing-md);
}

.hero-inner .display {
  font-size: clamp(40px, 8vw, 62px);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

.max-hero {
  max-width: 700px;
  margin: 0 auto var(--spacing-2xl);
  font-size: clamp(18px, 3vw, 20px);
}

.cta-row {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
}

.footer-cta {
  justify-content: flex-start;
  margin-top: var(--spacing-2xl);
}

.footer-cta .btn{
  font-weight: var(--detail-line); font-family: var(--display-font);
}

.video-bg {
  position: absolute;
  top:0px;
  z-index: -1;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
  opacity: 0.2;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* ensures video fills area */
  z-index: -1;       /* pushes video behind content */
}

.content {
  position: relative;
  z-index: 1; /* keeps text above video */
  color: white;
}


@media (max-width: 767px) {
  .hero-inner{
    margin: 0px;
    padding: 0px;
    width: 100%;
  }
  .cta-row {
    flex-direction: column;
  }
  
  .footer-cta {
    flex-direction: column;
  }
}

/* ============================================
   Stats Grid
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  max-width: 600px;
  margin: var(--spacing-xl) auto 0;
  text-align: center;
}

.stats-grid div {
  padding: var(--spacing-lg);
}

.stats-grid dd {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  font-weight: 300;
  font-family: var(--display-font); line-height: 1.2;
}

.stats-grid.compact {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  gap: var(--spacing-xl);
  margin: var(--spacing-2xl) auto 0;
}

@media (max-width: 1199px) {
  .stats-grid,
  .stats-grid.compact {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 767px) {
  .stats-grid,
  .stats-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Section 2: Cloud Transformation
   ============================================ */
.cloud-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0px;
  align-items: start;
}

.cloud-left {
  padding-top: var(--spacing-lg);
}

.cloud-left .display {
  font-size: clamp(42px, 6vw, 62px);
}

.cloud-left .lead {
  margin-bottom: var(--spacing-lg);
}

.visual-card {
  margin:0;
  border-radius: 12px;
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin: auto;
}

.cloud-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px 24px;
}

.card {
  padding: var(--spacing-md);
  /* background: #f9fbfc;
  border-radius: 8px;
  border: 1px solid var(--line); */
  transition: all 0.3s ease;
  
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(18, 163, 145, 0.12);
}

.card h3 {
  font-family: var(--smooch-font);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.card p {
  font-size: clamp(15px, 1.5vw, 16px);
  font-family: var(--eyebrow-font);
  color:var(--text);
  line-height: 1.4;
}
.card img {
  height: 50px;
}

@media (max-width: 1199px) {
  .cloud-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cloud-layout.home{
    grid-template-columns: 1fr;
    gap: 0px !important;
  }
  .cloud-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cloud-services {
    grid-template-columns: 1fr;
  }
  .visual-card{display: none;}
}

/* ============================================
   Section 3: Multi-Cloud Expertise
   ============================================ */
.multi-cloud-section {
  background: linear-gradient(115deg, #f9fcfd 48%, #edf9fe 100%);
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 8vw, 112px);
  background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg'); background-position: top; background-attachment: fixed; background-size: 100% auto;
}
.multi-cloud-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 227, 246, 0.35) 0%, rgba(121, 227, 246, 0) 70%);
  pointer-events: none;
}

.multi-cloud-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(520px, 1.3fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.multi-copy {
  padding-top: clamp(8px, 1vw, 14px);
}

.multi-copy .display {
  margin-bottom: var(--spacing-xl);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
}

.multi-copy .lead {
  max-width: 520px;
  margin-bottom: var(--spacing-md);
  font-size: var(--body-size);
   line-height: var(--body-line);
  letter-spacing: -0.01em;
  font-family: var(--body-font);
    font-weight: var(--body-weight);
     color: var(--text);
}


.multi-copy  .lead-Sans {
  font-family: var(--display-font);
  font-weight: 500;

}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
}

.provider-card {
  min-height: clamp(250px, 24vw, 280px);
  border: 2px solid #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(10px, 2vw, 10px);
  background: transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-6px);
  border-color: #c7e9f8;
  box-shadow: 0 16px 38px rgba(18, 163, 145, 0.13);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85) 0%, rgba(241, 251, 255, 0.65) 100%);
}

.provider-card img {
  width: auto;
  max-width: 72%;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.provider-card h3 {
  font-family: var(--smooch-font);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.16;
  font-weight: 700;
  color: #111;
  margin-bottom: clamp(16px, 2vw, 22px);
}

.provider-card-accent {
  background:
    linear-gradient(165deg, rgba(219, 245, 253, 0.85) 0%, rgba(243, 252, 255, 0.88) 58%, rgba(226, 248, 255, 0.94) 100%);
}

.provider-card-bottom {
  grid-column: span 1;
}

.provider-link {
  width: 36px;
  height: 36px;
  border: 1.8px solid #79d7ea;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #35b5d6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.provider-link i {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-link:hover {
  transform: translateX(2px);
  background: #35b5d6;
  color: #fff;
}

.akamai-wordmark {
  margin-bottom: clamp(18px, 2vw, 24px);
  color: #2c9ec4;
  font-size: clamp(34px, 3vw, 46px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1199px) {
  .multi-cloud-wrap {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .multi-copy .lead {
    max-width: 900px;
  }

  .provider-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .provider-card-bottom {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .multi-cloud-section {
    padding-left: 0;
    padding-right: 0;
  }

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

  .provider-card {
    min-height: 240px;
    border-radius: 24px;
  }
}

/* ============================================
   Strategic Partnerships: Intro + Partner Icons
   ============================================ */
.strategic-partners-intro { 
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(22px, 3vw, 50px);
}

.strategic-partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.strategic-partners-copy {
  max-width: 900px;
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-family: var(--display-font);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #1f1f1f;
}

.strategic-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(10px, 1.8vw, 20px);
}

.strategic-provider-card {
  min-height: 250px;
  border: none;
  border-radius: 0;
  padding: 10px;
  background: transparent;
}

.strategic-provider-card:hover {
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.strategic-provider-card img {
  max-width: 76%;
  max-height: 92px;
  margin-bottom: 12px;
}

.strategic-provider-card h3 {
  margin-bottom: 14px;
}

.strategic-partners-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.strategic-partners-right img {
  width: min(100%, 760px);
  height: auto;
  display: block;
}

@media (max-width: 1199px) {
  .strategic-partners-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .strategic-provider-grid {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }

  .strategic-partners-right {
    justify-content: flex-end;
  }

  .strategic-partners-right img {
    width: min(100%, 620px);
  }
}

@media (max-width: 767px) {
  .strategic-partners-copy {
    letter-spacing: 0.03em;
    font-size: clamp(16px, 4.4vw, 20px);
  }

  .strategic-provider-grid {
    grid-template-columns: 1fr;
  }

  .strategic-provider-card {
    min-height: 210px;
  }

  .strategic-partners-right {
    justify-content: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ============================================
   Why Partner Section
   ============================================ */
.why-partner-section {
  background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
      padding-top: clamp(34px, 4vw, 56px);
    padding-bottom: clamp(22px, 3vw, 50px);
  position: relative;
  overflow: hidden;
}

.why-partner-layout {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
}
.why-partner-layout.custom-gap {
  gap: clamp(28px, 7vw, 100px) !important;
}

.why-partner-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 40%;
}

.why-partner-title {
  /* margin: 0 0 24px; */
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111111;
}

.why-partner-subtitle {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #2e2e2e;
}

.why-partner-right {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.why-partner-benefits {
   display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: clamp(28px, 3vw, 48px);
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.benefit-icon {

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-item h3 {
  margin: 0;
  font-family: var(--smooch-font);
  font-weight: 600;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

@media (max-width: 1199px) {
  .why-partner-layout {
    gap: clamp(48px, 6vw, 72px);
  }

  .why-partner-left {
    max-width: 100%;
    text-align: left;
  }

  .why-partner-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .why-partner-section {
    padding: clamp(40px, 6vw, 56px) var(--spacing-lg);
    background-attachment: scroll;
  }

  .why-partner-title {
    font-size: clamp(32px, 7vw, 46px);
    margin-bottom: 16px;
  }

  .why-partner-subtitle {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .why-partner-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 32px);
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .benefit-item h3 {
    font-size: clamp(14px, 3.5vw, 18px);
  }
}
/* ============================================
   Section 4: AI Services
   ============================================ */
.ai-services-section {
  text-align: center;
  overflow: visible;
}

.ai-services-section .display {
  font-size: clamp(42px, 6vw, 62px);
}

.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.service-card {
  /* background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px; */
  padding: var(--spacing-2xl) var(--spacing-lg);
  text-align: left;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--teal-strong);
  box-shadow: 0 12px 32px rgba(18, 163, 145, 0.12);
  transform: translateY(-8px);
}

.service-card h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-family: var(--smooch-font);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.service-card > p {
  font-size: 16px;
  color: #666;
  margin-bottom: var(--spacing-lg);
  line-height: 1.4;
  font-family: var(--display-font);

}

.service-card ul {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.service-card li {
  font-family: var(--display-font);
  font-size: 16px;
  color: #666;
  padding: 2px 0;
  padding-left: 20px;
  position: relative;
}

.service-card li:before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--teal-strong);
  font-weight: bold;
}

.learn-more {
  display: inline-block;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: var(--mint);
}
.background-visual{position: absolute; top:-150px; right:0px; }
.background-visual img{max-width:650px; }

@media (max-width: 1199px) {
  .ai-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
  .background-visual{display:none; top:-150px; }
  .background-visual img{max-width:550px; }
}

@media (max-width: 767px) {
  .ai-services-grid {
    grid-template-columns: 1fr;
  }
  .background-visual{top:-100px; }
  .background-visual img{max-width:300px; }
}

/* ============================================
   Section 5: Managed Services
   ============================================ */
.managed-section {
  text-align: center;
   background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg'); background-position: top; background-attachment: fixed; background-size: 100% auto;
}
.managed-section .lead{max-width: 40%;}

.managed-section .display {
  font-size: clamp(42px, 6vw, 62px);
}

.managed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.managed-card {

  padding: var(--spacing-lg);
  text-align: left;
  transition: all 0.3s ease;
}

.managed-card:hover {
  border-color: var(--teal-strong);
  box-shadow: 0 12px 32px rgba(18, 163, 145, 0.12);
  transform: translateY(-8px);
}

.service-icon {
  height: 60px;
  margin-bottom: var(--spacing-lg);
}

.service-icon img {
  height: 100%;
  width: auto;
}

.managed-card h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-family: var(--smooch-font);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.managed-card > p {
  font-size: 16px;
  color: #666;
  margin-bottom: var(--spacing-lg);
  line-height: 1.4;
  font-family: var(--display-font);
}

.managed-card ul {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.managed-card li {
  font-size: 16px;
  color: #666;
  padding: 2px 0;
  padding-left: 20px;
  position: relative;
  font-family: var(--display-font);
}

.managed-card li:before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--teal-strong);
  font-weight: bold;
}
.managed-bg{position: absolute; bottom:100px; right:0px; }
.managed-bg img{max-width:500px; }

@media (max-width: 1199px) {
  .managed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
  .managed-bg img{max-width:500px; }
}

@media (max-width: 767px) {
  .managed-grid {
    grid-template-columns: 1fr;
  }
  .managed-section .lead{max-width:100%}
  .managed-bg{display: none;}
  .managed-bg img{max-width:400px; }
  
}

/* ============================================
   Section 6: Methodology
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}
.methodology-section .visual-card img{
  max-height: 500px;
  max-width: 100%;
  width: auto;
}

.method-list {
  list-style: none;
  margin: var(--spacing-2xl) 0 var(--spacing-2xl);
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 22px 56px;
}

.method-list li {
  font-family: var(--display-font);
  font-size: clamp(18px, 3vw, 18px);
  line-height: 1.1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 30px;
}

.method-list li img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .method-list {
    gap: 18px 32px;
  }
}

@media (max-width: 767px) {
  .method-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   Section 7: Timeline
   ============================================ */
.products-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #fdfefe 0%, #f5fcff 62%, #e9faff 100%);
}

.products-section::after {
  content: "";
  position: absolute;
  right: -220px;
  top: -90px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 231, 247, 0.35) 0%, rgba(129, 231, 247, 0) 68%);
  pointer-events: none;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.products-section .display {
  margin-bottom: 14px;
}



.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 56px);
  margin-top: var(--spacing-2xl);
  list-style: none;
  justify-content: end; 
  width: 80%;           
  margin-left: 20%;
}


.timeline-step {
  text-align: left;
  position: relative;
  min-height: 205px;
  border-left: 1px solid #86dffc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-step span {
  display: block;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 800;
  color: var(--teal-strong);
  margin-bottom: 8px;
  margin-left: 50px;
  font-family: var(--smooch-font);
  line-height: 0.95;
  order: 2;
}

.timeline-step h3 {
  font-family: var(--smooch-font);
  font-size: clamp(16px, 1.15vw, 18px);
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 30px;
  padding: 8px 12px;
  border: 1px solid #86dffc;
  order: 1;
}

.timeline-step p {
  font-family: var(--display-font);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  color: #5EC8EE;
  line-height: 1.04;
  margin-left: 50px;
  order: 3;
}

@media (max-width: 1199px) {
  .products-section .lead {
    font-size: clamp(20px, 3.3vw, 30px);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
      width: 100%;           
  margin-left: 0px;
  }

  .timeline-step {
    min-height: 186px;
  }

  .timeline-step p {
    font-size: clamp(24px, 4vw, 36px);
  }
}

@media (max-width: 767px) {
  .products-section::after {
    width: 420px;
    height: 420px;
    right: -140px;
    top: 60px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline-step {
    min-height: 160px;
  }

  .timeline-step h3 {
    margin-bottom: 20px;
    letter-spacing: 0.16em;
  }

  .timeline-step span {
    font-size: 52px;
  }

  .timeline-step p {
    font-size: 30px;
  }
}
/* ============================================
   GCP Capabilities Section
   ============================================ */
.gcp-page .strategic-partners-layout {
  align-items: start;
}

.gcp-capabilities-title {
  max-width: 760px;
  margin: 0 0 12px;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #111111;
}

.gcp-capabilities-eyebrow {
  margin: 0 0 24px;
  font-family: var(--eyebrow-font);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.18em;
  color: #2b9085;
}

.gcp-capabilities-copy {
  max-width: 940px;
  margin: 0 0 30px;
  font-family: var(--display-font);
  font-size: clamp(18px, 1.35vw, 30px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #1f1f1f;
}
.fullcontent{
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(10px, 1.2vw, 20px);
}
.fullwidth {
  max-width: 100%;
  margin: 0 0 30px;
  font-family: var(--display-font);
  font-size: clamp(18px, 1.35vw, 30px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #1f1f1f;
}
.gcp-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 24px;
}

.gcp-capability-item h4 {
  margin: 0 0 8px;
  font-family: var(--smooch-font);
  font-weight: 700;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #111111;
}

.gcp-capability-item p {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.34;
  letter-spacing: 0.02em;
  color: #2e2e2e;
}

@media (max-width: 1199px) {
  .gcp-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gcp-capabilities-title {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.1;
  }

  .gcp-capabilities-copy, .fullwidth {
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    font-size: clamp(16px, 4.3vw, 20px);
  }
  .gcp-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gcp-capability-item h4 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .gcp-capability-item p {
    font-size: clamp(16px, 4.2vw, 20px);
  }
}
/* ============================================
   Vision Section
   ============================================ */
.vision-section {
  text-align: center;
}

.center-block {
  max-width: 900px;
  margin: 0 auto;
}

.vision-section .display {
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
}

.vision-tagline {
  font-family: var(--display-font);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.08;
  font-weight: 500;
  color: #151515;
  max-width: 880px;
  margin: 0 auto 36px;
}

.vision-options {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
}

.vision-option-box {
  min-width: clamp(220px, 22vw, 320px);
  padding: 12px 20px;
  border: 1px solid #6fd4f6;
  color: #232323;
  font-family: var(--eyebrow-font);
  font-size: clamp(13px, 1.2vw, 20px);
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: none;
}

.vision-option-connector {
  position: relative;
  width: 52px;
  height: 12px;
}

.vision-option-connector::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid #6fd4f6;
}

.vision-option-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #6fd4f6;
  transform: translate(-50%, -50%);
}


@media (max-width: 767px) {
  .vision-tagline {
    margin-bottom: 26px;
  }

  .vision-options {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .vision-option-box {
    min-width: min(300px, 90vw);
  }

  .vision-option-connector {
    width: 12px;
    height: 24px;
  }

  .vision-option-connector::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 0;
    height: auto;
    border-top: 0;
    border-left: 1px solid #6fd4f6;
    transform: translateX(-50%);
  }

 
}


/* ============================================
   Manifesto Section
   ============================================ */

.manifesto-section {
  background: linear-gradient(135deg, #f9fcfd 0%, #edf9fe 100%);
  text-align: center;
  background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg'); background-position: top; background-attachment: fixed; background-size: 100% auto  ;
}
.manifesto {
  margin-top: var(--spacing-3xl);
  margin-bottom: var(--spacing-md);
}

.manifesto-title {
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 600;
  line-height: 0.96;
  margin-bottom: var(--spacing-2xl);

}

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

}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
  text-align: left;

}

.testimonials-section .display {
  margin-bottom: 30px;
}

.testimonials-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #62cef0 #bfefff;
  margin-top: 4px;
  padding-bottom: 12px;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: #bfefff;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: #62cef0;
  border-radius: 8px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: #2db9e5;
}

.testimonials {
  display: flex;
  gap: clamp(26px, 2.4vw, 46px);
  width: max-content;
  min-width: 100%;
  align-items: stretch;
}

.quote {
  flex: 0 0 clamp(280px, 20.5vw, 400px);
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
/* .quote.homepage-quote{
  flex: 0 0  300px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 1024px) {
.quote.homepage-quote{
  flex: 0 0 600px;
}
} */
 .quote-short {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quote-short.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
 .quote.homepage-quote p:first-child{
  font-family: var(--display-font);
  /* font-size: clamp(18px, 1.8vw, 22px); */
  font-size: 16px !important;
  color: #242424;
  margin-bottom: 0 !important;
  line-height: 1.5;
  flex-grow: 1;
 }
.quote p:first-child {
  font-family: var(--display-font);
  font-size: clamp(16px, 1vw, 20px);
  color: #242424;
  margin-bottom: clamp(18px, 12vw, 22px);
  line-height: 1.5;
  flex-grow: 1;
}

.quote h3 {
  font-family: var(--smooch-font);
  font-size: clamp(20px, 2vw, 46px);
  font-weight: 600;
  color: var(--text);
  margin-top: auto;
  margin-bottom: 2px;
  line-height: 1.05;
}

.quote p.company {
  font-family: var(--display-font);
  font-size: clamp(16px, 1vw, 20px);
  color: #2d2d2d;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1199px) {
  .quote {
    flex-basis: clamp(340px, 70vw, 680px);
  }

  .quote p:first-child {
    font-size: clamp(18px, 2.6vw, 30px);
  }

  .quote h3 {
    font-size: clamp(24px, 3vw, 36px);
  }

  .quote p.company {
    font-size: clamp(18px, 2.4vw, 28px);
  }
}

@media (max-width: 767px) {
  .quote {
    flex-basis: min(88vw, 420px);
  }

  .quote p:first-child {
    font-size: 20px;
    line-height: 1.2;
  }

  .quote h3 {
    font-size: 34px;
  }

  .quote p.company {
    font-size: 22px;
  }

}

/* ============================================
   Client & Partners Section
   ============================================ */
.client-section {
  background: linear-gradient(115deg, #f9fcfd 48%, #edf9fe 100%);
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 8vw, 112px);
  background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg'); background-position: bottom;  background-size:cover;
}

.client-section,
.partners-section {
  text-align: center;
}

.client-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.client-video-controls {
  display: inline-flex;
  gap: 10px;
  margin-top: 10px;
}

.client-video-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(18, 163, 145, 0.35);
  color: rgba(18, 163, 145, 0.55);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.client-video-btn:hover {
  border-color: #12a391;
  color: #12a391;
  transform: translateY(-1px);
}

.client-section .display,
.partners-section .display {
  font-size: clamp(42px, 6vw, 62px);
}

.video-frame,
.partner-band {
  width: 100%;
  margin-top: var(--spacing-2xl);
  border-radius: 12px;
  overflow: hidden;
}

.video-frame iframe,
.partner-band img {
  width: 100%;
  height: auto;
  display: block;
}

.video-frame iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.partners-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2.05fr);
  align-items: center;
  gap: clamp(26px, 4vw, 64px);
}

.partners-section .display {
  margin: 0;
  line-height: 0.95;
  text-align: left;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.partners-logos img {
  width: 100%;
  max-height: 84px;
  object-fit: contain;
  justify-self: center;
}

@media (max-width: 1199px) {
  .partners-wrap {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .partners-logos {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 767px) {
  .client-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-video-controls {
    margin-top: 0;
  }

  .client-video-btn {
    width: 40px;
    height: 40px;
  }

  .partners-wrap {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .partners-logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .partners-logos img:last-child {
    grid-column: 1 / -1;
    width: min(190px, 62%);
  }
}

/* ============================================
   Insights Section
   ============================================ */
.insights-section {
  text-align: center;
}

.insights-section .display {
  font-size: clamp(42px, 6vw, 62px);
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.insights-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 6px;
}

.insights-filter-btn {
  background: transparent;
  border: 1px solid #6fd4f6;
  color: #101010;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.insights-filter-btn:hover {
  background: rgba(111, 212, 246, 0.15);
  border-color: #12a391;
}

.insights-filter-btn.active {
  background: #6fd4f6;
  border-color: #6fd4f6;
  color: #fff;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.insight {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.insight:hover {
  border-color: var(--teal-strong);
  box-shadow: 0 12px 32px rgba(18, 163, 145, 0.12);
  transform: translateY(-8px);
}

.insight img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.insight h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-top: var(--spacing-lg);
  line-height: 1.4;
}

.insight p {
  font-size: 15px;
  color: #666;
  margin: 0 var(--spacing-lg) var(--spacing-lg);
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .insights-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (max-width: 767px) {
  .insights-filters {
    gap: 8px;
  }
  .insights-filter-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   Team Leadership Section
   ============================================ */
.life-team-highlights {
  background: #ebebeb;
  padding: clamp(54px, 6vw, 86px) var(--spacing-lg);
}
.life-team-highlights.journey{
  background: rgba(255, 255, 255, 1)
}

.life-team-title {
  max-width: 700px;
  margin: 0 0 clamp(34px, 4.2vw, 56px);
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #0f0f0f;
}

.life-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(30px, 3vw, 42px) clamp(16px, 1.8vw, 24px);
}

.life-team-card {
  text-align: center;
}

.life-team-photo {
  width: clamp(150px, 13vw, 178px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
}

.life-team-name {
  margin: 0 0 4px;
  font-family: var(--smooch-font);
  font-weight: 600;
  font-size: clamp(22px, 1.5vw, 26px);
  line-height: 1.2;
  color: #111111;
}

.life-team-role {
  margin: 0 auto;
  max-width: 210px;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(16px, 1vw, 21px);
  line-height: 1.24;
  color: #222222;
}

@media (max-width: 1199px) {
  .life-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .life-team-highlights {
    padding: clamp(42px, 7vw, 60px) var(--spacing-lg);
  }

  .life-team-title {
    font-size: clamp(30px, 8vw, 42px);
    margin-bottom: 32px;
  }

  .life-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .life-team-photo {
    width: min(100%, 150px);
  }

  .life-team-name {
    font-size: clamp(18px, 4.3vw, 22px);
  }

  .life-team-role {
    font-size: clamp(14px, 3.5vw, 17px);
  }
}

.csr-activities-section {
  background: #ebebeb;
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(66px, 8vw, 98px);
}
.csr-activities-section.journey{
  background: rgba(255, 255, 255, 1);
}

.csr-activities-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}
.form-layout {
  display: grid;
  grid-template-columns:1fr 3fr;
  align-items: center;
  gap: clamp(50px, 8vw, 200px);
}

.csr-activities-copy {
  max-width: 760px;
}

.csr-activities-eyebrow {
  margin: 0 0 12px;
  font-family: var(--eyebrow-font);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #2f2f2f;
}

.csr-activities-title {
  margin: 0 0 26px;
  font-family: var(--display-font);
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0d0d0d;
  max-width: 640px;
}
.journey-title{
  margin: 0 0 26px;
  font-family: var(--display-font);
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0d0d0d;
  max-width: 500px;

}

.csr-activities-text {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(18px, 1.25vw, 34px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #333333;
}

.csr-activities-gallery {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 12px;
  align-items: stretch;
}

.csr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journey-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1199px) {
  .csr-activities-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-layout {
    grid-template-columns: 1fr 2fr;
  }


  .csr-activities-copy {
    max-width: none;
  }

  .csr-activities-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .csr-activities-section {
    padding-top: 10px;
    padding-bottom: clamp(42px, 7vw, 60px);
  }

  .csr-activities-eyebrow {
    margin-bottom: 10px;
    letter-spacing: 0.16em;
  }

  .csr-activities-title, .journey-title {
    margin-bottom: 16px;
    font-size: clamp(30px, 8vw, 40px);
  }
  

  .csr-activities-text {
    font-size: clamp(16px, 4.3vw, 20px);
    line-height: 1.42;
    letter-spacing: 0.03em;
  }

  .csr-activities-gallery {
    gap: 10px;
  }
}
/* Our Approach */
  .approach-spine-section {
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);

  }

  .approach-spine-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .approach-spine-eyebrow {
    margin-bottom: 10px;
    letter-spacing: 0.22em;
  }

  .approach-spine-title {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(44px, 4.4vw, 76px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .approach-spine-lead {
    max-width: 780px;
    margin: clamp(20px, 2.6vw, 30px) auto 0;
    font-family: var(--display-font);
    font-size: clamp(19px, 1.3vw, 30px);
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: #2a2a2a;
  }

  .approach-spine-prompt {
    width: fit-content;
    margin: clamp(24px, 3vw, 34px) auto 10px;
    border: 1px solid rgba(35, 167, 158, 0.3);
    padding: 7px clamp(16px, 2vw, 30px);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--eyebrow-font);
    font-size: clamp(14px, 1vw, 15px);
    color: #5d5d5d;
  }

  .approach-spine-note {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    font-size: clamp(14px, 0.95vw, 18px);
    letter-spacing: 0.02em;
    color: #3c3c3c;
  }

  .approach-spine-timeline {
    position: relative;
    margin: clamp(34px, 5vw, 54px) auto 0;
    max-width: 820px;
  }

  .approach-spine-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #c9dfde;
    transform: translateX(-50%);
  }

  .approach-spine-step {
    display: grid;
    grid-template-columns: 1fr 110px 1fr;
    align-items: start;
    margin-bottom: clamp(22px, 2.8vw, 30px);
  }

  .approach-spine-step:last-child {
    margin-bottom: 0;
  }

  .approach-spine-content h3 {
    margin: 0 0 8px;
    font-family: var(--smooch-font);
    font-size: clamp(26px, 1.8vw, 34px);
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1b1b1b;
  }

  .approach-spine-content p {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(18px, 1.05vw, 23px);
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #303030;
  }

  .approach-spine-step.is-left .approach-spine-content {
    grid-column: 1;
    text-align: right;
  }

  .approach-spine-step.is-right .approach-spine-content {
    grid-column: 3;
    text-align: left;
  }

  .approach-spine-marker {
    grid-column: 2;
    position: relative;
    min-height: clamp(44px, 3.2vw, 56px);
  }

  .approach-spine-marker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #86d6f2;
  }

  .approach-spine-marker span {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--smooch-font);
    font-weight: 700;
    font-size: clamp(38px, 2.6vw, 48px);
    line-height: 1;
    color: #23a79e;
  }

  .approach-spine-step.is-left .approach-spine-marker span {
    left: calc(50% + 12px);
  }

  .approach-spine-step.is-right .approach-spine-marker span {
    right: calc(50% + 12px);
  }
  .workstreams-section {
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
  background-image: url('/wp-content/themes/Cloudify//assets/images/section_bg.jpg');
   background-position: center;
   background-size: cover ;
  }

  .workstreams-layout {
    display: grid;
    grid-template-columns: minmax(340px, 1.1fr) minmax(320px, 1fr);
    gap: clamp(26px, 4vw, 64px);
    align-items: center;
  }

  .workstreams-copy {
    max-width: 760px;
  }

  .workstreams-title {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 800;
    font-size: clamp(44px, 4.5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .workstreams-lead {
    margin: clamp(18px, 2.4vw, 28px) 0 0;
    max-width: 720px;
    font-family: var(--display-font);
    font-weight: 400;
    font-size: clamp(20px, 1.3vw, 31px);
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #252525;
  }

  .workstreams-grid {
    margin-top: clamp(30px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 30px);
  }

  .workstream-card h3 {
    margin: 0 0 8px;
    font-family: var(--smooch-font);
    font-weight: 700;
    font-size: clamp(30px, 2vw, 38px);
    line-height: 1.02;
    letter-spacing: 0.02em;
    color: #23a79e;
  }

  .workstream-card p {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 400;
    font-size: clamp(17px, 1vw, 21px);
    line-height: 1.34;
    letter-spacing: 0.02em;
    color: #292929;
  }

  .workstream-card ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
  }

  .workstream-card li {
    position: relative;
    padding-left: 16px;
    font-family: var(--display-font);
    font-size: clamp(16px, 0.95vw, 19px);
    line-height: 1.28;
    color: #222;
  }

  .workstream-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #23a79e;
  }

  .workstreams-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .workstreams-visual img {
    width: min(100%, 620px);
    height: auto;
    display: block;
  }
  
  .gcp-title-width{max-width: 800px !important;}
   .hero-title-gcp {    font-family: var(--smooch-font);
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.16;
    font-weight: 700;
    color: #111;
    margin-bottom: clamp(16px, 2vw, 22px);}

    .hero-gcp-visual img {
    width: min(100%, 400px);
    height: auto;
    display: block;
  }
  .grid-colum-3-2{
     grid-template-columns:65fr 35fr !important;
  }
  .hero-gcp-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  /* Team Member  */
  .team-leadership-section {
  padding: clamp(60px, 8vw, 100px) var(--spacing-lg);
  background: #ffffff;
}

.team-intro {
  margin-bottom: clamp(56px, 8vw, 80px);
  max-width: 900px;
}

.team-intro-text {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #3a3a3a;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
  width: 70%;
  margin: 0 auto;
}

.team-member-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
}

.member-photo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  min-height: 200px;
}

.member-photo img {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.member-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.member-quote {
  position: absolute;
  left: calc(-215px - clamp(24px, 4vw, 40px) + 6px);
  /* top: 146px; */
  top: 111px;
  z-index: 2;
  margin: 0;
  height: auto;
  display: flex;
  align-items: center;
}

.quote-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.member-bio {
  margin: 0 0 16px;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #3a3a3a;
}
@media (max-width: 768px) {
  .member-bio p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .member-bio p.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .read-more-btn {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #12A391;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-weight: 600;
  }
}

/* Hide read more button on desktop */
@media (min-width: 769px) {
  .read-more-btn {
    display: none;
  }
}
/* home page testimonials */

.read-more-btn-qa:hover {
    text-decoration: underline;
}

.card.quote {
    display: flex;
    flex-direction: column;
}

.quote-text {
    margin-bottom: 18px;
}

.read-more-btn-qa {
    margin-top: auto; /* sticks button to bottom */
    align-self: flex-start;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #12A391;
    padding: 4px 0;
    display: inline-block;
}
.member-name {
  margin: 0 0 4px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #111111;
}

.member-title {
  margin: 0;
  font-family: var(--eyebrow-font);
  font-weight: 500;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #12a391;
}
@media (max-width: 1199px) {
  .team-members {
    width: 85%;
  }

  .team-member-card {
    grid-template-columns: 140px 1fr;
    gap: clamp(20px, 3vw, 32px);
  }

  .member-photo {
    min-height: 160px;
  }

  .member-photo img {
    max-width: 160px;
  }

  .member-quote {
    left: calc(-160px - clamp(20px, 3vw, 32px) + 4px);
    top: 112px;
  }

  .quote-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 767px) {
  .team-leadership-section {
    padding: clamp(40px, 6vw, 60px) var(--spacing-lg);
  }

  .team-intro {
    margin-bottom: clamp(40px, 6vw, 56px);
  }

  .team-intro-text {
    font-size: clamp(18px, 5vw, 24px);
  }

  .team-members {
    gap: clamp(36px, 5vw, 56px);
    width: 100%;
  }

  .team-member-card {
    grid-template-columns: 120px 1fr;
    gap: clamp(16px, 3vw, 24px);
  }

  .member-photo {
    min-height: 140px;
  }

  .member-photo img {
    max-width: 140px;
  }

  .member-quote {
    left: calc(-140px - clamp(16px, 3vw, 24px) + 4px);
    top: 96px;
  }

  .member-bio {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .member-name {
    font-size: clamp(16px, 4.5vw, 22px);
  }

  .member-title {
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .quote-icon {
    width: 38px;
    height: 38px;
  }
}
/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-2xl);
}

.site-footer .container {
  max-width: var(--container-max);
}

.site-footer .display {
  color: #fff;
  margin-bottom: var(--spacing-2xl);
}

.site-footer .display .gradient {
  background: linear-gradient(90deg, var(--sky), var(--aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-footer .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: var(--spacing-2xl);
}

.site-footer .eyebrow {
  color: var(--sky);
}

.site-footer .eyebrow.light {
  color: var(--sky);
}

/* Footer main row: nav cols + brand */
.footer-main {
  display: flex;
  align-items: flex-start;
  padding-bottom: var(--spacing-3xl);
  gap: var(--spacing-3xl);
  margin: var(--spacing-3xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Footer Nav Columns */
.footer-nav-cols {
  display: grid;
  grid-template-columns: minmax(320px, 2.5fr) 1fr 1fr 1fr;
  gap: var(--spacing-2xl);
  flex: 1;
}

/* Our Services - 2 internal columns */
.footer-nav-cols > div:first-child ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* more stable than column-count */
  gap: 3px 20px;
}

.footer-nav-cols > div:first-child ul li {
  break-inside: avoid;
  line-height: normal;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-nav-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav-cols > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-nav-cols > div:first-child ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-main {
    flex-direction: column;
  }

  .footer-nav-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav-cols > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-nav-cols > div:first-child ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* .footer-main {
  display: flex;
  gap: var(--spacing-3xl);
  align-items: flex-start;
  margin: var(--spacing-3xl) 0;
  padding-bottom: var(--spacing-3xl) ;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  flex: 1;
} */

.footer-nav-cols h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: #fff;
}

.footer-nav-cols ul {
  list-style: none;
}

.footer-nav-cols li {
  margin-bottom: var(--spacing-sm);
}

.footer-nav-cols a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-nav-cols a:hover {
  color: var(--sky);
}

  /* ============================================
     Secure Cloud Services Page
     ============================================ */

  .secure-cloud-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .secure-cloud-page .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero-security {
    position: relative;
    overflow: hidden;
    background-image: url('/wp-content/themes/Cloudify/assets/images/hero_section_bg.jpg');
    background-position: top center;
    background-size: cover;
    padding-top: clamp(110px, 12vw, 150px);
    padding-bottom: clamp(36px, 6vw, 72px);
  }

  .hero-security .btn-outline{
    background-color: #ffffff52;
  }

  .hero-security::before {
    content: "";
    position: absolute;
    left: -240px;
    bottom: -180px;
    width: clamp(360px, 44vw, 620px);
    height: clamp(300px, 34vw, 500px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 245, 250, 0.55) 0%, rgba(161, 245, 250, 0) 68%);
    pointer-events: none;
  }

  .hero-security-inner {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 54px);
    text-align: left;
    max-width: 1320px;
  }

  .hero-security-copy {
    max-width: 560px;
    position: relative;
    z-index: 2;
  }

  .hero-security-copy .display {
    font-size: clamp(48px, 8vw, 62px);
    line-height: 1.06;
    margin-bottom: var(--spacing-lg);
  }

  .hero-security-lead {
    max-width: 540px;
    margin-bottom: var(--spacing-xl);
    font-family: var(--display-font);
    font-weight: 400;
    line-height: 1.35;
    color: #222;
  }

  .hero-security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-security-visual img {
    width: min(100%, 760px);
    height: auto;
    display: block;
  }
  .page-id-416 .hero-security-visual img, .page-id-461 .hero-security-visual img {
     width: min(100%, 380px) !important;
    height: auto;
    display: block;
  }
  .page-id-468 .hero-security-visual img, .page-id-744 .hero-security-visual img, .page-id-463 .hero-security-visual img {
    width: min(100%, 400px) !important;
    height: auto;
    display: block;
  }
  .page-id-443 .hero-security-visual img, .page-id-453 .hero-security-visual img, .page-id-668 .hero-security-visual img, .page-id-740 .hero-security-visual img {
    width: min(100%, 450px) !important;
    height: auto;
    display: block;
  }
  .page-id-466 .hero-security-visual img{
    width: min(100%, 350px) !important;
    height: auto;
    display: block;
  }
  @media (max-width: 575px) {
  .page-id-466 .hero-security-visual img, .page-id-463 .hero-security-visual img, .page-id-468 .hero-security-visual img{
    width: 250px !important;
  }
  }

  .security-stats {  
    padding-top: clamp(36px, 5vw, 56px);
    padding-bottom: clamp(34px, 5vw, 54px);
  }

  .stats-grid-security {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
    margin: 0 auto 30px;
    gap: clamp(12px, 2vw, 26px);
  }
  .stats-grid-security.problem{
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 900px;
    margin: 0 auto 30px;
    gap: clamp(12px, 2vw, 26px);

  }


  .stats-grid-security .stat-value {
    font-size: clamp(46px, 5vw, 58px);
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--smooch-font);
  }

  .stats-grid-security dd {
    font-family: var(--display-font);
    font-size: clamp(18px, 1.2vw, 28px);
    line-height: 1.16;
    font-weight: 300;
    color: #1f1f1f;
  }

  @media (max-width: 991px) {
    .ai-problem-layout {
      grid-template-columns: 1fr !important;
      gap: 26px;
      align-items: start;
    }

    .ai-problem-copy {
      max-width: none;
    }

    .ai-problem-points-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-roadmap-row {
      grid-template-columns: 1fr !important;
      gap: 22px;
    }

    .ai-roadmap-points {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-security-inner {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
      text-align: center;
      max-width: 920px;
    }
    .hero-security-inner.grid-colum-3-2{
      grid-template-columns: 1fr !important;
        gap: var(--spacing-xl);
        text-align: center;
        max-width: 920px;
    }

    .hero-security-copy {
      margin: 0 auto;
    }

    .hero-security-lead {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-security-copy .btn {
      width: auto;
      min-width: 190px;
    }

    .stats-grid-security {
      grid-template-columns: repeat(2, 1fr);
      max-width: 700px;
      row-gap: var(--spacing-xl);
    }
    .stats-grid-security.problem{
      grid-template-columns: 1fr !important;
      max-width: 340px;
    }
    .approach-spine-step {
      grid-template-columns: 1fr 84px 1fr;
    }

    .approach-spine-content p {
      font-size: clamp(16px, 2.2vw, 20px);
    }
  }

  @media (max-width: 575px) {
    .form-layout {
      grid-template-columns: 1fr;
    }

    .stats-grid-security {
      grid-template-columns: 1fr;
      max-width: 340px;
    }
    .stats-grid-security.problem{
      grid-template-columns: 1fr !important;
      max-width: 340px;
    }
    .workstreams-layout {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 26px;
    }

    .workstreams-copy {
      max-width: none;
    }

    .workstreams-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workstreams-visual {
      order: 2;
    }
  }

  /* Security Approach Section */
  .security-approach {
    /* background: linear-gradient(145deg, #d9f4f4 0%, #eafafa 40%, #f0fbfb 70%, #cef1f1 100%); */
    background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg');
    background-position: top;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: clamp(56px, 7vw, 100px);
    padding-bottom: clamp(56px, 7vw, 100px);
  }

  .security-approach-blob {
    position: absolute;
    top: -140px;
    right: -160px;
    width: clamp(340px, 38vw, 560px);
    height: clamp(340px, 38vw, 560px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 214, 242, 0.55) 0%, rgba(134, 214, 242, 0.18) 50%, transparent 72%);
    pointer-events: none;
    z-index: 0;
  }

  .security-approach-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.4fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .security-approach-heading .display {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.1;
    margin-bottom: 0;
  }

  .security-approach-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    padding-top: 150px;
  }
  .custom.security-approach-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    padding-top: 0px !important;
  }

  .security-approach-body.lead.lead-content.subcontent p{
   font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.75;
    color: #222;
    margin-bottom: 0;
    font-family: var(--display-font);
    font-weight: 400;
}
.security-approach-body.lead.lead-content.subcontent h6{
   font-size: clamp(15px, 1.2vw, 16px);  
    font-weight: 400 !important;
}

  .lead-content {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.75;
    color: #222;
    margin-bottom: 0;
    font-family: var(--display-font);
    font-weight: 400;
  }
  .lead-content.subcontent{
    font-size: clamp(15px, 1.2vw, 16px);  
  }
  .ai-problem-section {
    
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(52px, 7vw, 90px);
  }

  .ai-problem-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.99fr) minmax(420px, 1.45fr);
    gap: clamp(30px, 4vw, 64px);
    align-items: end;
  }

  .ai-problem-copy {
    max-width: 520px;
  }

  .ai-problem-title {
    margin: 0 0 18px;
    font-family: var(--display-font);
    font-weight: 800;
    font-size: clamp(42px, 4.4vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.01em;
  }

  .ai-problem-lead {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 400;
    font-size: clamp(20px, 1.35vw, 34px);
    line-height: 1.34;
    letter-spacing: 0.05em;
    color: #242424;
    max-width: 500px;
  }

  .ai-problem-points-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
  }

  .ai-problem-card {
    padding: 0;
  }

  .ai-problem-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
  }

  .ai-problem-card h3 {
    margin: 0 0 10px;
    font-family: var(--smooch-font);
    font-weight: 700;
    font-size: clamp(24px, 1.65vw, 34px);
    line-height: 1.08;
    color: #111111;
  }

  .ai-problem-card p {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 400;
    font-size: clamp(16px, 1.05vw, 24px);
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #2f2f2f;
  }

  .ai-roadmap-section {
    background: #ebebeb;
    padding-top: clamp(28px, 4vw, 48px);
    padding-bottom: clamp(56px, 7vw, 92px);
  }

  .ai-roadmap-header {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 46px);
  }

  .ai-roadmap-title {
    margin: 0 0 14px;
    font-family: var(--display-font);
    font-weight: 800;
    font-size: clamp(42px, 4.3vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.01em;
  }

  .ai-roadmap-lead {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 400;
    font-size: clamp(20px, 1.35vw, 30px);
    line-height: 1.32;
    letter-spacing: 0.05em;
    color: #242424;
  }


  .ai-roadmap-row {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(500px, 2fr);
    gap: clamp(24px, 3vw, 40px);
    padding: clamp(24px, 3vw, 34px) 0;
    border-bottom: 1px solid #d2d2d2;
    align-items: start;
  }

  .ai-roadmap-row:last-child {
    border-bottom: none;
  }

  .ai-roadmap-main h3 {
    margin: 0 0 10px;
    font-family: var(--smooch-font);
    font-weight: 700;
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1.08;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .ai-roadmap-main p {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(18px, 1.15vw, 24px);
    line-height: 1.28;
    letter-spacing: 0.03em;
    color: #2a2a2a;
    max-width: 540px;
  }

  .ai-roadmap-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 26px);
  }

  .ai-roadmap-point span {
    display: block;
    margin-bottom: 6px;
    font-family: var(--smooch-font);
    font-weight: 700;
    font-size: clamp(28px, 1.8vw, 34px);
    line-height: 1;
    color: #23a79e;
  }

  .ai-roadmap-point p {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    font-size: clamp(15px, 0.95vw, 19px);
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #171717;
  }

  .ai-impact-section {
    background: #f9f9f9;
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
  }

  .ai-impact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ai-impact-eyebrow {
    margin-bottom: 18px;
    font-family: var(--eyebrow-font);
    font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0.2em;
    color: #2f2f2f;
  }

  .ai-impact-title {
    margin: 0 0 16px;
    font-family: var(--display-font);
    font-weight: 800;
    font-size: clamp(48px, 4.2vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: #0f0f0f;
    max-width: 620px;
  }

  .ai-impact-subtitle {
    margin: 0 0 30px;
    font-family: var(--display-font);
    font-weight: 400;
    font-size: clamp(18px, 1.4vw, 28px);
    line-height: 1.32;
    letter-spacing: 0.08em;
    color: #242424;
    max-width: 620px;
  }

  .ai-impact-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 0 auto 40px;
    gap: clamp(20px, 2vw, 32px);
  }

  .ai-impact-stats-grid .stat-value {
    font-size: clamp(52px, 6vw, 72px);
    line-height: 0.95;
    margin-bottom: 14px;
    font-family: var(--smooch-font);
  }

  .ai-impact-stats-grid dd {
    font-family: var(--display-font);
    font-size: clamp(16px, 1.1vw, 22px);
    line-height: 1.2;
    font-weight: 400;
    color: #1f1f1f;
  }

  .ai-impact-cta {
    border-color: #23a79e;
    color: #23a79e;
    padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 40px);
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 600;
  }

  .ai-impact-cta:hover {
    background: #23a79e;
    color: #fff;
  }
  @media (max-width: 899px) {
    .security-approach-layout {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
    }
      .security-approach-body {
        padding-top: 0px;
      }
  }

  /* Services Cards Grid */
  .security-services {
    background: #ffffff;
    padding-top: clamp(56px, 6vw, 88px);
    padding-bottom: clamp(56px, 6vw, 88px);
  }

  .security-services .display {
    margin-bottom: clamp(28px, 4vw, 44px);
    max-width: 280px;
    line-height: 0.95;
  }

  .services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 0;
  }

  .service-box {
    background: #f4f4f4;
    padding: clamp(22px, 2.2vw, 28px);
    border-radius: 0;
    border: 1px solid #f0f0f0;
    min-height: 265px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .service-box:hover {
    box-shadow: 0 16px 34px rgba(18, 163, 145, 0.08);
    transform: translateY(-4px);
  }

  .service-box-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 18px;
  }

  .service-box h3 {
    font-family: var(--smooch-font);
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 210px;
  }

  .service-box > p {
    font-family: var(--display-font);
    font-size: clamp(15px, 1.5vw, 16px);
    color: #333;
    margin-bottom: 0;
    line-height: 1.28;
    flex-grow: 1;
  }

  @media (max-width: 1199px) {
    .services-cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  }

  @media (max-width: 767px) {
    .services-cards-grid {
      grid-template-columns: 1fr;
    }

    .security-services .display {
      max-width: none;
      line-height: 1;
    }

    .service-box {
      min-height: auto;
    }
  }

  /* Why Choose Section */
  .why-choose-section {
    background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg');
    background-position: top center;
    background-size: cover;
    position: relative;
    padding-top: clamp(64px, 8vw, 96px);
    padding-bottom: clamp(64px, 8vw, 96px);
  }


  .why-choose-layout {
    position: relative;
    z-index: 1;
  }

  .why-title {
    font-size: clamp(48px, 5vw, 62px);
    line-height: 1.05;
    margin-bottom: clamp(44px, 6vw, 68px);
    color: #12a391;
    max-width: 450px;
    text-align: left;
  }
  .simplification-title {
    font-size: clamp(48px, 5vw, 62px);
    line-height: 1.05;
    /* margin-bottom: clamp(44px, 6vw, 68px); */
    color: #12a391;
    max-width: 1200px;
    text-align: left;
  }

  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 42px);
    margin-top: 0;
  }
  .delivery_sub_contents-grid{
     display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 42px);
    margin-top: 0;
  }

  .why-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }

  .why-number {
    font-family: var(--display-font);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1;
    color: #000000;
    letter-spacing: 0.08em;
  }
  .why-number.simplification-number {
    letter-spacing: 0.05em;
    color: #12a391;
    font-family: var(--display-font);
    font-size: clamp(18px, 4vw, 32px);
    line-height: 1;
      font-weight: 800;

  }

  .why-text {
    font-family: var(--display-font);
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 500;
    line-height: 1.3;
    color: #1f1f1f;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.015em;
  }
  .why-text-custom {
    font-family: var(--display-font);
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 500;
    line-height: 1.3;
    color: #1f1f1f;
    margin: 0;
    letter-spacing: 0.015em;
  }

  @media (max-width: 1199px) {
    .why-choose-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .delivery_sub_contents-grid {
      grid-template-columns: 1fr;
    }

  }

  @media (max-width: 899px) {
    .why-choose-grid {
      grid-template-columns: repeat(2, 1fr);
    }
      .delivery_sub_contents-grid {
        grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 575px) {
    .ai-problem-points-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .ai-problem-title {
      font-size: clamp(34px, 10vw, 46px);
      line-height: 1.02;
    }

    .ai-problem-lead {
      font-size: clamp(16px, 4.8vw, 20px);
      letter-spacing: 0.02em;
    }

    .ai-roadmap-title {
      font-size: clamp(34px, 10vw, 44px);
      line-height: 1.02;
    }

    .ai-roadmap-lead {
      font-size: clamp(16px, 4.5vw, 20px);
      letter-spacing: 0.02em;
    }

    .ai-roadmap-main h3 {
      font-size: clamp(20px, 5.8vw, 26px);
      letter-spacing: 0.08em;
    }

    .ai-roadmap-main p {
      font-size: clamp(15px, 4.2vw, 18px);
      letter-spacing: 0.02em;
    }

    .ai-roadmap-points {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .ai-roadmap-point span {
      font-size: clamp(22px, 6.5vw, 28px);
    }

    .ai-roadmap-point p {
      font-size: clamp(13px, 3.8vw, 15px);
      letter-spacing: 0.06em;
    }

    .ai-impact-stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .ai-impact-title {
      font-size: clamp(38px, 11vw, 52px);
      line-height: 1;
    }

    .ai-impact-subtitle {
      font-size: clamp(16px, 4.5vw, 20px);
      letter-spacing: 0.04em;
      margin-bottom: 32px;
    }

    .ai-impact-stats-grid .stat-value {
      font-size: clamp(44px, 12vw, 56px);
    }

    .ai-impact-stats-grid dd {
      font-size: clamp(14px, 3.8vw, 18px);
    }
    .why-choose-grid {
      grid-template-columns: 1fr;
    }
    .delivery_sub_contents-grid {
      grid-template-columns: 1fr;
    }

    .why-title {
      max-width: 100%;
    }
    .approach-spine-wrap {
      text-align: left;
    }

    .approach-spine-title,
    .approach-spine-lead,
    .approach-spine-note {
      text-align: center;
    }

    .approach-spine-prompt {
      width: 100%;
      text-align: center;
      letter-spacing: 0.14em;
      padding-left: 10px;
      padding-right: 10px;
    }

    .approach-spine-timeline::before {
      left: 18px;
      transform: none;
    }

    .approach-spine-step {
      grid-template-columns: 40px 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }

    .approach-spine-marker {
      grid-column: 1;
      grid-row: 1;
      padding-top: 2px;
      min-height: clamp(30px, 9vw, 40px);
    }

    .approach-spine-step.is-left .approach-spine-content,
    .approach-spine-step.is-right .approach-spine-content {
      grid-column: 2;
      grid-row: 1;
      text-align: left;
    }

    .approach-spine-marker span {
      position: relative;
      left:-20px!important;
      transform: none;
      font-size: clamp(30px, 9vw, 40px);
    }

    .approach-spine-content h3 {
      font-size: clamp(20px, 6.5vw, 26px);
    }

    .approach-spine-content p {
      font-size: clamp(15px, 4.2vw, 18px);
    }
    .workstreams-title {
      font-size: clamp(36px, 10vw, 48px);
      line-height: 1;
    }

    .workstreams-lead {
      font-size: clamp(17px, 4.8vw, 21px);
      letter-spacing: 0.03em;
    }

    .workstreams-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .workstream-card h3 {
      font-size: clamp(26px, 7vw, 32px);
    }

    .workstream-card p {
      font-size: clamp(15px, 4.2vw, 18px);
    }

    .workstream-card li {
      font-size: clamp(14px, 4vw, 17px);
    }
  }

  /* Related Services Section */
  .related-services {
    background: #fff;
  }

  .related-services-layout {
    display: grid;
    grid-template-columns: clamp(280px, 35%, 450px) 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin: 80px 0px;
  }

  .related-services-header {
    padding-top: var(--spacing-lg);
  }

  .related-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    color: var(--text);
    text-align: left;
    margin: 0;
  }

  .related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
  }

  .related-card {
    background: transparent;
    padding: clamp(10px, 2vw, 10px) clamp(20px, 2.5vw, 20px);
    border: 1px solid var(--teal-strong);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
  }

  .related-card:hover {
    background: rgba(18, 163, 145, 0.04);
  }

  .related-card h3 {
    font-family: var(--display-font);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 500;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-right: 32px;
    line-height: 1.4;
  }

  .related-arrow {
    position: absolute;
    top: 50%;
    right: clamp(16px, 2vw, 24px);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--teal-strong);
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .related-card:hover .related-arrow {
    transform: translateY(-50%) translateX(4px);
  }

  @media (max-width: 1199px) {
    .related-services-layout {
      grid-template-columns: 1fr;
      gap: clamp(32px, 5vw, 48px);
      margin: 0px;
    }

    .related-services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 767px) {
    .related-services-layout {
      grid-template-columns: 1fr;
    }

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

  /* Utility Classes */
  .center {
    text-align: center;
  }

  /* Ready to Get Started Section */

  .get-started-section {
    position: relative;
    background-image: url('/wp-content/themes/Cloudify/assets/images/section_bg.jpg');
    background-position: top center;
    background-size: cover;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    padding: clamp(64px, 12vw, 140px) 0;
  }


  .get-started-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
  }

  .get-started-title {
    font-family: var(--display-font);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #101010;
    margin-bottom: clamp(16px, 2vw, 24px);
    letter-spacing: 0.01em;
  }

  .get-started-subtitle {
    font-family: var(--display-font);
    font-size: clamp(15px, 2vw, 20px);
    color: #222;
    letter-spacing: 0.18em;
    margin-bottom: clamp(36px, 5vw, 48px);
    text-transform: uppercase;
    font-weight: 400;
  }

  .get-started-btn {
    min-width: 200px;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 2px;
  }

  @media (max-width: 767px) {
    .get-started-title {
      font-size: clamp(28px, 8vw, 38px);
    }
    .get-started-section {
      padding: 48px 0;
    }
    .get-started-btn {
      width: 100%;
      min-width: 0;
    }
  }

  .text-center {
    text-align: center;
  }
/* ============================================
   Strategic Partnerships: Intro + Partner Icons
   ============================================ */
.strategic-partners-intro { 
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(22px, 3vw, 50px);
}

.strategic-partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.strategic-partners-copy {
  max-width: 900px;
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-family: var(--display-font);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #1f1f1f;
}

.strategic-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(10px, 1.8vw, 20px);
}

.strategic-provider-card {
  min-height: 225px;
  border: none;
  border-radius: 18px;
  padding: 24px 10px 18px 10px;
  background: #F4F4F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:end;
  position: relative;
  padding: 10px;
  background: #F4F4F4;
  transition: all 0.3s ease;
}

.strategic-provider-card:hover {
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.strategic-provider-card img {
  max-width: 76%;
  max-height: 92px;
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

.strategic-provider-card h3 {
  margin-bottom: 14px;
}

.strategic-partners-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.strategic-partners-right img {
  width: min(100%, 760px);
  height: auto;
  display: block;
}

@media (max-width: 1199px) {
  .strategic-partners-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .strategic-provider-grid {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }

  .strategic-partners-right {
    justify-content: flex-end;
  }

  .strategic-partners-right img {
    width: min(100%, 620px);
  }
}

@media (max-width: 767px) {
  .strategic-partners-copy {
    letter-spacing: 0.03em;
    font-size: clamp(16px, 4.4vw, 20px);
  }

  .strategic-provider-grid {
    grid-template-columns: 1fr;
  }

  .strategic-provider-card {
    min-height: 210px;
  }

  .strategic-partners-right {
    justify-content: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  background: var(--teal-strong);
  color: #fff;
}

/* Offices */
.offices {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offices h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
}

.office-grid p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-xl);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom nav ul {
  list-style: none;
  display: flex;
  gap: var(--spacing-xl);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--sky);
}

.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #179ACD, #06B716);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(23, 154, 205, 0.35);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 154, 205, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .scroll-to-top {
    transition: none;
  }
}

@media (max-width: 1199px) {
  .footer-main {
    flex-direction: column;
  }
  .footer-brand {
    max-width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .office-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1199px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }
  
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .office-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Us */
.address-block-copy{
  max-width: 700px;
}
.address-block-copy h2{
  font-size: 24px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #12A391, #86D6F2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block; 
}
.address-block-copy p{
  font-size: 16px;
  color:#000000;
  line-height: 1.6;
  font-family: var(--display-font);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.address-block{
  padding: clamp(1rem, 4vw, 6rem);
}
.form-wrap {
  width: 100%;
  background: #ffffff;
  padding: 2.5rem;
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0B0B0B;
}

.form-wrap .wpcf7-form-control.wpcf7-text,
.form-wrap .wpcf7-form-control.wpcf7-email,
.form-wrap .wpcf7-form-control.wpcf7-tel,
.form-wrap .wpcf7-form-control.wpcf7-select,
.form-wrap .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #1a1a1a;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-wrap .wpcf7-form-control:focus {
  border-color: #999999;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-wrap .wpcf7-form-control.wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-wrap .wpcf7-form-control.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

/* .form-wrap .wpcf7-form-control.wpcf7-submit {
  padding: 11px 28px;
  background: transparent;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  
} */

.form-wrap .wpcf7-form-control.wpcf7-submit:hover {
  background: #f5f5f5;
}

.form-wrap .wpcf7-form-control.wpcf7-submit:active {
  transform: scale(0.98);
}
/* Hide the top error summary and bullet list */
.wpcf7 .wpcf7-response-output {
  display: none !important;
}

/* Hide bullet list */
.wpcf7 ul.wpcf7-validation-errors,
.wpcf7-validation-errors {
  display: none !important;
}
/* Remove CF7 default red border on error */
.form-wrap .wpcf7-not-valid {
  border-color: #e24b4a !important;
}


/* Hide top error summary bar and bullet list */
.form-wrap .wpcf7-response-output {
  display: none !important;
}

/* Keep inline field-level errors */
.form-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e24b4a;
  margin-top: 4px;
  display: block;
}
.wpcf7 .hidden-fields-container {
    display: none;
}
/* Red border on invalid fields */
.form-wrap .wpcf7-not-valid {
  border-color: #e24b4a !important;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    padding: 1.5rem;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.center {
  text-align: center;
}

.light {
  color: #fff;
}

.light-border {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

@supports not (-webkit-background-clip: text) {
  .gradient {
    color: var(--teal-strong);
  }
}

.text-left{text-align: left;}
.text-right{text-align: right;}
.text-center{text-align: center;}
.ml-10{margin-left: 10px;}
.mr-10{margin-right: 10px;}
.mt-10{margin-top: 10px;}
.mb-10{margin-bottom: 10px;}
.col-dir{flex-direction: column;}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu{
  padding: 10px 0 0!important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item{
  margin-bottom: 10px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.2!important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
  color: #101010 !important;
}

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

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    display:block;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s ease;
}

.gallery-overlay h4{
        color: #fff;
    margin: 0;
    transform: translateY(20px);
    transition: .4s ease;
    background: linear-gradient(90deg, #12A391, #86D6F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay h4{
    transform:translateY(0);
}

/* Tablet */
@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:250px;
    }
}

.fancybox__container{
  z-index: 9999;
}