/* Global Access Mining Styles - Mobile Responsive */

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

html, body {
  overflow-x: hidden;
}


body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  min-height: 10vh;
  height: auto;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.tradingview-widget-container {
  display: block !important;
  overflow: visible !important;
  z-index: 9999 !important;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-placeholder {
  width: 5px;
  height: 5px;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: #666;
  text-align: center;
}



.nav-brand h1 {
  color: #0A2443;
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #8c2525;
}

.btn-login,
.btn-register {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
}

.btn-login {
  background: transparent;
  border: 1px solid #8c2525;
  color: #8c2525;
}

.btn-register {
  background: linear-gradient(135deg, #a62d2d, #8c2525);
  color: white;
  border: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0A2443;
  cursor: pointer;
}

/* about Section */
.about-section {
    background: white;
}

.about-section .container {
    background: white;
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/home.png")
    center / cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 60px;
  color: #ffd700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.hero-description {
   font-family: "Segoe UI", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.btn-get-started {
  display: inline-block;
  background: linear-gradient(135deg, #401111, #A62D2D);
  color: white;
  padding: 7px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 20px;
  width: 160px;
  height: 40px;
  text-align: left;
  line-height: 23px;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-wrapper {
  display: flex;
  justify-content: center;
}

.btn-get-started:hover {
  transform: translateY(-2px);
}

/* Mission Section */
.mission {
  padding: 2rem 0;
  background: #f8f9fa;
}

.mission-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #8c2525;
  margin-bottom: 2rem;
  text-align: center;
}

.mission-text {
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 1rem;
  max-width: 1200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats {
  background: #8430304D;
  padding: 3rem 0;
  width: 100%;
  max-width: 100%;
  height: 249px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 2rem;
}

.stat-number {
  font-family: "Roboto", sans-serif;
  font-size: 39px;
  font-weight: normal;
  color: white;
  margin-bottom: 0.5rem;
   background: linear-gradient(180deg, #3830A7, #F0DD07);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: normal;
  background: linear-gradient(180deg, #3830A7, #F0DD07);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Services Section */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: auto;
  height: auto;
  border-radius: 5px;
}

.service-card h3 {
  color: #8c2525;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  color: #8c2525;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-card h3 {
  color: #8c2525;
  margin-bottom: 1rem;
}

/* Plans Section */
.plans {
  padding: 4rem 0;
}

.plans h2 {
  text-align: center;
  color: #8c2525;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.plans > .container > p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: #EAC5C5;
  border: 1px solid black;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  color: #8c2525;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.plan-profit {
  font-size: 3rem;
  font-weight: bold;
  color: #a62d2d;
  margin-bottom: 0.5rem;
}

.plan-details {
  margin: 1.5rem 0;
  text-align: left;
}

.plan-select {
  background: #D9D9D9;
}

.plan-details p {
  margin-bottom: 0.5rem;
}

.btn-invest {
  display: inline-block;
  background: linear-gradient(135deg, #a62d2d, #8c2525);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.3s;
  width: 100%;
}

.btn-invest:hover {
  transform: translateY(-2px);
}

/* Calculator Section */
.calculator {
  padding: 4rem 0;
  background: #33363F;
}

.calculator-card {
  background: white;

}

.calculator h2 {
  text-align: center;
  color: #8c2525;
  font-size: 2.5rem;
}

.calculator p {
  font-size: 13px;
  font-style: italic;
  text-align: center;
  color: #A62D2D;
  margin-bottom: 1rem;
}

.calculator > .container > p {
  text-align: center;
  margin-bottom: 2rem;
}

.calculator-form {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.btn-calculate {
  width: 100%;
  background: linear-gradient(135deg, #a62d2d, #8c2525);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-calculate:hover {
  transform: translateY(-2px);
}

.calculator-result {
  font-size: 14px;
  padding-bottom: 2rem;
}

.calculator-result p {
  margin-bottom: 0.5rem;
}

.certificate {
    text-align: center;
    padding: 2rem 0;
  }

  .certificate h2 {
    color: #8c2525;
    margin-bottom: 1rem;
  }

.certificate p {
    font-size: 16px;
    color: #333;
    margin-bottom: 1rem;
    font-style: italic;
  }
.certificate img {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
  }

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer p {
 text-align: start;
  margin-top: 1rem;
  font-size: 14px;
  color: white;
}


.footer-links a:hover {
  color: #8c2525;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {

  .header {
    height: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

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

  .hero {
    margin-top: 70px;
    min-height: 55vh;
    padding: auto;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 20px;
    text-align: start;
  }

  .hero-description {
    font-size: 15px;
    text-size-adjust: 90%;
    text-align: start;
  }

  .btn-get-started {
    width: 150px;
    font-size: 15px;
  }

  .button-wrapper {
    display: flex;
    justify-content: flex-start;
    padding-left: 30px;
    padding-bottom: 40px;
  }

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

  .mission-text {
    font-size: 13px;
    
  }

  .stats {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
  }

  .stats-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-cardp p {
    font-size: 14px;
  }

  .features h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plans h2 {
    font-size: 2rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-card {
    padding: 1.5rem;
    background-color: #EAC5C5;
    font-size: 14px;
  }

  .calculator h2 {
    font-size: 1.3rem;
  }

  .calculator p {
    font-size: 12px;
    font-style: italic;
    text-align: center;
    padding-top: 0;
    color: #A62D2D;
  }

  .calculator-form {
    padding: 0 1rem;
  }

  .calculator-result {
    margin: 0 1rem;
  }
  
  .certificate {
    text-align: center;
    padding: 2rem 0;
  }

  .certificate h2 {
    color: #333;
    margin-bottom: 1rem;
  }

  .certificate p {
    font-size: 14px;
    color: #8c2525;
    margin-bottom: 1rem;
    font-style: italic;
  }

  .certificate img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }


  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

    .footer-section h3,
    .footer-section h4 {
      color: white;
      margin-bottom: 1rem;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .footer-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: #8c2525;
    }
    
    .footer p {
      text-align: start;
      margin-top: 1rem;
      font-size: 14px;
      color: white;}
}

@media (max-width: 480px) {
 

  .nav-brand h1 {
    font-size: 15px;
    padding-left: 5px;
  }

  .logo-placeholder {
    width: 4px;
    height: 4px;
    font-size: 2px;
  }

  .hero-title {
    font-size: 30px;
    margin-top: 40px;
    text-align: start;
  }

  .hero-description {
    font-size: 20px;
    text-align: start;
  }

  .mission-title {
    font-size: 36px;
    margin-top: 5px;
    font-weight: 700;
  }

  .mission-text {
    font-size: 17px;
  }

  .stat-number {
    font-size: 28px;
  }

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

  .plan-profit {
    font-size: 2.5rem;
  }

  .service-card,
  .feature-card,
  .plan-card {
    padding: 1rem;
  }

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
