:root {
  --dark-primary: #0C2455;
  --primary: #2561D8;
  --text-dark: #111;
  --text-muted: #555;
  --bg-light: #f9fbff;
}

/* General */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  background-color: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

.hero,
.hero p,
.hero a,
.hero-content p {
  font-family: 'Inter', sans-serif !important;
}
.section-container {
  max-width: 1300px;  
  margin: 0 auto;
  padding: 0;
}

h1, h2, h3, h4, h5, h6,
.gap-title,
.proven-title,
.how-title,
.wbd-title,
.services-title,
.get-started-title {
  font-family: 'Albert Sans', sans-serif !important;
  color: #191817;
}

h1, h2, h3, .fw-semibold {
  font-weight: 300;
}
p, li {
  font-weight: 400;
}


/* --- NAVBAR --- */
nav {
  z-index: 10;
  background: var(--dark-primary) !important;
  backdrop-filter: blur(8px);
}

.navbar-brand img {
  max-height: 48px;
  transition: transform 0.2s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}

/* White links on blue background */
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #e2e6ea !important; /* subtle hover contrast */
}

/* --- NAVBAR COLOR CHANGE ON SCROLL --- */
.navbar.scrolled {
  background: #f9fbff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--dark-primary) !important;
}

.navbar.scrolled .btn-outline-primary {
  border-color: var(--dark-primary);
  color: var(--dark-primary);
}

.navbar.scrolled .btn-outline-primary:hover {
  background: var(--dark-primary);
  color: #fff;
}

.navbar.scrolled .navbar-brand img {
  filter: none; /* ensures logo color stays correct if transparent */
}

.navbar .logo-dark {
  display: none;
}

.navbar .logo-light {
  display: inline;
}

.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: inline;
}

/* --- BUTTONS --- */
.btn {
  transition: all 0.2s ease;
  font-weight: 500;
  border-radius: 25px;
  padding: 10px 24px;
}

/* Primary (used on blue background — white fill, blue text) */
.btn-primary {
  background-color: #fff;
  color: var(--dark-primary);
  border: none;
}

.btn-primary:hover {
  background-color: #e2e6ea;
  color: var(--dark-primary);
}

/* Outline (used on blue background — white border, white text) */
.btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-primary:hover {
  background: #fff;
  color: var(--dark-primary);
}

.btn-light-blue {
  color: #3B7CFD !important;
}
.btn-light-blue:hover {
  color: #1f5de3 !important; 
}

#how-we-help .btn-outline-primary {
  border-color: var(--dark-primary);
  color: var(--dark-primary);
}

#how-we-help .btn-outline-primary:hover {
  background: var(--dark-primary);
  color: #fff;
}

/* ================================
   HERO SECTION
===================================*/
.hero {
  background: var(--dark-primary);
  color: #fff;
  padding-bottom: 6rem !important;
  padding: 8rem 1rem 3rem;
  position: relative;
  z-index: 0;
}

/* Add the "K" image background on the right side */
/* Hero background image */
.hero::after {
  content: none !important;  /* Remove the K image completely */
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-boxes .box {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.25); 
  border-radius: 20px;
  background: transparent;
  /* Apply two animations: one for rotation, one for floating */
  animation: box-slow-rotate 60s linear infinite, box-float 8s ease-in-out infinite;
}

/* Individual Timing & Positioning */
.hero-boxes .box1 {
  width: 380px;
  height: 260px;
  right: 10%;
  top: 50px;
  animation-duration: 70s, 10s; /* slower rotate, faster float */
}

.hero-boxes .box2 {
  width: 280px;
  height: 200px;
  right: 20%;
  top: 350px;
  animation-duration: 90s, 12s;
  animation-delay: -2s;
}

.hero-boxes .box3 {
  width: 420px;
  height: 300px;
  right: -5%;
  top: 550px;
  opacity: 0.8;
  animation-duration: 120s, 15s;
}

.hero-boxes .box4 {
  width: 350px;
  height: 240px;
  left: -3%;
  top: 150px;
  opacity: 0.3;
  animation-duration: 80s, 9s;
}
/* Rotation similar to the spiral */
@keyframes box-slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Subtle floating effect (Y-axis movement) */
@keyframes box-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 30px; /* Moves down slightly */
  }
}

/* Responsive tuning */
@media (max-width: 768px) {
  .hero-boxes .box {
    animation-duration: 40s, 6s; /* Speed up slightly on mobile for visible effect */
  }
}
/* Responsive improvements for mobile */
@media (max-width: 768px) {
    .hero::after {
    content: none !important;  /* Remove the K image completely */
    }

  /* Slightly darken background for better contrast with text */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
  }

  .hero > .container {
    position: relative;
    z-index: 3;
  }
}


.hero h1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  color: #D4F0FC;
  text-align: left;
  max-width: 1000px;
  white-space: normal;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .hero h1 {
    text-align: center;
  }

  .hero-content p {
    text-align: center;
  }
}

.hero-content {
  margin-top: 2rem;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-content p {
  text-align: left;
}

.hero-content .btn {
  margin-top: 1rem;
}

.hero .section-container {
  padding-left: 0;  
  padding-right: 0; 
}

.hero p {
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.5;
  color: #F4F3F2;
  max-width: 650px;
}

.hero .btn-primary {
  background-color: #fff;
  color: var(--dark-primary);
  font-family: 'Inter', sans-serif !important;
}

.hero .btn-primary:hover {
  background-color: #e2e6ea;
}

.hero .btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
}

.hero .btn-outline-primary:hover {
  background-color: #fff;
  color: var(--primary);
}


/* Existing */
.hero-content-desc {
  font-size: 1rem;
  color: #333;
  max-width: 420px;
  margin-bottom: 1rem; 
}

/* New */
.cta-buttons {
  display: flex;
  gap: 1rem;            
  margin-top: 1rem;     
}

/* Mobile stacking */
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center; 
    width: auto;         
  }

  .cta-buttons a {
    width: auto; /* let button size itself naturally */
  }
}

/* Background boxes (FIGMA style) */
.hero-boxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}


.hero-boxes .box {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.25); 
  border-radius: 20px;
  background: transparent;
}


.hero-boxes .box1 {
  width: 380px;
  height: 260px;
  right: 10%;
  top: 50px;
}

.hero-boxes .box2 {
  width: 280px;
  height: 200px;
  right: 20%;
  top: 350px;
}

.hero-boxes .box3 {
  width: 420px;
  height: 300px;
  right: -5%;
  top: 550px;
}

.hero-boxes .box4 {
  width: 350px;
  height: 240px;
  left: -3%;
  top: 150px;
  opacity: 0.3;
}

/* Keep content above background */
.hero > * {
  position: relative;
  z-index: 3;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-boxes .box1 {
    width: 250px;
    height: 170px;
    right: 5%;
    top: 20px;
  }

  .hero-boxes .box2 {
    width: 200px;
    height: 140px;
    right: 10%;
    top: 200px;
  }

  .hero-boxes .box3 {
    width: 300px;
    height: 200px;
    right: -5%;
    top: 360px;
  }

  .hero-boxes .box4 {
    width: 200px;
    height: 150px;
    left: -5%;
    top: 100px;
    opacity: 0.2;
  }
}

/* ================================
   PROVEN EXPERTISE SECTION
===================================*/

.proven-wrapper {
  padding: 6rem 0;
  position: relative;
  overflow: visible;
}

.proven-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #2561D8;
  margin-bottom: 1.5rem;
}

.proven-title {
  font-family: 'Albert Sans', sans-serif !important;
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 300;
  line-height: 1.07;
  color: #191817;
  max-width: 620px;
  margin-bottom: 2rem;
}

.proven-subtext {
  font-size: 1rem;
  color: #333;
  max-width: 100%;
  margin-bottom: 1rem;
}

/* Proven Expertise List */
.proven-expertise-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Each Item */
.proven-item {
  display: grid;
  grid-template-columns: 1.2fr 0.1fr 1fr; 
  align-items: stretch; 
  position: relative;
  border-bottom: 2px solid #bfd9ff; 
}

.proven-item-left {
  display: flex;
  align-items: center; 
  padding: 1.5rem 0;
}
/* Left Title */
.proven-item-left h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
  margin: 0;
}

/* Content Box — square corners */
.proven-item-content {
  border-left: 2px solid #bfd9ff;
  border-right: 2px solid #bfd9ff;
  border-top: 2px solid #bfd9ff;
  padding: 2rem 1.5rem;
  background: #fff; /* Ensures it sits clean on the line */
}

/* Remove the old pseudo-elements entirely */
.proven-item-content::before,
.proven-item-content::after {
  display: none;
}

/* Content inside box */
.proven-item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.proven-item-content p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .proven-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .proven-item-content {
    order: 2;
  }

  .proven-wrapper {
    padding: 3rem 1.5rem;
  }

  .proven-title {
    font-size: clamp(1.8rem, 5vw, 32px);
    max-width: 100%;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .proven-label,
  .proven-subtext {
    padding: 0 0.5rem;
  }
}


/* ================================
   GET STARTED SECTION
===================================*/
.get-started-wrapper {
  background: #fff;
  margin: 0;
  padding: 1.5rem 0 2.5rem; /* reduced top padding */
}

.get-started-section {
  background: var(--dark-primary);
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.15);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 4rem 5rem;
}

.get-started-section h2 {
  font-family: 'Albert Sans', sans-serif !important;
  font-weight: 300; /* Light */
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3rem); /* responsive, ≈48px max */
  line-height: 1.1; /* 110% */
  letter-spacing: -0.04em; /* -4% tracking */
  color: #F4F3F2;
  margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
  .get-started-section h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    text-align: center;
  }

  .get-started-section p {
    text-align: center;
  }

  .get-started-section a.btn {
    display: block;
    margin: 0 auto;       
    text-align: center;
    width: fit-content;    
    padding: 0.6rem 1.4rem; 
    font-size: 0.9rem;    
  }
}

/* Replace text "K" with image background */
.get-started-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url("../images/k-shape.png") no-repeat right center;
  background-size: contain;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1;
}



/* Ensure content stays on top of image */
.get-started-section .row {
  position: relative;
  z-index: 2;
}

/* Divider under section aligned with its width */
.divider-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.footer-divider {
  height: 2px;
  background-color: var(--primary);
  width: 100%;
  max-width: 1300px;
  border-radius: 0;
}

/* Footer alignment matches get-started width */
footer .container {
  max-width: 1300px;
}

/* --- Responsive tweaks --- */
@media (max-width: 992px) {
  .get-started-section {
    padding: 3rem 2rem;
    max-width: 95%;
  }

  .get-started-section::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("../images/k-shape.png") no-repeat center bottom;
    background-size: cover;
    opacity: 0.18;
  }

  .footer-divider {
    max-width: 95%;
  }

  footer .container {
    max-width: 95%;
  }
}


/* 
.get-started-section::after {
  content: none !important;
}


.get-started-section .background-boxes {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}


.get-started-section .background-boxes .box {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background: transparent;
}


.get-started-section .background-boxes .box1 {
  width: 380px;
  height: 260px;
  right: 5%;
  top: 40px;
}

.get-started-section .background-boxes .box2 {
  width: 300px;
  height: 200px;
  right: 15%;
  top: 300px;
} */


