
/* ===== 1. KEYFRAMES (All animations) ===== */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes rippleEffect {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}
@keyframes tabContentOut {
  to { opacity: 0; transform: translateY(-10px); }
}
@keyframes tabContentIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes rotateClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes zi-grid-float {
  0% { transform: translate(0,0); }
  100% { transform: translate(25px,25px); }
}
@keyframes zi-orb-pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.3); }
}
@keyframes zi-particle-float {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.8; }
  100% { transform: translate(120px,-120px) rotate(360deg); opacity: 0; }
}
@keyframes tabActiveLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
@keyframes visualSlideIn {
  0% { opacity: 0; transform: translateX(-10px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes contentSlideIn {
  0% { opacity: 0; transform: translateX(10px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes floatLight {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(20px,-20px) rotate(90deg); }
  50% { transform: translate(-15px,15px) rotate(180deg); }
  75% { transform: translate(10px,-10px) rotate(270deg); }
}
@keyframes gridMoveLight {
  0% { transform: translate(0,0); }
  100% { transform: translate(40px,40px); }
}
@keyframes sparkleLight {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 8px 25px rgba(59,130,246,0.3), 0 0 0 1px rgba(59,130,246,0.2); }
  50% { box-shadow: 0 8px 35px rgba(59,130,246,0.5), 0 0 0 1px rgba(59,130,246,0.3); }
}
@keyframes zi-cta-shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
@keyframes floatCircle {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(100px,100px) rotate(360deg); }
}
@keyframes floatTriangle {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(-100px,-100px) rotate(-360deg); }
}
@keyframes rotateSquare {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes rotateLight {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulseLight {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== 2. ANIMATION CLASSES ===== */
.slideinup { animation: slideInUp 0.6s ease forwards; }
.slideindown { animation: slideInDown 0.6s ease forwards; }
.slideinleft { animation: slideInLeft 0.6s ease forwards; }
.slideinright { animation: slideInRight 0.6s ease forwards; }
.fadein { animation: fadeIn 0.6s ease forwards; }

/* ===== 3. BASE & RESET ===== */
img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

/* Container – unified (was duplicated) */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== 4. TYPOGRAPHY & UTILITIES ===== */
.sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d90528;
  margin-bottom: 15px;
  padding-left: 0;
  position: relative;
}
.sec-title { font-size: 2.5rem; }
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
}
.space { padding: 40px 0; }
.title-area {
  position: relative;
  z-index: 2;
  transition: all 0.3s linear;
}
.title-area .sec-title {
  line-height: 1.2;
  margin-bottom: 0;
}
.title-area h2 {
  font-size: 2.5rem;
  margin-bottom: 10px !important;
}
.title-area.about-us .sec-title {
  line-height: 1.2;
  margin-bottom: 10px !important;
}
.sec-subtitle {
  color: #666;
  font-size: 16px;
  margin-top: 15px;
}

/* ===== 5. HERO SECTION ===== */
.hero-slider-3 { position: relative; }
.hero-3 {
  position: relative;
  z-index: 3;
  overflow: initial;
}
.hero-3 .th-hero-bg {
  width: 100%;
  height: 100%;
}
.hero-3 .th-hero-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,20,34,0) 0%, rgba(11,20,34,0.39) 36.56%, rgba(11,20,34,0.56) 44.27%, rgba(11,20,34,0.72) 54.37%, rgba(11,20,34,0.87) 67.71%, #0b1422 84.64%);
  transform: rotate(-180deg);
}
.hero-3 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.hero-3 .scroll-down { display: none; }
.hero3-wrapper {
  position: relative;
  margin-top: -300px;
  z-index: 9999;
}
.hero-style3 {
  position: relative;
  padding: 150px 0 320px 0;
  max-width: 750px;
  display: block;
  z-index: 4;
}
.hero-style3 .hero-title {
  font-size: 40px;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--white-color);
  margin-top: -1.2rem;
  margin-bottom: 20px;
}
.hero-style3 .hero-text {
  font-family: var(--style-font);
  color: #d5d7da;
  font-weight: 400;
  font-size: 16px;
  max-width: 575px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-style3 .th-btn { padding: 19px 30px; }
.hero-title {
  font-size: 44px;
  color: var(--white-color);
  line-height: 1.4;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.hero-featured {
  width: 100%;
  border-radius: 15px;
  background-color: #f2f5fa;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.hero-featured-icon {
  width: 62px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme-color);
  border-radius: 15px;
  margin-right: 14px;
  margin-bottom: 15px;
}
.hero-featured-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 2px;
  margin-top: -0.35em;
  text-transform: capitalize;
  color: var(--title-color);
}
.hero-featured-item {
  margin: 30px 0;
  text-align: center;
}
.hero3-feature-wrapp {
  margin-top: -100px;
  width: 100%;
}
.hero-3thumbs { max-width: 300px; }
.hero3Thumbs {
  position: relative;
  right: 0;
  bottom: 110px;
  max-width: 424px;
  height: 186px;
}
.hero3-swiper-custom {
  position: relative;
  right: 0;
  bottom: -186px;
  height: 110px;
  background-color: var(--theme-color);
  z-index: 99;
}
.hero3-card { cursor: pointer; }
.hero3-card .hero-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  z-index: 2;
}
.hero3-card .hero-img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,12,0.2), rgba(13,13,12,0.2));
  border-radius: 16px 16px 0 0;
  z-index: 1;
}
.hero3-swiper-custom .swiper-button-next,
.hero3-swiper-custom .swiper-button-prev {
  padding: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 48px;
  transition: all .4s ease-in-out;
}
.hero3-swiper-custom .swiper-button-next:after,
.hero3-swiper-custom .swiper-button-prev:after { display: none; }
.hero3-swiper-custom .swiper-button-next:hover,
.hero3-swiper-custom .swiper-button-prev:hover { background-color: var(--white-color); }
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity .3s;
  transform: translateZ(0);
  z-index: 10;
}

/* ===== 6. GEOMETRIC APPROACH ===== */
.geometric-approach {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  overflow: hidden;
}
.geo-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.geo-shapes .shape {
  position: absolute;
  opacity: 0.1 !important;
  pointer-events: none;
  z-index: 0;
}
.geo-shapes .circle {
  top: 20%;
  right: 15%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: floatCircle 20s infinite linear;
  background: linear-gradient(145deg, #3a7bd5, #00d2ff);
  top: -100px;
  right: -100px;
}
.geo-shapes .triangle {
  bottom: 25%;
  left: 10%;
  width: 150px;
  height: 150px;
  clip-path: polygon(50% 0%,0% 100%,100% 100%);
  animation: floatTriangle 25s infinite linear reverse;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid #E01A22;
  bottom: -50px;
  left: -30px;
  transform: rotate(25deg);
}
.geo-shapes .square {
  top: 40%;
  left: 15%;
  width: 100px;
  height: 100px;
  transform: rotate(15deg);
  animation: rotateSquare 30s infinite linear;
  background: #9f7aea;
  bottom: 20px;
  right: 40px;
  opacity: 0.08;
  border-radius: 20px;
}
.geo-shapes .line {
  bottom: 40%;
  right: 25%;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,0.1), transparent);
  height: 4px;
  width: 250px;
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
  top: 40%;
  left: 10%;
  transform: rotate(-10deg);
  opacity: 0.15;
  border-radius: 4px;
}

/* ===== 7. ICON FOCUS AREAS ===== */
.icon-focus-areas {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
  background: #fff;
}
.icon-categories-grid {
  max-width: 1200px;
  margin: 0 auto;
}
.icon-category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.icon-category-card {
  perspective: 1000px;
  width: 100%;
  max-width: 380px;
  min-height: 250px;
}
.icon-card-inner {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.8);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
  height: 100%;
}
.icon-card-inner:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: rgba(96,165,250,0.3);
}
.icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(96,165,250,0.1), rgba(59,130,246,0.1));
  border: 2px solid rgba(96,165,250,0.2);
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}
.icon-wrapper svg {
  width: 48px;
  height: 48px;
  color: #16469D;
  transition: all 0.4s ease;
}
.icon-card-inner:hover .icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(225,27,34,0.1), rgba(239,68,68,0.1));
  border-color: rgba(225,27,34,0.3);
}
.icon-card-inner:hover .icon-wrapper svg { color: #E01A22; }
.icon-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.icon-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}
.icon-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(96,165,250,0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.icon-card-inner:hover .icon-hover-effect {
  opacity: 1;
  animation: shine 2s infinite;
}
.icon-category-row.two-items-center { justify-content: center; }
.icon-category-row.two-items-center .icon-category-card {
  flex: 0 1 calc(50% - 60px);
  max-width: 400px;
}

/* ===== 8. ACCELERATORS SECTION ===== */
.accelerators-horizontal {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}
.accelerators-horizontal h2,
.modern-header h2 {
  color: #16469D;
  font-weight: 800;
  position: relative;
  z-index: 3;
}
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #16469D, #16469D);
}
.step-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: #fff;
  overflow: visible;
}
.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  max-width: 260px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}
.step:hover .step-icon { transform: translateY(-6px) scale(1.05); }
.accelerators-horizontal .steps-horizontal.four-items {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* ===== 9. WWD COMPACT SECTION (Tabs & Accordion) ===== */
.wwd-compact-section {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.wwd-compact-tabs-nav {
  background: white;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.8);
  margin-bottom: 20px;
  display: block;
}
.wwd-compact-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wwd-compact-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: white;
  border-radius: 40px;
  border: 1px solid rgba(226,232,240,0.8);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
  height: 80px;
  position: relative;
  overflow: hidden;
}
.wwd-compact-tab.wwd-ctab-active {
  background: linear-gradient(135deg, #16469D, #16469D);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(96,165,250,0.25);
  transform: translateY(-2px);
}
.wwd-ctab-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96,165,250,0.1);
  border-radius: 8px;
  color: #16469D;
  margin-bottom: 6px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.wwd-compact-tab.wwd-ctab-active .wwd-ctab-icon {
  background: white;
  color: #16469D;
  transform: scale(1.1) rotate(5deg);
}
.wwd-ctab-text {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.wwd-compact-tab.wwd-ctab-active .wwd-ctab-text { color: white; }
.wwd-compact-content-area {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(226,232,240,0.8);
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow-y: hidden;
  max-height: 80vh;
}
.wwd-ctab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  animation: tabContentOut 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}
.wwd-ctab-content.wwd-ctab-show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: tabContentIn 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
  overflow: hidden;
}
.wwd-cvisual-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  margin-bottom: 15px;
  transform: translateX(-5px);
  opacity: 0;
  animation: visualSlideIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.wwd-cimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: block;
  border-radius: 8px;
}
.wwd-cvisual-box:hover .wwd-cimg { transform: scale(1.05); }
.wwd-ctitle {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff !important;
  background: rgba(0,0,0,0.7) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  z-index: 2 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: 90% !important;
}
.wwd-ccontent-box {
  padding: 0 0 0 15px;
  transform: translateX(5px);
  opacity: 0;
  animation: contentSlideIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: 0.2s;
}
.wwd-cdesc {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
.wwd-cfeatures {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wwd-cfeature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(96,165,250,0.05);
  border-radius: 8px;
  border-left: 3px solid rgba(96,165,250,0.3);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.wwd-cfeature:hover {
  background: rgba(96,165,250,0.1);
  transform: translateX(5px);
  border-left-color: #E01A22;
}
.wwd-cfeat-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  flex: 1;
}
.wwd-mobile-accordion { display: none; }
.desktop-content { display: block; }
.wwd-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.wwd-accordion-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 20px !important;
  cursor: pointer !important;
  background: #f8fafc !important;
  transition: all 0.3s ease !important;
}
.wwd-accordion-open {
  background: #E01A22 !important;
  color: #ffffff !important;
}
.wwd-accordion-title-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1 !important;
}
.wwd-accordion-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #16469d;
}
.wwd-accordion-arrow {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #16469d;
}
.wwd-arrow-rotated { transform: rotate(180deg) !important; }
.wwd-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 20px;
  background: #ffffff;
}
.wwd-accordion-show {
  max-height: 1000px !important;
  padding: 20px !important;
  transition: max-height 0.5s ease-in !important;
}

/* ===== 10. BEYOND STRUCTURES SECTION ===== */
.beyond-structures-grid-svg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.beyond-structure-card-svg {
  background: white;
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(102,126,234,0.1);
}
.beyond-structure-card-svg:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: rgba(102,126,234,0.3);
}
.card-svg-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1e3a8a15, #764ba215);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.beyond-structure-card-svg:hover .card-svg-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, #1e3a8a, #764ba2);
}
.beyond-structure-card-svg h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1a1a2e;
  transition: color 0.3s ease;
}
.beyond-structure-card-svg:hover h3 { color: #1e3a8a; }
.card-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(102,126,234,0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.beyond-structure-card-svg:hover .card-glow { opacity: 1; }

/* ===== 11. STANDARDS MODERN SECTION (Swiper) ===== */
.standards-modern-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
}
.premium-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e3a8a20, #E01A2220);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.premium-header-badge .badge-icon { color: #E01A22; font-size: 1rem; }
.premium-header-badge span {
  color: #1e3a8a;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.standards-modern-slider-wrapper {
  position: relative;
  padding: 20px 40px;
}
.modern-standard-card {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(30,58,138,0.1);
  cursor: pointer;
}
.modern-standard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(225,27,34,0.15);
  border-color: rgba(225,27,34,0.3);
}
.card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #E01A22, #1e3a8a);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.modern-standard-card:hover .card-top-bar { transform: scaleX(1); }
.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1e3a8a10, #E01A2210);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modern-standard-card:hover .icon-circle {
  background: linear-gradient(135deg, #1e3a8a, #E01A22);
  transform: scale(1.05);
}
.icon-circle-inner {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.icon-circle-inner svg {
  color: #fff;
  font-size: 28px;
  transition: color 0.3s ease;
}
.modern-standard-card:hover .icon-circle-inner svg { color: #E01A22 !important; }
.standard-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 15px 0;
  transition: color 0.3s ease;
}
.modern-standard-card:hover .standard-title { color: #E01A22; }
.card-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}
.card-divider span {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #1e3a8a, #E01A22);
}
.divider-star { color: #E01A22; font-size: 12px; }
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  padding: 6px 15px;
  border-radius: 50px;
  margin: 15px 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2e7d32;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(30,58,138,0.1);
}
.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #666;
}
.stat svg { color: #E01A22; font-size: 0.9rem; }
.card-hover-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a8a, #E01A22);
  padding: 15px;
  transition: bottom 0.4s ease;
  opacity: 0;
}
.modern-standard-card:hover .card-hover-overlay {
  bottom: 0;
  opacity: 1;
}
.view-details-btn {
  background: white;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  color: #1e3a8a;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.standards-button-prev,
.standards-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: #1e3a8a;
}
.standards-button-prev { left: 0; }
.standards-button-next { right: 0; }
.standards-button-prev:hover,
.standards-button-next:hover {
  background: linear-gradient(135deg, #1e3a8a, #E01A22);
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.standards-pagination {
  text-align: center;
  margin-top: 30px;
}
.standards-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #1e3a8a;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.standards-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background: linear-gradient(90deg, #E01A22, #1e3a8a);
  opacity: 1;
}

/* ===== 12. TOOLS ENHANCED SECTION ===== */
.tools-enhanced-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.tool-enhanced-card { cursor: pointer; }
.tool-enhanced-inner {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(30,58,138,0.1);
  position: relative;
  overflow: hidden;
}
.tool-enhanced-inner:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #1e3a8a, #E01A22);
  box-shadow: 0 15px 35px rgba(225,27,34,0.2);
}
.tool-icon-enhanced {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1e3a8a15, #E01A2215);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
}
.tool-enhanced-inner:hover .tool-icon-enhanced {
  background: white;
  transform: scale(1.15) rotate(360deg);
}
.tool-icon-enhanced svg {
  color: #E01A22;
  font-size: 28px;
  transition: all 0.4s ease;
}
.tool-enhanced-inner:hover .tool-icon-enhanced svg { color: #1e3a8a; }
.tool-name-enhanced {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a8a;
  transition: color 0.3s ease;
  display: block;
}
.tool-enhanced-inner:hover .tool-name-enhanced { color: white; }
.tool-enhanced-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.tool-enhanced-inner:hover .tool-enhanced-glow { opacity: 1; }

/* ===== 13. HOW TO START - JOURNEY STEPS ===== */
.journey-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-top: 40px;
}

/* step-card here is scoped inside .journey-step – distinct from accelerators step-card */
.journey-step .step-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.journey-step .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.step-number {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #1e3a8a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
.step-icon-large { font-size: 48px; margin-bottom: 15px; }
.step-title {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0 10px;
  color: #333;
}
.step-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.connector-line {
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #E01A22, #1e3a8a);
  z-index: 1;
}

/* ===== 14. LIGHT CTA SECTION ===== */
.light-cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.light-cta-section .container {
  position: relative;
  z-index: 2;
}
.light-cta-section .cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.light-cta-section .cta-left h2 {
  color: #16469D;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
}
.light-cta-section .cta-right .mobile-show { display: none; }
.light-cta-section .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.light-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}
.outline-light {
  background: transparent;
  color: #475569;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  background-clip: padding-box;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.outline-light:hover {
  border-color: #16469D;
  color: #16469D;
  background: rgba(59,130,246,0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.1);
}
.light-profile-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.light-profile-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.light-profile-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.light-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.light-profile-info { padding: 24px; }
.light-profile-info h4 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}
.light-profile-info p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}
.light-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.light-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  animation: floatLight 25s infinite linear;
}
.light-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMoveLight 40s linear infinite;
}
.light-sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkleLight 4s infinite ease-in-out;
}

/* ===== 15. SUCCESS STORIES (LTTS) ===== */
.ltts-success-stories {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}
.ltts-success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E01A22;
  background: rgba(225,27,34,0.1);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #16469D;
  margin: 0 0 16px;
  line-height: 1.2;
}
.highlight {
  background: linear-gradient(135deg, #16469D 0%, #E01A22 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 18px;
  color: #5a6e8a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.stories-slider-wrapper { position: relative; }
.stories-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #16469D;
}
.slider-nav:hover {
  background: #16469D;
  color: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(23,71,158,0.3);
}
.slider-nav.prev { left: -24px; }
.slider-nav.next { right: -24px; }
.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
  max-width: 1100px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px -16px rgba(0,0,0,0.2);
}
.story-card.reverse { direction: rtl; }
.story-card.reverse .story-content { direction: ltr; }
.story-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2540, #16469D);
}
.image-wrapper {
  position: relative;
  height: 100%;
  min-height: 380px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-card:hover .story-image img { transform: scale(1.05); }
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
.image-overlay.active { opacity: 1; }
.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.image-overlay.active .overlay-content { transform: translateY(0); }
.quick-view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  color: #16469D;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.quick-view-btn:hover {
  background: #16469D;
  color: white;
  transform: scale(1.05);
}
.image-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.image-tag {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px;
  letter-spacing: 0.3px;
}
.image-metrics {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.metric {
  background: rgba(225,27,34,0.9);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px;
  letter-spacing: 0.3px;
}
.story-content {
  padding: 40px 36px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.story-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #16469D, #E01A22);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.meta-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #16469D, #E01A22);
  border-radius: 2px;
}
.story-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E01A22;
}
.category-dot {
  width: 6px;
  height: 6px;
  background: #E01A22;
  border-radius: 50%;
}
.story-title {
  font-size: 26px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 16px;
  line-height: 1.3;
}
.story-description {
  font-size: 16px;
  color: #5a6e8a;
  line-height: 1.6;
  margin: 0 0 28px;
}
.story-footer { margin-top: auto; }
.know-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #16469D;
  text-decoration: none;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.know-more-link svg { transition: transform 0.3s ease; }
.know-more-link:hover {
  color: #E01A22;
  gap: 14px;
}
.know-more-link:hover svg { transform: translateX(4px); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.dot {
  width: 40px;
  height: 4px;
  background: #cbd5e1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  overflow: hidden;
}
.dot-inner {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #16469D, #E01A22);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.dot.active .dot-inner { width: 100%; }
.dot:hover {
  background: #94a3b8;
  transform: scaleY(1.2);
}

/* ===== 16. SOLIDPRO PATTERN CLASSES & ADDITIONAL ===== */
.solidpro-gradient-red { background: linear-gradient(135deg, #E01A22 0%, #c4171e 100%); }
.solidpro-gradient-blue { background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 100%); }
.solidpro-gradient-horizontal { background: linear-gradient(90deg, #E01A22 0%, #ffcc00 100%); }
.solidpro-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solidpro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.solidpro-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.solidpro-badge {
  background: #f8f9fa;
  padding: 6px 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.solidpro-text-red { color: #E01A22; }
.solidpro-text-blue { color: #1a1a3e; }
.solidpro-text-gold { color: #ffcc00; }
.solidpro-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E01A22 0%, #ffcc00 100%);
}
.how-to-start h4 { color: #fff; }


.tools-section .sec-title { margin-bottom: 50px !important; }
.tools-section .tools-section-mb { margin-bottom: 50px !important; }
.process-card4 {
  background: var(--white-color);
  border-radius: 10px;
  padding: 34px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.process-card4:not(:last-child) { margin-bottom: 24px; }
.process-card4 .box-title { margin-bottom: 8px; }
.process-card4 .box-text { max-width: 429px; }
.process-card4 .box-number {
  color: var(--th-border-color);
  font-size: 40px;
  font-weight: 600;
  font-family: var(--title-font);
  transition: .4s;
}
.process-card4.item-active2 .box-number { color: var(--title-color); }
.process-box-img-wrap {
  position: relative;
  z-index: 1;
  margin: 150px 0 0 !important;
}
.process-box-img {
  border-radius: 30px;
  overflow: hidden;
  position: absolute;
  inset: 0;
  transition: .4s;
  transform: rotate(-40deg) translate(-65px, -110px);
  z-index: -2;
}
.process-box-img img { width: 100%; }
.process-box-img:nth-child(2) {
  transform: rotate(0deg) translate(-35px, -50px);
  z-index: -1;
}
.process-box-img.active-img {
  transform: rotate(0deg);
  position: relative;
  z-index: 1;
}
.process-box-img.active-img ~ .process-box-img { transform: rotate(0deg) translate(-35px, -50px); }
.process-box-img.active-img ~ .process-box-img ~ .process-box-img { transform: rotate(0deg) translate(-65px, -110px); }
.process-box-img img { width: 80% !important; }
.tools-section h4 { font-size: 20px; }
.about-style1__content [class^="icon-"],
.about-style1__content [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}
.icon-checkmark:before {
  content: "✓";
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #E01A22;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== 17. RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 320px) {
  .hero-style3 { padding: 30px 15px; }
  .hero-style3 .hero-title { font-size: 1.6rem; }
  .wwd-compact-tab { padding: 8px 10px; }
  .wwd-ctitle { font-size: 1rem; }
  .icon-title { font-size: 0.9rem; }
  .icon-desc { font-size: 0.7rem; }
  .step-card h3 { font-size: 0.9rem; }
  .light-cta-section .cta-left h2 { font-size: 1rem; }
}
@media (max-width: 480px) {
  .hero-style3 .hero-text { font-size: 0.8rem; }
  .wwd-compact-section .sec-title { font-size: 1.5rem; }
  .wwd-compact-content-area { max-height: 350px; }
  .wwd-cvisual-box { height: 160px; }
  .accelerators-horizontal .steps-horizontal.four-items .step { flex: 0 1 100%; }
  .light-cta-section .cta-left h2 { font-size: 28px; }
  .light-profile-info h4 { font-size: 20px; }
  .standards-tilt-grid-light { gap: 20px; margin-top: 30px; }
  .standard-tilt-card-light { height: 220px; }
  .tilt-front-light h3 { font-size: 15px; }
  .hero-style3 {
  min-height: 300px;
}
}

@media (min-width: 576px) and (max-width: 1198px) {
.hero-style3 .hero-title {  font-size: 30px; }
}
 


@media (max-width: 575px) {
  .hero-style3 .hero-title { font-size: 24px; line-height: 40px; }
  .hero-title { font-size: 35px; }
 
  .title-area h2 { font-size: 1.5rem; }
  .process-card4 { padding: 24px; }
  .process-card4 .box-title { font-size: 20px; }
  .process-card4 .box-number { font-size: 30px; }
  .process-box-img { border-radius: 16px; }
}
@media (max-width: 767px) {
  .hero3-wrapper { display: none !important; margin-top: 80px; }
  .mobile-hide { display: none !important; }
  .wwd-compact-tabs-nav .wwd-compact-nav-row { flex-direction: column; gap: 10px; }
  .wwd-compact-tab { width: 100%; justify-content: flex-start; text-align: left; padding: 12px 16px; height: auto; flex-direction: row; }
  .wwd-ctab-text { font-size: 0.9rem; text-align: left; }
  .wwd-ctab-icon { margin-bottom: 0; flex-shrink: 0; }
  .wwd-cvisual-box { display: none !important; }
  .wwd-compact-content-area { padding: 15px; max-height: 400px; }
  .light-cta-section .cta-right .mobile-show { display: block !important; }
  .light-cta-section .cta-wrapper { justify-content: center !important; }
  .container { padding-left: 15px; padding-right: 15px; }
  .steps-horizontal { grid-template-columns: 1fr; gap: 40px; }
  .icon-category-row { flex-direction: column; }
  .icon-category-card { width: 100%; margin-bottom: 20px; }
  .light-cta-section .cta-wrapper { flex-direction: column; text-align: center; gap: 30px; }
  .light-cta-section .cta-actions { flex-direction: row; align-items: center; gap: 12px; }
  .light-cta-btn { width: 100%; justify-content: center; }
  
  .journey-step { margin-bottom: 20px; }
  .hero-style3 .th-btn { padding: 10px 20px; }

  .cvisual-box-hide {
    display:none;
  }

  .ccontent-box-show {
    margin-top: 0px;
  }

  .hero-featured {
    display:none;
  }
   
}
@media (max-width: 992px) {

.connector-line { display: none; }

}
@media (max-width: 991px) {
  .wwd-compact-tabs-nav { display: none !important; }
  .wwd-mobile-accordion { display: block !important; margin-bottom: 1.5rem; }
  .desktop-content { display: none !important; }
  .light-cta-section .cta-wrapper {
    display: grid !important;
    grid-template-rows: auto auto auto !important;
    gap: 1.5rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  .light-cta-section .cta-left,
  .light-cta-section .cta-right { display: contents !important; }
  .light-cta-section .cta-left .mobile-hide { display: none !important; }
  .light-cta-section .cta-right .mobile-show {
    display: block !important;
    grid-row: 1 / 2 !important;
  }
  .light-cta-section .light-profile-card {
    grid-row: 2 / 3 !important;
    margin: 0 auto !important;
  }
  .light-cta-section .cta-actions {
    grid-row: 3 / 4 !important;
    justify-content: center !important;
  }
  .light-cta-btn {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    padding: 12px !important;
  }
  .light-cta-btn .btn-text { display: none !important; }
  .light-cta-btn svg {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
  }

  .hero-style3 { padding: 100px 0 100px; }

  
}

@media (min-width: 481px) and (max-width: 575px) { 
    .title-area {
      margin-top: 30px;
  }
}


@media (min-width: 992px) and (max-width: 1199px) {
	.hero-style3 {
		max-width: 100%;
		text-align:center;
	}
}

@media (min-width: 767px) and (max-width: 992px) {
  .hero-style3 { text-align: center; padding: 150px 0 150px; max-width: 750px; min-height: 800px; }
  .hero-style3 .hero-title { font-size: 40px; line-height: 1.2; text-align: center; }
  .hero-featured-item {
  margin: 0px 0;
}

.hero-featured {
  display:none;
}

.journey-steps {
  display: block;
}


.journey-step .step-card {

  margin: 20px auto!important;

}


.journey-steps {
    display: block;
}

}
@media (min-width: 992px) {
  .hero3-wrapper.container { max-width: 100%; }
  .journey-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}


  
  .hero-style3 .hero-text { margin-left: 0; font-size: 1rem; }
  .hero-title { font-size: 50px; line-height: 1.1; }
  .hero-featured { width: 100%; border-radius: 15px 15px 0 0; }
  .hero-featured-icon { margin-bottom: 0; }
  .hero-featured-item { margin: 0 16px; text-align: left; }
  .hero3-feature-wrapp { margin-top: 0; width: auto; }
  .hero-3thumbs, .hero3-swiper-custom { display: block; }
  .steps-horizontal { grid-template-columns: 1fr; gap: 50px; }
  .light-cta-section { padding: 60px 0; }
}
@media (min-width: 992px) {
  .hero-featured { width: 900px; border-radius: 15px 0 0 0; }
  .hero-featured-icon { margin-right: 14px; }
  .wwd-compact-section { max-height: none; padding: 25px 0; }
  .wwd-cvisual-box { height: 200px; }
  .steps-horizontal { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .light-cta-btn .btn-text { display: inline; }
}
@media (min-width: 1200px) {
  .hero-style3 .hero-title { line-height: 54px; margin-top: -1rem; margin-bottom: 50px; }
  .wwd-compact-section { padding: 30px 0; max-height: 800px; }
  .wwd-cvisual-box { height: 220px; }
  .hero-style3 .hero-title { font-size: 40px; line-height: 1.2; text-align: left; }
  .hero-style3 {   margin-left: 30px;  }
  .title-area {
  margin-bottom: 50px;
}
}
@media (min-width: 1400px) {
  .hero-featured { max-width: 1000px; }
}
@media (max-width: 1200px) {
	 .hero-style3 .hero-title {  line-height: 1.2; text-align: center; }
	  .hero-style3  {  max-width: 100%;text-align: center; }
    .title-area h2 {
      font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
  .space { padding: 50px 0; }
  .standards-modern-slider-wrapper { padding: 20px 30px; }
  .modern-standard-card { padding: 20px 15px; }
  .standard-title { font-size: 1rem; }
  .standards-button-prev,
  .standards-button-next { width: 30px; height: 30px; }
  .tools-enhanced-simple-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; }
  .tool-icon-enhanced { width: 50px; height: 50px; }
  .tool-icon-enhanced svg { font-size: 22px; }
  .tool-name-enhanced { font-size: 0.75rem; }
}
@media (max-width: 1100px) {
  .slider-nav.prev { left: -12px; }
  .slider-nav.next { right: -12px; }
  .slider-nav { width: 40px; height: 40px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section-title { font-size: 36px; }
  .story-content { padding: 32px 28px; }
  .story-title { font-size: 22px; }
}
@media (max-width: 768px) {
  .ltts-success-stories { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }
  .story-card { grid-template-columns: 1fr; border-radius: 24px; }
  .story-card.reverse { direction: ltr; }
  .image-wrapper { min-height: 280px; }
  .story-content { padding: 28px 24px; }
  .story-title { font-size: 20px; }
  .slider-nav { display: none; }
  .slider-dots { margin-top: 28px; }
  .image-metrics { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-badge { font-size: 11px; }
  .section-title { font-size: 24px; }
  .story-content { padding: 20px; }
  .story-number { font-size: 24px; }
  .story-title { font-size: 18px; }
  .story-description { font-size: 14px; }
  .image-tags { top: 12px; left: 12px; }
  .image-tag { font-size: 10px; padding: 4px 10px; }
}