@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-bg-white: #ffffff;
  --color-bg-dark: #131720;
  --color-bg-darker: #0b0d13;
  --color-bg-blue-dark: #0f1f57;
  --color-bg-light-blue: #F8FAFC;
  /* Slightly cleaner light blue */

  --color-text-primary: #1e1e1e;
  --color-text-secondary: #252525;
  --color-text-white: #ffffff;
  --heading-text: #282828;
  --paragraph-text: #181818;
  --color-text-light-grey: #a0a0a0;

  --color-accent-blue: #128cff;
  --color-accent-blue-light: #6ec1e4;
  --color-accent-green: #3fb572;
  --color-accent-orange: #d79245;
  --color-accent-red: #cc1818;

  /* Gradients */
  --gradient-blue: linear-gradient(90deg, #09AEDE 0%, #1E7AE8 100%);
  --gradient-green: linear-gradient(90deg, #37A990 0%, #3FB572 100%);
  --gradient-orange-red: linear-gradient(90deg, #D79245 0%, #AB3A33 100%);
  --gradient-light-blue: linear-gradient(180deg, #eef9ff 0%, #ecfbff 100%);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(19, 23, 32, 0) 0%, rgba(19, 23, 32, 0.8) 100%);

  /* Fonts */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-heading: 'Rubik', sans-serif;
  --font-accent: 'Outfit', sans-serif;


  /* Shadows - Premium Soft Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(18, 140, 255, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: none;
}

p,
body,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: unset;
}

.btn {
  border: unset;
}

.btn:before {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .4;
  position: absolute;
  top: -50px;
  width: 50px;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
  z-index: -10;
  animation: hoverbtn infinite 1.5s;
  filter: blur(15px);
  -webkit-filter: blur(15px);
}

@keyframes hoverbtn {
  0% {
    left: 120%;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-white);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  outline: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-bg-dark);
}

p {
  color: var(--color-text-secondary);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  /* Modern pill shape */
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-base);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 4px 15px rgba(18, 140, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 140, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-secondary {
  background: white;
  color: var(--color-accent-blue);
  border: 1px solid rgba(18, 140, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-accent-blue);
  background: #f8fbff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Color Utilities */
.green-text {
  color: var(--color-accent-green);
}

.red-text {
  color: var(--color-accent-red);
}

.blue-text {
  color: var(--color-accent-blue);
}

.green-text-3 {
  color: #37a990;
}

.green-text-4 {
  color: var(--color-accent-green);
  font-weight: 700;
}

/* Animation Utilities */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* Section Header Styling */
.section-header h2 {
  font-size: 42px;
  margin-bottom: 00px;
  position: relative;
  display: inline-block;
}

.section-line {
  width: 80px;
  height: 5px;
  background: var(--gradient-blue);
  margin: 0 auto;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-padding {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .mt-50 {
    margin-top: 32px !important;
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* Header.css */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 16px 20px;
  border-bottom: 1px solid #E7EBF0;
}

.header.scrolled {
  background: linear-gradient(180deg, #eef9ff 0%, #ecfbff 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 171px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--color-text-primary);
  transition: color 0.3s ease;
  font-size: 16px;
}

.nav-link:hover {
  color: var(--color-accent-blue);
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-login {
  font-weight: 600;
  color: var(--color-text-primary);
}

.btn-login:hover {
  color: var(--color-accent-blue);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-primary);
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
    z-index: 55;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--color-bg-white);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Hero.css */
.hero {
  padding: 120px 0 100px;
  background: var(--gradient-light-blue);
  position: relative;
  overflow: hidden;
}

img.hero-fixed-icon {
  position: absolute;
}

.top-right.hero-fixed-icon {
  width: 140px;
  top: 60px;
  right: -10px;
}

.bottom-middle.hero-fixed-icon {
  width: 80px;
  bottom: -10px;
  left: 50%
}

/* Background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 140, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-title {
  font-size: 47px;
  /* Larger, more impactful */
  margin-bottom: 16px;
  color: #2B3C31;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
  animation: fadeUp 0.8s ease-out forwards;
}

.hero-title.highlight {
  background: var(--gradient-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  font-size: 55px;
  font-weight: 800;
  display: inline-block;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6em;
  color: #313131;
  margin-bottom: 0px;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
  margin-bottom: 10px;
}

.hero-subtitle .green-text {
  background: var(--gradient-green);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-subtitle .red-text {
  background: var(--gradient-orange-red);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-success-rate {
  color: var(--color-accent-blue);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 20px;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 65%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.btn-custom {
  border-radius: 8px;
  padding: 14px 14px;
  width: 250px;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-success-rate {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 48px;
  }

  .hero-title {
    font-size: 5.7vw;
  }

  .hero-title.highlight {
    font-size: 9vw;
  }

  .hero-title.highlight {
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 4.6vw;
  }

  .hero-success-rate {
    font-size: 4.5vw;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-image img {
    max-width: 100%;
  }

  .container {
    padding: 0 16px;
  }
}

/* Problem.css */
.problem-section {
  background-color: #ffffff;
  padding: 60px 0;
  max-width: 1000px;
  margin: auto;
}

.section-header {
  margin-bottom: 00px;
}

.section-header h2 {
  font-size: 35px;
  color: var(--heading-text);

  margin: 0 auto 30px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
}

.section-header h2 span {
  background: var(--gradient-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-blue);
  margin: 0 auto;
  border-radius: 2px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;

  margin: 0 auto;
}

.problem-card {
  background: white;
  padding: 0px;
  padding-right: 35px;
  border-radius: 0px;
  box-shadow: none;
  text-align: left;
}



.problem-icon {
  font-size: 40px;
  color: var(--color-accent-blue);
  margin-bottom: 16px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: start;
  justify-content: left;

}

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

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
  font-weight: 700;
  font-family: var(--font-pimary);
}

.problem-card p {
  color: var(--paragraph-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  font-family: var(--font-primary);
}

.problem-card.rightBorder {
  border-right: 1px solid #CACACA;
  /* Adjust color/thickness */
  position: relative;
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .problem-section {
    padding: 48px 0px;
  }

  .section-header h2 {
    font-size: 6.5vw;
  }

  .problem-card h3 {
    font-size: 4.8vw;
  }

  .problem-card p {
    font-size: 4vw;
  }

  .problem-card.rightBorder {
    border: none;
  }
}

/* Cost.css */
.cost-section {
  /* background: var(--color-bg-light-blue); */
  max-width: 1100px;
  padding-bottom: 60px;
  margin: auto;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-top: 0px;
}

.cost-item {
  background: white;
  padding: 17px 20px;
  border-radius: 15px;
  box-shadow: 0 0 13.6px 0 rgb(0 0 0 / .1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cost-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cost-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
}

.cost-icon svg {
  width: 100%;
  height: 100%;
}


.cost-item p {
  color: var(--color-text-secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
}

.mt-50 {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .cost-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cost-item p {
    font-size: 4vw;
  }
}

/* IntroducingDopamine.css */
.introducing-section {
  background: linear-gradient(180deg, #111 0%, #001521 100%), #1E1E1E;
  color: white;
}

.introducing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.introducing-content h2 {
  margin-bottom: 20px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3em;
}

.introducing-content .green-text {
  background: var(--gradient-green);
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.introducing-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3em;
  color: #FFF;
}

.introducing-content .sub-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  background: var(--gradient-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.introducing-content .green-text-3 {
  color: #37a990;
  font-size: 28px;
  font-weight: 600;
}

.introducing-content .green-text-4 {
  color: #3fb572;
  font-weight: 700;
}

.introducing-image {
  width: 100%;
}

.introducing-image video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid white;
}

.introducing-content ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  color: #FFF;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

@media (max-width: 992px) {
  .introducing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .introducing-content .green-text {
    font-size: 28px;
  }

  .introducing-content .white-text {
    font-size: 20px;
  }

  .introducing-content .green-text-3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .introducing-content .green-text {
    font-size: 5vw;
    text-align: center;
  }

  .introducing-content .white-text {
    font-size: 4vw;
    text-align: center;

  }

  .introducing-content .sub-text {
    font-size: 4.7vw;
    text-align: center;

  }

  .introducing-content .green-text-3 {
    font-size: 20px;
    text-align: center;

  }

  .introducing-content ul li {
    font-size: 4vw;
  }
}

/* Solution.css */
.solution-section {
  background-color: var(--color-bg-white);
  padding: 60px 0;
  max-width: 1000px;
  margin: auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin-bottom: 34px;
}

/* vertical line between left & right columns */
.solution-card.with-right-border {
  border-right: 1px solid #e0e0e0;
  padding-right: 40px;
}

/* horizontal lines under first two rows */
.solution-card.with-bottom-border {
  border-bottom: 1px solid #e0e0e0;
  /* border-bottom shorthand [web:26] */
}

/* give space on left column to mirror padding */
.solution-card:nth-child(2n) {
  padding-left: 40px;
}

.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 24px 0px;

  border-radius: 0px;
  box-shadow: none;
  text-align: left;

}



.solution-icon-wrapper {
  font-size: 28px;
  color: white;

  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
  font-weight: 700;
  font-family: var(--font-primary);
}

.solution-content p {
  color: var(--paragraph-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
  font-family: var(--font-primary);
}



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

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-section {
    padding: 48px 0px;
  }

  .solution-card {
    display: block;
    margin-bottom: 0px;
  }

  .solution-icon-wrapper {
    width: 50px;
    margin-bottom: 8px;
  }

  .solution-content h3 {
    font-size: 4.1vw;
  }

  .btn-custom {
    width: 100%;
  }

  .solution-card {
    padding-bottom: 0px;
  }

  .solution-card.with-right-border {
    border-right: 0px solid #e0e0e0;
    padding-right: 0px;
  }

  /* horizontal lines under first two rows */
  .solution-card.with-bottom-border {
    border-bottom: 0px solid #e0e0e0;
    /* border-bottom shorthand [web:26] */
  }

  /* give space on left column to mirror padding */
  .solution-card:nth-child(2n) {
    padding-left: 00px;
  }
}

/* Steps.css */
.steps-section {
  background: linear-gradient(180deg, #111 0%, #001521 100%), #1E1E1E;
  color: white;
  position: relative;
}

.steps-timeline {
  max-width: 1100px;
  margin: auto;
  position: relative;

}

.step-p {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  color: #FFF;
  margin-bottom: 40px !important;

}

/* Center vertical line */

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  /* instead of top: 0; use the circle center as start */
  top: 0px;
  /* 70px = step-number height; adjust if needed */
  width: 3px;
  background: #226DB4;
  transform: translateX(-50%);
  height: var(--timeline-fill, 0%);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}



.step-item {
  position: relative;
  margin-bottom: 80px;
  width: 100%;
  display: flex;
}

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

/* Left aligned items */
.step-item.left {
  justify-content: flex-start;
}

.step-item.left .step-content-wrapper {
  margin-right: auto;
  padding-right: 56px;
  width: 50%;
  text-align: right;
}

.step-item.left .step-number {
  right: -36px;
  left: auto;
}

/* Right aligned items */
.step-item.right {
  justify-content: flex-end;
}

.step-item.right .step-content-wrapper {
  margin-left: auto;
  padding-left: 56px;
  width: 50%;
  text-align: left;
}

.step-item.right .step-number {
  left: -36px;
  right: auto;
}

.step-content-wrapper {
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  width: 70px;
  height: 70px;
  background: #226DB4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(18, 140, 255, 0.4);
  z-index: 2;
  border: 4px solid white;
}

.step-content {
  padding: 18px 20px 18px 22px;
  background-color: #E5F7FF26;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #C4C4C445;
  border-radius: 20px 20px 20px 20px;
  color: #FFF;
  position: relative;
}

.step-flex {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

/* Arrow pointing to center line */
/* .step-item.left .step-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid white;
} */

/* .step-item.right .step-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid white;
} */

.step-icon {
  width: 43px;
  height: 43px;
  /* margin: 0 auto 14px; */

}

.step-item.left .step-icon {
  /* margin: 0 0 20px auto; */
}

.step-item.right .step-icon {
  /* margin: 0 auto 20px 0; */
}

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

.step-content h3 {
  padding-left: 15px;
  font-size: 21px !important;
  line-height: 1.3em;

  margin-bottom: 0px;
  font-family: var(--font-accent);
  font-weight: 500;
  color: #fff;
}

.step-h2 {
  color: #fff !important;
  margin-bottom: 20px !important;
}

.step-content p {
  color: #fff;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
  text-align: left;
}

.border {
  border-bottom: 1px solid rgb(34 109 180 / .25) !important;
  margin-bottom: 14px;

}

/* Mobile responsive */
@media (max-width: 992px) {
  .steps-timeline::before {
    left: 35px;
    height: var(--timeline-fill, 0%);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .step-item.left,
  .step-item.right {
    justify-content: flex-start;
  }

  .step-item.left .step-content-wrapper,
  .step-item.right .step-content-wrapper {
    width: 100%;
    padding-left: 100px;
    padding-right: 0;
    text-align: left;
  }

  .step-item.left .step-number,
  .step-item.right .step-number {
    left: 5px;
    right: auto;
  }

  /* .step-item.left .step-icon,
    .step-item.right .step-icon {
        margin: 0 auto 20px 0;
    } */

  .step-item.left .step-content::after {
    display: none;
  }

  .step-item.right .step-content::after {
    left: -20px;
    border-right: 20px solid white;
    border-left: none;
  }
}

@media (max-width: 767px) {
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .step-content {
    padding: 16px;
  }

  .step-content h3 {
    font-size: 22px;
    padding-left: 0px;
  }

  .step-content p {
    font-size: 15px;
  }

  .step-item.left .step-content-wrapper,
  .step-item.right .step-content-wrapper {
    padding-left: 80px;
  }
}

/* Testimonials.css */
.testimonials-section {
  background-color: #f8fbff;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;

}

.testimonials-section h2 {
  margin-bottom: 20px;

}

.testimonials-section p {
  margin-bottom: 36px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  color: #494A4A;
  font-style: normal;
  font-family: var(--font-primary);
}

.green-text-2 {
  background: linear-gradient(90deg, #21C267 0%, #2470CB 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;

}

.testimonial-images {
  display: flex;
  gap: 20px;
  width: 33%;
  margin-top: 20px;
}

.testimonial-images img {
  width: 100%;
}

.testimonial-card {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;

  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  z-index: 1;
}

/* .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(18, 140, 255, 0.1);
} */

/* Watermark Quote Icon */
.quote-icon {
  position: absolute;
  top: 0px;
  left: 35px;
  font-size: 80px;
  color: rgba(18, 140, 255, 0.05);
  z-index: -1;
  transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.1) rotate(-10deg);
  color: rgba(18, 140, 255, 0.08);
}

.testimonial-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 4px solid white;
  box-shadow: 0 8px 20px rgba(18, 140, 255, 0.2);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.1);
}

.testimonial-quote {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-author h4 {
  font-size: 20px;
  color: var(--color-bg-dark);
  margin-bottom: 0px;
  font-weight: 700;
}

.testimonial-rank {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3em;
  color: #494A4A;
  font-family: var(--font-primary);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonials-section .testimonial-quote {
    margin-top: 30px;
    font-size: 4vw;
  }

  .testimonial-images {
    flex-direction: column;
    width: 100%;
  }

}

/* Mentor.css */
.mentor-section {
  background: #002942;
  color: #ffffff;
  padding: 60px 0 60px;
}

.mentor-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.mentor-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #fff;
  margin-bottom: 25px;
}

.mentor-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Left card */
.mentor-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentor-photo-bg {
  width: 350px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.mentor-photo {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.mentor-name-block {
  background-color: #E5F7FF26;
  margin: -1em 0em 0em 0em;
  padding: 30px 20px 20px 20px;
  border-style: solid;
  width: 100%;
  border-width: 1px 1px 1px 1px;
  border-color: #C4C4C445;
  border-radius: 20px 20px 20px 20px;
}

.mentor-name {
  font-size: 19px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  font-family: var(--font-heading);
}

.mentor-name-box {
  background-color: #226DB4;
  margin: -1.5em auto 0em;
  padding: 6px 6px 6px 6px;
  width: 80%;
  z-index: 5;
  border-radius: 10px 10px 10px 10px;
}

.mentor-qual {
  font-size: 19px;
  font-weight: 400;
  color: #FFF;
}

/* Right text block */
.mentor-text {
  max-width: 520px;
}

.mentor-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.mentor-highlights li {
  position: relative;

  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-primary);
}

/* green tick style */


.mentor-block {
  margin-bottom: 18px;
}

.mentor-block h3 {
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.mentor-block p {
  font-size: 16px;
  font-family: var(--font-primary);
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  color: #fff;
}

/* Bottom gallery */
.mentor-gallery {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.mentor-gallery-img {
  width: 240px;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .mentor-title {
    font-size: 6.5vw;
  }

  .mentor-section {
    padding: 48px 0px;
  }

  .mentor-content {
    gap: 24px;
  }

  .mentor-qual {
    font-size: 4.2vw;
    text-align: center;
  }

  .mentor-gallery-img {
    width: 100%;
    min-width: 180px;
    height: auto;
  }

  .mentor-highlights li {
    font-size: 4vw;
  }

  .mentor-name-block {
    padding: 20px 16px 16px 16px;
  }
}

/* FAQ.css */
.faq-section {
  background-color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;

  transition: all 0.3s ease;
}

.faq-item.active {}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgb(183 209 255 / .19) !important;
}

.faq-section h2 {
  margin-bottom: 20px;

}

.faq-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  color: #494A4A;
  font-style: normal;
  font-family: var(--font-primary);
}

.faq-p {
  margin-bottom: 36px !important;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-bg-dark);
  margin: 0;
}

.faq-icon {
  color: #000;
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 1px;
  width: 24px;
  height: 24px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgb(183 209 255 / .19) !important;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  /* Adjust as needed */
  padding: 18px;
}

.faq-answer p {
  color: var(--color-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  color: #232323;

}

.faq-item.active .faq-icon {
  color: #fff;
  border-color: #fff;
}

.faq-item.active .faq-question {
  background: #1099EE !important;
}

.faq-item.active .faq-question h3 {
  color: #fff;

}

@media (max-width:767px) {
  .faq-section p {
    font-size: 4vw;
  }

  .faq-answer p {

    font-size: 4vw;
    line-height: 1.4;

  }
}

/* Benefits.css */
.benefits-section {
  background: white;
}

.benefits-list {
  max-width: 1200px;
  margin: 0px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  display: grid;
  gap: 20px;

}

.benefit-item {
  display: flex;

  align-items: center;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 0 13.6px 0 rgb(0 0 0 / .1);
  background: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: var(--gradient-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
  font-size: 18px;
  color: #252525;
  font-weight: 500;
}

@media (max-width: 768px) {
  .benefit-item p {
    font-size: 4vw;
  }

  .benefits-list {
    grid-template-columns: auto;
  }

  .benefit-item {
    gap: 15px;
  }
}

/* CallToAction.css */
.hero-wrapper {
  background: #ffffff;
  padding: 0px 0 60px;
  display: flex;
  justify-content: center;
}

.pattern {
  position: absolute;
  right: 0;
  bottom: -55px;
}

.hero-card {
  max-width: 960px;
  width: 100%;
  margin: 0 16px;
  padding: 50px 45px;
  border-radius: 32px;
  background: linear-gradient(180deg, #08515C 0%, #002C62 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* decorative lines similar to screenshot */


.hero-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
  color: #FFF;
  font-family: var(--font-primary);
}

.hero-heading span {
  background: var(--gradient-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {

  margin: 16px 0 22px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  color: #FFF;
  font-family: var(--font-secondary);
}

.hero-cta-2 {
  display: inline-flex;
  width: 364px;
  align-items: center;
  gap: 8px;
  background-color: #FFF;
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.3em;
  fill: #000;
  color: #000;
  border-radius: 999px 999px 999px 999px;
  padding: 14px 10px 14px 10px;
  margin-bottom: 22px;
}

.hero-cta-text {
  white-space: nowrap;
}

.hero-cta-arrow {
  font-size: 18px;
  margin-left: 2px;
}

.hero-note {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  color: #FFF;
  font-family: var(--font-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-card {
    padding: 40px 22px 46px;
    border-radius: 24px;
  }

  .hero-heading {
    font-size: 6.5vw;
  }

  .hero-subtext,
  .hero-note {
    font-size: 4vw;
  }

  .hero-cta-2 {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .hero-note {
    z-index: 5;
    position: relative;
  }

  .pattern {
    display: none;
  }
}

/* Footer.css */
.footer-wrapper {
  background: #EFF7FC;
  padding: 60px 0;
}

.footer-card {
  max-width: 1140px;
  margin: 0 auto;
  /* padding: 32px 40px; */
  border-radius: 28px;
  background: #ffffff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.footer-left {
  flex: 1 1 0;
  padding: 32px 40px;
}

.footer-logo-block {
  margin-bottom: 33px;
}

.footer-logo {

  width: auto;
}

.footer-columns {
  display: flex;
  gap: 64px;
  margin-bottom: 22px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0F1F57;
  margin-bottom: 23px;
  font-family: var(--);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
  color: #131720;
}

.footer-copy {
  font-size: 14px;
  color: #1E1E1EB3;
  margin: 6px 0 10px;
}

.footer-links-row {
  font-size: 12px;
  color: #687497;
}

.footer-links-row a {
  color: #687497;
  text-decoration: underline;
}

.footer-links-row a:hover {
  text-decoration: underline;
}

.footer-sep {
  margin: 0 6px;
}

/* Right image */
.footer-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.footer-hero-img {
  width: 400px;
  max-width: 100%;
  border-radius: 0 22px 22px 0;
  object-fit: cover;
}



/* Courses Section Styles */
.courses-section {
  background: linear-gradient(180deg, #111 0%, #001521 100%), #1E1E1E
}

.courses-section h2 {
  color: #ffffff;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  color: #FFF;
  margin-bottom: 40px !important;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Force 3 columns */
  gap: 30px;
  margin-top: 50px;
}

.course-item-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-item-card:hover {
  transform: translateY(-10px);
}

.course-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.course-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.course-item-card:hover .course-bg-img {
  scale: 1.1;
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

/* Hover Dropdown Menu Logic */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
  width: 80%;
}

.dropdown-wrapper .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hover-dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #4caf50;
  z-index: 100;
}

.dropdown-wrapper:hover .hover-dropdown-menu {
  visibility: visible;
  opacity: 1;
  bottom: 110%;
}

.hover-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hover-dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: background 0.2s;
}

.hover-dropdown-menu li a:hover {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

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

@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-self: center;
    width: 100%;
  }

  .footer-hero-img {
    border-radius: 18px;
  }
}

@media (max-width: 767px) {
  .footer-card {
    padding: 18px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-wrapper {
    padding: 48px 16px;
  }

  .footer-left {
    padding: 0px;
    width: 100%;
  }

  .footer-logo {
    width: 160px;
    margin: auto;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-links-row {
    text-align: center;
  }
}