:root {
  --nav-bg: #3eb3e9;
  --nav-text: #062639;
  --hero-bg: #1273a0;
  --section-bg: #0d3a4f;
  --section-bg-alt: #0f455f;
  --text-light: #f1f8f9;
  --text-hero: #e6f5f7;
  --text-muted: rgba(241, 248, 249, 0.8);
  --title-light: #fff;
  --line-accent: #3daee2;
  --input-bg: #fff;
  --input-text: #1d2a32;
  --button-bg: #265f7a;
  --button-text: #f1f8f9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", serif;
  color: var(--text-light);
  background: var(--section-bg);
}

h1,
h2,
h3,
h4,
.navbar-brand,
.section-title {
  font-family: "Playfair Display", serif;
}

.ppm-nav {
  background: var(--nav-bg);
  box-shadow: 0 2px 0 rgba(6, 38, 57, 0.18);
}

.ppm-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--nav-text);
  font-weight: 700;
  font-size: 24px;
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.ppm-nav .nav-link {
  font-family: "Playfair Display", serif;
  color: var(--nav-text);
  font-weight: 700;
  margin-left: 0.75rem;
  position: relative;
}

.ppm-nav .nav-link:hover,
.ppm-nav .nav-link:focus {
  color: var(--nav-text);
}

@media (min-width: 992px) {
  .ppm-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    margin: 0 auto;
    width: 80%;
    height: 2px;
    background: #000;
  }
}

.navbar-toggler {
  border: 1px solid rgba(6, 38, 57, 0.25);
}

.hero-section .container-fluid {
  padding: 0;
}

.hero-panel {
  background: var(--hero-bg);
  color: var(--text-hero);
  padding: 4rem 4rem;
  min-height: 520px;
}

.hero-section h1 {
  font-size: clamp(3.8rem, 3.8vw, 3.8rem);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.section-divider {
  width: 100px;
  height: 4px;
  background: var(--line-accent);
  margin: 1.2rem 0 1.4rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-hero);
  line-height: 1.5;
  font-family: "Playfair Display", serif;
}

.hero-image {
  background: url("hero.jpg") center/cover no-repeat;
  min-height: 520px;
}

.about-section {
  background: var(--section-bg);
  color: var(--text-light);
  padding: 0;
}

.about-section .container {
  max-width: 100%;
  padding: 0;
}

.about-image {
  background: url("aboutbg.jpeg") center/cover no-repeat;
  min-height: 480px;
  height: 100%;
  border-radius: 8px;
}
.about-left {
  padding: 2rem 1.7rem;
  height: 100%;
}

.about-content {
  padding: 3rem 3.5rem;
}

.about-content h2 {
  font-size: clamp(3.6rem, 3.6vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-content p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.4rem;
}

.elevate-section {
  position: relative;
  padding: 6.5rem 0;
}
.elevate-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.elevate-section .container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.elevate-card {
  background: #1587bb;
  color: var(--text-light);
  padding: 2.4rem 2.6rem;
  width: min(380px, 92%);
  border-radius: 6px;
  box-shadow: 0 18px 28px rgba(5, 25, 36, 0.35);
}

.elevate-card h2 {
  font-size: clamp(3rem, 3vw, 3rem);
  margin-bottom: 0.4rem;
}

.elevate-card p {
  color: #fff;
  font-size: 1.2rem;
}

.services-section {
  padding: 3.5rem 0 4rem;
  background: var(--section-bg);
}

.section-title {
  text-align: center;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--title-light);
  margin-bottom: 2.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 0.6rem auto 0;
  background: var(--line-accent);
}

.service-card {
  border: 1px solid #dee0e1;
  border-bottom: 5px solid #dee0e1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--section-bg);
  box-shadow: 0 14px 24px rgba(6, 38, 57, 0.3);
}

.service-card img {
  height: 165px;
  object-fit: cover;
}

.service-card .card-body {
  background: var(--section-bg);
  padding: 1.25rem 1.4rem 1.6rem;
}

.service-card .card-title {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.service-card .card-text {
  color: #fff;
  font-size: 1rem;
}

.contact-section {
  background: #1273a0;
  color: var(--text-light);
  padding: 3rem 0 4rem;
}

.contact-section .section-title {
  color: var(--title-light);
}

.contact-form .form-control {
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--input-bg);
  color: #bbb6ad;
  padding: 0.7rem 0.9rem;
}

.contact-form .form-control::placeholder {
  color: #bbb6ad;
}

.btn-submit {
  background: #3db5e3;
  color: #062639;
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 0% !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.btn-submit:hover {
  background: #1f5d76;
  color: var(--button-text);
}

.contact-details {
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-details h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-details p {
  color: var(--text-muted);
  line-height: 1.6;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

@media (max-width: 991px) {
  .hero-panel {
    padding: 3rem;
    min-height: 420px;
  }
  .about-image {
    min-height: 350px;
  }

  .hero-image {
    min-height: 420px;
  }

  .about-content {
    padding: 2.5rem;
  }

  .elevate-section .container {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-panel {
    padding: 2.5rem;
  }

  .about-content {
    padding: 2.25rem;
  }

  .section-title {
    letter-spacing: 2px;
  }
  .small-hid {
    display: none;
  }
}
