:root {
  --primary-color: #05185e; /* Custom Dark Blue */
  --secondary-color: #10B981; /* Bright Emerald */
  --accent-color: #F59E0B; /* Warm Amber */
  --text-dark: #000001; /* Deep Slate */
  --text-light: #475569; /* Soft Slate */
  --bg-light: #F8FAFC; /* Soft Slate Tint */
  --bg-pastel-blue: #EFF6FF;
  --bg-pastel-green: #F0FDF4;
  --bg-pastel-orange: #FFF7ED;
  --bg-pastel-purple: #FAF5FF;
  --border-color: #E2E8F0;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
}
/* #05175d */


html, body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

/* Typography Utilities */
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-primary-dark {
  background-color: #04185e !important;
}
.bg-secondary-light {
  background-color: var(--secondary-color) !important;
}

/* Buttons */
.btn-custom-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-custom-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-custom-outline {
  background-color: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

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

/* Header & Navbar */
.custom-navbar {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.navbar-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}
.hero-badge {
  display: inline-block;
  background-color: #ffe8cc;
  color: #d97706;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  color: var(--primary-color);
}
.hero-widget {
  background-color: #111827; /* Dark Slate */
  color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 576px) {
  .hero-widget {
    top: -6px;
    margin-left: 6px;
    margin-top: 0;
    display: inline-flex;
    transform: scale(0.8);
    transform-origin: left center;
  }
}

.hero-title-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .hero-title-main {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  .hero-title-sub {
    font-size: 3.2rem;
    letter-spacing: -1.5px;
  }
}

@media (min-width: 992px) {
  .hero-title-main {
    font-size: 4.5rem;
  }
  .hero-title-sub {
    font-size: 4.2rem;
    letter-spacing: -2px;
  }
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Form Styles */
.lead-form-container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 8px solid #333; /* Phone bezel effect */
}
.lead-form-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}
.lead-form-body {
  padding: 30px;
}
.form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Partners Banner */
.partners-section {
  padding: 40px 0;
  background-color: #ffffff;
}
.partner-logo {
  max-height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.partner-logo:hover {
  opacity: 1;
}

/* Cards Section (Highlights & Results) */
.section-padding {
  padding: 80px 0;
}
.neo-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(245, 206, 14, 0.2);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Accordion */
.custom-accordion .accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 16px !important;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.custom-accordion .accordion-button {
  color: #000;
  background-color: #ffffff;
  padding: 20px;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #04185e;
  color: #ffffff;
  border-bottom: 2px solid #000;
}
.custom-accordion .accordion-button::after {
  filter: grayscale(1);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* Banners */
.yellow-banner {
  background-color: var(--secondary-color);
  padding: 50px 0;
}

.blue-banner {
  background-color: #05175d;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

/* Footer */
footer {
  background-color: #111;
  color: #aaa;
  padding: 40px 0;
  text-align: center;
}

/* Neo-Brutalist Styles for Minimal Redesign */
.minimal-hero {
}

.neo-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.neo-btn {
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.neo-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
  animation: bell-ring 0.5s ease-in-out;
}

@keyframes bell-ring {
  0% { transform: translateY(-2px) rotate(0); }
  15% { transform: translateY(-2px) rotate(5deg); }
  30% { transform: translateY(-2px) rotate(-5deg); }
  45% { transform: translateY(-2px) rotate(3deg); }
  60% { transform: translateY(-2px) rotate(-3deg); }
  75% { transform: translateY(-2px) rotate(1deg); }
  100% { transform: translateY(-2px) rotate(0); }
}

.neo-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.neo-btn-sm {
  padding: 8px 20px !important;
  font-size: 14px !important;
  border-width: 2px !important;
  box-shadow: 3px 3px 0px #000 !important;
}

.neo-contact-btn {
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
}
.neo-contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
@media (min-width: 992px) {
  .neo-contact-btn {
    padding: 1rem 3rem;
  }
}

.neo-btn-primary {
  background: linear-gradient(135deg, #FF6B00, #F59E0B) !important;
  color: #ffffff !important;
}

.neo-btn-secondary {
  background-color: #04185e !important;
  color: #ffffff !important;
}

.neo-btn-white {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.neo-btn-black {
  background-color: var(--text-dark) !important;
  color: #ffffff !important;
}

.neo-form-container {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.form-control::placeholder {
  color: #6c757d !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: 1;
}

.form-control {
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
}

.form-control:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

.neo-input {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.neo-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.neo-input-group {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}
.neo-input-group:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Modern Pill Cards (Features/Pain Points) */
.neo-pill-card {
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.neo-pill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.neo-pill-badge {
  top: -24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background-color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.neo-pill-header {
  border-radius: 12px 0 0 12px;
  background-color: #05175d !important;
}
.neo-pill-divider {
  height: 4px;
  width: 15px; /* Reduced width */
  background-color: #05175d !important;
  flex-shrink: 0;
}
.bg-slate-800 { background-color: #1e293b !important; }
.bg-primary-metallic { background-color: #1e3c72 !important; }
.bg-brand-orange { background-color: #ff6b00 !important; }

/* Custom Typography Utilities */
.font-poppins { font-family: 'Plus Jakarta Sans', sans-serif !important; }
.text-14 { font-size: 14px !important; }
.text-10 { font-size: 10px !important; }
.letter-spacing-1 { letter-spacing: 1px !important; }
.letter-spacing-05 { letter-spacing: 0.5px !important; }

/* Yellow Accents */
.text-highlight-yellow {
  background-color: #FFEA00;
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
}
.text-yellow-bright {
  color: #FFEA00;
}

   .marquee-wrapper {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      width: 100%;
      padding: 10px 0;
      margin-bottom: 30px;
    }

    .marquee-track {
      display: inline-flex;
      width: max-content;
    }

    .marquee-content {
      display: inline-flex;
      gap: 24px;
      padding-right: 24px;
      /* Matches gap to ensure seamless loop */
    }

    .marquee-left {
      animation: scroll-left 40s linear infinite;
    }

    .marquee-right {
      animation: scroll-right 40s linear infinite;
    }

    .marquee-wrapper:hover .marquee-left,
    .marquee-wrapper:hover .marquee-right {
      animation-play-state: paused;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes scroll-right {
      0% {
        transform: translateX(-50%);
      }

      100% {
        transform: translateX(0);
      }
    }

    .gallery-img {
      height: 280px;
      width: 400px;
      object-fit: cover;
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-img:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* Tool Marquee Styles */
    .tool-item {
      width: 200px;
      padding: 5px;
    }

    .tool-card {
      transition: transform 0.3s ease;
      border: 1px solid #e2e8f0;
      height: 60px;
      background-color: #fff;
    }

    .tool-card:hover {
      transform: scale(1.05);
      border-color: var(--primary-color);
    }

    @media (max-width: 768px) {
      .gallery-img {
        height: 200px;
        width: 280px;
      }

      .marquee-content {
        gap: 16px;
        padding-right: 16px;
      }
    }

    .newadjiust {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    height: 90px !important;
}

/* Mobile Hero Fixes */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0 !important;
  }
  .hero-title-main {
    font-size: 2rem !important;
  }
  .hero-title-sub {
    font-size: 1.8rem !important;
  }
}

  .partners-section {
    background: #f8f9fc;
    overflow: hidden;
}

.partners-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.4s ease;
}

.logo-box img {
    width: 100%;
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    transition: 0.4s ease;
}

/* Owl Fix */
.partners-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.partners-carousel .item {
    display: flex;
    justify-content: center;
}

@media(max-width:768px){

    .partners-title{
        font-size: 32px;
        line-height: 42px;
    }

    .logo-box{
        height: 90px;
    }

    .logo-box img{
        max-width: 120px;
        max-height: 50px;
    }

}


  .student-carousel .item {
      padding: 20px 10px;
    }

    .student-card {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      height: 620px;
      background: #f4f4f4;
    }

    .student-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      position: relative;
      z-index: 1;
      transition: 0.5s ease;
    }

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

    .student-info {
      position: absolute;
      bottom: 28px;
      left: 28px;
      right: 28px;
      z-index: 100;

      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(12px);

      border-radius: 24px;
      padding: 32px 24px;

      box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12);

      transition: 0.4s ease;
    }

    .student-card:hover .student-info {
      transform: translateY(-6px);
    }

    .student-name {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.1;
      color: #111;
      margin-bottom: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .student-role {
      font-size: 20px;
      color: #4b5563;
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 18px;
    }

    .student-company {
      color: #f4b400;
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .student-company i {
      color: #05175d;
      margin-right: 6px;
    }

    @media(max-width:768px) {

      .student-card {
        height: 520px;
      }

      .student-info {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 24px 18px;
      }

      .student-name {
        font-size: 28px;
      }

      .student-role {
        font-size: 16px;
      }

      .student-company {
        font-size: 15px;
      }
    }

/* New Hero Styles with Metallic Gradient */
.bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #e6e7ee 0%,
    #cdd0de 20%,
    #f4f5f8 40%,
    #b4b9ce 60%,
    #cdd0de 80%,
    #e6e7ee 100%
  );
  opacity: 0.7;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Custom styles for Facing Now section */
#facing-now .neo-pill-header {
  background-color: #05175d !important;
}
#facing-now .neo-pill-divider {
  background-color: #05175d !important;
}

/* Custom styles for Results section */
/* Mobile adjustments for Hero Stats */
@media (max-width: 768px) {
  .hero-stats-row .col-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .hero-stats-row .bg-white {
    padding: 6px !important;
    gap: 4px !important;
    border-radius: 8px !important;
  }
  .hero-stats-row h2 {
    font-size: 0.9rem !important;
  }
  .hero-stats-row p {
    font-size: 8px !important;
    line-height: 1.1 !important;
  }
  .hero-stats-row .icon-container {
    width: 24px !important;
    height: 24px !important;
  }
  .hero-stats-row .icon-container i {
    font-size: 10px !important;
  }
}

/* Floating Bar Styles */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  padding: 15px 0;
  z-index: 1000;
  transition: transform 0.5s ease-in-out;
  transform: translateY(100%); /* Hidden fully by default */
}

.floating-bar.active {
  transform: translateY(0); /* Show fully */
}

@media (max-width: 768px) {
  .floating-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .floating-bar h5 {
    font-size: 1rem !important; /* Smaller font on mobile */
    white-space: nowrap; /* Keep on single line */
  }
}

/* Owl Carousel Custom Dots */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color) !important;
}

/* Results & Facing Carousel Spacing for Badges */
.results-carousel, .facing-carousel {
  padding-top: 20px !important; /* Reduced since badges are commented out */
}

.results-carousel .owl-stage, .facing-carousel .owl-stage {
  display: flex !important;
}

.results-carousel .owl-item, .facing-carousel .owl-item {
  display: flex !important;
  flex: 1 0 auto;
}

.results-carousel .item, .facing-carousel .item {
  width: 100%;
}