/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: #222;
  background: #fff;
}

a {
  color: #183153;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 60px;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul li a {
  font-size: 1.1rem;
  font-weight: 500;
}

.btn-primary,
.btn-secondary {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #183153;
  color: #fff;
}

.btn-secondary {
  background: #e3eaf6;
  color: #183153;
}

.nav-cta {
  margin-left: 24px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #e3eaf6 60%, #fff 100%);
  padding: 48px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 400px;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .hero-image img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 350px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(24, 49, 83, 0.08);
} */
.hero-image img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 420px;
  /* aspect-ratio: 4/3; */
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(24, 49, 83, 0.08);
}
.hero-text {
  flex: 1.2;
  padding: 24px 0 24px 16px;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: #183153;
  margin-bottom: 18px;
}

.hero-text p {
  margin-bottom: 20px;
  color: #222;
}

.hero-text .btn-primary {
  margin-top: 32px;
}

/* Services Section */
.services-section {
  background: #fff;
  padding: 48px 0;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  color: #183153;
  margin-bottom: 32px;
}

.services-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #f7f9fb;
  border-radius: 8px;
  box-shadow: 0px 0px 20px #c8dcff;
  padding: 32px 20px;
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  height: 72px;
  width: 100%;
}

.service-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Promise Section with Background Image */
.promise-section {
  position: relative;
  padding: 0;
  margin-bottom: 0;
}

.promise-bg {
  background-size: cover;
  background-position: center;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-overlay {
  background: rgba(24, 49, 83, 0.7);
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-content {
  color: #fff;
  text-align: center;
  padding: 64px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.promise-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.promise-content p {
  font-size: 1.2rem;
  font-weight: 400;
}

@media (max-width: 700px) {
  .promise-content {
    padding: 36px 8px;
  }

  .promise-content h2 {
    font-size: 1.5rem;
  }

  .promise-bg {
    min-height: 200px;
  }
}

/* About Page */
.about-hero,
.team-hero,
.contact-hero {
  position: relative;
}

.about-banner,
.team-banner,
.contact-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.7);
}

.about-title,
.team-title,
.contact-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.about-title h1,
.team-title h1,
.contact-title h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.about-main {
  /* background: linear-gradient(90deg, #e3eaf6 60%, #fff 100%); */
  padding: 48px 0;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content h2 {
  color: #183153;
  margin-bottom: 18px;
}

.about-content p {
  margin-bottom: 12px;
}

.about-content .btn-primary {
  margin-top: 18px;
}

/* About CTA Section */
.about-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #e3eaf6;
  padding: 36px 0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24, 49, 83, 0.06);
  margin: 40px 0;
}

.about-cta-content {
  flex: 1;
  padding: 24px;
}

.about-cta-content h2 {
  color: #183153;
  margin-bottom: 12px;
}

.about-cta-content p {
  margin-bottom: 12px;
}

.about-cta-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta-image img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 300px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(24, 49, 83, 0.08);
}

/* About Discover Card - Gradient Background Only in Card */
.about-discover-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 64px auto 0 auto;
  background: linear-gradient(90deg, #afcbff 22%, #ffffff 79%);
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  min-height: 480px;
}

.about-discover-img {
  flex: 1;
  min-width: 340px;
  max-width: 540px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: none;
}

.about-discover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.about-discover-text {
  flex: 1.2;
  padding: 64px 48px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-discover-text h2 {
  color: #183153;
  margin-bottom: 18px;
  font-size: 2.3rem;
  font-weight: 700;
}

.about-discover-text p {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.about-discover-text .btn-primary {
  margin-top: 20px;
  min-width: 100px;
  max-width: 155px;
  width: auto;
  padding: 10px 24px;
  font-size: 1rem;
  display: inline-block;
}

@media (max-width: 1000px) {
  .about-discover-card {
    flex-direction: column;
    min-height: unset;
  }

  .about-discover-img,
  .about-discover-text {
    max-width: 100%;
    min-width: 0;
  }

  .about-discover-img img {
    border-radius: 0;
  }

  .about-discover-text {
    padding: 32px 16px;
  }
}

/* About CTA Premium Card */
.about-cta-premium {
  display: flex;
  justify-content: center;
  margin: 48px 0 0 0;
}

.about-cta-premium-card {
  position: relative;
  display: flex;
  align-items: center;
  background: #e3eaf6;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24, 49, 83, 0.08);
  max-width: 900px;
  width: 100%;
  padding: 40px 32px;
  overflow: visible;
}

.about-cta-content {
  flex: 1;
  z-index: 2;
}

.about-cta-premium-img {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 3;
}

.about-cta-premium-img img {
  width: 320px;
  max-width: 100%;
  position: absolute;
  right: -60px;
  top: -60px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(24, 49, 83, 0.12);
  background: #fff;
}

@media (max-width: 1100px) {

  .about-discover-card,
  .about-cta-premium-card {
    max-width: 98vw;
  }

  .about-cta-premium-img img {
    right: -20px;
    top: -30px;
    width: 220px;
  }
}

@media (max-width: 800px) {

  .about-discover-card,
  .about-cta-premium-card {
    flex-direction: column;
  }

  .about-discover-img,
  .about-cta-premium-img {
    max-width: 100%;
    min-width: 0;
  }

  .about-discover-img img,
  .about-cta-premium-img img {
    border-radius: 18px 18px 0 0;
    position: static;
    width: 100%;
    top: 0;
    right: 0;
  }

  .about-cta-premium-img img {
    margin-top: 16px;
  }

  .about-discover-text,
  .about-cta-content {
    padding: 24px 12px;
  }
}

/* Team Page */
.team-section {
  background: #fff;
  padding: 48px 0;
  text-align: center;
}

.team-section h2 {
  color: #183153;
  margin-bottom: 32px;
}

.team-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  background: #e3eaf6;
  border-radius: 8px;
  padding: 24px 16px;
  width: 220px;
}

.team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 12px;
}

.team-member h3 {
  color: #183153;
  margin-bottom: 6px;
}

.team-member p {
  color: #222;
}

/* Contact Page */
.contact-section {
  background: #fff;
  padding: 48px 0;
}
.container.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #f7f9fb;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px #e3eaf6;
}
.contact-info h2 {
  color: #183153;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.contact-info ul {
  margin-bottom: 12px;
  padding-left: 18px;
}
.contact-info p, .contact-info a {
  color: #222;
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-form {
  flex: 1.2;
  min-width: 320px;
  background: #e3eaf6;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px #e3eaf6;
}
.contact-form h2 {
  color: #183153;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #222;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 14px;
  border: 1px solid #b0b8c1;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form textarea {
  min-height: 80px;
}
.contact-form .captcha {
  margin-bottom: 14px;
}
.contact-form .btn-primary {
  width: 100%;
}
@media (max-width: 900px) {
  .container.contact-inner {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .contact-info, .contact-form {
    max-width: 100%;
    min-width: 0;
    padding: 24px 10px;
  }
}

/* --- LD FinMave Contact Section (Strict Brand Colors) --- */
.contact {
    padding: 100px 0 80px 0;
    background: #f7f9fb;
}
.contact .heading h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #183153;
}
.contact .heading h2 span {
    color: #67a2d7;
}
.contact .heading p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #222;
    margin: 20px 0 60px;
    padding: 0;
}
.contact .title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #183153;
}
.contact .title p {
    font-size: 0.98rem;
    font-weight: 400;
    color: #183153;
    line-height: 1.6;
    margin: 0 0 32px;
}
.contact .content .info {
    margin-top: 28px;
    display: flex;
    align-items: flex-start;
}
.contact .content .info i {
    font-size: 1.7rem;
    color: #183153;
    margin-right: 18px;
    min-width: 32px;
    text-align: center;
    margin-top: 2px;
}
.contact .content .info h4 {
    font-size: 1rem;
    line-height: 1.4;
    color: #183153;
    font-weight: 600;
    margin-bottom: 0;
}
.contact .content .info h4 span {
    font-size: 0.98rem;
    font-weight: 400;
    color: #222;
}
.contact .content .info h4 a {
    color: #67a2d7;
    text-decoration: none;
    font-weight: 500;
}
.contact .content .info h4 a:hover {
    text-decoration: underline;
    color: #183153;
}
.contact form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgb(24 49 83 / 19%);
  padding: 32px 28px 24px 28px;
  margin-top: 0;
  border: 1px solid #e3eaf6;
}
.contact .form-control {
    padding: 18px 18px;
    font-size: 1rem;
    margin-bottom: 16px;
    background: #c5e2ff;
    border: 1px solid #e3eaf6;
    border-radius: 8px;
    box-shadow: none;
    color: #183153;
}
.contact .form-control:focus {
    border-color: #2fbfa7;
    outline: none;
    box-shadow: 0 0 0 2px #2fbfa71a;
}
.contact textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.contact button.btn {
  padding: 12px 0;
  border-radius: 8px;
  font-size: 1.08rem;
  background: #183153;
  color: #fff;
  font-weight: 600;
  width: 100%;
  border: none;
  margin-top: 8px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px #e3eaf6;
}
.contact button.btn:hover {
    background: #67a2d7;
    color: #fff;
}
@media (max-width: 900px) {
    .contact {
        padding: 60px 0 40px 0;
    }
    .contact .row {
        flex-direction: column;
    }
    .contact .col-md-5, .contact .col-md-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .contact form {
        padding: 24px 10px 18px 10px;
    }
}
@media (max-width: 600px) {
    .contact {
        padding: 36px 0 20px 0;
    }
    .contact .heading h2 {
        font-size: 1.3rem;
    }
    .contact .heading p {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
    .contact .form-control {
        font-size: 0.98rem;
        padding: 14px 10px;
    }
    .contact form {
        padding: 12px 2px 10px 2px;
    }
}

/* Footer */
footer {
  background: #fff;
  color: #183153;
}

.footer-top {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 10px 0 0 0;
  padding: 0;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
  display: block;
}
.footer-social a:hover img {
  transform: scale(1.12);
  opacity: 0.85;
}
.footer-links, .footer-hours, .footer-location {
  min-width: 180px;
}
.footer-links h4, .footer-hours h4, .footer-location h4 {
  margin-bottom: 10px;
}
.footer-links ul, .footer-hours ul {
  list-style: none;
  padding-left: 0;
}
.footer-links ul li, .footer-hours ul li {
  margin-bottom: 6px;
}
.footer-links ul li a {
  color: #183153;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #4a7bd8;
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding: 12px 0;
  background: #f7f9fb;
  font-size: 0.95rem;
  color: #183153;
  border-top: 1px solid #e0e0e0;
}
.footer-map {
  margin-top: 16px;
  width: 100%;
}
.footer-map iframe {
  width: 100%;
  min-width: 180px;
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  border: none;
  display: block;
  pointer-events: auto;
}

/* Section Spacing */
/* section {
  margin-bottom: 48px;
} */

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

  .hero-content,
  .about-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    min-height: unset;
  }

  .hero-image img,
  .about-cta-image img {
    max-height: 220px;
    aspect-ratio: 16/9;
  }

  .about-cta,
  .hero-content {
    padding: 0 8px;
  }

  .hero-content,
  .services-list,
  .about-cta,
  .team-list,
  .footer-top,
  .contact-section {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    align-items: center;
  }

  .nav-container {
    flex-direction: row;
  }

  .nav-cta {
    margin-left: 0;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
  }
  .footer-logo, .footer-links, .footer-hours, .footer-location {
    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
    align-items: center;
  }
  .footer-map iframe {
    height: 160px;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 10px;
  }

  .hero-content,
  .about-cta {
    gap: 16px;
  }

  service-card,
  .team-member {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    position: relative;
  }

  .about-cta-content,
  .about-cta-image {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .footer-map iframe {
    height: 120px;
  }
  .footer-social a img {
    width: 22px;
    height: 22px;
  }
  .footer-top {
    gap: 12px;
    padding: 16px 0;
  }
}

/* About CTA Section - Two Column Responsive */
.about-cta-section {
  display: flex;
  justify-content: center;
  padding: 48px 0;
  background: transparent;
}
/* .about-cta-container {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(90deg, #cddff4, #e3eaf6);
  box-shadow: 0 4px 24px rgba(24,49,83,0.08);
  border-radius: 12px;
  overflow: visible;
  padding: 0;
} */

.about-cta-container {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(90deg, #b0d5ff, #ffffff);
  box-shadow: 0 4px 24px rgba(24,49,83,0.08);
  border-radius: 12px;
  overflow: visible;
  padding: 0;
}
.about-cta-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  z-index: 2;
}
.about-cta-left h2 {
  color: #183153;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.about-cta-left p {
  color: #222;
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.about-cta-left .btn-primary {
  width: fit-content;
  min-width: 120px;
  padding: 12px 32px;
  font-size: 1rem;
  margin-top: 8px;
}
.about-cta-right {
  flex: 1;
  position: relative;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  z-index: 3;
}
/* .cta-image-right {
  width: 420px;
  max-width: none;
  height: 320px;
  object-fit: cover;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 8px 32px rgba(24,49,83,0.12);
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
} */
.cta-image-right {
  width: 543px;
  max-width: none;
  height: 336px;
  object-fit: contain;
  border-radius: 0 18px 18px 0;
  position: absolute;
  right: -3px;
  top: 41%;
  transform: translateY(-50%);
  background: none;
  box-shadow: none;
}
@media (max-width: 1100px) {
  .cta-image-right {
    width: 300px;
    right: -40px;
    height: 220px;
  }
}
@media (max-width: 900px) {
  .about-cta-container {
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
  }
  .about-cta-left, .about-cta-right {
    padding: 32px 16px;
    min-width: 0;
    width: 100%;
    position: static;
  }
  .about-cta-right {
    justify-content: center;
    align-items: center;
    padding: 0 0 24px 0;
  }
  .cta-image-right {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
    margin-top: 16px;
  }
  .about-cta-left {
    align-items: center;
    text-align: center;
  }
  .about-cta-left .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Modern Animated Header & Mobile Menu */
.header {
  height: 5rem;
  background-color: #fff;
  position: relative;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(24,49,83,0.04);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 5rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 32px;
}
.logo img {
  height: 56px;
  width: auto;
  max-width: 180px;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  position: relative;
}
.nav__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: static;
  background: none;
  box-shadow: none;
  justify-content: center;
}
.nav__toggle {
  display: none;
}
@media (max-width: 900px) {
  .nav-container {
    padding: 0 10px;
    height: 4.2rem;
    justify-content: space-between;
  }
  .logo {
    margin-right: 0;
  }
  .logo img {
    height: 44px;
    max-width: 120px;
    margin: 0;
  }
  .nav {
    flex: unset;
    justify-content: flex-end;
  }
  .nav__toggle {
    display: inline-block;
    position: relative;
    z-index: 10;
    right: 0;
    top: 0;
    margin-left: auto;
  }
  .nav__menu {
    display: none;
  }
  .nav--open .nav__menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #183153 !important;
    box-shadow: none;
    z-index: 1002;
    margin: 0;
    padding: 80px 24px 24px 24px;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
  }
}
@media (min-width: 901px) {
  .nav__toggle {
    display: none !important;
  }
  .nav__menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    height: auto;
    width: auto;
    box-shadow: none;
    padding: 0;
    gap: 32px;
    visibility: visible;
    justify-content: center;
  }
}

/* Active Navigation Link Styling */
.nav__link {
  color: #183153;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav__link:hover {
  color: #2fbfa7;
}

.nav__link.active {
  color: #183153;
  font-weight: 600;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #183153;
  border-radius: 2px;
}

/* Active link styling for mobile menu */
.nav--open .nav__link.active {
  color: #2fbfa7 !important;
}

.nav--open .nav__link.active::after {
  background-color: #2fbfa7;
}

/* Footer Responsive Polish */
.footer-top {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
  }
  .footer-logo, .footer-links, .footer-hours, .footer-location {
    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-map iframe {
    height: 160px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .footer-map iframe {
    height: 120px;
  }
  .footer-social a img {
    width: 22px;
    height: 22px;
  }
  .footer-top {
    gap: 12px;
    padding: 16px 0;
  }
  .footer-logo img {
    width: 180px;
  }
}
/* General Responsive Polish */
@media (max-width: 600px) {
  .hero-content, .about-main, .about-cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .about-content, .about-box-cta, .about-cta-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .nav--open .nav__menu {
    background: #183153 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 0;
    max-width: none;
    box-shadow: none;
    z-index: 1002;
    margin: 0;
    padding: 80px 24px 24px 24px;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
  }
  .nav--open .nav__toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1100;
    background: #183153;
    color: #fff;
  }
  .splash {
    display: none;
  }
}
.nav--open .nav__link {
  color: #fff !important;
  font-size: 1.25rem;
  letter-spacing: 2px;
  background: none;
  display: block;
}
.nav--open .nav__link.btn-primary {
  background: #fff;
  color: #183153 !important;
}
@media (min-width: 901px) {
  .nav-container {
    justify-content: space-between;
  }
  .nav {
    flex: 1;
    justify-content: right;
  }
  .nav__menu {
    justify-content: center;
  }
  .header .btn-primary {
    margin-left: 240px;
    margin-right: 0;
    align-self: center;
    display: inline-block;
  }
}
/* Fix SVG icon color */
.menuicon {
  color: #183153;
}
.nav--open .menuicon {
  color: #fff;
}

.menuicon line,
.menuicon circle {
  stroke: currentColor !important;
  fill: none !important;
}

.header-cta {
  margin-left: 32px;
  margin-right: 0;
  align-self: center;
  display: inline-block;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 32px;
}
@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
}

/* --- Modern Team Grid Custom Styles --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0 auto;
  max-width: 1200px;
  margin-bottom: 64px; /* Add space below the grid */
}
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24,49,83,0.10);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s;
  min-height: 320px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  transition: transform 0.4s ease;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(24,49,83,0.18);
}
.team-card:hover img {
  transform: scale(1.10);
}
.team-overlay p {
  margin: 0 0 12px 0;
  font-size: 1rem;
  color: #e0e0e0;
}
.team-overlay .team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.team-overlay .team-role {
  font-size: 0.98rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #d1fae5;
}
.team-overlay .team-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.team-overlay .team-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.team-overlay .team-social a:hover {
  color: #4fd1c5;
}
/* Remove default border radius for images in team cards */
.team-card img {
  border-radius: 0;
}

/* --- Team Card Overlay Styles (from user) --- */
body{margin-top:20px;
background:#eee;
}
.team-style1 {
    position: relative;
    display: block;
    overflow: hidden;
}

/* Professional 10% zoom effect on team images */
.team-style1 img {
    transition: transform 0.4s ease;
}

.team-style1:hover img {
    transform: scale(1.10);
}

.team-style1 .team-info {
  bottom: 15px;
  left: 15px;
  right: 15px;
  border-radius: 5px;
  transform: translate3d(0px, 0%, 0px);
  transition: all 0.3s ease;
  padding: 12px 9px;
  box-shadow: 0px 5px 24.25px 0.75px rgba(0,0,0,0.1);
  background: #ffffff;
  position: absolute;
  z-index: 2;
}

/* Team overlay removed - no longer needed */
.team-style1 .team-overlay {
    display: none;
}

/* Bottom info card animation - moves down on hover */
.team-style1:hover .team-info {
    transform: translate3d(0px, 130px, 0px);
    transition-delay: 0.2s;
}

.team-style1 .social-icon-style1 {
    border-top: 2px dotted rgba(255,255,255,0.3);
    margin-top: 15px;
    padding-top: 20px
}

.team-bg-shape img {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 0
}

@media screen and (max-width: 991px) {
    .team-style1 .team-info {
        padding:20px
    }
}

.team-style1 .social-icon-style1 {
    border-top: 2px dotted rgba(255,255,255,0.3);
    margin-top: 15px;
    padding-top: 20px;
}

.social-icon-style1 {
    margin: 0;
    list-style-type: none;
    padding-left: 0;
}

.social-icon-style1 li {
    display: inline-block;
    margin-right: 5px;
}

.social-icon-style1 li a {
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    color: #1a4168;
    background-color: #ffffff;
}

a {
text-decoration:none;    
}

/* Ensure 'Details' in 'Contact Details' heading is navy blue */
.contact .title h3 span {
    color: #67a2d7;
    font-weight: 700;
}

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(24,49,83,0.07);
}

main {
  padding-top: 60px; /* Adjust if your header is taller/shorter */
}

@media (max-width: 900px) {
  main {
    padding-top: 70px;
  }
  header.header {
    box-shadow: 0 1px 4px rgba(24,49,83,0.10);
  }
}

/* Overlay effect for all hero/banner sections */
.about-hero, .contact-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero img, .contact-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.7);
  display: block;
}
.about-hero::after, .contact-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #183153;
  opacity: 0.2;
  z-index: 1;
}
.about-title, .contact-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-title h1, .contact-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(24,49,83,0.25);
  margin: 0;
}
@media (max-width: 700px) {
  .about-hero, .contact-hero, .about-hero img, .contact-hero img {
    height: 160px;
  }
  .about-title h1, .contact-title h1 {
    font-size: 1.3rem;
    padding: 0 10px;
  }
  .about-title, .contact-title {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    padding: 0;
  }
}

/* Full-width Contact Map */
.contact-map {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: #e3eaf6;
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  max-width: none;
}
.contact-map iframe {
  width: 100vw;
  min-height: 300px;
  max-width: 100vw;
  border: 0;
  display: block;
  margin: 0;
}
@media (max-width: 700px) {
  .contact-map iframe {
    min-height: 200px;
  }
}

@media (max-width: 700px) {
  .nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
    height: auto;
    position: relative;
  }
  .logo {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
    width: auto;
    flex: 0 0 auto;
    z-index: 2;
  }
  .logo img {
    margin: 0;
    height: 65px;
    max-width: 160px;
}
  .header-cta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    max-width: 320px;
    display: block;
    text-align: center;
    font-size: 1.1rem;
    z-index: 1;
  }
  .nav__toggle {
    margin: 0 0 0 12px;
    display: block;
    text-align: right;
    flex: 0 0 auto;
    z-index: 2;
  }
}

@media (max-width: 700px) {
  .about-discover-text {
    text-align: center;
    align-items: center;
    margin: 0 auto;
    width: 100vw;
    max-width: 390px;
    padding: 29px 4px 27px 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  .about-discover-text .btn-primary {
    margin: 16px auto 0 auto;
    display: block;
    width: 90vw;
    max-width: 320px;
  }
}

/* Utility classes for responsive display */
@media (max-width: 900px) {
  .d-md-none { display: block !important; }
  .d-md-inline-block { display: none !important; }
}
@media (min-width: 901px) {
  .d-md-none { display: none !important; }
  .d-md-inline-block { display: inline-block !important; }
}