:root {
  --green: #1f4f3b;
  --blue: #1fa2ff;
  --gold: #cfa670;
    --bg:#0b1220;
  --card:rgba(255,255,255,0.06);
  --accent:#c9a24d;
  --accent-soft:#e4c97a;
  --secondary:#3a4f7a;
  --text:#f8fafc;
  --muted:#cbd5e1;
}


body {
  background: var(--bg);
  color: var(--text);
}
/* Body text */
 h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif !important;
  }
  body, p, a {
    font-family: 'Inter', sans-serif !important;
  }

/* =========================
   MODERN HERO SECTION
========================= */

.hero-modern {
  position: relative;
  min-height: 100vh;
  /* background: linear-gradient(180deg, #0b1220, #0e1830); */
   
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 85px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,77,0.12), transparent 40%),
    linear-gradient(135deg, rgba(11,18,32,0.95), rgba(11,18,32,0.75));
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.hero-tag {
  display: inline-block;
  background: rgba(201,162,77,0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

/* CTA BUTTONS */
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 18px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg);
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201,162,77,0.4);
}

.hero-btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* RIGHT IMAGE STACK */
.hero-images {
  position: relative;
  height: 520px;
}

.hero-img {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IMAGE POSITIONS */
.img-main {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}

.img-top {
  width: 60%;
  height: 45%;
  top: -30px;
  left: -60px;
}

.img-bottom {
  width: 55%;
  height: 40%;
  bottom: -30px;
  left: -40px;
}

/* MOBILE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-images {
    height: 420px;
  }

  .img-top,
  .img-bottom {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}


/* MAIN SECTION */
.about-main {
  /* background: var(--bg); */
    background: linear-gradient(180deg, #0b1d26, #020c12) !important;
  padding: 80px 0;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-title span {
  color: var(--accent);
}

.about-main p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* HIGHLIGHT */
.about-highlight {
  background: var(--card);
  border-left: 4px solid var(--accent);
  padding: 18px;
  margin: 26px 0;
  border-radius: 6px;
}

.about-highlight strong {
  color: var(--text);
}

.about-highlight p {
  margin: 6px 0 0;
}

/* CONTACT */
.about-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.about-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.about-mail {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 500;
}

.about-mail:hover {
  text-decoration: underline;
}

/* IMAGE */
.about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
