:root {
  --blue: #0a2a66;
  --gold: #d4af37;
  --light: #f8f9fb;
}

/* RESET */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--light);
}

/* HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
  border-bottom: 3px solid var(--gold);
}

/* NAV */
.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: var(--blue);
}

/* 🔥 LOGO FIX (YOUR MAIN ISSUE) */
.logo {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* NAV LINKS */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

/* ACTIVE LINK */
.desktop-nav a.active {
  color: var(--gold);
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--gold);
  bottom: -5px;
  left: 0;
}

/* HOVER */
.desktop-nav a:hover {
  color: var(--gold);
}

/* CTA BUTTON */
.btn-nav {
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 25px;
  color: black !important;
  font-weight: 600;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.dropdown-content a {
  display: block;
  padding: 12px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(10,42,102,.85), rgba(10,42,102,.85)),
              url('../images/hero-image.png') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  text-align: center;
}

/* HAMBURGER */
.hamburger {
  font-size: 26px;
  display: none;
  cursor: pointer;
}

/* MOBILE MENU */
#nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: white;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  transition: .3s;
  z-index: 2000;
}

#nav-menu.active {
  right: 0;
}

#nav-menu a {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* MOBILE DROPDOWN */
#nav-menu .dropdown-content {
  display: none;
  position: static;
  box-shadow: none;
}

#nav-menu .dropdown.active .dropdown-content {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    height: 38px;
  }

  .hero {
    font-size: 1.8rem;
    height: 300px;
  }
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* GRID LAYOUT */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* FEATURE CARDS */
.feature-card {
  padding: 30px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* HEADINGS */
.feature-card h3 {
  color: var(--blue);
  margin-bottom: 15px;
}

/* LISTS */
.feature-card ul {
  padding-left: 18px;
  line-height: 1.8;
}

/* TESTIMONIAL STYLE */
.testimonial {
  font-style: italic;
  margin-top: 15px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.container {
  position: relative;
}

.container::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 30px;
  border-radius: 10px;
}

/* HERO CONTENT */
.hero-content {
  text-align: center;
  max-width: 700px;
}

.hero-content p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.hero-btn {
  margin-top: 20px;
}

/* SECTION INTRO */
.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-intro h2 {
  color: var(--blue);
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* FEATURE CARD */
.feature-card {
  padding: 30px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* TESTIMONIAL */
.testimonial {
  font-style: italic;
  margin-top: 15px;
}

/* CTA SECTION */
.cta-section {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

.cta-section h2 {
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* SECTION SYSTEM */
.section {
  padding: 80px 0;
}

.section-light {
  background: #f4f6fb;
}

.section-white {
  background: white;
}

.section-dark {
  background: linear-gradient(rgba(10,42,102,.9), rgba(10,42,102,.9)),
              url('../images/hero-image.png') center/cover fixed;
  color: white;
  text-align: center;
}

/* TRUST BAR */
.trust-bar {
  background: var(--gold);
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

/* HERO UPGRADE */
.luxury-hero {
  height: 500px;
  background: linear-gradient(rgba(10,42,102,.85), rgba(10,42,102,.85)),
              url('../images/hero-image.png') center/cover;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD UPGRADE */
.feature-card {
  padding: 35px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* HIGHLIGHT CARD */
.highlight-card {
  border: 2px solid var(--gold);
}

/* CENTER TEXT */
.center {
  text-align: center;
}

/* TESTIMONIAL */
.testimonial {
  font-style: italic;
  margin: 10px 0;
}

/* CTA */
.cta-section {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

/* SPACING SYSTEM */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: #0a2a66;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-logo {
  width: 160px;
  margin: 15px auto 0;
}

/* HEADER SCROLL EFFECT */
header.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

/* =========================
   ABOUT PAGE FINAL FIX
========================= */

/* GRID FIX */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 40px;
  align-items: center;
}

/* CENTER IMAGE COLUMN */
.about-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PROFILE FRAME (FIXED SIZE) */
.profile-frame {
  width: 220px;
  height: 220px;
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE FIX (THIS SOLVES YOUR PROBLEM) */
.profile-frame img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/* LEFT + RIGHT CARDS ALIGN */
.about-left,
.about-right {
  text-align: center;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-frame {
    width: 180px;
    height: 180px;
  }

  .profile-frame img {
    width: 160px;
    height: 160px;
  }
}

/* HERO */
.about-hero {
  background: linear-gradient(rgba(10,42,102,.85), rgba(10,42,102,.85)),
              url('../images/hero-image.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* MAIN LAYOUT */
.about-luxury {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  color: var(--blue);
  margin-bottom: 10px;
}

.title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

/* CREDENTIALS */
.credentials {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  font-weight: 500;
}

/* CONTACT */
.about-contact {
  margin-top: 25px;
  font-weight: 500;
}

/* IMAGE SIDE */
.about-image {
  display: flex;
  justify-content: center;
}

/* PROFILE FRAME (ENHANCED) */
.profile-frame {
  width: 260px;
  height: 260px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* AUTHORITY STRIP */
.authority-strip {
  background: var(--gold);
  text-align: center;
  padding: 12px;
  font-weight: 600;
}

/* MISSION TEXT */
.mission-text {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-luxury {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-frame {
    width: 200px;
    height: 200px;
  }
}

/* HEADER FIX */
.site-header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  font-weight: 600;
  color: var(--blue);
}

/* ACTIVE LINK */
.desktop-nav a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
}

/* CTA BUTTON */
.nav-cta {
  margin-left: 15px;
}

/* FIX SPACING AFTER HEADER */
body {
  margin: 0;
}

/* PAGE HERO SPACING FIX */
.page-hero,
.about-hero,
.hero {
  margin-top: 0;
}