/* ===== Global Reset ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
/* For Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.livePrice h1 p {
        font-size: 30px;
    font-weight: 600;
    color: red;
    line-height: 1.2;
    margin-bottom: 15px;
    }

  .gst {
    font-size: 16px !important;
    font-weight: 400 !important;
    color:#333 ;
    font-family: 'Times New Roman', Times, serif;
  }

/* ===== Banner Section ===== */
.sec-banner {
  background-color: #fff;
  padding: 100px 0;
}

.main-cont {
  text-align: left;
}

.main-cont h1 {
  font-size: 46px;
  font-weight: 800;
  color: #012b55;
  line-height: 1.2;
  margin-bottom: 15px;
}

.main-cont p {
  font-size: 18px;
  color: #1c3c57;
  margin-bottom: 8px;
}

.headerBtns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.headerBtns .btn {
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #d4af37;
  color: #fff;
  border: none;
}



/* ===== Right Side Box ===== */
.main-cont-2 {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-cont-2:hover {
  transform: translateY(-5px);
}

/* ===== About Section ===== */
.aboutUs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #012b55;
}

/* ===== Why Choose Us ===== */
.header2 {
  font-size: 36px;
  font-weight: 700;
  color: #0d6efd;
  text-align: center;
  margin-bottom: 30px;
}

.choose-card {
  margin-bottom: 25px;
  text-align: center;
  transition: all 0.3s ease;
}
.choose-card h5 {
  color: rgb(55, 52, 52);
}

.choose-card p {
  color: #555;
}

.choose-card:hover {
  transform: translateY(-5px);
}

/* ===== Insights Section ===== */
.insights-section {
  background: #ffffff;
  padding: 60px 0;
}

.insights-header h2 {
  font-weight: 700;
  font-size: 32px;
 color: #0d6efd;
  margin-bottom: 20px;
}

.insight-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
  padding-bottom: 20px;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 35px rgba(0,0,0,0.15);
}

.insight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.insight-content {
  padding: 20px;
}

.insight-content h6 {
  font-size: 18px;
  font-weight: 700;
  color: #0d235e;
  margin-bottom: 10px;
}

.insight-content p {
  font-size: 14px;
  color: #5a6575;
  min-height: 85px;
}

.insight-btn {
  font-size: 14px;
  font-weight: 600;
  color: #00b894;
  text-decoration: none;
  transition: 0.2s;
}

.insight-btn:hover {
  color: #007a5e;
}

@media (max-width: 768px) {
  .insight-card img {
    height: 200px;
  }
  .insight-content p {
    min-height: auto;
  }
}

/* ===== Contact Section ===== */
.contact-container {
  background-color: #ffffff;
  padding: 50px 20px;
}

.contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
}

.form-control {
  background-color: #dae0fe;
  border: none;
}

.submit-btn {
  background-color: #e2bb5d;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #c49f48;
}

/* ===== Footer ===== */
footer {
  color: #012b55;
  padding: 40px 20px;
}

footer h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

footer a:hover {
  color: blue;
}
.main-cont-2 {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .gold-toggle {
      display: flex;
      justify-content: center;
      background: #f2f2f2;
      border-radius: 50px;
      padding: 5px;
      margin: 20px auto;
      width: fit-content;
    }

    .gold-toggle button {
      border: none;
      background: transparent;
      padding: 6px 20px;
      border-radius: 50px;
      font-weight: 600;
      color: #555;
      transition: 0.3s;
    }

    .gold-toggle button.active {
      background: linear-gradient(to right, #f6d365, #fda085);
      color: #fff;
    }

    .converter-input {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fafafa;
      border-radius: 8px;
      padding: 10px 15px;
      border: 1px solid #eee;
    }

    .converter-input input {
      border: none;
      background: transparent;

      outline: none;
      font-size: 1.2rem;
    }

    .quick-btns button {
      border: 1px solid #ddd;
      background: #fff;
      border-radius: 8px;
      margin: 5px;
      font-weight: 500;
      transition: 0.2s;
    }

    .quick-btns button:hover {
      background: #f7f1e3;
    }

    .buy-gold-btn {
      width: 100%;
      background: linear-gradient(to right, #f6d365, #fda085);
      border: none;
      border-radius: 10px;
      padding: 12px;
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
      margin-top: 15px;
    }

    .login-box {
      margin-top: 20px;
      text-align: center;
      font-size: 0.9rem;
    }

    .login-box a {
      color: #333;
      font-weight: 600;
      border: 1px solid #d4af37;
      padding: 5px 15px;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s;
    }

    .login-box a:hover {
      background: #d4af37;
      color: #fff;
    }

    .tab-header {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .tab-header h5 {
      font-weight: 600;
      cursor: pointer;
      padding-bottom: 5px;
    }

    .tab-header h5.active {
      border-bottom: 3px solid #d4af37;
      color: #d4af37;
    }

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .main-cont {
    text-align: center;
  }

  .main-cont h1 {
    font-size: 36px;
  }

  .main-cont-2 {
    margin-top: 40px;
  }

  .aboutUs {
    flex-direction: column;
    text-align: center;
  }

  .headerBtns {
    justify-content: center;
  }

  .choose-card {
    margin-bottom: 20px;
  }

  .contact-container {
    text-align: center;
  }
}

/* ===== MOBILE (≤576px) ===== */
@media (max-width: 576px) {
  .sec-banner {
    padding: 60px 20px;
    text-align: center;
  }

  .main-cont h1 {
    font-size: 26px;
  }

  .main-cont p {
    font-size: 16px;
  }

  .headerBtns {
   
    align-items: center;
    gap: 10px;
  }

  .main-cont-2 {
    margin-top: 30px;
    padding: 20px;
  }

  .choose-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .header2 {
    font-size: 26px;
  }

  .insight-card {
    margin-bottom: 15px;
  }

  .about-us h2 {
    font-size: 22px;
  }

  .contact-form {
    padding: 15px;
  }

  .submit-btn {
    font-size: 16px;
  }

  footer {
    text-align: center;
  }

  footer h1 {
    font-size: 1.4rem;
  }

  footer p, footer a {
    font-size: 0.9rem;
  }
  @media (max-width : 450px) {
    .converter-input input {
      width: 100%;
      font-size:14px;
    }
  }
}
