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

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding-top: 57px;
  scroll-behavior: smooth;
}

/* Ticker Styles */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: #05305c;
  border-bottom: 1px solid #1c2333;
  padding: 8px 0;
  font-family: "Inter", Arial, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.ticker-track {
  display: inline-flex;
  gap: 50px;
  padding-left: 0;
  animation: ticker-scroll 35s linear infinite;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* seamless scroll */
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: auto;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
}

.ticker-item img {
  width: 20px;
  height: 20px;
  margin: 0;
}

.ticker-item .coin-name {
  font-weight: 600;
  font-size: 14px;
}

.ticker-item .coin-price {
  font-weight: 500;
  font-size: 13px;
}

.price-up {
  color: #16c784;
}
.price-down {
  color: #ea3943;
}

/* Pause scroll on hover */
.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  padding: 0px 50px;
  height: 75px;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9998;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo-container img {
  width: 200px;
  height: auto;
  padding-top: 9px;
}

/* Navigation Styles */
.navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 20px;
}

.navigation ul li {
  position: relative;
}

.navigation ul li a {
  text-decoration: none;
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Underline effect on hover */
.navigation ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef9227 0%, #fabc2e 100%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.navigation ul li a:hover {
  color: #ef9227;
}

.navigation ul li a:hover::after {
  width: 100%;
}

/* Active link styling */
.navigation ul li a.active {
  color: #ef9227;
  font-weight: 700;
}

.navigation ul li a.active::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef9227 0%, #fabc2e 100%);
}

/* Active state with background pill */
.navigation ul li.active a {
  background-color: rgba(239, 146, 39, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  color: #ef9227;
  font-weight: 700;
  box-shadow: inset 0 0 10px rgba(239, 146, 39, 0.15);
}

.navigation ul li.active a::after {
  display: none;
}

.nav-container {
  display: flex;
  align-items: center;
}

.auth-links {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

/* Hide mobile auth links on desktop */
.auth-links-mobile {
  display: none;
}

/* Show desktop auth links */
.auth-links-desktop {
  display: flex;
}

.auth-links .login {
  text-decoration: none;
  color: #111111;
  font-size: 15px;
  background-color: #ef9227;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.auth-links .login:hover {
  background-color: #fabc2e;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(239, 146, 39, 0.4);
}

.auth-links .register {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #000000;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.auth-links .register:hover {
  background-color: #1a1a1a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 27px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #05305c;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Main Content Styles */
.video-section {
  position: relative;
  height: 500px; /* Adjust as needed */
  overflow: hidden;
}

.video-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-section .section-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: 150px;
}

.message-overlay {
  position: absolute;
  top: 10%;
  font-weight: bold;
  z-index: 1;
  padding: 10px 60px 0 60px;
}

.message-title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.9px;
}

.message-title-2 {
  color: #fabc2e;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.message-content p {
  color: #fff;
  font-size: 23px;
  margin-top: 15px;
  font-family: Arial, sans-serif;
  margin-bottom: 45px;
  letter-spacing: 0.9px;
}

.begin-now-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 20px;
  color: #111111;
  background-color: #ef9227;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  width: 170px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.begin-now-btn:hover {
  background: linear-gradient(135deg, #fabc2e 0%, #ef9227 100%);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(239, 146, 39, 0.5);
}

.message-slide {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.message-slide.active {
  pointer-events: auto;
}

/* Slide in from left animation */
.message-slide.slide-in-left {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide out to left animation */
.message-slide.slide-out-left {
  animation: slideOutToLeft 0.8s ease-in forwards;
}

@keyframes slideOutToLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

/* Slide in from right animation */
.message-slide.slide-in-right {
  animation: slideInFromRight 0.8s ease-out forwards;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide out to right animation */
.message-slide.slide-out-right {
  animation: slideOutToRight 0.8s ease-in forwards;
}

@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

.message-overlay-2 {
  position: absolute;
  top: 170px;
  left: 15%;
  font-weight: bold;
  z-index: 1;
}

.message-content-2 {
  display: flex;
  flex-direction: column;
}

.message-content-2 h4 {
  color: #ffffff;
  font-size: 18px;
  margin-top: 15px;
  letter-spacing: 0.9px;
}

.mc2-features {
  color: #ffffff;
  font-size: 18px;
  margin-top: 15px;
  letter-spacing: 0.5px;
  list-style-type: disc;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 0;
}

.mc2-features li {
  list-style-position: inside;
}

li::marker {
  color: #fabc2e;
}

.message-content-2 h2 {
  color: #fabc2e;
  font-size: 45px;
  font-weight: 500;
}

.begin-now-btn-2 {
  display: inline-block;
  padding: 12px 30px;
  font-size: 20px;
  color: #111111;
  background-color: #ef9227;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  width: 170px;
  margin-top: 40px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.begin-now-btn-2:hover {
  background: linear-gradient(135deg, #fabc2e 0%, #ef9227 100%);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(239, 146, 39, 0.5);
}

/* Why Choose Us Section */
.why-choose-us-section {
  display: flex;
  padding: 50px 60px;
  justify-content: space-between;
  gap: 50px;
}

.why-choose-us {
  width: 45%;
}

.why-choose-us h6 {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-choose-us h2 {
  color: #05305c;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-us p {
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.icon-section {
  display: flex;
  gap: 10px;
  width: 52%;
  background: linear-gradient(135deg, #f0f8ff 0%, #f0f8ff 100%);
  padding: 45px 75px 45px 15px;
  margin: -50px -60px -50px 0;
}

.first-icon-item,
.second-icon-item {
  border-right: 1px solid #ef9227;
}

.icon-item {
  flex: 1;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

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

.icon-content h4 {
  color: #05305c;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-content p {
  color: #555555;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

/* Course Newsletter Section */
.course-newsletter-section {
  display: flex;
  justify-content: space-between;
  padding: 50px 60px;
}

.course-info {
  background-color: #05305c;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 50px 60px 50px 60px;
  margin: -50px 0 -50px -60px;
}

.course-info h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1.6px;
  text-align: center;
}

.course-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fabe2c;
  font-weight: 500;
}

.course-info p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}

.course-info h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 20px;
}

.course-info a {
  display: inline-block;
  padding: 14px 22px;
  font-size: 16px;
  color: #05305c;
  background-color: #ef9227;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.course-info a:hover {
  background-color: #fabc2e;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(239, 146, 39, 0.6);
  transform: translateY(-3px);
}

.newsletter-subscription {
  background-color: #ef9227;
  padding: 50px 75px 45px 15px;
  margin: -50px -60px -50px 0;
  width: 92%;
  text-align: center;
}

.newsletter-subscription h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1.6px;
  color: #000000;
}

.newsletter-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #05305c;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.newsletter-subscription p {
  font-size: 18px;
  color: #111111;
  margin-bottom: 30px;
  padding-left: 15px;
}

.subscription-form h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 500;
}

.subscription-form h2 {
  font-size: 23px;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 600;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 15px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  width: 100%;
}

.subscribe-form button {
  padding: 12px 25px;
  font-size: 16px;
  color: #ffffff;
  background-color: #05305c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.subscribe-form button:hover {
  background-color: #ffffff;
  color: #05305c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  font-weight: 600;
  border: 2px solid #05305c;
}

/* Services Section */
.services-section {
  padding: 50px 60px;
  background-color: #f9f9fa;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h4 {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1.6px;
}

.services-header h2 {
  color: #05305c;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.services-list {
  display: grid;
  grid-template-rows: repeat(2, 1fr); /* 2 rows */
  grid-template-columns: repeat(3, auto); /* 3 columns */
  text-align: center;
}

.service-item {
  background-color: #ffffff;
  padding: 30px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: linear-gradient(135deg, #05305c 0%, #ef9227 100%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item:hover .service-content h4,
.service-item:hover .service-content p {
  color: #ffffff;
}

.icon-wrap {
  display: inline-block;
  margin: 0 0 25px 0;
}

.service-content h4 {
  color: #05305c;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-content h4 strong {
  display: block;
}

.service-content p {
  color: #555555;
  font-size: 17px;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 50px 60px;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works-header h4 {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1.6px;
}

.how-it-works-header h2 {
  color: #05305c;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
  align-items: stretch;
  gap: 10px;
  padding: 30px 0px;
}

/* Timeline connector line */
.how-it-works-steps::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0%;
  right: 0%;
  height: 3px;
  background: linear-gradient(90deg, #05305c 0%, #ef9227 50%, #05305c 100%);
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 35px 25px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 4px solid #ef9227;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(5, 48, 92, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
}

.step:hover {
  box-shadow: 0 12px 30px rgba(5, 48, 92, 0.2);
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  border-left-color: #fabc2e;
}

.steps-icon {
  background-color: #f9f9fa;
  margin-bottom: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 6px 16px rgba(5, 48, 92, 0.15);
  flex-shrink: 0;
}

/* Step counter badge */
.steps-icon::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ef9227 0%, #fabc2e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(239, 146, 39, 0.4);
  border: 3px solid #fff;
}

.step:hover .steps-icon {
  background: linear-gradient(135deg, #fabc2e 0%, #ef9227 100%);
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(5, 48, 92, 0.3);
  transform: scale(1.08) rotate(-2deg);
}

.step:hover .steps-icon::before {
  box-shadow: 0 6px 16px rgba(239, 146, 39, 0.6);
  transform: scale(1.15);
}

.steps-icon img {
  max-width: 50%;
  height: auto;
}

.step h4 {
  font-size: 20px;
  color: #05305c;
  font-weight: bold;
  position: relative;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.step h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef9227 0%, #fabc2e 100%);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.step:hover h4::after {
  width: 60%;
}

.step p {
  font-size: 17px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  padding: 0 5px;
  flex-grow: 1;
  display: block;
  text-align: center;
}

.step p a {
  color: #ef9227;
  text-decoration: none;
  font-weight: 600;
}

/* Investment Plans Section */
.investment-plans-section {
  padding: 50px 0;
  padding-bottom: 0;
  background-color: #f9f9fa;
}

.investment-plans-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 60px;
}

.investment-plans-header h4 {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1.6px;
}

.investment-plans-header h2 {
  color: #05305c;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.investment-plans-header p {
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.investment-plans-list {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  text-align: center;
  gap: 30px;
  background-color: #f0f8ff;
  margin: 0;
  padding: 40px 60px 50px 60px;
}

.investment-plan {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(5, 48, 92, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.investment-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #05305c 0%, #ef9227 100%);
  z-index: 1;
}

.investment-plan:hover {
  box-shadow: 0 12px 35px rgba(5, 48, 92, 0.2);
  transform: translateY(-8px);
}

.investment-plan-header {
  margin: 0;
  padding: 30px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #05305c 50%, #ef9227 100%);
}

.investment-plan-header h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.investment-plan-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.investment-plan-body {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.investment-plan-body h4 {
  color: #05305c;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.investment-plan ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  padding: 0;
  flex-grow: 1;
}

.investment-plan ul li {
  color: #555555;
  font-size: 17px;
  line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.investment-plan ul li:last-child {
  border-bottom: none;
}

.investment-plan-body a {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ef9227 0%, #05305c 100%);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: center;
}

.investment-plan-body a:hover {
  box-shadow: 0 6px 20px rgba(239, 146, 39, 0.4);
  transform: scale(1.05);
}

/* ROI Calculator Section */
.roi-calculator-section {
  padding: 50px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 50%, #eff3f9 100%);
}

.roi-header {
  text-align: center;
  margin-bottom: 20px;
}

.roi-header h4 {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1.6px;
}

.roi-header h2 {
  color: #05305c;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.roi-header p {
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 10px;
}

.roi-content {
  display: flex;
  gap: 30px;
  /* margin-bottom: 40px; */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px;
}

/* Input Group Styling */
.roi-input-group {
  /* max-width: 480px; */
  /* width: 100%; */
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 1 380px;
}

.input-description {
  color: #032448;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.roi-input-group label {
  display: block;
  color: #05305c;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: -10px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 18px;
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  pointer-events: none;
  z-index: 1;
}

.investment-input {
  width: 100%;
  padding: 16px 16px 16px 45px;
  border: 2px solid #e0e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #05305c;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.investment-input:focus {
  outline: none;
  border-color: #ef9227;
  box-shadow: 0 0 0 3px rgba(239, 146, 39, 0.1);
}

.investment-input::placeholder {
  color: #aaaaaa;
}

.input-info {
  margin-top: -5px;
  font-size: 13px;
  color: #888888;
  text-align: center;
}

/* Validation Message */
.validation-message {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
  opacity: 0;
  animation: slideDownMessage 0.4s ease-in-out forwards;
  letter-spacing: 0.3px;
}

.validation-message.show {
  display: block;
  opacity: 1;
}

.validation-message.error {
  background-color: #ffe6e6;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
}

.validation-message.success {
  background-color: #e6f7e6;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.validation-message.warning {
  background-color: #fff3e0;
  color: #e65100;
  border-left: 4px solid #e65100;
}

@keyframes slideDownMessage {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ROI Results Grid */
.roi-results {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 0;
  justify-content: center;
  align-items: stretch;
  flex: 1;
  min-width: 300px;
  max-width: 900px;
  flex-direction: column;
}

/* ROI Card Styling */
.roi-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 8px 32px rgba(5, 48, 92, 0.12);
  border: 2px solid rgba(239, 146, 39, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: none;
  opacity: 0;
  animation: slideInCard 0.5s ease-in-out forwards;
  overflow: hidden;
  flex: 0 1 calc(50% - 12.5px);
  min-width: 280px;
  max-width: 480px;
}

.roi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #05305c 0%, #ef9227 100%);
  z-index: 1;
}

.roi-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(239, 146, 39, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.roi-card.active {
  display: block;
  opacity: 1;
}

@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Plan Badge */
.plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef9227 0%, #fabc2e 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(239, 146, 39, 0.25);
  position: relative;
  z-index: 2;
}

.plan-name {
  color: #05305c;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.plan-range {
  color: #888888;
  font-size: 13px;
  margin-bottom: 28px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Result Group */
.result-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 48, 92, 0.08);
  position: relative;
  z-index: 2;
}

.result-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-label {
  color: #555555;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.result-value {
  font-size: 19px;
  font-weight: 800;
  color: #ef9227;
  text-align: right;
  letter-spacing: -0.5px;
}

.result-value.total {
  color: #05305c;
  font-size: 22px;
  font-weight: 800;
}

/* Calculate Button */
.calculate-btn {
  width: 100%;
  margin-top: 20px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ef9227 0%, #fabc2e 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(239, 146, 39, 0.3);
  position: relative;
  overflow: hidden;
}

.calculate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
}

.calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239, 146, 39, 0.4);
}

.calculate-btn:hover::before {
  left: 100%;
}

.calculate-btn:active {
  transform: translateY(-1px);
}

.calculate-btn:disabled {
  background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
  cursor: not-allowed;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.7;
}

.calculate-btn:disabled:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Loading State */
.calculate-btn.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.calculate-btn.loading::before {
  display: none;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 50px 60px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-header h4 {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1.6px;
}

.testimonials-header h2 {
  color: #05305c;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.testimonials-list {
  max-width: 800px;
}

.testimonials-list h3 {
  margin-bottom: 30px;
  color: #333333;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.testimonials-container {
  position: relative;
  min-height: 300px;
}

.testimonials-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.testimonial-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.testimonial-item.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonial-item blockquote {
  background-color: #ffffff;
  border-left: 5px solid #ef9227;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(5, 48, 92, 0.1);
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  font-style: italic;
  margin: 0;
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 50px;
}

.testimonial-item blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 60px;
  color: #ef9227;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-item:hover blockquote {
  box-shadow: 0 8px 30px rgba(5, 48, 92, 0.15);
  transform: translateY(-4px);
}

/* Client name styling */
.testimonial-item blockquote br:last-of-type {
  display: block;
  content: "";
  height: 12px;
}

.testimonial-author {
  text-align: right;
  font-style: normal;
  font-weight: 600;
  color: #05305c;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 15px 0 0 0;
  padding: 15px 30px 0 30px;
  border-top: 2px solid #f0f0f0;
}

/* Carousel dots indicator */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #ef9227;
  transform: scale(1.3);
  width: 14px;
  height: 14px;
}

.dot:hover {
  background-color: #fabc2e;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #05305c 0%, #0a4a8a 100%);
  color: #ffffff;
  padding: 50px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 0 60px 50px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Section Base */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fabc2e;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-section a {
  color: #b3d9ff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.8;
}

/* Company Section */
.footer-company {
  align-items: flex-start;
}

.footer-logo img {
  width: 180px;
  height: auto;
  margin-top: -30px;
  margin-left: -10px;
  margin-bottom: -20px;
}

.footer-company p {
  font-size: 14px;
  line-height: 1.8;
  color: #d0d9e8;
  margin-bottom: 20px;
  max-width: 280px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #ef9227;
}

.social-icon img {
  width: 40px;
  height: 40px;
}

.social-icon:hover {
  box-shadow: 0 8px 16px rgba(239, 146, 39, 0.3);
}

/* Footer Links Lists */
.footer-links ul,
.footer-investment ul,
.footer-support ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a:hover,
.footer-investment a:hover,
.footer-support a:hover {
  text-decoration: underline;
}

.footer-links li,
.footer-investment li,
.footer-support li {
  margin-bottom: 5px;
}

/* Contact Info */
.footer-contact {
  align-items: flex-start;
}

.contact-item {
  font-size: 13px;
  line-height: 1.8;
  color: #b3d9ff;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  color: #fabc2e;
  font-weight: 600;
}

.contact-item a:hover {
  color: #ef9227;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(239, 146, 39, 0.3);
  padding: 15px 60px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  font-size: 13px;
  color: #b3d9ff;
  margin: 0;
}

/* Footer Badges */
.footer-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.badge {
  background-color: rgba(239, 146, 39, 0.2);
  color: #fabc2e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #ef9227;
  transition: all 0.3s ease;
}

.badge:hover {
  background-color: #ef9227;
  color: #05305c;
  transform: scale(1.05);
}

/* ========================================
   DOWNLOAD APP SECTION
   ======================================== */
.download-app-section {
  padding: 50px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 50%, #eff3f9 100%);
  /* background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%); */
}

.download-app-container h2 {
  font-size: 48px;
  color: #05305c;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-align: left;
}

.download-app-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.app-description {
  flex: 1;
}

.app-description > p {
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  /* margin-bottom: 40px; */
}

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

.feature svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.feature span {
  color: #05305c;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.download-btn svg {
  width: 100%;
  height: auto;
  max-width: 150px;
}

.download-app-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-app-image img {
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 15px 40px rgba(5, 48, 92, 0.15));
}

/* Mobile Portrait (<480px) */
@media (max-width: 480px) {
  body {
    padding-top: 43px;
  }

  header {
    padding: 0px 16px;
    height: 65px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    top: 35px;
  }

  .logo-container img {
    width: 130px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Ticker Styles */
  .ticker-wrapper {
    padding: 6px 0;
  }

  .ticker-item {
    font-size: 13px;
    gap: 6px;
  }

  .ticker-item img {
    width: 18px;
    height: 18px;
  }

  .ticker-item .coin-name {
    font-size: 13px;
  }

  .ticker-item .coin-price {
    font-size: 12px;
  }

  .ticker-track {
    gap: 30px;
  }

  /* Show mobile auth links, hide desktop ones */
  .auth-links-mobile {
    display: flex;
    gap: 6px;
    margin-right: 8px;
    margin-left: auto;
  }

  .auth-links-desktop {
    display: none;
  }

  .nav-container {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    width: auto;
    min-width: 150px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-radius: 0 0 0 8px;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-container.active {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 15px;
  }

  .navigation ul {
    flex-direction: column;
    gap: 8px;
    margin-right: 0;
    width: 100%;
  }

  .navigation ul li {
    width: 100%;
  }

  .navigation ul li a {
    font-size: 15px;
    padding: 10px 12px;
    text-align: left;
    border-radius: 4px;
    border-bottom: none;
    display: block;
    width: 100%;
  }

  .navigation ul li a::after {
    display: none;
  }

  .navigation ul li a:hover {
    background-color: rgba(239, 146, 39, 0.1);
    color: #ef9227;
  }

  .navigation ul li.active a {
    background-color: rgba(239, 146, 39, 0.15);
    padding: 10px 12px;
    border-radius: 4px;
    box-shadow: inset 0 0 8px rgba(239, 146, 39, 0.1);
  }

  .auth-links-mobile .login,
  .auth-links-mobile .register {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
  }

  .auth-links-mobile .login:hover,
  .auth-links-mobile .register:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .message-overlay {
    padding: 10px 24px 0 24px;
    top: 8%;
  }

  .message-title {
    font-size: 28px;
  }

  .message-title-2 {
    font-size: 40px;
  }

  .message-content p {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .message-overlay-2 {
    left: 0%;
    top: 60px;
    padding: 0 24px;
  }

  .message-content-2 h4 {
    font-size: 16px;
  }

  .message-content-2 h2 {
    font-size: 40px;
  }

  .mc2-features {
    flex-direction: column;
    font-size: 16px;
    gap: 15px;
    margin-top: 10px;
  }

  .begin-now-btn,
  .begin-now-btn-2 {
    padding: 8px 16px;
    font-size: 18px;
    width: 130px;
    margin-top: 20px;
  }

  .video-section {
    height: 450px;
  }

  /* Why Choose Us Section */
  .why-choose-us-section {
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
  }

  .why-choose-us {
    width: 100%;
    margin-bottom: 40px;
  }

  .why-choose-us h6 {
    font-size: 16px;
    text-align: center;
  }

  .why-choose-us h2 {
    font-size: 32px;
    text-align: center;
  }

  .why-choose-us p {
    font-size: 16px;
    line-height: 1.5;
  }

  .why-choose-us a {
    padding: 8px 16px;
    font-size: 18px;
    width: 130px;
    margin-top: 10px;
  }

  /* Icon Section */
  .icon-section {
    flex-direction: column;
    width: 100vw;
    padding: 20px 24px;
    margin-left: -24px;
    margin-right: -24px;
    margin-top: -20px;
    margin-bottom: -20px;
    gap: 30px;
  }

  .first-icon-item,
  .second-icon-item {
    border-right: none;
    border-bottom: 1px solid #ef9227;
    padding-bottom: 20px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .icon-item {
    gap: 10px;
  }

  .icon-content h4 {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .icon-content p {
    font-size: 16px;
  }

  /* Course Newsletter Section */
  .course-newsletter-section {
    flex-direction: column;
    padding: 40px 24px;
  }

  .course-info {
    width: 100vw;
    padding: 40px 15px;
    margin-left: -24px;
    margin-right: -24px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .course-info h6 {
    font-size: 16px;
  }

  .course-info h3 {
    font-size: 28px;
  }

  .course-info p {
    font-size: 16px;
  }

  .course-info h4 {
    font-size: 20px;
  }

  .course-info a {
    padding: 8px 16px;
  }

  .course-info img {
    max-width: 70%;
  }

  .newsletter-subscription {
    width: 100vw;
    padding: 40px 15px;
    margin-left: -24px;
    margin-right: -24px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .newsletter-subscription h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .newsletter-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .newsletter-subscription p {
    font-size: 16px;
    padding-left: 0;
  }

  .subscription-form h3 {
    font-size: 18px;
  }

  .subscription-form h2 {
    font-size: 20px;
  }

  .subscribe-form {
    padding-left: 0;
  }

  .subscribe-form input[type="text"],
  .subscribe-form input[type="email"] {
    padding: 8px;
    font-size: 14px;
    margin-right: 0;
  }

  .subscribe-form button {
    padding: 10px 16px;
    font-size: 15px;
  }

  /* Services Section */
  .services-section {
    padding: 40px 24px;
  }

  .services-header h4 {
    font-size: 16px;
  }

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

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-content h4 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 16px;
  }

  /* How It Works Section */
  .how-it-works {
    padding: 40px 24px;
  }

  .how-it-works-header h4 {
    font-size: 16px;
  }

  .how-it-works-header h2 {
    font-size: 32px;
  }

  .how-it-works-steps::before {
    display: none;
  }

  .how-it-works-steps {
    flex-direction: column;
    gap: 30px;
    padding: 0px;
  }

  .step {
    padding: 20px 15px;
    min-height: auto;
    border-left: none;
    border-top: 3px solid #ef9227;
  }

  .steps-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .steps-icon::before {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: -8px;
    right: -8px;
  }

  .step h4 {
    font-size: 18px;
    margin-top: 3px;
    margin-bottom: 10px;
  }

  .step p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Investment Plans Section */
  .investment-plans-section {
    padding: 40px 5px;
  }

  .investment-plans-header {
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .investment-plans-header h4 {
    font-size: 16px;
  }

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

  .investment-plans-header p {
    font-size: 16px;
    margin-top: 10px;
  }

  .investment-plans-list {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 15px 25px 15px;
  }

  .investment-plan-header {
    padding: 20px;
  }

  .investment-plan-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .investment-plan-header h3 {
    font-size: 20px;
  }

  .investment-plan-body {
    padding: 20px 18px;
  }

  .investment-plan-body h4 {
    font-size: 18px;
  }

  .investment-plan ul li {
    font-size: 15px;
    padding: 6px 0;
  }

  .investment-plan-body a {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* ROI Calculator Section */
  .roi-calculator-section {
    padding: 40px 20px;
  }

  .roi-header {
    margin-bottom: 10px;
  }

  .roi-header h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .roi-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .roi-header p {
    font-size: 16px;
  }

  .roi-input-group {
    margin-bottom: 25px;
  }

  .roi-input-group label {
    font-size: 15px;
  }

  .investment-input {
    padding: 13px 13px 13px 38px;
    font-size: 15px;
  }

  .currency-symbol {
    left: 12px;
    font-size: 17px;
  }

  .input-info {
    font-size: 12px;
  }

  .roi-results {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .plan-badge {
    font-size: 10px;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  .plan-name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .plan-range {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .result-group {
    padding: 12px 0;
    font-size: 13px;
  }

  .result-label {
    font-size: 13px;
  }

  .result-value {
    font-size: 17px;
  }

  .result-value.total {
    font-size: 20px;
  }

  /* Download App Section */
  .download-app-section {
    padding: 40px 24px;
  }

  .download-app-container h2 {
    font-size: 32px;
    text-align: center;
  }

  .download-app-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

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

  .app-description > p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .app-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 10px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature {
    gap: 12px;
    justify-content: flex-start;
  }

  .feature svg {
    width: 20px;
    height: 20px;
  }

  .feature span {
    font-size: 15px;
  }

  .download-buttons {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .download-btn {
    flex: 0 1 auto;
  }

  .download-btn svg {
    max-width: 140px;
    margin-bottom: -40px;
  }

  .download-app-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .download-app-image img {
    filter: drop-shadow(0 10px 30px rgba(5, 48, 92, 0.12));
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 40px 24px;
  }

  .testimonials-header h4 {
    font-size: 16px;
  }

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

  .testimonials-list h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .testimonials-container {
    min-height: 250px;
  }

  .testimonial-item blockquote {
    padding: 20px 16px;
    padding-bottom: 35px;
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonial-item blockquote::before {
    top: -5px;
    left: 10px;
    font-size: 40px;
  }

  .testimonial-author {
    font-size: 13px;
    padding: 10px 16px 0 16px;
  }

  .testimonials-dots {
    margin-top: 5px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 12px;
    height: 12px;
  }

  /* Footer Styles */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 30px 20px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-bottom-content {
    padding: 0;
  }
}

/* Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  /* Body & Header */
  body {
    padding-top: 50px;
  }

  header {
    padding: 0px 30px;
    height: 70px;
    top: 38px;
  }

  .logo-container img {
    width: 160px;
    padding-top: 5px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Ticker Styles */
  .ticker-wrapper {
    padding: 7px 0;
  }

  .ticker-item {
    font-size: 14px;
    gap: 7px;
  }

  .ticker-item img {
    width: 20px;
    height: 20px;
  }

  /* Auth Links */
  .auth-links-mobile {
    display: flex;
    gap: 10px;
    margin-right: 12px;
    margin-left: auto;
  }

  .auth-links-desktop {
    display: none;
  }

  .auth-links-mobile .login,
  .auth-links-mobile .register {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* Navigation Container */
  .nav-container {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    width: auto;
    min-width: 280px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-radius: 0 0 0 10px;
    flex-direction: column;
    gap: 10px;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    z-index: 100;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .nav-container.active {
    max-height: 550px;
    opacity: 1;
    visibility: visible;
    padding: 20px 25px;
  }

  .navigation ul {
    flex-direction: column;
    gap: 10px;
    margin-right: 0;
    width: 100%;
  }

  .navigation ul li {
    width: 100%;
  }

  .navigation ul li a {
    font-size: 15px;
    padding: 12px 14px;
    text-align: left;
    border-radius: 6px;
    border-bottom: none;
    display: block;
    width: 100%;
  }

  .navigation ul li a::after {
    display: none;
  }

  .navigation ul li a:hover {
    background-color: rgba(239, 146, 39, 0.1);
    color: #ef9227;
  }

  .navigation ul li.active a {
    background-color: rgba(239, 146, 39, 0.15);
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: none;
  }

  /* Video Section */
  .video-section {
    height: 450px;
  }

  .message-overlay {
    padding: 15px 35px 0 35px;
    top: 8%;
  }

  .message-title {
    font-size: 29px;
  }

  .message-title-2 {
    font-size: 43px;
  }

  .message-content p {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .message-overlay-2 {
    left: 0%;
    top: 90px;
    padding: 0 35px;
  }

  .message-content-2 h4 {
    font-size: 17px;
  }

  .message-content-2 h2 {
    font-size: 43px;
  }

  .mc2-features {
    font-size: 17px;
    gap: 25px;
    flex-wrap: wrap;
  }

  .begin-now-btn,
  .begin-now-btn-2 {
    padding: 12px 26px;
    font-size: 19px;
    width: 160px;
  }

  /* Why Choose Us Section */
  .why-choose-us-section {
    flex-direction: column;
    padding: 50px 35px;
    gap: 35px;
  }

  .why-choose-us {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  .why-choose-us h6 {
    font-size: 17px;
  }

  .why-choose-us h2 {
    font-size: 38px;
  }

  .why-choose-us p {
    font-size: 17px;
    line-height: 1.6;
  }

  .why-choose-us a {
    padding: 12px 26px;
    font-size: 19px;
    width: 160px;
    margin: 15px auto 0;
  }

  /* Icon Section */
  .icon-section {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    padding: 40px 30px;
    margin: -50px -35px -50px -35px;
    gap: 25px;
    justify-content: center;
  }

  .icon-item {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 250px;
    max-width: calc(50% - 12.5px);
    gap: 25px;
    padding: 25px 20px;
  }

  .first-icon-item,
  .second-icon-item {
    border-right: none;
    border-bottom: none;
    padding-bottom: 25px;
  }

  .icon-item:nth-child(1),
  .icon-item:nth-child(2) {
    border-bottom: 2px solid #ef9227;
    padding-bottom: 35px;
  }

  .icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .icon-content h4 {
    font-size: 17px;
    min-height: auto;
  }

  .icon-content p {
    font-size: 16px;
  }

  /* Course Newsletter Section */
  .course-newsletter-section {
    flex-direction: column;
    padding: 50px 35px;
  }

  .course-info {
    width: 100vw;
    padding: 45px 30px;
    margin: -50px -35px 0 -35px;
    text-align: center;
  }

  .course-info h6 {
    font-size: 17px;
  }

  .course-info h3 {
    font-size: 30px;
  }

  .course-info p {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .course-info h4 {
    font-size: 22px;
  }

  .course-info a {
    padding: 12px 24px;
  }

  .course-info img {
    max-width: 80%;
  }

  .newsletter-subscription {
    width: 100vw;
    padding: 45px 30px;
    margin: 0 -35px -50px -35px;
  }

  .newsletter-subscription h6 {
    font-size: 17px;
  }

  .newsletter-title {
    font-size: 30px;
  }

  .newsletter-subscription p {
    font-size: 17px;
    padding-left: 0;
  }

  .subscription-form h3 {
    font-size: 19px;
  }

  .subscription-form h2 {
    font-size: 22px;
  }

  .subscribe-form {
    padding-left: 0;
  }

  .subscribe-form input[type="text"],
  .subscribe-form input[type="email"] {
    padding: 12px;
    font-size: 16px;
  }

  .subscribe-form button {
    padding: 12px 20px;
    font-size: 16px;
  }

  /* Services Section */
  .services-section {
    padding: 50px 35px;
  }

  .services-header h4 {
    font-size: 17px;
  }

  .services-header h2 {
    font-size: 38px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 25px;
  }

  .service-content h4 {
    font-size: 19px;
  }

  .service-content p {
    font-size: 17px;
  }

  /* How It Works Section */
  .how-it-works {
    padding: 50px 35px;
  }

  .how-it-works-header h4 {
    font-size: 17px;
  }

  .how-it-works-header h2 {
    font-size: 38px;
  }

  .how-it-works-steps::before {
    display: none;
  }

  .how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px 0;
  }

  .step {
    padding: 30px 20px;
    min-height: auto;
    border-left: none;
    border-top: 4px solid #ef9227;
  }

  .steps-icon {
    width: 105px;
    height: 105px;
    margin-bottom: 18px;
  }

  .steps-icon::before {
    width: 34px;
    height: 34px;
    font-size: 15px;
    top: -10px;
    right: -10px;
  }

  .step h4 {
    font-size: 20px;
    margin-top: 8px;
  }

  .step p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Investment Plans Section */
  .investment-plans-section {
    padding: 50px 0px;
  }

  .investment-plans-header {
    padding: 0 30px;
    margin-bottom: 30px;
  }

  .investment-plans-header h4 {
    font-size: 17px;
  }

  .investment-plans-header h2 {
    font-size: 38px;
  }

  .investment-plans-header p {
    font-size: 17px;
    margin-top: 15px;
  }

  .investment-plans-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 40px 30px 45px 30px;
  }

  .investment-plan {
    box-shadow: 0 4px 16px rgba(5, 48, 92, 0.1);
  }

  .investment-plan-header {
    padding: 25px 20px;
  }

  .investment-plan-header h2 {
    font-size: 25px;
  }

  .investment-plan-header h3 {
    font-size: 22px;
  }

  .investment-plan-body {
    padding: 22px 20px;
  }

  .investment-plan-body h4 {
    font-size: 19px;
  }

  .investment-plan ul li {
    font-size: 16px;
  }

  .investment-plan-body a {
    padding: 12px 26px;
    font-size: 14.5px;
  }

  /* ROI Calculator Section */
  .roi-calculator-section {
    padding: 50px 35px;
  }

  .roi-header h4 {
    font-size: 17px;
  }

  .roi-header h2 {
    font-size: 38px;
  }

  .roi-header p {
    font-size: 17px;
  }

  .roi-content {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 30px 25px;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .roi-input-group {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }

  .investment-input {
    padding: 15px 15px 15px 45px;
    font-size: 16px;
  }

  .currency-symbol {
    left: 16px;
    font-size: 17px;
  }

  .roi-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .roi-card {
    padding: 32px 26px;
  }

  .plan-badge {
    font-size: 11px;
    padding: 9px 16px;
  }

  .plan-name {
    font-size: 19px;
  }

  .plan-range {
    font-size: 13px;
  }

  .result-group {
    padding: 16px 0;
  }

  .result-label {
    font-size: 14px;
  }

  .result-value {
    font-size: 18px;
  }

  .result-value.total {
    font-size: 21px;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 50px 35px;
  }

  .testimonials-header h4 {
    font-size: 17px;
  }

  .testimonials-header h2 {
    font-size: 38px;
  }

  .testimonials-list h3 {
    font-size: 24px;
  }

  .testimonials-container {
    min-height: 280px;
  }

  .testimonial-item blockquote {
    padding: 30px 25px;
    padding-bottom: 45px;
    font-size: 15px;
  }

  .testimonial-item blockquote::before {
    font-size: 50px;
  }

  .testimonial-author {
    font-size: 14px;
    padding: 15px 25px 0 25px;
  }

  .testimonials-dots {
    margin-top: 0px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }

  .dot.active {
    width: 13px;
    height: 13px;
  }

  /* Download App Section */
  .download-app-section {
    padding: 50px 35px;
  }

  .download-app-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .download-app-content {
    flex-direction: column;
    gap: 35px;
  }

  .app-description > p {
    font-size: 17px;
  }

  .app-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature svg {
    width: 22px;
    height: 22px;
  }

  .feature span {
    font-size: 16px;
  }

  .download-buttons {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }

  .download-btn svg {
    max-width: 145px;
  }

  .download-app-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 0 35px 40px 35px;
  }

  .footer-section {
    min-width: 100%;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 35px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
