
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fb;
  color: #1a1a1a;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Icon Rotation with Bounce */
.icon-rotate {
  transition: transform 0.5s ease-in-out, scale 0.2s ease-in-out;
}

.icon-rotate:hover {
  transform: rotate(360deg) scale(1.2);
  animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* Ripple Effect for Nav Links and Buttons */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(30, 30, 204, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.ripple:hover::after {
  width: 200px;
  height: 200px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  color: #1e1ecc;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(30, 30, 204, 0.3);
}

.logo i {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #1a1a1a;
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #333, #1e1ecc);
  transition: width 0.3s ease;
}

.nav-item > a:hover {
  color: #1e1ecc;
  transform: scale(1.05);
  background: rgba(30, 30, 204, 0.05);
}

.nav-item > a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.dropdown a {
  padding: 8px 16px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown a:hover {
  background: linear-gradient(to right, #f0f2ff, #e0e0ff);
  color: #1e1ecc;
  transform: translateX(5px) rotate(2deg);
}

.nav-item:hover .dropdown {
  display: flex;
}

.login-btn {
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse 2s infinite ease-in-out;
  font-size: 15px;
}

.login-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Hamburger Icon Styles */
.nav-toggle {
  display: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 0;
  z-index: 1000;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navbar Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff, #f0f2ff);
    padding: 80px 20px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }

  .nav-item {
    width: 100%;
    margin: 10px 0;
  }

  .nav-item > a {
    font-size: 18px;
    padding: 12px;
    justify-content: center;
  }

  .nav-item .dropdown {
    position: static;
    box-shadow: none;
    background: linear-gradient(135deg, #f0f2ff, #e0e0ff);
    padding: 10px 0;
    display: none;
    width: 100%;
    border-radius: 8px;
  }

  .nav-item.active .dropdown {
    display: flex;
  }

  .dropdown a {
    font-size: 16px;
    padding: 10px 20px;
    justify-content: center;
  }

  .login-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    width: fit-content;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-links {
    padding: 60px 16px 16px;
  }

  .nav-item > a {
    font-size: 16px;
    padding: 10px;
  }

  .dropdown a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .nav-toggle {
    width: 26px;
    height: 20px;
  }

  .nav-toggle .bar {
    height: 2px;
  }
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(30, 30, 204, 0.1), transparent 70%);
  animation: floatParticles 10s infinite ease-in-out;
  z-index: -1;
}

@keyframes floatParticles {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.3;
  }
}

.hero-left {
  max-width: 550px;
}

.hero-left h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #333;
  background: linear-gradient(to right, #333, #1e1ecc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.cta-buttons .open-account {
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: white;
  animation: pulse 2s infinite ease-in-out;
}

.cta-buttons .open-account:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
}

.cta-buttons .see-how {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  color: #333;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cta-buttons .see-how:hover {
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-right img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 16px;
    height: 100vh;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 24px;
  }

  .hero-left p {
    font-size: 13px;
  }

  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-right {
    margin-top: 20px;
  }

  .hero-right img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 20px;
  }

  .hero-left p {
    font-size: 12px;
  }

  .cta-buttons a {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.why-gemini {
  background: #fff;
  padding: 60px 20px;
}

.why-gemini .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #333, #1e1ecc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: linear-gradient(135deg, #f0f2ff, #ffffff);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.3), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.feature-card:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.feature-card:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.feature-card i {
  font-size: 30px;
  color: #333;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .why-gemini {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card i {
    font-size: 24px;
  }

  .feature-card h4 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 12px;
  }
}

.trusted-section {
  background: #f8f9ff;
  padding: 60px 20px;
  text-align: center;
}

.trusted-section .section-title {
  font-size: 28px;
  margin-bottom: 30px;
}

.logo-slider-alt {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track-alt {
  display: flex;
  gap: 40px;
  animation: scrollAlternate 22s ease-in-out infinite alternate;
  align-items: center;
}

.logo-track-alt img {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease, transform 0.3s ease;
}

.logo-track-alt img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes scrollAlternate {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-track-alt {
    gap: 20px;
  }

  .logo-track-alt img {
    height: 40px;
  }
}

.features-overview-alt {
  padding: 60px 20px;
  background: #f9faff;
  text-align: center;
}

.features-overview-alt .section-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.features-overview-alt .section-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.features-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  border-radius: 16px;
  padding: 30px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 30px;
  color: #333;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 1024px) {
  .features-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid-3col {
    grid-template-columns: 1fr;
  }

  .features-overview-alt {
    padding: 40px 16px;
  }

  .features-overview-alt .section-title {
    font-size: 24px;
  }

  .features-overview-alt .section-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 20px;
  }

  .feature-card i {
    font-size: 24px;
  }

  .feature-card h4 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 12px;
  }
}

.how-it-works {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.how-it-works .section-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.how-it-works .section-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.step {
  max-width: 200px;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0f3ff, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  color: #333;
  transition: background 0.3s ease, transform 0.3s ease;
}

.step:hover .step-icon {
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: white;
  transform: scale(1.1);
}

.step h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 992px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    padding: 40px 16px;
  }

  .how-it-works .section-title {
    font-size: 24px;
  }

  .how-it-works .section-subtitle {
    font-size: 13px;
  }

  .step {
    max-width: 100%;
  }
}

.testimonials-section {
  padding: 60px 20px;
  background: #f9f9ff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.testimonial-fade {
  position: relative;
  height: 140px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.testimonial.active {
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}

.testimonial p {
  font-size: 17px;
  color: #333;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial h4 {
  font-size: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .testimonial p {
    font-size: 14px;
  }

  .testimonial h4 {
    font-size: 13px;
  }
}

.support-section {
  padding: 60px 20px;
  background: #fff;
}

.support-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.support-text {
  flex: 1;
  min-width: 280px;
}

.support-text h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 12px;
}

.support-text p {
  font-size: 17px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.toast-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f5f5ff, #ffffff);
  padding: 12px 16px;
  border-left: 4px solid #333;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
  overflow: hidden;
}

.toast-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.2), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.toast-card:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.toast-card:hover {
  transform: translateY(-4px) rotate(2deg);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.3);
  filter: brightness(1.05);
}

.toast-card i {
  color: #333;
  font-size: 16px;
}

.support-graphic {
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.support-graphic img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.support-graphic img:hover {
  transform: scale(1.05) rotate(3deg);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .support-grid {
    flex-direction: column;
  }

  .support-text h2 {
    font-size: 24px;
  }

  .support-text p {
    font-size: 14px;
  }

  .support-section {
    padding: 40px 16px;
  }
}

.security-section {
  padding: 60px 20px;
  background-color: #f3f6ff;
}

.security-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.security-left {
  flex: 1;
  min-width: 280px;
}

.section-subtext {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 1.6;
}

.badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-card {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
  overflow: hidden;
}

.badge-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.2), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.badge-card:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.badge-card:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 8px 20px rgba(30, 30, 204, 0.3);
  filter: brightness(1.05);
}

.badge-card i {
  font-size: 15px;
}

.security-right {
  flex: 1;
  min-width: 280px;
}

.comparison-card {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.3), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.comparison-card:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.comparison-card:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.comparison-card h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 14px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.text-green {
  color: #2ecc71;
}

.text-red {
  color: #e74c3c;
}

@media (max-width: 768px) {
  .security-grid {
    flex-direction: column;
  }

  .comparison-card {
    margin-top: 30px;
  }

  .security-section {
    padding: 40px 16px;
  }

  .security-left h2 {
    font-size: 24px;
  }

  .section-subtext {
    font-size: 14px;
  }
}

.cta-banner {
  background: linear-gradient(135deg, #333, #1e1ecc);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 50vh;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 70%);
  animation: floatParticles 10s infinite ease-in-out;
  z-index: 0;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cta-container h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cta-main-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #fff, #f0f0ff);
  color: #333;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

.cta-main-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(30, 30, 204, 0.4);
  background: linear-gradient(135deg, #f0f0ff, #e0e0ff);
}

.cta-main-btn i {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }

  .cta-container h2 {
    font-size: 22px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cta-main-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(30, 30, 204, 0.1), transparent 70%);
  animation: floatParticles 12s infinite ease-in-out;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-nav h4,
.footer-newsletter h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease, transform 0.3s ease;
  position: relative;
  padding: 4px 8px;
}

.footer-nav ul li a:hover {
  color: #fff;
  transform: translateX(5px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.footer-nav ul li a i {
  margin-right: 6px;
}

.footer-newsletter form {
  display: flex;
  border: 1px solid #444;
  border-radius: 50px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 13px;
  background: transparent;
}

.footer-newsletter button {
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: #fff;
  border: none;
  padding: 0 16px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-newsletter button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
}

/* PAYMENT LOGOS MOVED HERE */
.payment-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-logos img {
  height: 24px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.15) rotate(5deg);
  opacity: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  color: #bbb;
}

.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-contact a {
  color: #bbb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  transition: all 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-contact a:hover {
  color: #fff;
  transform: translateX(5px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.footer-contact a i {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #aaa;
}

.footer-bottom .legal-links a {
  margin-left: 16px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-bottom .legal-links a:hover {
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-nav h4,
  .footer-newsletter h4,
  .footer-contact h4 {
    font-size: 14px;
  }

  .footer-nav ul li a {
    font-size: 12px;
  }

  .footer-newsletter input {
    font-size: 12px;
  }

  .footer-newsletter button {
    font-size: 13px;
  }

  .payment-logos img {
    height: 20px;
  }

  .footer-contact p {
    font-size: 12px;
  }

  .footer-contact a i {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom .legal-links {
    margin-top: 8px;
  }

  .footer-bottom .legal-links a {
    margin-left: 8px;
  }
}

.choose-section {
  background: #f5f7ff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(30, 30, 204, 0.1), transparent 70%);
  animation: floatParticles 12s infinite ease-in-out;
  z-index: 0;
}

.choose-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.choose-title {
  font-size: 2.6rem;
  color: #333;
  margin-bottom: 16px;
  background: linear-gradient(to right, #333, #1e1ecc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choose-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.choose-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.choose-feature {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.choose-feature::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.3), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.choose-feature:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.choose-feature:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.choose-feature i {
  color: #333;
  font-size: 1.2rem;
}

.choose-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.animated-icons {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}

.animated-icon {
  position: absolute;
  font-size: 6rem;
  color: #2d2dff;
  opacity: 0;
  animation: cycleIcons 8s infinite;
}

.animated-icon:nth-child(1) { animation-delay: 0s; }
.animated-icon:nth-child(2) { animation-delay: 2s; }
.animated-icon:nth-child(3) { animation-delay: 4s; }
.animated-icon:nth-child(4) { animation-delay: 6s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes cycleIcons {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  10%, 25% {
    opacity: 1;
    transform: scale(1);
  }
  35%, 100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (max-width: 900px) {
  .choose-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .choose-feature {
    justify-content: center;
  }

  .animated-icons {
    height: 200px;
  }

  .animated-icon {
    font-size: 4.5rem;
  }
}

@media (max-width: 480px) {
  .choose-section {
    padding: 40px 16px;
  }

  .choose-title {
    font-size: 2rem;
  }

  .choose-subtext {
    font-size: 0.9rem;
  }

  .choose-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .choose-feature {
    font-size: 0.85rem;
  }
}

.stats-section {
  background: #f8f9ff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 80%, rgba(30, 30, 204, 0.1), transparent 70%);
  animation: floatParticles 12s infinite ease-in-out;
  z-index: 0;
}

.stats-container {
  position: relative;
  z-index: 1;
}

.stats-title {
  font-size: 2.6rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 8px;
}

.stats-title span {
  display: block;
  font-weight: 800;
  color: #1a1a1a;
}

.stats-badge {
  display: inline-block;
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: white;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 40px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(30, 30, 204, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  padding: 30px 16px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.3), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.stat-card:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.stat-card:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

.stats-cta {
  background: linear-gradient(135deg, #ffffff, #f0f2ff);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-cta::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 30, 204, 0.2), transparent);
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);
}

.stats-cta:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.stats-cta:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
}

.cta-headline {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-btn {
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  animation: pulse 2s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
  background: linear-gradient(135deg, #1e1ecc, #333);
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 16px;
  }

  .stats-title {
    font-size: 2rem;
  }

  .stats-badge {
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    padding: 24px;
    min-height: 100px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-cta {
    padding: 20px;
  }

  .cta-headline {
    font-size: 1.1rem;
  }

  .cta-subtext {
    font-size: 0.85rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

.account-cta {
  background: linear-gradient(135deg, #333, #4e4eff);
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 50vh;
}

.account-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1), transparent 70%);
  animation: floatParticles 10s infinite ease-in-out;
  z-index: 0;
}

.account-cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cta-sub {
  font-size: 1rem;
  color: #e0e0ff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.cta-main {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.cta-button {
  background: linear-gradient(135deg, #fff, #f0f0ff);
  color: #333;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
  background: linear-gradient(135deg, #f0f0ff, #e0e0ff);
}

@media (max-width: 768px) {
  .account-cta {
    padding: 30px 16px;
  }

  .account-cta-container {
    flex-direction: column;
  }

  .cta-main {
    font-size: 1.5rem;
  }

  .cta-sub {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

.careers-section {
  padding: 60px 20px;
  background: #f9f9ff;
  position: relative;
  overflow: hidden;
}

.careers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(30, 30, 204, 0.1), transparent 70%);
  animation: floatParticles 12s infinite ease-in-out;
  z-index: 0;
}

.careers-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.careers-text h2 {
  font-size: 2.6rem;
  color: #333;
  margin-bottom: 16px;
}

.careers-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.careers-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #333, #1e1ecc);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

.careers-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 30, 204, 0.4);
  background: linear-gradient(135deg, #1e1ecc, #333);
}

.careers-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.careers-image img:hover {
  transform: scale(1.05) rotate(3deg);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .careers-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .careers-text h2 {
    font-size: 1.8rem;
  }

  .careers-text p {
    font-size: 0.9rem;
  }

  .careers-image {
    order: -1;
  }

  .careers-section {
    padding: 40px 16px;
  }
}
