* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f4f6f8;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.site-header {
  background: #2f2f2f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 75px;      /* desktop size */
  display: block;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .logo img {
    height: 53px;   /* mobile size */
    border-radius: 50%;
  }
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

.primary {
  background: #0d6efd;
  color: #fff;
}

.outline {
  border: 1px solid #0d6efd;
  color: #0d6efd;
}

.hero-message {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  width: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.75)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.center-hero {
  max-width: 850px;
}

.hero-message h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  font-size: 1.05rem;
  color: #e5e7eb;
  margin: 10px 0;
}

.benefits li::before {
  content: "✔ ";
  color: #0d6efd;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-message h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .benefits li {
    font-size: 0.95rem;
  }
}

.hero-cta {
  margin-top: 35px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #0d6efd, #003a8f);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800; /* BOLD & PROFESSIONAL */
  letter-spacing: 0.6px; /* Executive look */
  text-transform: uppercase;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #003a8f, #0d6efd);
}

@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
    padding: 14px 22px;
    letter-spacing: 0.5px;
  }
}

/* ===== Process Section Fix ===== */

.process-section {
    background: #f4f7f9;
    padding: 80px 20px;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
    margin-top: 40px;
}

/* Step Card */
.step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step h5 {
    font-weight: 600;
    margin-top: 15px;
}

.step p {
    font-size: 14px;
    color: #666;
}

/* Make process cards clickable */
.step-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.step-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.15);
}

.step-link:hover h5 {
    color: #007bff;
}

.step-link:hover .icon {
    transform: scale(1.1);
}

.step .icon {
    transition: transform 0.3s ease;
}

/* Desktop & Laptop */
@media (min-width: 992px) {
    .process-steps {
        flex-wrap: nowrap;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .process-steps {
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 90%;
        max-width: 340px;
    }
}

.about {
  background: #ffffff;
  padding: 80px 20px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.4rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

.about-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    margin-top: 25px;
  }

  .about-image img {
    max-width: 90%;
  }
}


.plans-title {
    text-align: center;
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 40px;
    color: #222;
    
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
}
.plan-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.plan-card .rate {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 8px;
}

.plan-card .rate small {
  font-size: 0.9rem;
  font-weight: 500;
  color: #777;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.plan-card ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #444;
  position: relative;
  padding-left: 18px;
}

.plan-card ul li::before {
  content: "✓";
  color: #0d6efd;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.plan-card button {
  margin-top: 15px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0d6efd, #003a8f);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-card button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #003a8f, #0d6efd);
}
.plan-card.gold {
    border-top: none;
}
@media (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 320px;
  }
}
/* Investment Plans */
.plans {
    padding: 70px 20px;
    background: #f9f9f9;
}

/* Title */
.plans-title {
    text-align: center;
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #222;
}

/* Desktop: horizontal */
.plan-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Card */
.plan-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 260px;
    padding: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Rate */
.plan-card .rate {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 15px 0;
}

/* List */
.plan-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-card ul li {
    margin: 6px 0;
    font-size: 0.95rem;
}

/* Button link */
.plan-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 22px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #0056b3;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .plan-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plan-card {
        width: 90%;
        max-width: 360px;
    }
}
.testimonials {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #222;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #0d6efd;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #2f2f2f;
    width: 100%;
    padding: 10px 0;
  }

  .nav-menu.open {
    display: flex;
  }
}

/* TradingView Section */
.tradingview-section {
    padding: 70px 20px;
    background: #f9f9f9;
    text-align: center;
}

.tv-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

.tradingview-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #0e0e0e;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

#tradingview_chart {
    width: 100%;
    height: 500px;
}

/* Mobile */
@media (max-width: 768px) {
    #tradingview_chart {
        height: 360px;
    }
}


/* WHY US */
.why-us {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.why-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

.why-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 50px;
}

.why-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d6efd;
}

.why-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #ddd;
    padding: 60px 20px 20px;
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.site-footer h4 {
    margin-bottom: 15px;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #bbb;
    text-decoration: none;
}

.site-footer a:hover {
    color: #0d6efd;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#backToTop:hover {
    background: #0b5ed7;
}