
    :root {
      --primary: #4d4dff;
      --gradient: linear-gradient(135deg, #1a1a40, #0a0f24 60%, #4d4dff);
      --card-bg: rgba(255, 255, 255, 0.05);
      --text-light: #d0d3e0;
      --accent: #4d4dff;
      --radius: 12px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', Arial, sans-serif;
      background: #0a0f24;
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

/* ============================= */
/*     PREMIUM AI-STYLE NAVBAR   */
/* ============================= */

.ote-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  padding: 22px 50px;
  background: rgba(8, 13, 32, 0.65);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

/* Shrink on Scroll */
.ote-header.shrink {
  padding: 10px 40px;
  background: rgba(8, 13, 32, 0.85);
  backdrop-filter: blur(20px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO — Bigger, premium feel */
.logo img {
  height: 85px;
  width: auto;
  transition: all 0.3s ease;
}

.ote-header.shrink .logo img {
  height: 60px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: #e8f0ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: 0.3s ease;
}

/* Underline Animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #7c3aed, #2563eb); /* Purple to Blue */
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: linear-gradient(135deg, #7c3aed, #2563eb); /* Purple to Blue */
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON — glowing neon */
.btn-nav {
  background: linear-gradient(135deg, #7c3aed, #2563eb); /* Purple to Blue */
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4); /* soft glow */
  border: none;
  cursor: pointer;}

/* Pulse animation */
.btn-nav:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(36, 224, 164, 0.65);
}

/* MOBILE ACTIONS */
.nav-actions {
  display: none;
  align-items: center;
  gap: 15px;
}

/* HAMBURGER ICON */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* Burger → X Transition */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* MOBILE MENU — Slide and fade */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8, 13, 32, 0.98);
  padding: 20px 30px;
  text-align: center;
  animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  color: #e8f0ff;
  margin: 12px 0;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.mobile-menu a:hover {
  color: #7c3aed;
}

.mobile-menu.show {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .logo img {
    height: 60px;
  }

  .nav-actions {
    display: flex;
  }
}



@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* ========================================= */
/*             OTE AI MODERN FOOTER          */
/* ========================================= */

.oteai-footer {
  background: url("img/footer_bg.jpg") center/cover no-repeat;
  padding: 80px 30px;
  text-align: center;
  color: #d6d9e8;
  font-family: "Inter", Arial, sans-serif;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Logo */
.footer-logo img {
  width: 180px;
  margin: 0 auto 25px;
  opacity: 0.95;
}

/* Navigation */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 25px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer-nav li a {
  color: #d6d9e8;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-nav li a:hover {
  color: #4d4dff;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 850px;
  margin: 40px auto 20px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #9ea2c4;
}

.footer-disclaimer h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Copyright */
.footer-copy {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #9ea2c4;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-nav {
    gap: 18px;
    font-size: 14px;
  }

  .footer-disclaimer {
    text-align: left;
    padding: 0 10px;
  }
}



    .button-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 20px rgba(77, 77, 255, 0.5);
    }

    .hero {
      text-align: center;
      padding: 120px 20px 100px;
      background: radial-gradient(circle at top left, #1b1b4d, #0a0f24);
      animation: fadeIn 1.5s ease-out;
    }

    .hero h1 {
      font-size: 3.2rem;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .elementor-element {
    display: flex;
    flex-direction: row; /* horizontal by default */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* allows wrapping if items overflow */
    gap: 2px; /* even space between items */
    padding: 20px;
    padding-top: 5px;
    }

    /* ===== OTE AI Section Styling ===== */
.oteai-section {
  background: linear-gradient(180deg, #101735 0%, #0a0f24 100%);
  color: #fff;
  padding: 100px 50px;
  text-align: center;
}

.oteai-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oteai-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.oteai-subheading {
  font-size: 1.5rem;
  color: #b4b6ff;
  margin-bottom: 25px;
}

.oteai-text {
  font-size: 1rem;
  color: #d0d3e0;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.7;
}

.oteai-image-and-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px auto;
}

.oteai-image {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(77, 77, 255, 0.3);
}

.oteai-image:hover {
  transform: scale(1.02);
}

/* Highlight Info */
.oteai-highlight {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  margin: 60px auto;
  max-width: 850px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.oteai-highlight p {
  font-size: 1rem;
  color: #cdd0ff;
  margin-bottom: 15px;
}

.oteai-highlight h2 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}

/* Features Grid */
.oteai-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 260px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(77, 77, 255, 0.3);
}

.feature-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(77, 77, 255, 0.3));
}

/* === HERO SECTION BACKGROUND === */
.elementor-element-57021a4f {
  background: radial-gradient(circle at 30% top, #1b2a61, #0a0f24 70%) !important;
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px !important;
  text-align: center;
}

/* Optional texture overlay for realism */
.elementor-element-57021a4f::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/noise-pattern-with-subtle-cross-lines.png");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* === HEADINGS === */
.top-title h2 {
  font-size: 14px !important;
  letter-spacing: 3px;
  color: #7a8fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-text h2 {
  font-size: 60px !important;
  font-weight: 800;
  background: linear-gradient(90deg, #8cb4ff, #e1b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.elementor-element-1c74540a h2 {
  font-size: 20px;
  font-weight: 500;
  color: #d9dbf1;
  margin-bottom: 20px;
}

.elementor-element-5cabbb1 p {
  color: #cfd2ea;
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* === CTA BUTTON === */
.cart-btn .elementor-button {
  background: #4d4dff !important;
  border-radius: 50px;
  padding: 16px 36px;
  font-weight: 700;
  color: #fff !important;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(77, 77, 255, 0.4);
}

.cart-btn .elementor-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(77, 77, 255, 0.7);
}

/* === ICON LIST ROW === */
.list-icon ul {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.list-icon li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfd2ea;
  font-weight: 500;
  font-size: 15px;
}

.list-icon svg {
  width: 22px;
  height: auto;
  fill: #fff;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.list-icon li:hover svg {
  transform: translateY(-3px);
  opacity: 1;
}

/* === GRAPH IMAGE === */
.banner-graph-img img {
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
  max-width: 90%;
  height: auto;

}

.banner-graph-img img:hover {
  transform: scale(1.02);
}


.feature-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #c8c8e0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .oteai-features {
    flex-direction: row;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .oteai-section {
    padding: 70px 30px;
  }

  .oteai-heading {
    font-size: 2rem;
  }

  .oteai-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    max-width: 90%;
  }
}


    .hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 30px;
      color: #d0d3e0;
    }

    .features, .steps {
      padding: 100px 60px;
      text-align: center;
    }

    .features h2, .steps h2 {
      color: #fff;
      margin-bottom: 20px;
      font-size: 2rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 25px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 25px rgba(77, 77, 255, 0.2);
    }

    .feature-card h3 {
      color: #fff;
      margin-bottom: 10px;
    }


  .steps {
    position: relative;
    background: url("img/Background.jpg") center/cover no-repeat;
    color: #222;
    z-index: 1;
  }

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7); /* White overlay to soften brightness */
  z-index: -1;
}
    

    .steps h2 {
      color: #111;
    }

    .step-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 40px;
    }

    .step {
      background: #f7f7f7;
      border-radius: var(--radius);
      padding: 20px 30px;
      margin: 15px;
      width: 200px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    /*
.pricing {
  background: linear-gradient(180deg, #101735, #0a0f24);
  color: #fff;
  text-align: center;
  padding: 100px 50px;
}

.pricing-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}


.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 50px;
  color: #b4b6ff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3a3f80;
  transition: 0.4s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4d4dff;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

 
.pricing-section {
    padding: 60px 20px;
    text-align: center;
    background: url("img/footer_bg.jpg") center/cover no-repeat;
}


.pricing-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}


.pricing-toggle-buttons {
    display: inline-flex;
    background: #ececec;
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.pricing-toggle-buttons button {
    padding: 10px 22px;
    border: none;
    border-radius: 40px;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}


.price-card {
    position: relative;
}

.price-card .badge {
    position: absolute;
    top: 5px;
    right: 2px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 5;
    transition: transform 0.25s ease;
}

.price-card:hover .badge {
    transform: scale(1.08);
}

.pricing-toggle-buttons button.active {
    background: linear-gradient(135deg, #7c3aed, #2563eb); 
    color: white;
}


.price-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}


.price-card {
    background: #fdfdfd;
    border-radius: 16px;
    width: 330px;
    padding: 25px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

@media (max-width: 768px) {
    .price-card {
    background: #fdfdfd;
    border-radius: 16px;
    width: 330px;
    height: 750px;
    padding: 25px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}
}

.price-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0px 15px 35px rgba(0,0,0,0.12);
}


.price-card img {
    width: calc(100% + 50px); 
    height: 180px;
    object-fit: cover;
    margin-left: -25px;    
    margin-right: -25px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-top: -25px;
    margin-bottom: 15px;
}


@media (max-width: 768px) {

  .price-card {
    padding: 0 !important;    
    border-radius: 16px;
  }

  .price-card img {
    width: 100%;
    height: auto;              
    object-fit: contain;       
    border-radius: 16px 16px 0 0;
    margin: 0;                 
  }

}



.price-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}


.price-card .details {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
}

.details-box {
  border: 2px solid #7c3aed; 
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  text-align: left;
}

@media (max-width: 768px) {
    .details-box {
  border: 2px solid #7c3aed; 
  padding: 18px 20px;
  margin: 10px;
  border-radius: 14px;
  background: #ffffff;
  text-align: left;
}
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}


.tick {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tick::before {
  content: "✔";
  font-size: 12px;
  color: white;
  font-weight: 700;
}


.img-annual { display: none; }

.plan { display: none; }
.plan.active { display: flex; }

.price { 
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 12px; 
}

.see-more {
  background: none;
  border: none;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
}

.more-details {
  display: none;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .price-cards {
    gap: 40px;
  }
} */

/* NEW PRICE CARD STYLE*/

 .ote-pricing {
  /* background: url("img/footer_bg.jpg") center/cover no-repeat;
  color: #fff; */
  text-align: center;
  padding: 100px 50px;
} 



/* Subtle overlay for readability */
/* .ote-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 0;
} */

.pricing-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.75); */
}

.pricing-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.pricing-container h2 {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.subtitle {
  color: #bbb;
  margin-bottom: 40px;
}

/* Toggle */
/* .pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  font-weight: 600;
}

.switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #333;
  border-radius: 30px;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  border-radius: 50%;
  top: 3px;
  left: 4px;
  transition: 0.3s;
}

.switch input:checked + .slider::before {
  transform: translateX(28px);
} */

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 50px;
  color: #b4b6ff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3a3f80;
  transition: 0.4s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4d4dff;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

 
.pricing-section {
    padding: 60px 20px;
    text-align: center;
    background: url("img/footer_bg.jpg") center/cover no-repeat;
}


.pricing-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}


.pricing-toggle-buttons {
    display: inline-flex;
    background: #ececec;
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.pricing-toggle-buttons button {
    padding: 10px 22px;
    border: none;
    border-radius: 40px;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

/* Table */
/* =========================
   MODERN PRICING TABLE UX
========================= */

/* ============================
   LUXURY FINTECH PRICING TABLE
============================= */

.pricing-table {
  margin-top: 60px;
}

/* TABLE CONTAINER */
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px;
  background: transparent;
}

/* HEADERS */
.pricing-table thead th {
  padding: 22px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7c3aed;
  background: linear-gradient(
    180deg,
    #1a1f33,
    #0f1324
  );
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* FEATURE COLUMN */
.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  color: #e5e7eb;
  font-weight: 600;
  background: linear-gradient(
    180deg,
    #111827,
    #0b1020
  );
  padding-left: 22px;
}

/* BASE CELL STYLE */
.pricing-table td {
  padding: 22px 14px;
  font-size: 0.95rem;
  color: #e5e7eb;
  background: linear-gradient(
    180deg,
    #0f172a,
    #0b1020
  );
  border-radius: 16px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ============================
   COLUMN IDENTITY (1&3 vs 2&4)
============================= */

/* Tier 1 & Tier 3 – Gold accent */
.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2),
.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4) {
  background: linear-gradient(
    180deg,
    #1a1f33,
    #0f1324
  );
  border: 1px solid rgba(245,211,122,0.15);
}

/* Tier 2 & Tier 4 – Cooler contrast */
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3),
.pricing-table th:nth-child(5),
.pricing-table td:nth-child(5) {
  background: linear-gradient(
    180deg,
    #0f172a,
    #020617
  );
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================
   RETURNS SUBTEXT
============================= */

.pricing-table small {
  display: block;
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-top: 6px;
  line-height: 1.45;
}

/* ============================
   ROW HOVER (PREMIUM FEEL)
============================= */

.pricing-table tbody tr:hover td {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.6),
    0 0 0 1px rgba(245,211,122,0.25);
}

/* ============================
   PRICE ROW (STRONG EMPHASIS)
============================= */

.pricing-table tbody tr:nth-last-child(2) td {
  font-size: 1.05rem;
  font-weight: 700;
  color: #7c3aed;
}

/* ============================
   CTA ROW
============================= */

.pricing-table tbody tr:last-child td {
  background: transparent;
  box-shadow: none;
  padding-top: 30px;
}

/* CTA BUTTON */
.pricing-table a.button-primary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #e5e7eb;
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  box-shadow:
    0 10px 30px rgba(245,211,122,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* CTA HOVER */
.pricing-table a.button-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 45px rgba(245,211,122,0.6);
}


.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}

.btn.highlight {
  box-shadow: 0 0 25px linear-gradient(135deg, #7c3aed, #2563eb);
}

/* Mobile */
.mobile-only {
  display: none;
}

 .tier-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tier-btn {
  padding: 10px 16px;
  border-radius: 20px;
  background: #222;
  color: #fff;
  border: none;
}

.tier-btn.active {
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  font-size:large;
  font: 800;
  color: #fff;
}

/* .tier-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0px;
  text-align: left;
}  */

.tier-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
  animation: fadeUp 0.4s ease;
}

.tier-card img {
    width: calc(100% + 43px); 
    height: 180px;
    object-fit: cover;
    margin-left: -22px;    
    margin-right: -22px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-top: -25px;
    margin-bottom: 15px;
}

.tier-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-card li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-size: 0.95rem;
}

.tier-card li:last-child {
  border-bottom: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media(max-width: 900px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .pricing-table {
    display: none !important;
  }
}




/* Subscribe Button */
/* .button-primary {
    display: inline-block;
    background: #4d4dff;
    padding: 12px 26px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
} */

/* .button-primary:hover {
    background: #3737d1;
} */


/* Hide one set by default */
.pricing-annual { display: none; }

.details {
  color: #d0d3e0;
  font-size: 0.95rem;
  margin: 15px 0 25px;
  line-height: 1.6;
}

/* Button */
.button-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb); /* Purple to Blue */
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4); /* soft glow */
  border: none;
  cursor: pointer;
}

/* Hover State */
.button-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #1d4ed8);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

/* Focus State */
.button-primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.4);
}

/* Optional active click effect */
.button-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/*Menu Btn*/
.button-primary3 {
  background: linear-gradient(135deg, #7c3aed, #2563eb); /* Purple to Blue */
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4); /* soft glow */
  border: none;
  cursor: pointer;
}

/* Hover State */
.button-primary3:hover {
  background: linear-gradient(135deg, #6d28d9, #1d4ed8);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

/* Focus State */
.button-primary3:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.4);
}

/* Optional active click effect */
.button-primary3:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* Button */
.button-primary-main {
  background: linear-gradient(135deg, #7c3aed, #2563eb); /* Purple to Blue */
  color: #fff;
  padding: 12px 40px;
  margin-top: 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4); /* soft glow */
  border: none;
  cursor: pointer;
}

/* Hover State */
.button-primary-main:hover {
  background: linear-gradient(135deg, #6d28d9, #1d4ed8);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

/* Focus State */
.button-primary-main:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.4);
}

/* Optional active click effect */
.button-primary-main:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .pricing {
    padding: 70px 25px;
  }

  .price-cards {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 90%;
  }
}


   
    footer {
      background: #06081a;
      text-align: center;
      padding: 25px;
      color: #999;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      header { padding: 20px 30px; }
      .hero h1 { font-size: 2.2rem; }
      .features, .pricing, .steps { padding: 60px 30px; }
    }

.smart-trading {
  background: url("img/Background2.jpg") center/cover no-repeat;
  padding: 100px 60px;
  font-family: "Inter", Arial, sans-serif;
  color: #222;
}

.smart-trading .intro-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.smart-trading h3 {
  color: #4d4dff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.smart-trading h1 {
  font-size: 2.2rem;
  color: #0a0f24;
  margin-bottom: 20px;
  line-height: 1.3;
}

.smart-trading p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}

.left-col {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers button and image horizontally */
  flex: 1 1 400px;
}


.left-col img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.button-primary-left-col {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  width: 200px;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.button-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

.right-col {
  flex: 1 1 500px;
}

.right-col h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #111;
}

.right-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-col li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.right-col li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.right-col img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-text {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
}

.feature-text strong {
  display: block;
  color: #0a0f24;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
    align-items: center;
  }

  .left-col img {
    max-width: 100%;
  }

  .right-col {
    text-align: left;
  }
}

.trader-cycle {
  position: relative;
  background: url("img/frustrated.png") center/cover no-repeat;
  padding: 120px 30px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.trader-cycle .overlay {
  background: rgba(10, 10, 20, 0.45); /* reduced opacity from 0.8 to 0.45 */
}


.cycle-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.cycle-container h2 {
  color: #ff4d4d;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cycle-container h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 60px;
  line-height: 1.2;
  font-weight: 800;
}

.cycle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

.cycle-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 160px;
}

.cycle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 77, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.cycle-card .cross {
  display: block;
  color: #ff4d4d;
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.cycle-card p {
  color: #f2f2f2;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .cycle-container h1 {
    font-size: 2rem;
  }

  .cycle-card {
    padding: 25px 18px;
  }
}



/* FAQ SECTION */
.faq-section {
  padding: 80px 20px;
  background: #fff7f7;
  font-family: "Inter", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
}

.faq-container {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

/* POPUP BOX */
.popup-box {
  background: url("img/footer_bg.jpg") center/cover no-repeat;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 35px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,0,0,.35);
  position: relative;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

.popup-box h2 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 800;
}

.popup-content h3 {
  margin-top: 20px;
  font-size: 18px;
  color: #ffd27f;
}

.popup-content p, 
.popup-content ul li {
  font-size: 15px;
  line-height: 1.6;
}

.popup-content ul {
  margin-left: 18px;
}

/* ============================= */
/*       TESTIMONIAL SECTION     */
/* ============================= */

.testimonials {
  background: url("img/footer_bg.jpg") center/cover no-repeat;
  padding: 100px 50px;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
  position: relative;
}

/* Subtle overlay for readability */
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 0;
}

.testimonials * {
  position: relative;
  z-index: 2;
}

.testimonials-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7c3aed, #24e0a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.testimonials-subtext {
  font-size: 1.1rem;
  color: #d9d9d9;
  margin-bottom: 50px;
}

/* Grid Layout */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  max-width: 330px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
}

/* Video Styling */
.testimonial-card video {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
  outline: none;
  background: #000;
}

.testimonial-card video::-internal-media-controls-download-button { display: none; }
.testimonial-card video::-webkit-media-controls-enclosure { overflow: hidden; }

/* Testimonial Text */
.testimonial-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-top: 8px;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .testimonial-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonials {
    padding: 70px 20px;
  }
}
/* ============================= */
/*  TESTIMONIAL SECTION ENDS     */
/* ============================= */

/* =========================== */
/*   WHATSAPP FLOATING WIDGET  */
/* =========================== */

.wa-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  animation: slideUp 0.5s ease-out;
}

/* Chat Bubble */
.wa-bubble {
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  animation: fadeIn 0.6s ease-out;
}

.wa-greeting {
  font-size: 13px;
  margin: 0;
  font-weight: 600;
  color: #363636;
}

.wa-cta {
  font-size: 15px;
  margin: 0;
  font-weight: 800;
  color: #24e0a4;
}

/* Typing animation */
.typing {
  display: inline-block;
  border-right: 2px solid #24e0a4;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 1.8s steps(20), blink .6s infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

/* WhatsApp Icon */
.wa-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #24e0a4;
  position: relative;
  transition: 0.3s ease;
}

.wa-icon svg {
  width: 32px;
  height: 32px;
}

/* Pulse Glow Ring */
.wa-pulse {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(36,224,164,0.18);
  animation: pulse 1.8s infinite ease-out;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.5; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

/* Hover effect */
.wa-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px #24e0a4);
}

/* Animations */
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

/* Mobile */
@media (max-width: 480px) {
  .wa-bubble {
    padding: 10px 14px;
  }
  .wa-icon {
    width: 50px;
    height: 50px;
  }
  .wa-icon svg {
    width: 28px;
    height: 28px;
  }
  .wa-pulse {
    width: 64px;
    height: 64px;
  }
}

