/* ======================================================
   OTE ACADEMY – OFFICIAL BRAND CSS (FULL)
   ====================================================== */

/* ===============================
   COLOR SYSTEM (OFFICIAL)
   =============================== */

:root {
  /* Core */
  --white: #ffffff;
  --black: #000000;

  /* Brand Colors */
  --cyan: #00FCFF;        /* Bright Cyan */
  --green: #3DD598;       /* Brand Green */
  --deep-green: #004B4B;  /* Dark Sea Green */

  /* Neutrals */
  --dark-1: #141413;
  --dark-2: #0b0b0b;

  /* Text */
  --text-light: #e9fdf8;
  --text-muted: #b6dcd3;
  --text-dark: #0b0b0b;

  /* Backgrounds */
  --bg-dark: #000000;
  --bg-soft: #0f1f1d;
  --bg-light: #f5fffc;

  /* Glass UI */
  --glass: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.12);
}

/* ===============================
   RESET & BASE
   =============================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
}

/* ===============================
   NAVBAR – OTE ACADEMY
   =============================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(10,15,36,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo img {
  height: 48px;
  margin-left: -40px; /* move left slightly */
}


/* Desktop Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: #e6ebf5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00fcff;
}

/* Login */
.nav-login {
  opacity: 0.85;
}

/* Enroll Button */
.nav-enroll {
  padding: 10px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00fcff, #3dd598);
  color: #000 !important;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,252,255,0.35);
}

/* ===============================
   MOBILE MENU
   =============================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,15,36,0.96);
  backdrop-filter: blur(18px);
  padding: 25px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Mobile CTA */
.mobile-enroll {
  margin-top: 18px;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00fcff, #3dd598);
  color: #000 !important;
  font-weight: 800;
  border-bottom: none;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .nav-logo img {
  margin-left: -20px; /* move left slightly */
}

  .menu-toggle {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}


/* ===============================
   BUTTONS
   =============================== */

.btn-primary,
.btn-hero-primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--black);
  padding: 14px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(0, 252, 255, 0.35);
  transition: all 0.35s ease;
}

.btn-primary:hover,
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 40px rgba(61, 213, 152, 0.6);
}

.btn-large {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ===============================
   HERO CAROUSEL
   =============================== */

.hero-carousel {
  position: relative;
  min-height: 99vh;
  overflow: hidden;
  background: radial-gradient(circle at top, var(--deep-green), var(--bg-dark) 70%);
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Background media */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

/* Overlay (VISIBLE BUT SOFT) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.65)
    ),
    radial-gradient(
      circle at top,
      rgba(0,252,255,0.18),
      rgba(0,0,0,0.9)
    );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px;
  text-align: center;
  animation: fadeUp 1.1s ease;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-content h1 span {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto 45px;
  color: var(--text-muted);
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===============================
   SECTIONS
   =============================== */

.section {
  padding: 100px 40px;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-dark);
}

.section-gradient {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-dark));
}

/* ===============================
   LAYOUT
   =============================== */

.container {
  max-width: 1100px;
  margin: auto;
}

.center {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* ===============================
   CARDS / GLASS UI
   =============================== */

.card,
.glass-box,
.result-card,
.cycle-card {
  background: var(--glass);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

/* ===============================
   FAQ
   =============================== */

.faq-item {
  margin-top: 20px;
}

.faq-question {
  width: 100%;
  padding: 18px;
  background: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
}

.faq-answer {
  
  padding: 18px;
  background: #eafdf8;
  color: var(--text-dark);
}

/* ===============================
   TRADER PAIN / CYCLE SECTION
   =============================== */

.trader-cycle {
  position: relative;
  padding: 130px 30px;
  background:
    radial-gradient(
      circle at top,
      rgba(0,252,255,0.12),
      rgba(0,0,0,0.85)
    ),
    url("img/frustrated_trader.jpg") center/cover no-repeat;
  color: var(--text-light);
}


.cycle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.65)
  );
}


.cycle-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.cycle-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.cycle-tag {
  display: inline-block;
  color: #ff4d4d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cycle-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cycle-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Cards */
.cycle-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

/* Card */
.cycle-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

/* Danger indicator */
.cycle-icon {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 14px rgba(255,77,77,0.7);
  flex-shrink: 0;
}

/* Text */
.cycle-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cycle-card p strong {
  color: var(--white);
  font-weight: 800;
}

/* Hover */
.cycle-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,77,77,0.6);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .cycle-cards {
    grid-template-columns: 1fr;
  }

  .cycle-header h2 {
    font-size: 2.1rem;
  }
}


/* ===============================
   FOOTER
   =============================== */

.footer {
  background: var(--dark-1);
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===============================
   ANIMATIONS
   =============================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 70px 25px;
  }
}

/* ===============================
   SMART TRADING – OTE ACADEMY
   =============================== */

.smart-trading {
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.75)
    ),
    url("img/Background2.jpg") center/cover no-repeat;
    padding: 110px 60px;
}

/* Make intro text pop */
.smart-trading .intro-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

/* Small top label */
.smart-trading h3 {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

/* Main heading */
.smart-trading h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 26px;
}

/* Paragraphs – VERY IMPORTANT */
.smart-trading p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
  
}


/* Layout */
.content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
}

/* ===============================
   LEFT COLUMN
   =============================== */

.left-col {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-col img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.button-primary-left-col {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--black);
  padding: 15px 42px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.35s ease;
  box-shadow: 0 0 30px rgba(0,252,255,0.35);
}

.button-primary-left-col:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 45px rgba(61,213,152,0.6);
}

/* ===============================
   RIGHT COLUMN
   =============================== */

.right-col {
  flex: 1 1 520px;
}

.right-col h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: var(--white);
}

/* Feature List */
.right-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Card */
.right-col li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  position: relative;
}

/* Subtle tally accent */
.right-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--cyan), var(--green));
  opacity: 0.7;
}

.right-col li:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/* Card Image */
.right-col img {
  width: 56px;
  height: 76px;
  min-width: 56px;
  object-fit: contain;
  border-radius: 15px;
}

/* Text */
.feature-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Heading bold, body normal */
.feature-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .smart-trading {
    padding: 80px 25px;
  }

  .content-row {
    flex-direction: column;
    gap: 60px;
  }

  .smart-trading h1 {
    font-size: 2rem;
  }

  .right-col h3 {
    text-align: center;
  }
}

/* ===============================
   OTE COURSE OUTLINE
   =============================== */

.ote-course-outline {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-dark));
  padding: 120px 30px;
  color: var(--text-light);
}

.outline-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.outline-tag {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.outline-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white);
}

.outline-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Accordion */
.outline-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.outline-item {
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.outline-title {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.outline-step {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--black);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.outline-content {
  display: none;
  padding: 0 30px 30px;
}

.outline-item.active .outline-content {
  display: block;
}

.outline-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.outline-content li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.outline-content li:last-child {
  border-bottom: none;
}

/* CTA */
.outline-cta {
  text-align: center;
  margin-top: 70px;
}

.btn-outline-primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--black);
  padding: 16px 46px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 35px rgba(0,252,255,0.4);
  transition: all 0.35s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 50px rgba(61,213,152,0.6);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .outline-header h2 {
    font-size: 2.1rem;
  }

  .outline-title {
    padding: 22px;
    font-size: 1.05rem;
  }

  .outline-content {
    padding: 0 22px 24px;
  }
}

/* ===============================
   TRUST & REVIEWS SECTION
   =============================== */

.ote-trust {
  padding: 120px 30px;
  background:
    radial-gradient(circle at top, rgba(0,252,255,0.14), rgba(0,0,0,0.88)),
    linear-gradient(180deg, #0f1f1d, #000000);
  color: var(--text-light);
}

.trust-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.trust-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.trust-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}

.trust-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 90px;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.stat-box h3 {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Reviews */
.reviews-wrapper {
  margin-bottom: 90px;
}

.reviews-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 35px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

/* Review Card */
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.review-stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.review-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
/* ===============================
   REVIEWS CAROUSEL
   =============================== */

/* ===============================
   REVIEWS CAROUSEL
   =============================== */

.reviews-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 26px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* Review Card */
.review-card {
  flex: 0 0 calc((100% - 52px) / 3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.review-stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.review-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

/* Tablet */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }
}


/* Awards */
.trust-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-awards img {
  height: 120px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.trust-awards img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-header h2 {
    font-size: 2.1rem;
  }
}

/* ===============================
   TRUSTED TOOLS & COMMUNITY
   =============================== 

.trusted-tools {
  padding: 100px 30px;
  background:
    radial-gradient(
      circle at top,
      rgba(0,252,255,0.18),
      rgba(245,248,250,1)
    ),
    linear-gradient(
      180deg,
      #f5f8fa,
      #eef2f5
    );
}

.tools-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header 
.tools-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.tools-header h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0a0f24;
  margin-bottom: 16px;
}

.tools-header p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Grid 
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card 
.tool-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Logos 
.tool-logo {
  height: 80px;
  margin-bottom: 22px;
  object-fit: contain;
}

.whatsapp-icon {
  height: 86px;
}

.puprime_logo,
.vps_logo {
  height: 86px;
  border-radius: 14px;
}

/* Card text 
.tool-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0a0f24;
  margin-bottom: 12px;
}

.tool-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Buttons 
.tool-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00fcff, #3dd598);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tool-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,252,255,0.35);
}

/* WhatsApp Button 
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* Responsive 
@media (max-width: 768px) {
  .tools-header h2 {
    font-size: 2rem;
  }
} */

 /* ===============================
   TRUSTED TOOLS & COMMUNITY
   ===============================  */

.trusted-tools {
  padding: 100px 30px;
  background:
    radial-gradient(circle at top, rgba(0,252,255,0.12), rgba(0,0,0,0.9)),
    linear-gradient(180deg, #0f1f1d, #000);
}

.tools-container {
  max-width: 1100px;
  margin: 0 auto;
}

.tools-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.tools-header h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.tools-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}


.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}


.tool-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}


.tool-logo {
  height: 60px;
  margin-bottom: 22px;
}

.whatsapp-icon {
  height: 84px;
}

.puprime_logo{
  height: 84px;
  border-radius: 12px;
}

.vps_logo{
  height: 84px;
  border-radius: 12px;
}

.tool-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.tool-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}


.tool-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tool-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,252,255,0.35);
}


.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #000;
}


@media (max-width: 768px) {
  .tools-header h2 {
    font-size: 2rem;
  }
} 

/* ===============================
   FAQ SECTION – OTE ACADEMY
   =============================== */

.faq-section {
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.75)
    ),
    url("img/Background2.jpg") center/cover no-repeat;
  padding: 110px 60px;
  color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.faq-header p {
  font-size: 1.05rem;
  color: #d0d6e5;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  line-height: 1.8; 
  transition: max-height 0.45s ease, padding 0.35s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 500px; /* large enough for content */
  padding: 0 26px 24px;
  background:
    radial-gradient(circle at top, rgba(0,252,255,0.12), rgba(0,0,0,0.9)),
    linear-gradient(180deg, #0f1f1d, #000);
  
}

/* PLUS ICON ROTATION */
.faq-question span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00fcff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 90px 25px;
  }

  .faq-header h2 {
    font-size: 2.1rem;
  }
}
/* ===============================
   FAQ SHOW MORE CONTROL
   =============================== */

/* Limit visible FAQs */
.faq-list.limited .faq-item:nth-child(n+6) {
  display: none;
}

/* Expanded state */
.faq-list.expanded .faq-item {
  display: block;
}

/* Button wrapper */
.faq-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Button */
.faq-more-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #00fcff;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-more-btn:hover {
  background: rgba(0,252,255,0.12);
  border-color: #00fcff;
  transform: translateY(-2px);
}

/* ===============================
   OTE ACADEMY FOOTER (MATCHED STYLE)
   =============================== */

.ote-footer {
  padding: 90px 30px 45px;
  background:
    radial-gradient(circle at top, rgba(0,252,255,0.1), rgba(0,0,0,0.9)),
    linear-gradient(180deg, #0f1f1d, #000);
  color: var(--white);
}

/* Layout */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand block */
.footer-brand {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer link groups */
.footer-links {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 26px;
  backdrop-filter: blur(10px);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

/* Enroll highlight */
.footer-enroll {
  font-weight: 800;
  color: var(--cyan);
}

/* Divider */
.footer-divider {
  max-width: 1100px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 55px auto 30px;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-copy {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===============================
   MODALS (MATCHING GLASS STYLE)
   =============================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  max-width: 720px;
  width: 90%;
  padding: 40px;
  color: var(--white);
  position: relative;
}

.modal-box h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 900;
}

.modal-box h3 {
  font-size: 1.05rem;
  margin-top: 22px;
  color: var(--cyan);
}

.modal-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--cyan);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand,
  .footer-links {
    text-align: center;
  }
}

/* =========================== */
/*   WHATSAPP FLOATING WIDGET  */
/* =========================== */

.wa-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  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;
  }
}

