:root {
  --indigo: #111827;
  --deep: #07111f;
  --ivory: #f7efe2;
  --sand: #eadfce;
  --gold: #c9a35d;
  --copper: #8b4c37;
  --text: #26221d;
  --muted: #6c6256;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.6;
}
h1,
h2,
h3,
.brand,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(12px);
  color: var(--ivory);
  border-bottom: 1px solid rgba(201, 163, 93, 0.22);
}
.brand {
  color: var(--gold);
  font-size: 1.55rem;
  letter-spacing: 0.09em;
}
.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.nav a:hover {
  color: var(--gold);
}
.menu {
  display: none;
  color: var(--gold);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 7vw 5rem;
  color: #fff;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(7, 17, 31, 0.6), rgba(7, 17, 31, 0.75)),
    url("../image/main-bg.webp") center center / cover no-repeat,
    radial-gradient(
      circle at 72% 34%,
      rgba(201, 163, 93, 0.22),
      transparent 24%
    ),
    linear-gradient(
      110deg,
      rgba(7, 17, 31, 0.96),
      rgba(17, 24, 39, 0.72),
      rgba(7, 17, 31, 0.52)
    ),
    linear-gradient(135deg, #1b2540, #07111f);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 16% 9% 8% 54%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 246, 218, 0.9) 0 2%,
    rgba(201, 163, 93, 0.5) 3% 8%,
    rgba(172, 73, 130, 0.27) 9% 28%,
    transparent 55%
  );
}
.hero:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 310px;
  left: 74%;
  top: 25%;
  background: linear-gradient(
    transparent,
    rgba(255, 246, 218, 0.9),
    rgba(201, 163, 93, 0.6),
    transparent
  );
  box-shadow: 0 0 34px rgba(201, 163, 93, 0.8);
  opacity: 0.75;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto; /* or unset */
  }

  .hero::after {
    display: none;
    content: none;
  }
  .hero::before {
    display: none;
    content: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.mantra {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}
h1 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  margin: 0 0 1.35rem;
}
.hero p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 660px;
  color: #f3ead8;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.35rem;
  background: var(--gold);
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.35s ease;
}

/* Primary Button Hover */
.btn:hover {
  background: #b88a3d; /* Dark Gold */
  color: #fff;
  border-color: #b88a3d;
}

/* Secondary Button */
.btn.secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(201, 163, 93, 0.65);
  margin-left: 0.7rem;
}

/* Secondary Hover */
.btn.secondary:hover {
  background: #f7efe2; /* Ivory */
  color: #07111f; /* Dark */
  border-color: #f7efe2;
}
section {
  padding: 6rem 7vw;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.center {
  text-align: center;
}
.section-title {
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  margin: 0.25rem 0 1rem;
}
.lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.16rem;
}
.pillars {
  background: var(--ivory);
}
.pillar-grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(139, 76, 55, 0.18);
}
.pillar {
  background: #fbf7ef;
  padding: 2rem 1.1rem;
  min-height: 190px;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}
.pillar h3 {
  font-size: 1.45rem;
  margin: 0;
}
.pillar small {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.8rem 0 0;
}
.dark {
  background: var(--indigo);
  color: var(--ivory);
}
.dark p,
.dark .lead {
  color: #dfd4bf;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 22px;

  border: 1px solid rgba(201, 163, 93, 0.28);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);

  background: #111827;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.8s ease;
}

.visual:hover img {
  transform: scale(1.08);
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;

  /* background: linear-gradient(
        to top,
        rgba(7, 17, 31, 0.55),
        rgba(7, 17, 31, 0.15)
    ); */

  pointer-events: none;
  transition: 0.4s ease;
}

/* .visual:hover::after {
    background: linear-gradient(
        to top,
        rgba(7, 17, 31, 0.35),
        rgba(7, 17, 31, 0.05)
    );
} */
.journey {
  background: #efe4d2;
}
.journey-grid,
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.cards {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #fbf7ef;
  border: 1px solid rgba(139, 76, 55, 0.13);
  padding: 1.7rem;
  /* min-height: 230px; */
}
.card .num {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}
.card h3 {
  font-size: 1.55rem;
  margin: 0.7rem 0;
}
.reflection {
  background: linear-gradient(135deg, var(--deep), var(--indigo));
  color: var(--ivory);
  text-align: center;
}
.reflection .mantra {
  font-size: 2.35rem;
}
.footer {
  background: #06101d;
  color: var(--ivory);
  padding: 3rem 7vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.footer h4 {
  color: var(--gold);
  margin-top: 0;
}
.footer a {
  /* display: block; */
  color: #ded4c3;
  margin: 0.45rem 0;
  font-size: 0.92rem;
}
.copyright {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 163, 93, 0.18);
  color: #fff;
  font-size: 0.9rem;
}

.copyright a:hover {
  color: var(--gold) !important;
}
@media (max-width: 960px) {
  .nav {
    display: none;
  }
  .menu {
    display: block;
  }
  .pillar-grid,
  .journey-grid,
  .cards,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4.5rem 1.4rem;
  }
  .hero {
    padding: 7rem 1.4rem 4rem;
  }
  .btn.secondary {
    margin-left: 0;
    margin-top: 0.7rem;
  }
  .visual {
    min-height: 300px;
  }
}

.padding-left-right-10 {
  padding: 0 50px;
}

.font-15 {
  font-size: 15px;
}

footer h4 {
  /* font-size: 16px; */
  margin-bottom: 10px;
}

.visual img,
.gallery img,
.pair img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.golden-lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--gold);
  font-size: 1.16rem;
}

.text-gold {
  color: var(--gold) !important;
}

.text-sand {
  color: var(--sand) !important;
}

.text-justify {
  text-align: justify;
}

.text-justify1 {
  text-align: justify;
  word-break: break-word;
  hyphens: auto;
}

.mh-75 {
  min-height: 75px;
}

.mh-50 {
  min-height: 50px;
}

footer a:hover {
  color: var(--gold) !important;
}

.origin section {
  padding: 3rem 5vw;
}

/* breadcrumb */
.breadcrumb-area {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url("<?= base_url('public/assets/image/breadcrumb.webp') ?>")
    center center/cover no-repeat;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 18, 0.9) 0%,
    rgba(5, 10, 18, 0.65) 35%,
    rgba(5, 10, 18, 0.25) 70%,
    rgba(5, 10, 18, 0.15) 100%
  );
}

.breadcrumb-area .container {
  position: relative;
  z-index: 2;
}

.min-vh-50 {
  min-height: 420px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #d9d9d9;
  text-decoration: none;
}

.breadcrumb-nav span {
  color: #c9a35d;
}

.breadcrumb-area h1 {
  color: #fff;
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb-line {
  width: 180px;
  height: 2px;
  background: rgba(201, 163, 93, 0.35);
  margin: 20px 0;
  position: relative;
}

.breadcrumb-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a35d;
}

.breadcrumb-area h4 {
  color: #c9a35d;
  font-size: 32px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
}

.breadcrumb-area p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
  max-width: 480px;
}

.breadcrumb-margin {
  margin-top: 80px;
  margin-left: -20px;
}

/* Tablet */
@media (max-width: 991px) {
  .breadcrumb-area {
    min-height: 360px;
  }

  .breadcrumb-area h1 {
    font-size: 52px;
  }

  .breadcrumb-area h4 {
    font-size: 26px;
  }

  .breadcrumb-area p {
    font-size: 16px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .breadcrumb-area {
    min-height: 300px;
    text-align: center;
  }

  .breadcrumb-nav {
    /* justify-content: center; */
    flex-wrap: wrap;
  }

  /* .breadcrumb-line {
            margin: 18px auto;
        } */

  .breadcrumb-area h1 {
    font-size: 42px;
  }

  .breadcrumb-area h4 {
    font-size: 22px;
  }

  .breadcrumb-area p {
    font-size: 15px;
    line-height: 1.7;
  }

  .breadcrumb-overlay {
    background: rgba(5, 10, 18, 0.72);
  }

  .breadcrumb-margin {
    margin: 0;
  }
}

.same-img {
  width: auto;
  height: 200px;
  object-fit: cover;
}

.same-img-md {
  width: auto;
  height: 300px;
  object-fit: cover;
}

.history-accordion .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.history-accordion .accordion-button {
  background: #fff;
  color: #071427;
  font-size: 22px;
  font-weight: 600;

  padding: 22px 28px;

  box-shadow: none;
}

.history-accordion .accordion-button:not(.collapsed) {
  background: #071427;
  color: #fff;
}

.history-accordion .accordion-button::after {
  filter: brightness(0);
}

.history-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.history-accordion .icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #c9a35d;

  margin-right: 18px;

  font-size: 22px;
}

.history-accordion .accordion-body {
  padding: 35px;

  line-height: 1.9;

  color: #555;
}

.history-accordion img {
  border-radius: 16px;
}
/* breadcrumb end  */


.text-maroon {
  color: #800000 !important;
}

.text-darkblue {
  color: #000080 !important;
}

.text-navyblue {
  color: #0000ff !important;
}

.text-green {
  color: #008000 !important;
}