:root {
    --gold: #c7921e;
    --dark: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* BLOCK SCROLL WHILE LOADING */
body {
  overflow: hidden;
}



.slider {
    height: 520px;
    margin-top: 0%;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: translateX(100%);   /* start from RIGHT */
  transition: transform 0.8s ease-in-out;
}

.slide.active {
  transform: translateX(0);
  z-index: 2;
}

/* PREVIOUS SLIDE moves LEFT */
.slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .15));
}

.slide-content {
    position: absolute;
    left: 60px;
    bottom: 120px;
    color: #fff;
    max-width: 560px;
}

.slide-content h1 {
    font-size: 42px;
    font-weight: 600;
}

.underline {
    width: 520px;
    height: 5px;
    background: var(--gold);
    margin: 14px 0;
    border-radius: 20px;
}

.arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    z-index: 10;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow.left {
    left: 24px;
}

.arrow.right {
    right: 24px;
}

.dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10; /* ✅ FIX */
}


.dot {
    width: 10px;
    height: 4px;
    background: #bbb;
    border-radius: 10%;
}

.dot.active {
    background: #fff;
    width: 25px;
}

/* ================= SLIDER RESPONSIVE ================= */

/* Large tablets */
@media (max-width: 1200px) {
  .slide-content {
    left: 40px;
    bottom: 100px;
    max-width: 480px;
  }

  .slide-content h1 {
    font-size: 34px;
  }

  .underline {
    width: 360px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .slider {
    height: 420px;
  }

  .slide-content {
    left: 30px;
    bottom: 90px;
    max-width: 420px;
  }

  .slide-content h1 {
    font-size: 30px;
  }

  .underline {
    width: 280px;
  }

  .arrow {
    width: 40px;
    height: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .slider {
    height: 340px;
    margin-left: 6px;
    margin-right: 6px;
    border-radius: 12px;
  }

  .slide-content {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
  }

  .slide-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .underline {
    width: 180px;
    margin: 12px auto;
  }

  .arrow {
    width: 36px;
    height: 36px;
    top: 50%;
  }

  .arrow.left {
    left: 14px;
  }

  .arrow.right {
    right: 14px;
  }

  .dots {
    bottom: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .slider {
    height: 380px;
  }

  .slide-content h1 {
    font-size: 20px;
  }

  .underline {
    width: 140px;
    height: 4px;
  }

  .dot {
    width: 8px;
    height: 4px;
  }

  .dot.active {
    width: 20px;
  }
}




/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 60px 20px;
    background: #fff;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    gap: 80px;
  }  
  
  .about-image img {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
  }
  
  
  .about-image img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .about-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  
  .about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 32px;
  }
  
  .about-btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
  }
  
 /* ================= ABOUT SECTION RESPONSIVE ================= */

/* Large tablets */
@media (max-width: 1200px) {
  .about-container {
    gap: 50px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15.5px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-image img {
    margin: auto;
    width: 320px;
    height: 320px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    line-height: 1.8;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 16px;
  }

  .about-image img {
    width: 260px;
    height: 260px;
  }

  .about-content h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .about-content p {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .about-btn {
    padding: 11px 24px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-image img {
    width: 220px;
    height: 220px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

  




  /* ================= SERVICES SECTION ================= */

.services-section {
    background: #f2f3f3;
    padding: 10px 40px;
  }
  
  .services-container {
    max-width: 1200px;
    margin: auto;
  }
  
  /* HEADER */
  .services-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .services-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .services-header p {
    max-width: 720px;
    margin: auto;
    font-size: 16px;
    color: #555;
  }
  
  .services-line {
    display: block;
    width: 160px;
    height: 8px;
    background: #d39a1c;
    border-radius: 20px;
    margin: 18px auto 0;
  }
  
  /* GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* CARD */
  .service-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 2px solid transparent;
    text-align: center;
  }
  
  /* HOVER EFFECT (IMPORTANT PART) */
  .service-card:hover {
    border-color: #f1c232;
    box-shadow:
      0 0 0 8px rgba(241,194,50,0.25),
      0 14px 30px rgba(0,0,0,0.15);
    transform: translateY(-6px);
  }
  
  .service-card h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
  }
  
  .service-card p {
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
  }
  
  /* ICONS */
  .service-icons {
    display: flex;
    align-items: center;
    justify-content: center; 
  }
  
  .service-icons img {
    width: 48px;
  }
  
  .service-icons .circle {
    width: 40px;
    height: 40px;
    border: 2px solid #c58a16;
    border-radius: 50%;
  }
  
  /* BUTTON */
  .services-btn {
    text-align: center;
    margin-top: 60px;
  }
  
  .services-btn a {
    background: #c58a16;
    color: #000;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .services-btn a:hover {
    background: #b07a10;
  }
  
/* ================= SERVICES SECTION RESPONSIVE ================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .services-header h2 {
    font-size: 32px;
  }

  .services-header p {
    font-size: 15.5px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .services-section {
    padding: 50px 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .services-header h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 45px 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-header h2 {
    font-size: 26px;
  }

  .services-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-line {
    width: 120px;
    height: 6px;
  }

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

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

  .services-btn {
    margin-top: 40px;
  }

  .services-btn a {
    padding: 12px 26px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .services-header h2 {
    font-size: 24px;
  }

  .service-icons img {
    width: 42px;
  }

  .service-card {
    padding: 32px 22px;
  }
}





/* ================= WHAT WE DO ================= */

.what-we-do {
  padding: 20px 40px;
  text-align: center;
}

/* TITLE */
.what-we-do h2 {
  font-size: 36px;
  font-weight: 700;
}

.section-line {
  display: block;
  width: 120px;
  height: 6px;
  background: #d39b13;
  margin: 14px auto 60px;
  border-radius: 4px;
}

/* CARDS GRID */
.cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD BASE */
.what-we-do-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 0 20px;
  height: 140px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: box-shadow 0.35s ease;
}

/* ICON */
.card-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

/* TITLE */
.what-we-do-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

/* GLOW EFFECT */
.what-we-do-card:hover {
  box-shadow:
    0 0 0 6px rgba(211, 155, 19, 0.15),
    0 18px 40px rgba(211, 155, 19, 0.35);
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  background: #d39b13;
  color: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  border-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.what-we-do-card:hover .card-overlay {
  transform: translateY(0);
}

.card-overlay p {
  font-size: 16px;
  line-height: 1.6;
}



/* ================= CTA ================= */
.wwd-cta {
  margin-top: 20px;
  padding: 40px 20px; /* outer container padding */
  border-radius: 18px;
  color: #fff;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("./assets/gold_bg.png") center / cover no-repeat fixed;

  align-items: center;
  justify-content: center;
}

/* CONTENT WRAPPER */
.cta-content {
  text-align: center;
  margin: 0;
}

/* TITLE */
.cta-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1rem;
}

/* LINE */
.cta-line {
  display: block;
  width: 660px;
  max-width: 100%;
  height: 6px;
  background: #f1c232;
  border-radius: 10px;
  margin: 18px auto 24px;
}

/* TEXT */
.cta-content p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 34px;
  font-size: 16px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #c58a16;
  color: #000;
  font-weight: 600;
  border-radius: 14px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #b07a10;
  transform: translateY(-2px);
}

/* ================= WHAT WE DO RESPONSIVE ================= */

/* Large tablets */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .what-we-do h2 {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .what-we-do {
    padding: 60px 24px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .what-we-do-card {
    height: 150px;
  }

  .card-overlay p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .what-we-do {
    padding: 50px 18px;
  }

  .what-we-do h2 {
    font-size: 26px;
  }

  .section-line {
    width: 90px;
    height: 5px;
    margin-bottom: 40px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .what-we-do-card {
    height: 160px;
    padding: 0 18px;
  }

  .what-we-do-card h3 {
    font-size: 14px;
  }

  .card-overlay {
    padding: 22px;
    text-align: center;
  }

  .card-overlay p {
    font-size: 14.5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .what-we-do h2 {
    font-size: 24px;
  }

  .what-we-do-card {
    height: 170px;
  }
}


/* ================= CTA RESPONSIVE ================= */

@media (max-width: 992px) {
  .cta-content h3 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15.5px;
  }

  .cta-line {
    width: 420px;
  }
}

@media (max-width: 768px) {


  .cta-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .cta-line {
    width: 260px;
    height: 5px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cta-content h3 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 14.5px;
  }
}





/* ================= GOLD PRICE ================= */

.gold-price {
  padding: 20px 20px;
  text-align: center;
  background: #fff;
}

.gold-price h2 {
  font-size: 36px;
  font-weight: 700;
}

/* LAYOUT */
.gold-price-wrapper {
  max-width: 1300px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 1.45fr;
  gap: 50px;
}

/* ================= LEFT TABLE ================= */

.gold-table {
  background: #f1f2f4;
  border-radius: 14px;
  overflow: hidden;
}

.gold-table-head {
  display: grid;
  grid-template-columns: 60px 1.6fr 1.2fr 0.6fr 1fr;
  padding: 18px 22px;
  font-weight: 600;
  color: #555;
  background: #eef0f2;
}

.gold-row {
  display: grid;
  grid-template-columns: 60px 1.6fr 1.2fr 0.6fr 1fr;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
}

.gold-row img {
  width: 32px;
}

.gold-row strong {
  font-weight: 700;
}

/* BUY BUTTON */
.gold-row button {
  justify-self: end;
  background: #c58a16;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.gold-row button:hover {
  background: #b07a10;
}

/* ================= RIGHT CHART ================= */

.gold-chart {
  background: #fff;
  border-radius: 14px;
  padding: 30px 30px 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  text-align: left;
}

.gold-chart h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* CHART MOCK (same visual as image) */
.chart-box {
  height: 380px;
  border-left: 2px solid #cfcfcf;
  border-bottom: 2px solid #cfcfcf;
  position: relative;
}


/* ================= GOLD PRICE RESPONSIVE ================= */

/* Large tablets */
@media (max-width: 1200px) {
  .gold-price-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gold-price h2 {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .gold-price {
    padding: 60px 20px;
  }

  .gold-price-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* TABLE SCROLL */
  .gold-table {
    overflow-x: auto;
  }

  .gold-table-head,
  .gold-row {
    min-width: 680px;
  }

  .gold-chart {
    padding: 26px;
  }

  .chart-box {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gold-price h2 {
    font-size: 26px;
  }

  .gold-price-wrapper {
    margin-top: 40px;
    gap: 30px;
  }

  .gold-chart h3 {
    font-size: 20px;
  }

  .chart-box {
    height: 280px;
  }

  /* BUTTON */
  .gold-row button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gold-price {
    padding: 50px 14px;
  }

  .gold-price h2 {
    font-size: 24px;
  }

  .gold-chart {
    padding: 20px;
  }

  .chart-box {
    height: 240px;
  }
}


/* ================= GOLD TREND ================= */
.gold-trend-section {
  padding: 60px 40px;
  background: #fff;
}

.trend-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.trend-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .gold-trend-section {
    padding: 40px 16px;
  }

  .trend-title {
    font-size: 20px;
  }
}
