/* ==========================
GOOGLE FONT
========================== */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* ==========================
RESET
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #222;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  display: block;
}

/* ==========================
GLOBAL
========================== */

.container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
}

/* ==========================
HEADER
========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  background: rgba(7, 20, 44, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s ease;
}

.header.scrolled {
  background: rgba(7, 20, 44, 0.55);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 115px;
  height: auto;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links li a {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: #caa54a;
  transform: translateX(-50%);
  transition: 0.35s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #caa54a;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 70%;
}

/* ==========================
HAMBURGER
========================== */

.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: 0.35s ease;
}

.hamburger.active span {
  background: #caa54a;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ==========================
HERO
========================== */

.hero {
  position: relative;
  height: 100vh;
  background: url("../img/hero.jpeg") center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5, 20, 45, 0.55), rgba(5, 20, 45, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 1200px;
  transform: translateY(35px);
}

.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}

.hero h1 span {
  color: #d4a73d;
  display: inline-block;
  min-width: 240px;
  transition: 0.35s ease;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .header {
    padding: 8px 0;
    background: rgba(7, 20, 44, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .logo img {
    width: 90px;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;

    background: rgba(5, 18, 40, 0.18);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: max-height 0.4s ease;
  }

  .navbar.active {
    max-height: 340px;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 18px 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 16px 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    color: #d4a73d;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links li a::after {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .hero h1 span {
    display: block;
    margin-top: 8px;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 82px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-content {
    width: 90%;
    transform: translateY(25px);
  }
}

/* ==========================
ABOUT PREVIEW
========================== */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #f6f7f9;
  overflow: hidden;
}

.about-content {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-subtitle {
  display: inline-block;
  color: #caa54a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-content h2,
.services-content h2 {
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

.title-line {
  width: 220px;
  height: 4px;
  background: #0b2a5b;
  margin: 22px 0 28px;
  border-radius: 30px;
  position: relative;
}

.title-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #caa54a;
  border-radius: 50%;
  box-shadow:
    16px 0 #caa54a,
    32px 0 #caa54a;
}

.about-content p,
.services-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 30px;
}

.main-btn {
  display: inline-block;
  width: fit-content;
  padding: 14px 34px;
  background: #0b2a5b;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.35s ease;
}

.main-btn:hover {
  background: #caa54a;
  color: #0b2a5b;
  transform: translateY(-4px);
}

.about-image,
.services-image {
  height: 100%;
  min-height: 520px;
}

.about-image img,
.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================
SERVICES PREVIEW
========================== */

.services-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #ffffff;
  overflow: hidden;
}

.services-content {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .about-preview,
  .services-preview {
    grid-template-columns: 1fr;
  }

  .about-content,
  .services-content {
    order: 1;
    padding: 55px 8%;
    text-align: center;
    align-items: center;
  }

  .about-image,
  .services-image {
    order: 2;
    height: auto;
    min-height: 0;
  }

  .about-image img,
  .services-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .section-subtitle {
    display: block;
  }

  .title-line {
    margin: 22px auto 28px;
  }

  .about-content h2,
  .services-content h2 {
    font-size: 2rem;
  }

  .about-content p,
  .services-content p {
    font-size: 1.03rem;
  }
}

@media (max-width: 576px) {
  .about-content,
  .services-content {
    padding: 45px 7%;
  }

  .about-content h2,
  .services-content h2 {
    font-size: 1.65rem;
  }

  .about-content p,
  .services-content p {
    font-size: 0.98rem;
  }
}

/* ==========================
CONTACT CTA
========================== */

.contact-cta {
  padding: 100px 0;
  background: #0b2a5b;
  text-align: center;
}

.contact-cta span {
  color: #caa54a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-cta h2 {
  color: #fff;
  font-size: 3rem;
  margin: 18px 0 25px;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-size: 1.1rem;
}

.cta-btn {
  display: inline-block;
  padding: 16px 42px;
  background: #caa54a;
  color: #0b2a5b;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.35s;
}

.cta-btn:hover {
  background: #fff;
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .contact-cta {
    padding: 70px 0;
  }

  .contact-cta h2 {
    font-size: 2.2rem;
  }

  .contact-cta p {
    font-size: 1rem;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .contact-cta h2 {
    font-size: 1.7rem;
  }
}

/* ==========================
FOOTER
========================== */

.footer {
  background: #f5f7fa;
  border-top: 1px solid #e3e8ef;
  padding: 60px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.footer-logo img {
  width: 135px;
}

.footer-info h4 {
  color: #0b2a5b;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-info p,
.footer-info a {
  color: #555;
  line-height: 1.9;
  transition: 0.3s ease;
}

.footer-info a:hover {
  color: #caa54a;
}

.footer-info:nth-child(2) {
  text-align: center;
}

.footer-info:nth-child(3) {
  text-align: right;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-info:nth-child(2),
  .footer-info:nth-child(3) {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 45px 0;
  }

  .footer-logo img {
    width: 115px;
  }
}

/* ==========================
PAGE HERO
========================== */

.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  background: url("../img/contact-2.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5, 20, 45, 0.62), rgba(5, 20, 45, 0.72));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(35px);
}

.page-hero h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .page-hero {
    height: 45vh;
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 2.4rem;
  }
}

/* ==========================
CONTACT INFO
========================== */

.contact-info {
  padding: 100px 0;
  background: #fff;
}

.contact-info-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.contact-card {
  background: #fff;
  border-top: 5px solid #caa54a;
  border-radius: 14px;
  padding: 45px 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  color: #0b2a5b;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.card-line {
  display: block;
  width: 55px;
  height: 3px;
  background: #caa54a;
  border-radius: 20px;
  margin-bottom: 28px;
}

.contact-card p,
.contact-card a {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.9;
  transition: 0.3s;
  word-break: break-word;
}

.contact-card a:hover {
  color: #caa54a;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-info {
    padding: 80px 0;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-card {
    text-align: center;
    padding: 40px 30px;
  }

  .card-line {
    margin: 0 auto 25px;
  }
}

@media (max-width: 576px) {
  .contact-info {
    padding: 60px 0;
  }

  .contact-card {
    padding: 35px 25px;
  }

  .contact-card h3 {
    font-size: 1rem;
  }

  .contact-card p,
  .contact-card a {
    font-size: 0.95rem;
  }
}

/* ==========================
CONTACT FORM
========================== */

.contact-form-section {
  padding: 100px 0;
  background: #f6f7f9;
}

.form-wrapper {
  max-width: 950px;
  margin: auto;
  background: #fff;
  padding: 60px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
  font-size: 2.45rem;
  color: #111;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #caa54a;
  box-shadow: 0 0 0 4px rgba(202, 165, 74, 0.12);
}

.form-group textarea {
  resize: none;
}

.form-btn {
  border: none;
  cursor: pointer;
  padding: 16px 42px;
  background: #0b2a5b;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.35s ease;
}

.form-btn:hover {
  background: #caa54a;
  color: #0b2a5b;
  transform: translateY(-4px);
}

.success-message {
  display: none;
  margin-top: 22px;
  color: #0b2a5b;
  font-weight: 700;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .form-wrapper {
    padding: 45px 35px;
    text-align: center;
  }

  .form-wrapper .title-line {
    margin: 22px auto 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 576px) {
  .form-wrapper {
    padding: 35px 22px;
  }

  .form-wrapper h2 {
    font-size: 1.75rem;
  }
}

/* ==========================
COMPANY INTRODUCTION
========================== */

.company-intro {
  position: relative;
  padding: 110px 0;
  background: url("../img/about-bg.jpeg") center center/cover no-repeat;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 44, 0.82);
}

.intro-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.intro-content .section-subtitle {
  display: block;
  text-align: center;
}

.intro-content h2 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  margin-top: 10px;
}

.intro-content .title-line {
  margin: 22px auto 55px;
}

.intro-content p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.12rem;
  line-height: 2;
  margin-bottom: 28px;
  text-align: justify;
}

.intro-content strong {
  color: #caa54a;
  font-weight: 700;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .company-intro {
    padding: 90px 0;
  }

  .intro-content h2 {
    font-size: 2.4rem;
  }

  .intro-content p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .company-intro {
    padding: 70px 0;
  }

  .intro-content h2 {
    font-size: 2rem;
  }

  .intro-content p {
    font-size: 0.97rem;
    line-height: 1.9;
  }
}

/* ==========================
COMPANY STATS
========================== */

.stats-section {
  position: relative;
  padding: 90px 0;
  background: url("../img/about-bg.jpeg") center center/cover no-repeat;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 44, 0.82);
}

.stats-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 45px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  transition: 0.35s;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #caa54a;
}

.stat-box h2 {
  display: inline-block;
  color: #caa54a;
  font-size: 3.7rem;
  font-weight: 800;
}

.stat-box span {
  color: #caa54a;
  font-size: 2.1rem;
  font-weight: 800;
}

.stat-box p {
  margin-top: 18px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 70px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-box h2 {
    font-size: 3rem;
  }

  .stat-box span {
    font-size: 1.8rem;
  }

  .stat-box p {
    font-size: 1rem;
  }
}

/* ==========================
PILLARS SECTION
========================== */

.pillars-section {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #caa54a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title h2 {
  color: #0b2a5b;
  font-size: 2.8rem;
  margin: 12px 0 18px;
}

.section-title p {
  max-width: 750px;
  margin: auto;
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.pillar-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  transition: 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.pillar-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.pillar-content {
  padding: 35px 30px 40px;
  text-align: center;
}

.pillar-content h3 {
  color: #0b2a5b;
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.pillar-content p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .pillars-section {
    padding: 80px 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .pillar-card img {
    height: auto;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .pillar-content {
    padding: 30px 24px;
  }
}

/* ==========================
DEDICATIONS
========================== */

.dedications {
  padding: 100px 0;
  background: #f8f9fb;
}

.dedications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.dedication-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.dedication-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.dedication-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.dedication-card:hover img {
  transform: scale(1.06);
}

.dedication-content {
  padding: 35px 30px 40px;
  text-align: center;
}

.dedication-content h3 {
  color: #0b2a5b;
  font-size: 1.6rem;
  margin-bottom: 18px;
  position: relative;
}

.dedication-content h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #caa54a;
  margin: 14px auto 0;
  border-radius: 30px;
}

.dedication-content p {
  margin-top: 22px;
  color: #555;
  line-height: 1.9;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .dedications {
    padding: 80px 0;
  }

  .dedications-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dedication-card img {
    height: auto;
  }
}

@media (max-width: 576px) {
  .dedication-content {
    padding: 30px 24px 35px;
  }

  .dedication-content h3 {
    font-size: 1.4rem;
  }

  .dedication-content p {
    font-size: 0.98rem;
  }
}

.second-row {
  margin-top: 40px;
}

/* ==========================
OUR LEADERSHIP
========================== */

.leadership-section {
  padding: 110px 0;
  background: #f8f9fb;
}

.leadership-section .section-title {
  margin-bottom: 170px;
}

.leadership-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 50px 50px;

  background: #fff;
  border-radius: 22px;

  text-align: center;
  position: relative;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 25px 60px rgba(0, 0, 0, 0.08);

  transition: 0.35s ease;
}

.leadership-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.12);
}

/* ==========================
IMAGE
========================== */

.leader-image {
  width: 220px;
  height: 280px;

  margin: 0 auto;

  transform: translateY(-75px);

  overflow: hidden;

  border-radius: 16px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);

  background: #fff;
}

.leader-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transform: scale(0.9);

  transition: 0.35s ease;
}

.leadership-card:hover .leader-image img {
  transform: scale(0.94);
}

/* ==========================
SEPARATOR
========================== */

.leader-line {
  width: 170px;
  height: 1px;

  background: #e6e6e6;

  margin: -35px auto 32px;

  position: relative;
}

.leader-line::after {
  content: "";
  position: absolute;

  left: 50%;
  top: -2px;

  transform: translateX(-50%);

  width: 55px;
  height: 5px;

  background: #caa54a;

  border-radius: 30px;
}

/* ==========================
TEXT
========================== */

.leadership-card h3 {
  color: #0b2a5b;
  font-size: 2rem;
  font-weight: 800;

  margin-bottom: 8px;
}

.leadership-card span {
  display: block;

  color: #777;

  font-size: 1rem;
  font-weight: 500;

  margin-bottom: 8px;
}

.leadership-card h4 {
  color: #caa54a;

  font-size: 1.1rem;
  font-weight: 700;

  margin-bottom: 24px;
}

.leadership-card p {
  max-width: 470px;
  margin: auto;

  color: #555;

  font-size: 1rem;
  line-height: 1.9;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .leadership-section {
    padding: 90px 0;
  }

  .leadership-section .section-title {
    margin-bottom: 150px;
  }

  .leadership-card {
    max-width: 92%;
    padding: 0 35px 45px;
  }

  .leader-image {
    width: 190px;
    height: 245px;

    transform: translateY(-70px);
  }

  .leader-line {
    width: 150px;
    margin: -30px auto 30px;
  }

  .leadership-card h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .leadership-section {
    padding: 80px 0;
  }

  .leadership-section .section-title {
    margin-bottom: 130px;
  }

  .leadership-card {
    max-width: 100%;
    padding: 0 25px 35px;
    border-radius: 18px;
  }

  .leader-image {
    width: 165px;
    height: 215px;

    transform: translateY(-60px);
  }

  .leader-line {
    width: 130px;
    margin: -20px auto 25px;
  }

  .leadership-card h3 {
    font-size: 1.55rem;
  }

  .leadership-card span {
    font-size: 0.92rem;
  }

  .leadership-card h4 {
    font-size: 1rem;
  }

  .leadership-card p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* ==========================
SERVICES HERO
========================== */

.services-hero {
  padding: 180px 0 110px;
  background: #f8f9fb;
  text-align: center;
}

.services-hero span {
  display: inline-block;
  color: #caa54a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.services-hero h1 {
  color: #0b2a5b;
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.services-hero p {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 1.08rem;
  line-height: 1.9;
}

/* ==========================
SERVICE DETAILS
========================== */

.service-details {
  padding: 110px 0;
  background: #fff;
}

.service-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* ==========================
SIDEBAR
========================== */

.service-sidebar {
  position: sticky;
  top: 120px;
}

.service-sidebar ul {
  list-style: none;
}

.service-sidebar li {
  margin-bottom: 2px;
}

.service-sidebar a {
  display: block;
  padding: 22px 28px;
  background: #f5f5f5;
  color: #555;
  font-size: 1rem;
  font-weight: 700;
  border-left: 4px solid transparent;
  transition: 0.35s ease;
}

.service-sidebar a:hover {
  background: #0b2a5b;
  color: #fff;
  border-left-color: #caa54a;
  padding-left: 38px;
}

.service-sidebar a.active {
  background: #0b2a5b;
  color: #fff;
  border-left-color: #caa54a;
}

/* ==========================
CONTENT
========================== */

.service-content {
  width: 100%;
}

.service-item {
  margin-bottom: 120px;
  scroll-margin-top: 140px;
}

.service-item:last-child {
  margin-bottom: 0;
}

/* ==========================
IMAGE
========================== */

.service-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.service-image img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* ==========================
TEXT
========================== */

.service-text {
  margin-top: 45px;
}

.service-text h2 {
  color: #0b2a5b;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-line {
  width: 95px;
  height: 4px;
  background: #caa54a;
  border-radius: 30px;
  margin-bottom: 35px;
}

.service-text p {
  color: #555;
  font-size: 1.03rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* ==========================
SUB TITLES
========================== */

.service-text h3 {
  color: #0b2a5b;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 45px 0 25px;
  padding-left: 16px;
  border-left: 4px solid #caa54a;
}

/* ==========================
LIST
========================== */

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: #444;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b2a5b;
  font-weight: 800;
}

.service-list strong {
  color: #0b2a5b;
  font-weight: 700;
}

/* ==========================
OUR PROCESS
========================== */

.our-process {
  padding: 110px 0;
  background: #f8f9fb;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 70px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #d9d9d9;
  z-index: 0;
}

.process-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.process-number {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #0b2a5b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 800;
  border: 6px solid #f8f9fb;
}

.process-card h3 {
  color: #0b2a5b;
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.process-card p {
  color: #666;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .services-hero {
    padding: 160px 0 90px;
  }

  .services-hero h1 {
    font-size: 2.9rem;
  }

  .service-details {
    padding: 90px 0;
  }

  .service-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-sidebar {
    position: static;
  }

  .service-sidebar a {
    padding: 18px 22px;
  }

  .service-item {
    margin-bottom: 90px;
  }

  .service-text {
    margin-top: 35px;
  }

  .service-text h2 {
    font-size: 2rem;
  }

  .service-text h3 {
    font-size: 1.3rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .services-hero {
    padding: 145px 0 75px;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }

  .services-hero p {
    font-size: 1rem;
  }

  .service-details {
    padding: 80px 0;
  }

  .service-wrapper {
    gap: 30px;
  }

  .service-sidebar a {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .service-text h2 {
    font-size: 1.75rem;
  }

  .service-text h3 {
    font-size: 1.18rem;
    margin: 35px 0 18px;
  }

  .service-text p {
    font-size: 0.98rem;
  }

  .service-list li {
    padding-left: 28px;
    font-size: 0.96rem;
  }

  .our-process {
    padding: 80px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-card {
    padding: 35px 25px;
  }

  .process-number {
    width: 68px;
    height: 68px;
    font-size: 1.3rem;
  }

  .process-card h3 {
    font-size: 1.2rem;
  }
}
