body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
}
:root {
    --bg-dark: #07070a;
    --text-primary: #ffffff;
    --text-secondary: #8a8a9e;
    --accent-purple: #9d4edd;
    --accent-cyan: #00f5d4;
    --row-border: rgba(255, 255, 255, 0.1);
    --row-hover-bg: rgba(255, 255, 255, 0.02);
}

/* ACHIEVEMENTS SECTION */
.achievements-section {
  padding: 10px 0;
  background: #ffffff;
}

.achievements-pill {
  background: #1c2954;
  border-radius: 40px;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 20px 50px rgba(28, 41, 84, 0.2);
  max-width: 1100px;
  margin: 0 auto;
}

.achievement-item {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.ach-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ach-icon {
  font-size: 0.85rem;
}

.ach-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ach-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.ach-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .achievements-pill {
    flex-wrap: wrap;
    border-radius: 30px;
    padding: 30px;
  }
  
  .achievement-item {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .ach-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .achievement-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 991px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ach-num {
    font-size: 2.5rem;
  }
}


/* JOURNEY TIMELINE SECTION */
.timeline-section {
  padding: 40px 20px 40px;
  background: #ffffff;
  overflow: hidden;
}

.timeline-container {
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  padding: 60px 0;
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1f2b4d;
  margin-bottom: 15px;
}

.timeline-header p {
  color: #666;
  font-size: 1.1rem;
}

/* SVG Path Wrapper */
.timeline-svg-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 400px;
  /* Matching the viewBox width */
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.timeline-svg {
  width: 100%;
  height: 100%;
}

.path-base {
  stroke: rgba(31, 43, 77, 0.08);
  stroke-width: 4;
  stroke-dasharray: 10, 10;
}

.path-progress {
  stroke: #1c2954;
  stroke-width: 5;
  stroke-linecap: round;
  filter: none;
  transition: stroke-dashoffset 0.1s linear;
}

/* Rocket Indicator */
.timeline-rocket {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1c2954;
  z-index: 10;
  filter: none;
  transition: left 0.1s linear, top 0.1s linear, transform 0.1s linear;
}

.timeline-rocket i {
  display: block;
  transform: rotate(0deg);
  /* Rotation handled by JS */
}

/* Rocket Trail/Fire */
.timeline-rocket::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 20px;
  background: linear-gradient(to top, #ff4500, transparent);
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(2px);
  animation: flicker 0.2s infinite;
}

@keyframes flicker {

  0%,
  100% {
    height: 15px;
    opacity: 0.8;
  }

  50% {
    height: 25px;
    opacity: 1;
  }
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /* Aligned to top */
  width: 100%;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

/* Alternating item positions to follow the curve */
.timeline-item.item-right {
  justify-content: flex-end;
}

.timeline-item.item-right .timeline-content {
  margin-right: 5%;
}

.timeline-item.item-left .timeline-content {
  margin-left: 5%;
}

.timeline-content {
  width: 38%;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  box-shadow: none;
  border: 1px solid rgba(28, 41, 84, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-content:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: none;
  border-color: #1c2954;
}

.timeline-year {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1c2954;
  margin-bottom: 12px;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(28, 41, 84, 0.1);
  border-radius: 50px;
  letter-spacing: 1px;
}

.timeline-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1f2b4d;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* Milestone Dot on the curve */
.timeline-milestone {
  position: absolute;
  left: 50%;
  top: 20px; /* Moved up from 50% */
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 3px solid rgba(31, 43, 77, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1f2b4d;
  font-size: 1.2rem;
  box-shadow: none;
  transition: all 0.4s ease;
}

.timeline-milestone.active {
  background: #1c2954;
  color: #fff;
  border-color: #1c2954;
  transform: translateX(-50%) scale(1.2);
  box-shadow: none;
}

/* Offset milestones to match curve peaks - Corrected for overlapping */
.timeline-item.item-left .timeline-milestone {
  left: calc(50% + 140px); /* Milestone on the right peak */
}

.timeline-item.item-right .timeline-milestone {
  left: calc(50% - 140px); /* Milestone on the left trough */
}

/* Responsiveness */
@media (max-width: 1024px) {
  .timeline-svg-wrapper {
    width: 300px;
  }

  .timeline-item.item-left .timeline-milestone {
    left: calc(50% + 100px);
  }

  .timeline-item.item-right .timeline-milestone {
    left: calc(50% - 100px);
  }
}

@media (max-width: 768px) {
  .timeline-svg-wrapper {
    left: 20px;
    transform: none;
    width: 60px;
  }

  .timeline-item,
  .timeline-item.item-right {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
    margin-bottom: 80px;
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
  }

  .timeline-milestone,
  .timeline-item.item-right .timeline-milestone,
  .timeline-item.item-left .timeline-milestone {
    left: 20px !important;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-rocket {
    font-size: 1.5rem;
    left: 20px !important;
  }

  .timeline-rocket::after {
    display: none;
  }
}

/* ABOUT SECTION */
.about-section {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  width: 92%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content h1 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2b4d;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.about-content h1 span {
  display: inline;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #1c2954;
  border-radius: 20px;
  z-index: -1;
  transition: all 0.5s ease;
}

.about-image:hover::before {
  transform: translate(-10px, -10px);
  border-color: #1c2954;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Floating Dots Animation */
.dot-decoration {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1c2954;
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
}

.dot-1 {
  top: 10%;
  left: 5%;
  animation: float 6s infinite ease-in-out;
}

.dot-2 {
  bottom: 15%;
  right: 10%;
  animation: float 8s infinite ease-in-out;
}

.dot-3 {
  top: 40%;
  right: 5%;
  animation: float 7s infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 90%;
  }

  .about-content h1 {
    font-size: 36px;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-image::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-content h1 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-image img {
    border-radius: 15px;
  }
}

/* VISION + MISSION SECTION */
@font-face {
  font-family: 'Inter', sans-serif;
  src: url('assets/fonts/Sekuya.ttf') format('truetype'),
    url('assets/fonts/Sekuya.woff') format('woff'),
    url('assets/fonts/Sekuya.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.vm-heading-section {
  text-align: center;
  padding: 20px 20px 20px;
  background: #ffffff;
}

.vm-heading-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  color: #111;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
}

.vm-heading-section h2::after {
  display: none;
}

@keyframes underlineFade {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.vm-wrapper {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.vm-left {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.vm-img-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease;
}

.vm-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-img-slide--hidden {
  opacity: 0;
  pointer-events: none;
}

.vm-img-slide--visible {
  opacity: 1;
}

.vm-right {
  width: 50%;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.vm-block {
  max-width: 480px;
}

.vm-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 14px;
}

.vm-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.vm-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 30px;
}

.vm-divider {
  width: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0;
  display: none;
}

.vm-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.vm-join-btn:hover {
  background: #333;
  transform: scale(1.04);
}

.vm-btn-icon {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .vm-heading-section {
    padding: 20px 0px 20px 20px;
  }

  .vm-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .vm-left {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .vm-right {
    width: 100%;
    padding: 30px 24px;
    gap: 6px;
  }

  .vm-block {
    max-width: 100%;
  }

  .vm-title {
    font-size: 1.6rem;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.image-outer {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding-bottom: 55px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  animation: floatImage 4s ease-in-out infinite;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.arrow-accent {
  position: absolute;
  right: -18px;
  top: 42%;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 28px solid #0056b3;
  z-index: 10;
  animation: floatArrow 2s ease-in-out infinite;
}

.squiggle-accent {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 88px;
  pointer-events: none;
  z-index: 20;
  animation: squiggleFloat 2.6s ease-in-out infinite;
  filter: none;
}

.content-block {
  padding-left: 48px;
}

.faq-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: #1f2b4d;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 36px;
  font-weight: 400;
}

.faq-accordion .accordion-item {
  background-color: #f9f9f9;
  border: 1px solid #cccccc;
  border-radius: 8px !important;
  margin-bottom: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  transform: translateX(6px);
  box-shadow: none;
}

.faq-accordion .accordion-button {
  background-color: #f9f9f9;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 22px;
  box-shadow: none !important;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #f0f0f0;
}

.faq-accordion .accordion-button .acc-icon {
  width: 34px;
  height: 34px;
  background-color: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion .accordion-button .acc-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
  transition: transform 0.35s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .acc-icon svg {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  background-color: #f9f9f9;
  color: #555555;
  font-size: 0.95rem;
  padding: 0 22px 20px;
  line-height: 1.7;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatArrow {

  0%,
  100% {
    transform: translateX(0px);
    opacity: 1;
  }

  50% {
    transform: translateX(10px);
    opacity: 0.55;
  }
}

@keyframes squiggleFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-4deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(3deg) scale(1.08);
  }
}

@media (max-width: 991px) {
  .content-block {
    padding-left: 0;
    margin-top: 48px;
  }

  .image-outer {
    max-width: 100%;
  }

  .arrow-accent {
    display: none;
  }
}

/*   Premium CTA Section Redesign   */
.cta-premium-wrap {
  padding: 80px 0;
  background: #fff;
}

.cta-premium-card {
  background: radial-gradient(circle at center, #1c2954 0%, #0c152e 100%);
  border-radius: 60px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Subtle mesh background effect */
.cta-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
  pointer-events: none;
}

.cta-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cta-main-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
}

.cta-main-title em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.cta-subtext {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 45px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-btns-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-btn-main {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  color: #000000;
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-btn-main:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.4);
  color: #000000;
}

.cta-btn-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cta-btn-main:hover .cta-btn-arrow {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .cta-premium-card {
    padding: 60px 30px;
    border-radius: 40px;
  }

  .cta-main-title {
    font-size: 2.2rem;
  }

  .cta-btns-group {
    flex-direction: column;
  }
}





/* Background Animated Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite alternate;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple), transparent);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-cyan), transparent);
    bottom: 10%;
    right: -100px;
    animation-duration: 25s;
    animation-delay: -5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,255,0.4), transparent);
    top: 50%;
    left: 20%;
    opacity: 0.2;
    animation-duration: 30s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 100px) scale(1.1); }
    100% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-title {
    letter-spacing: -2px;
}

.cta-btn {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
    border: none;
    color: var(--bg-dark);
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 245, 212, 0.4);
    color: var(--bg-dark);
}

/* STRATEGIES SECTION */
.strategies-section {
    background: radial-gradient(circle at center, #1c2954 0%, #111d42 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    /* border-top-left-radius: 80px;
    border-top-right-radius: 80px; */
    border-radius: 80px;;
    z-index: 2;
    margin:20px 50px;
}

.strategies-section .section-header h2 {
    color: #ffffff;
}

.strategies-section .section-header p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.strategy-list {
    display: flex;
    flex-direction: column;
}

.strategy-row {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--row-border);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.strategy-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-purple));
    transition: height 0.4s ease;
}

.strategy-row:hover {
    background-color: var(--row-hover-bg);
    padding-left: 1rem;
}

.strategy-row:hover::before {
    height: 100%;
}

.outline-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--row-border);
    transition: all 0.4s ease;
    line-height: 1;
}

.strategy-row:hover .outline-number {
    -webkit-text-stroke: 1.5px transparent;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.strategy-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    transition: color 0.3s ease;
}

.strategy-row:hover .strategy-title {
    color: var(--text-primary);
}

.strategy-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

/* Strategy Image Hover Effect */
.strategy-image-container {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) translateX(20px) scale(0.8);
    width: 280px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.strategy-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-row:hover .strategy-image-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
}

.strategy-row {
    position: relative;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--row-border);
    transition: all 0.4s ease;
    cursor: default;
}

/* Scroll Animations */
.reveal-row {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-row.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer-section {
    border-top: 1px solid var(--row-border);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    .display-2 {
        font-size: 3rem;
    }
    .outline-number {
        font-size: 3rem;
    }
    .strategy-title {
        font-size: 1.4rem;
    }
    .strategy-row {
        padding: 1.5rem 0;
    }
    .strategies-section {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -40px;
        /* padding-top: 60px !important; */
        margin:0px 20px;
    }
}
