:root {
  /* Fonts */
  --default-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --heading-font: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --nav-font: var(--default-font);

  /* Brand Core Colors */
  --brand-primary: #1d5171;
  /* Vibrant Pink */
  --brand-dark: #000000;
  /* Deep Plum/Burgundy */
  --brand-black: #0b0014;
  /* Almost black background */
  --brand-light: #f8f8ff;
  /* Soft off-white for contrast */
  --brand-gradient: #000000;

  /* Layout Colors */
  --background-color: #000000;
  --surface-color: #000000;
  /* Slightly lighter containers */
  --card-color: #000000;
  /* Card/section background */
  --border-color: rgba(255, 255, 255, 0.08);

  /* Text Colors */
  --default-color: var(--brand-light);
  --heading-color: #ffffff;
  --muted-color: #b7a9c1;
  --contrast-color: #ffffff;

  /* Accent & Action */
  --accent-color: var(--brand-primary);
  --accent-hover: #000000;
  --accent-glow: #000000;
}

/* Navigation */
:root {
  --nav-color: var(--brand-light);
  --nav-hover-color: var(--brand-primary);
  --nav-background-color: transparent;
  --nav-mobile-background-color: #0000;
  --nav-dropdown-background-color: #0000;
  --nav-dropdown-color: var(--brand-light);
  --nav-dropdown-hover-color: var(--brand-primary);
}

/* Smooth Scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 2px;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

#disclaimer {
  transition: top 0.3s ease, opacity 0.3s ease;
  z-index: 1050;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #disclaimer {
    font-size: 10px;
    padding: 6px 10px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: black;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: black;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 20px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 2px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  background-color: var(--brand-primary);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%);
  pointer-events: none;
}

.hero .hero-content {
  padding: 20px 0;
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-actions .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 48px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}

.hero .hero-content .hero-stats .stat-item {
  text-align: center;
}

.hero .hero-content .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-visual .floating-elements .floating-card {
  position: absolute;
  background: var(--accent-color);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card i {
  font-size: 1.5rem;
  color: var(--heading-color);
}

.hero .hero-visual .floating-elements .floating-card span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
}

.hero .hero-visual .floating-elements .floating-card.card-1 {
  top: 10px;
  left: 40%;
  animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-2 {
  top: 50%;
  right: 15px;
  animation-delay: -1s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
  bottom: 25%;
  left: 15px;
  animation-delay: -2s;
}

@media (max-width: 768px) {
  .hero .hero-visual .floating-elements .floating-card {
    padding: 12px 16px;
  }

  .hero .hero-visual .floating-elements .floating-card span {
    font-size: 0.75rem;
  }

  .hero .hero-visual .floating-elements .floating-card.card-1 {
    left: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-2 {
    right: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-3 {
    left: 10px;
  }
}

@keyframes floating {

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.mentor-about-section {
  background: linear-gradient(135deg, #1b262a 0%, #101416 100%);
  padding: 120px 0;
  min-height: 80vh;
  color: #e0e0e0;
}

.mentor-header .meet-team-btn {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.mentor-header .meet-team-btn:hover {
  background-color: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.mentor-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

@media (max-width: 768px) {

  .mentor-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {

  .mentor-header h1 {
    font-size: 2.5rem;
  }
}


.mentor-card {
  background: #232d31;
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  width: 1500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  margin: 0 auto;
}

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

.mentor-info {
  padding: 3rem 2.5rem;
}

.mentor-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.mentor-title {
  color: #749bb3;
  background-color: #36444b;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
}

.mentor-bio p {
  font-size: 1rem;
  line-height: 1.75;
  color: #ccd0e0;
  margin-bottom: 1.2rem;
}

.mentor-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  overflow: hidden;
}

.mentor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.mentor-card:hover .mentor-image {
  transform: scale(1.05);
}


@media (max-width: 480px) {

  .mentor-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 430px;
    overflow: hidden;

  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.hero-trading {
  background: linear-gradient(135deg, #d9e4ea 0%, #dde4ea 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-trading1 {
  background: white;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-trading .container {
  position: relative;
  z-index: 2;
}

.hero-trading1 .container {
  position: relative;
  z-index: 2;
}

.hero-trading .mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
}

.hero-trading1 .mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dde4ea;
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
}

.hero-trading h1 {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #0e4667;
  margin-bottom: 20px;
}

.hero-trading1 h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #0e4667;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .hero-trading h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-trading h1 {
    font-size: 2.8rem;
  }
}

.hero-trading h1 .underline {
  position: relative;
  display: inline-block;
}

.hero-trading h1 .underline::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  opacity: 0.3;
  border-radius: 8px;
  z-index: -1;
}

.hero-trading .subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
}

.hero-trading1 .subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
}


/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  min-width: 160px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: #0e4667;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 10px;
  font-weight: 500;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  border: none;
}

.btn-workshop {
  background: #356b8a;
  color: white;
  padding: 16px 36px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-workshop:hover {
  transform: translateY(-4px);
  color: white;
}

.btn-strategy {
  background: #1e293b;
  color: white;
  padding: 16px 36px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.4);
  transition: all 0.3s ease;
}

.btn-strategy:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 41, 59, 0.6);
  color: white;
}

.btn-workshop i,
.btn-strategy i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-workshop:hover i,
.btn-strategy:hover i {
  transform: translateX(6px);
}

/* Arrow decoration (exactly like your screenshot) */
.arrow-decoration {
  position: absolute;
  top: 15%;
  right: 10%;
  font-size: 6rem;
  color: #3b82f6;
  opacity: 0.15;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
:root {
  --primary: #415023;
  --gray-light: #f8f9fa;
  --text: #415023;
  --bg: #ffffff;
}

.learning-path {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f3f3f3;
}

.learning-path::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #e0e0e0, #e0e0e0);
  transform: translateX(-50%);
  z-index: 1;
}

.path-progress {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 4px;
  background: var(--primary);
  transform: translateX(-50%);
  z-index: 2;
  transition: height 0.3s ease;
  border-radius: 2px;
}

.step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0;
  position: relative;
  z-index: 3;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content,
.step-content1 {
  width: 45%;
  padding: 30px;
  margin-right: 100px;
  background: #f3f3f1;
  color: var(--text);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-content1 {
  margin-right: 0;
  margin-left: 100px;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border: 6px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #999;
  z-index: 4;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step.active .step-number {
  border-color: var(--primary);
  color: var(--primary);
  background: white;
  box-shadow: 0 5px 20px rgba(65, 80, 35, 0.2);
}

.step-image {
  width: 45%;
  padding: 0 30px;
}

.step-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.step p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.step ul {
  padding-left: 20px;
  color: #444;
}

.step ul li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.step ul li::marker {
  color: var(--primary);
}

/* Mobile Optimized Styles */
@media (max-width: 992px) {
  .learning-path {
    padding: 15px;
    background-color: #f3f3f3;
  }

  .learning-path::before {
    top: 100%;
    left: 30px;
    width: 3px;
  }

  .path-progress {
    left: 30px;
    width: 3px;
  }

  .step {
    flex-direction: column !important;
    margin: 60px 0;
    padding-left: 60px;
    align-items: flex-start;
  }

  .step:first-child {
    margin-top: 40px;
  }

  .step:last-child {
    margin-bottom: 40px;
  }

  .step-content,
  .step-content1 {
    width: 100%;
    padding: 25px 20px;
    margin: 0;
    margin-top: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }

  .step-number {
    left: 30px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border-width: 4px;
  }

  .step-image {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    order: -1;
  }

  .step-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .step p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .step ul {
    padding-left: 18px;
  }

  .step ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .learning-path h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 30px !important;
    padding: 0 10px;
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {
  .learning-path {
    padding: 12px;
  }

  .step {
    padding-left: 50px;
    margin: 50px 0;
  }

  .step-number {
    left: 25px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .learning-path::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;

  }

  .path-progress {
    position: absolute;
    bottom: 80%;
    left: 9%;
    width: 4px;

  }


  .step-content,
  .step-content1 {
    padding: 20px 16px;
    margin-top: 15px;
  }

  .step h3 {
    font-size: 1.3rem;
  }

  .step p {
    font-size: 0.95rem;
  }

  .step ul li {
    font-size: 0.9rem;
  }

  .learning-path h2 {
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
  }

  .step-image img {
    border-radius: 10px;
  }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 992px) {
  .learning-path::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 4px;

  }

  .path-progress {
    position: absolute;
    bottom: 80%;
    left: 9%;
    width: 4px;

  }

  .step {
    padding-left: 80px;
  }

  .step-number {
    left: 40px;
  }
}

/* Desktop hover effects */
@media (min-width: 993px) {
  .step:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(65, 80, 35, 0.3);
  }

  .step-content:hover,
  .step-content1:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
}

/* Ensure smooth transitions */
.step-content,
.step-content1,
.step-image img,
.step-number {
  transition: all 0.3s ease;
}

.call-to-action {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  transform: rotate(-15deg);
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .image-wrapper {
  position: relative;
}

.call-to-action .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}

.call-to-action .image-wrapper .main-image:hover {
  transform: translateY(-5px);
}

.call-to-action .image-wrapper .floating-card {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 280px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 3;
}

.call-to-action .image-wrapper .floating-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.call-to-action .image-wrapper .floating-card h4 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.call-to-action .image-wrapper .floating-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .call-to-action .image-wrapper .floating-card {
    right: auto;
    left: 20px;
    transform: translateY(-30%);
    max-width: 260px;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .call-to-action .image-wrapper .floating-card {
    left: 10px;
    max-width: 240px;
    padding: 20px;
  }

  .call-to-action .image-wrapper .floating-card h4 {
    font-size: 1rem;
  }

  .call-to-action .image-wrapper .floating-card p {
    font-size: 0.85rem;
  }
}

.call-to-action .content-area {
  padding-left: 0;
}

.call-to-action .content-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .call-to-action .content-area h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .call-to-action .content-area h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .content-area>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.call-to-action .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.call-to-action .feature-list li:last-child {
  margin-bottom: 0;
}

.call-to-action .feature-list li i {
  color: var(--default-color);
  font-size: 1.25rem;
  margin-right: 12px;
  margin-top: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-to-action .feature-list li span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--default-color);
}

.call-to-action .cta-wrapper {
  margin-top: 35px;
}

.call-to-action .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.call-to-action .btn-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 991px) {
  .call-to-action .content-area {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 40px 0;
  }

  .call-to-action .image-wrapper .floating-card {
    position: relative;
    right: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

.contact .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, black, transparent 50%);
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}


/* Section Title */
#features-2 .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#features-2 .section-title h2 {
  font-weight: 600;
  font-size: 26px;
}

#features-2 .section-title p {
  color: black;
  font-weight: 600;
  font-size: 20px;
}

/* Step Cards */
.step-card {
  background: var(--brand-primary);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Step Badge */
.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-dark);
  /* yellow */
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Images */
.step-img {
  max-width: 140px;
  margin: 20px auto;
  display: block;
}

/* Headings & Text */
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: white;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.hero-section h1 span {
  background: linear-gradient(90deg, #3ad47a, #40cfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section p {
  font-size: 1.2rem;
  color: white;
  margin-top: 10px;
  text-align: center;
}

.idea-box {
  background: var(--accent-color);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  overflow: visible;
}

.idea-box img {
  width: 200px;
  height: auto;
}

.idea-box h2 {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}

.idea-box p {
  margin: 10px 0;
  font-size: 2rem;
  color: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1aa44c;
  color: #fff;
  border-radius: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}

@media (max-width: 768px) {
  .idea-box {
    flex-direction: column;
    text-align: center;
  }

  .idea-box>div:first-child {
    order: 2;
  }

  .idea-box>div:last-child {
    order: 1;
  }

  .idea-box img {
    width: 90%;
    max-width: 300px;
  }

  .idea-box h2 {
    font-size: 2rem;
  }

  .idea-box p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .idea-box img {
    width: 100%;
    max-width: 250px;
  }

  .idea-box h2 {
    font-size: 1.6rem;
  }

  .idea-box p {
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 45px;


  }
}


/*--------------------------------------------------------------
# Learn Section
--------------------------------------------------------------*/

.learn-section {
  background: linear-gradient(135deg, #131b1e 0%, #12191f 100%);
  padding: 120px 0;
  color: #e0e0e0;
}

.learn-header {
  text-align: center;
  margin-bottom: 60px;
}

.meet-team-btn {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.15);
  color: #8aaabb;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}



.learn-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .learn-header h1 {
    font-size: 2.5rem;
  }
}

.learn-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-8px);
}

.learn-card-icon {
  font-size: 2.2rem;
  color: #8aaabb;
  margin-bottom: 1.5rem;
}

.learn-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
}

.learn-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccd0e0;
}

.trader-banner {
  position: relative;
  width: 1600px;
  margin: 0 auto;
  min-height: 50vh;
  margin-top: 100px;
  background: linear-gradient(135deg, #131b1e 0%, #12191f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  border-radius: 20px;
  color: #e0e0e0;
  box-sizing: border-box;
}

.trader-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 900px;
  background: url('../img/favicon.png') center/contain no-repeat;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.banner-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: #8aaabb;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.banner-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin: 0 0 30px 0;
}

.banner-title .highlight {
  position: relative;
  display: inline-block;
}

.banner-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 5px;
  background: #60a5fa;
  border-radius: 4px;
}

.banner-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.btn-main {
  background: #1e5373;
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-main:hover {
  color: white;
  transform: translateY(-4px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-4px);
}

.footer-note {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-note a {
  color: #94a3b8;
  text-decoration: underline;
  margin: 0 16px;
}

@media (max-width: 992px) {
  .banner-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2.9rem;
  }

  .trader-banner::before {
    width: 600px;
    height: 600px;
  }

  .banner-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-main,
  .btn-outline {
    width: 90%;
    max-width: 380px;
    justify-content: center;
  }
}


.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #dde4ea;
  ;
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
}


@media (max-width: 1024px) {

  /* Trader banner – remove fixed 1600px width */
  .trader-banner {
    width: 100%;
    max-width: none;
    margin: 80px auto 0;
    padding: 60px 24px;
    min-height: 75vh;
    border-radius: 16px;
    /* slightly smaller radius on tablets */
  }

  /* Globe stays visible but scales with viewport */
  .trader-banner::before {
    width: 130vw;
    height: 130vw;
    max-width: 900px;
    max-height: 900px;
  }

  .banner-title {
    font-size: 3.2rem !important;
  }
}

@media (max-width: 768px) {
  .trader-banner {
    margin-top: 60px;
    padding: 50px 20px;
    min-height: 70vh;
  }

  .banner-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    margin: 0 0 30px 0;
  }

  .banner-title .highlight {
    position: relative;
    display: inline-block;
  }

  .banner-tag {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .banner-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn-main,
  .btn-outline {
    width: 100%;
    max-width: 380px;
    padding: 18px 32px;
    font-size: 1.1rem;
    min-height: 56px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .learn-section {
    padding: 80px 0;
  }

  .learn-header h1 {
    font-size: 2.4rem !important;
  }

  .trader-banner {
    padding: 40px 16px;
    min-height: 65vh;
  }

  .trader-banner::before {
    width: 160vw;
    height: 160vw;
  }

  .banner-content {
    margin-left: 10px;
  }

  .banner-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    margin: 0 0 30px 0;
  }

  .banner-title .highlight {
    position: relative;
    display: inline-block;
  }

  .learn-card-icon {
    font-size: 2.2rem;
    text-align: center;
    color: #8aaabb;
    margin-bottom: 1.5rem;
  }

  .learn-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 0.8rem;
  }



  .footer-note {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    font-size: 0.8rem;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .banner-title {
    font-size: 2.2rem !important;
  }
}


.reason {
  background-color: white;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

.header1 {
  text-align: center;
  margin-bottom: 60px;
  background: transparent;
}

.header1 h1 {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin: 0;
  line-height: 1.1;
}

.cards-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  justify-content: center;
}

.edge-card {
  background: #f0f0f0;
  border-radius: 24px;
  padding: 40px 32px;
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.edge-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b3b4b;
  margin-bottom: 20px;
}

.edge-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edge-card li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #425a71;
  padding-left: 28px;
  position: relative;
  margin-bottom: 18px;
}

.edge-card li:before {
  content: "✓";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}


.edge-card1 {
  background: #dee5eb;
  border-radius: 24px;
  padding: 40px 32px;
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.edge-card1:hover {
  transform: translateY(-10px);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.edge-card1 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b3b4b;
  margin-bottom: 20px;
}

.edge-card1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edge-card1 li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #425a71;
  padding-left: 28px;
  position: relative;
  margin-bottom: 18px;
}

.edge-card1 li:before {
  content: "✓";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #336888;
  color: white;
}

.btn-primary:hover {
  background: #336888;
  transform: translateY(-3px);
}

.btn-dark {
  background: #0f172a;
  color: white;
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.8rem;
  }

  .cards-wrapper {
    gap: 30px;
  }

  .edge-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .card-icon {
    margin-left: 150px;
  }

  .edge-card h3 {
    text-align: center;
  }

  .edge-card1 h3 {
    text-align: center;
  }
}
