:root {
  --navy: #001f4e;
  --navy-2: #061936;
  --navy-3: #0b2b5c;
  --gold: #d9a300;
  --gold-dark: #b57d00;
  --gold-light: #f4d477;
  --cream: #faf8f2;
  --white: #ffffff;
  --text: #1d2939;
  --muted: #697586;
  --line: #e9e4d8;
  --shadow: 0 22px 60px rgba(0, 31, 78, .12);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1160px, 92%);
  margin: auto
}

.topbar {
  background: var(--navy-2);
  color: #d8e0ec;
  font-size: 12px;
  letter-spacing: .3px
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.top-links {
  display: flex;
  gap: 25px
}

.top-links a:hover {
  color: var(--gold-light)
}

.site-header {
  height: 88px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  transition: .3s
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 31, 78, .08)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 35px
}

.brand {
  width: 270px;
  flex: none
}

.brand img {
  /*width: 100%;*/
  height: auto
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1
}

nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 33px 0
}

nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s
}

nav a:hover:after,
nav a.active:after {
  width: 100%
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 13px 20px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px
}

.nav-cta span,
.btn span,
.text-link span {
  color: var(--gold-light);
  margin-left: 8px
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 35px;
  margin-left: auto
}

.menu-toggle span {
  height: 2px;
  background: var(--navy);
  display: block;
  margin: 6px 0
}

.hero {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(110deg, var(--navy-2), var(--navy) 58%, #0a3468); */
  color: #fff;
  min-height: 700px;
  display: flex;
  align-items: center
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 50%, rgba(217, 163, 0, .16), transparent 30%), linear-gradient(90deg, transparent 65%, rgba(255, 255, 255, .025));
  pointer-events: none
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244, 212, 119, .12);
  border-radius: 50%;
  right: -110px;
  top: 50%;
  transform: translateY(-50%)
}
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 700px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

/* Background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 15, 40, .92) 0%,
      rgba(0, 31, 78, .78) 48%,
      rgba(0, 31, 78, .42) 100%
    );
}

/* Existing glow */
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(217, 163, 0, .16),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      transparent 65%,
      rgba(255, 255, 255, .025)
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor
}

.eyebrow.dark {
  color: var(--gold-dark)
}

.hero h1,
.section-heading h2,
.section-copy h2,
.why-copy h2,
.cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -1px
}

.hero h1 {
  font-size: 72px;
  max-width: 700px
}

em {
  font-style: normal;
  color: var(--gold)
}

.hero-copy>p {
  max-width: 590px;
  color: #ccd6e5;
  margin: 25px 0 30px;
  font-size: 15px
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  border: 1px solid transparent;
  transition: .3s
}

.btn-gold {
  background: var(--gold);
  color: var(--navy)
}

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

.btn-outline {
  border-color: rgba(255, 255, 255, .35);
  color: #fff
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light)
}

.hero-trust {
  display: flex;
  gap: 42px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  max-width: 620px
}

.trust-item {
  display: flex;
  flex-direction: column
}

.trust-item strong {
  font-family: "Cormorant Garamond";
  font-size: 31px;
  color: #fff;
  line-height: 1
}

.trust-item span {
  font-size: 10px;
  color: #9eacc0;
  margin-top: 5px
}

.hero-visual {
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.gold-ring {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(217, 163, 0, .48);
  border-radius: 50%;
  position: absolute
}

.gold-ring:before,
.gold-ring:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 163, 0, .16)
}

.gold-ring:before {
  inset: 30px
}

.gold-ring:after {
  inset: 65px
}

.gem-card {
  width: 245px;
  height: 280px;
  position: relative;
  transform: rotate(-4deg);
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .25))
}

.gem-shape {
  position: absolute;
  inset: 30px 20px 20px;
  background: linear-gradient(135deg, #8bd2ff 0%, #176bb0 25%, #001f4e 55%, #6eb6e9 80%, #eaf7ff);
  clip-path: polygon(50% 0, 100% 25%, 84% 100%, 16% 100%, 0 25%);
  border: 5px solid rgba(255, 255, 255, .75)
}

.gem-shine {
  position: absolute;
  z-index: 2;
  left: 75px;
  top: 42px;
  width: 45px;
  height: 150px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .8), transparent);
  transform: rotate(24deg);
  filter: blur(4px)
}
.gem-image {
  position: absolute;
  width: 245px;
  height: 280px;
  object-fit: contain;
  transform: rotate(-4deg);
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .25));
}
.gem-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-weight: 700
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  padding: 14px 17px;
  display: flex;
  gap: 11px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
  min-width: 190px
}

.card-top {
  top: 100px;
  right: 10px
}

.card-bottom {
  bottom: 90px;
  left: 0
}

.floating-card b {
  display: block;
  font-size: 11px
}

.floating-card small {
  font-size: 9px;
  color: #7c8795
}

.mini-icon {
  color: var(--gold-dark);
  font-size: 22px
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  color: var(--gold-light);
  font-size: 21px;
  z-index: 3
}

.section-pad {
  padding: 105px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center
}

.section-image {
  position: relative;
  padding: 0 0 35px 35px
}

.image-frame {
  height: 500px;
  overflow: hidden;
  position: relative;
  background: var(--navy)
}

.image-frame:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 212, 119, .65);
  z-index: 1;
  pointer-events: none
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  width: 150px;
  height: 130px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.experience-badge strong {
  font: 600 46px/1 "Cormorant Garamond"
}

.experience-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4
}

.section-copy h2,
.why-copy h2 {
  font-size: 57px;
  color: var(--navy);
  margin-bottom: 20px
}

.section-copy .lead {
  font-size: 17px;
  color: #36465a;
  max-width: 560px
}

.section-copy p:not(.lead) {
  color: var(--muted);
  font-size: 14px;
  max-width: 580px;
  margin-top: 15px
}

.check-list {
  margin: 28px 0;
  display: grid;
  gap: 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy)
}

.check-list span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #f8edc8;
  color: var(--gold-dark);
  margin-right: 8px
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px
}

.services {
  background: var(--navy);
  color: #fff
}

.section-heading {
  margin-bottom: 48px
}

.section-heading h2 {
  font-size: 58px;
  color: var(--navy);
  margin-bottom: 12px
}

.services .section-heading h2 {
  color: #fff
}

.section-heading p {
  color: var(--muted);
  max-width: 600px;
  font-size: 14px
}

.services .section-heading p {
  color: #b8c4d4
}

.centered {
  text-align: center
}

.centered .eyebrow {
  justify-content: center
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.service-card {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 28px 25px;
  position: relative;
  transition: .3s;
  background: rgba(255, 255, 255, .025)
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 163, 0, .6);
  background: rgba(255, 255, 255, .05)
}

.service-card.featured {
  background: linear-gradient(150deg, rgba(217, 163, 0, .16), rgba(255, 255, 255, .03))
}

.service-number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #78869a;
  font-size: 10px
}

.service-icon {
  font-size: 44px;
  color: var(--gold-light);
  margin: 25px 0 35px
}

.service-card h3 {
  font: 600 27px/1.05 "Cormorant Garamond";
  margin-bottom: 14px
}

.service-card p {
  font-size: 12px;
  color: #aeb9c9;
  line-height: 1.8
}

.service-card a {
  position: absolute;
  bottom: 25px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  color: var(--gold-light)
}

.process {
  background: var(--cream)
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.process-line:before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #d9cda9
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 25px
}

.step-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-dark);
  position: relative;
  z-index: 1
}

.process-step h3 {
  font: 600 26px "Cormorant Garamond";
  color: var(--navy);
  margin-bottom: 8px
}

.process-step p {
  font-size: 12px;
  color: var(--muted)
}

.why {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center
}

.why-copy>p {
  color: var(--muted);
  font-size: 14px;
  max-width: 560px
}

.stats {
  display: flex;
  gap: 55px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line)
}

.stats strong {
  display: block;
  font: 600 40px/1 "Cormorant Garamond";
  color: var(--navy)
}

.stats span {
  font-size: 10px;
  color: var(--muted)
}

.why-panel {
  height: 430px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.panel-orbit {
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(217, 163, 0, .35);
  border-radius: 50%
}

.panel-orbit:after {
  content: "";
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(217, 163, 0, .15);
  border-radius: 50%
}

.panel-content {
  position: relative;
  text-align: center;
  width: 75%;
  z-index: 2
}

.panel-mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: "Cormorant Garamond";
  font-size: 20px;
  margin-bottom: 20px
}

.panel-content h3 {
  font: 600 43px/1 "Cormorant Garamond";
  color: #fff
}

.panel-content h3 em {
  display: block;
  margin-top: 5px
}

.panel-content p {
  font-size: 12px;
  color: #aeb9c9;
  margin: 20px auto 25px;
  max-width: 360px
}

.cta {
  background: linear-gradient(100deg, var(--navy-2), var(--navy));
  color: #fff;
  padding: 75px 0;
  position: relative;
  overflow: hidden
}

.cta:after {
  content: "NGL";
  position: absolute;
  right: -30px;
  top: -60px;
  font: 700 260px "Cormorant Garamond";
  color: rgba(255, 255, 255, .025)
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1
}

.cta h2 {
  font-size: 51px;
  max-width: 730px
}

.cta p {
  font-size: 13px;
  color: #abb7c8;
  margin-top: 12px
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex: none;
  flex-wrap: wrap
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, .3);
  color: #fff
}

.btn-light-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light)
}

.footer {
  background: #010c1b;
  color: #98a6b9;
  padding: 40px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px
}

.footer-brand img {
  width: 20%;
  background: #fff;
  padding: 8px;
  margin-bottom: 17px
}

.footer-brand p {
  font-size: 12px;
  max-width: 340px
}

.footer h4 {
  font: 600 23px "Cormorant Garamond";
  color: #fff;
  margin-bottom: 15px
}

.footer-grid>div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-grid a,
.footer-grid span {
  font-size: 11px
}

.footer-grid a:hover {
  color: var(--gold-light)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  min-height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px
}

@media(max-width:1000px) {
  nav {
    gap: 17px
  }

  .nav-cta {
    display: none
  }

  .hero h1 {
    font-size: 58px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 80px 0
  }

  .hero-visual {
    height: 430px
  }

  .intro-grid,
  .why-grid {
    gap: 55px
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:760px) {
  .topbar {
    display: none
  }

  .site-header {
    height: 74px
  }

  .brand {
    width: 200px
  }

  .brand img {
    width: 100%
  }

  .menu-toggle {
    display: block
  }

  .nav-wrap {
    position: relative
  }

  nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
  }

  nav.open {
    display: flex
  }

  nav a {
    padding: 14px 5%;
    border-bottom: 1px solid #eee
  }

  nav a:after {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 75px 0 50px
  }

  .hero h1 {
    font-size: 48px
  }

  .hero-copy>p {
    font-size: 13px
  }

  .hero-trust {
    gap: 22px;
    margin-top: 40px
  }

  .trust-item strong {
    font-size: 25px
  }

  .trust-item span {
    font-size: 8px
  }

  .hero-visual {
    height: 350px
  }

  .gold-ring {
    width: 290px;
    height: 290px
  }

  .gem-card {
    transform: scale(.78) rotate(-4deg)
  }

  .card-top {
    right: 0;
    top: 35px
  }

  .card-bottom {
    left: 0;
    bottom: 25px
  }

  .floating-card {
    min-width: 160px;
    padding: 10px
  }

  .section-pad {
    padding: 75px 0
  }

  .intro-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .section-image {
    padding-left: 18px
  }

  .image-frame {
    height: 400px
  }

  .section-copy h2,
  .why-copy h2,
  .section-heading h2 {
    font-size: 45px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    min-height: 330px
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0
  }

  .process-line:before {
    display: none
  }

  .why-grid {
    gap: 50px
  }

  .why-panel {
    height: 380px
  }

  .panel-content h3 {
    font-size: 37px
  }

  .stats {
    gap: 28px
  }

  .cta {
    padding: 65px 0
  }

  .cta-inner {
    display: block
  }

  .cta h2 {
    font-size: 42px
  }

  .cta-actions {
    margin-top: 25px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 18px 0;
    text-align: center
  }
}

@media(max-width:430px) {
  .hero h1 {
    font-size: 41px
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-trust {
    gap: 13px
  }

  .hero-visual {
    height: 310px
  }

  .floating-card {
    transform: scale(.82)
  }

  .card-top {
    right: -12px
  }

  .card-bottom {
    left: -12px
  }

  .process-line {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}


/* rahul add css */

.about-image img {
    height: 335px;
    width: 545px;
    object-fit: cover;
    display: block;
}

