* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: "Roboto", sans-serif; }


  /* HEADER */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo img {
    width: 170px;
    height: 150px;
    object-fit: contain;
  }
  .logo-text {
    color: #2751A3;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
  }
  nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  nav a {
    text-decoration: none;
    color: #0D1B36;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
    margin: 0px 20px;
  }
  nav a.active { color: #e8a030; border-bottom: 2px solid #e8a030; padding-bottom: 2px; }
  nav a:hover { color: #e8a030; }

  /* DROPDOWN MENU */
  .dropdown {
    position: relative;
  }
  .dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.25s;
  }
  .dropdown:hover > a::after {
    transform: rotate(180deg);
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    transform: translateX(-50%) translateY(8px);
    z-index: 200;
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu a {
    display: block;
    padding: 10px 22px !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: #0D1B36 !important;
    border-bottom: none !important;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .dropdown-menu a:hover {
    background: #f5f5f5;
    color: #e8a030 !important;
  }
  .dropdown-menu a.active {
    color: #e8a030 !important;
    border-bottom: none !important;
  }
  .social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .social-icons a {     color: #222;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.2s;
    margin-left: 20px; }
  .social-icons a:hover { color: #2751A3; }

  /* HERO */
  .hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(90,110,130,0.7), rgba(90,110,130,0.7)),
      url('../img/header.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
  }
  .hero h1 {
    font-family: "Roboto", sans-serif;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  }
  .hero p {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 1px;
  }

  /* ABOUT SECTION */
  .about {
    display: flex;
    align-items: stretch;
    max-width: 1100px;
    margin: 60px auto;
    gap: 50px;
    padding: 0 40px;
  }
  .about-text { flex: 1; }
  .about-text h2 {
    font-family: "Roboto", sans-serif;
    color: #2751A3;
    font-size: 40px;
    margin-bottom: 20px;
  }
  .about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #0D1B36;
    margin-bottom: 18px;
    font-weight: 300;
}
  .about-text h3 {
    color: #2751A3;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .about-img {
    flex: 1;
    max-width: 480px;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }

  /* CTA BANNER */
  .cta-banner {
    position: relative;
    background: linear-gradient(rgba(80,100,130,0.5), rgba(80,100,130,0.5)),
      url('../img/consultation.jpg') center/cover no-repeat;
    padding: 70px 20px;
    text-align: center;
    color: #fff;
  }
  .cta-banner h2 {
    font-family: "Roboto", sans-serif;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
  }
  .cta-btn {
    background: #F97425;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
  }
  .cta-btn:hover { background: #c8881e; transform: scale(1.03); }

  /* FOOTER */
  footer {
    background: #c8cdd6;
  }
  .footer-top {
    display: flex;
    gap: 30px;
    padding: 40px;
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-info {
    background: #2751A3;
    color: #fff;
    padding: 24px 20px;
    border-radius: 4px;
    min-width: 30%;
    font-size: 16px;
    line-height: 2;
    font-weight: 300;
  }
  .footer-info h4 { font-weight: 700; margin-bottom: 4px; font-size: 16px; }
  .footer-info a { color: #7ab0e8; text-decoration: none; }
  .footer-info a:hover { text-decoration: underline; }
  .footer-map {
    flex: 1;
    min-height: 260px;
    border-radius: 4px;
    overflow: hidden;
  }
  .footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: none;
  }
  .footer-bottom {
    background: #2751A3;
    color: #ccc;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 300;
  }
  .footer-bottom .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  .footer-bottom img { height: 40px; }

  /* Logo placeholder SVG */
  .logo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2751A3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
  }

  /* HAMBURGER BUTTON */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    height: 2px;
    background: #0D1B36;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* OFF-CANVAS OVERLAY */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; }

  /* SOCIAL ICONS INSIDE NAV (mobile only) */
  .nav-social-icons { display: none; }

  @media (max-width: 768px) {
    /* Non-sticky header on mobile */
    header { position: static; padding: 10px 16px; }

    /* Hide desktop social icons on mobile */
    .social-icons { display: none; }

    /* Show hamburger */
    .hamburger { display: flex; }

    /* Off-canvas nav */
    nav {
      position: fixed;
      top: 0;
      right: -360px;
      width: 360px;
      height: 100%;
      background: #fff;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0;
      padding: 80px 30px 40px;
      z-index: 160;
      transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
      box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    }
    nav.open { right: 0; }

    nav a {
      font-size: 18px;
      font-weight: 400;
      margin: 0;
      padding: 14px 0;
      width: 100%;
      border-bottom: 1px solid #eee;
      color: #0D1B36;
    }
    nav a.active { color: #e8a030; border-bottom: 1px solid #eee; }

    /* Mobile dropdown */
    .dropdown {
      width: 100%;
    }
    .dropdown > a {
      position: relative;
      display: block;
    }
    .dropdown > a::after {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
    .dropdown-menu {
      position: static;
      transform: none;
      min-width: 0;
      box-shadow: none;
      border-radius: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      opacity: 1;
      visibility: visible;
      transition: max-height 0.35s ease, opacity 0.25s;
      background: #f9f9f9;
    }
    .dropdown.open .dropdown-menu {
      max-height: 500px;
    }
    .dropdown.open > a::after {
      transform: translateY(-50%) rotate(180deg);
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: none;
    }
    .dropdown-menu a {
      padding: 12px 20px 12px 30px !important;
      font-size: 15px !important;
      border-bottom: 1px solid #eee !important;
    }

    /* Show social icons at bottom of nav */
    .nav-social-icons {
      display: flex;
      gap: 20px;
      margin-top: auto;
      padding-top: 30px;
    }
    .nav-social-icons a {
      color: #222;
      font-size: 22px;
      text-decoration: none;
      border: none !important;
      padding: 0 !important;
      width: auto !important;
      transition: color 0.2s;
    }
    .nav-social-icons a:hover { color: #2751A3; }

    /* Show overlay */
    .nav-overlay { display: block; }

    .about { flex-direction: column; padding: 0 20px; }
    .about-img { max-width: 100%; }
    .footer-top { flex-direction: column; padding: 20px; }
    .hero h1 { font-size: 28px; }
  }
  /* ABOUT SPLIT LAYOUT (full-width edge-to-edge images) */
  .about-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    overflow: hidden;
  }
  .about-split-text {
    flex: 0 0 50%;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
  }
  .about-split-text h2 {
    font-family: "Roboto", sans-serif;
    color: #2751A3;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .about-split-text h3 {
    color: #2751A3;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .about-split-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #0D1B36;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .about-split-text li {
    font-size: 18px;
    line-height: 1.8;
    color: #0D1B36;
    font-weight: 300;
  }

  .about-split-text ul, .about-split-text ol {
    margin-left: 20px;
   }

  .about-split-img {
    flex: 0 0 50%;
    overflow: hidden;
  }
  .about-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .about-split { flex-direction: column; }
    .about-split-text { flex: none; padding: 40px 24px; }
    .about-split-img { flex: none; height: 280px; }
    .about-split-text h2 { font-size: 26px; }
  }

  /* =====================
     MEET THE TEAM PAGE
     ===================== */

  /* Hero banner - full width image */
  .team-hero {
    width: 100%;
    height: 320px;
    overflow: hidden;
  }
  .team-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }

  /* Intro text block - centered, constrained width */
  .team-intro {
    max-width: 580px;
    margin: 60px auto 50px;
    text-align: center;
    padding: 0 24px;
  }
  .team-intro h2 {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0D1B36;
    margin-bottom: 24px;
  }
  .team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #0D1B36;
    font-weight: 300;
    margin-bottom: 14px;
  }

  /* Two-column card grid */
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
  }

  /* Individual card */
  .team-card {
    background: #CCCDD2;
    border-radius: 2px;
    overflow: hidden;
  }
  .team-card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  .team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .team-card-body {
    padding: 20px 22px 28px;
  }
  .team-role {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
  }
  .team-card-body h3 {
    color: #2751A3;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  .team-card-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #0D1B36;
    font-weight: 300;
    margin-bottom: 12px;
  }
  .team-card-body p:last-child { margin-bottom: 0; }

  /* Mobile */
  @media (max-width: 768px) {
    .team-hero { height: 200px; }
    .team-intro h2 { font-size: 30px; }
    .team-grid {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }
    .team-card-img { height: 220px; }
  }

  /* =====================
     SERVICES PAGE
     ===================== */


  .subservices-intro {
    max-width: 780px;
    margin: 60px auto 50px;
    text-align: left;
    padding: 0 24px;
  }
  .subservices-intro h2 {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0D1B36;
    margin-bottom: 24px;
  }
  .subservices-intro p, .subservices-intro li {
    font-size: 18px;
    line-height: 1.4;
    color: #0D1B36;
    font-weight: 300;
    margin-bottom: 14px;
  }

  .subservices-intro ul {
    margin-left: 20px;
  }



  /* Services Hero - split layout with orange left bg */
  .services-hero {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    overflow: hidden;
  }
  .services-hero-text {
    flex: 0 0 42%;
    background: #FFFFFF;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .services-hero-text h1 {
    font-family: "Roboto", sans-serif;
    color: #0D1B36;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
  }
  .services-hero-text p {
    font-size: 15px;
    line-height: 1.75;
    color: #0D1B36;
    margin-bottom: 30px;
    font-weight: 300;
  }
  .services-cta-btn {
    display: inline-block;
    background: #F97425;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: background 0.2s, transform 0.1s;
    align-self: flex-start;
  }
  .services-cta-btn:hover {
    background: #d8601a;
    transform: scale(1.03);
  }
  .services-hero-img {
    flex: 0 0 58%;
    overflow: hidden;
  }
  .services-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Testimonials Section */
  .testimonials {
    padding: 60px 0px 70px;
  }
  .testimonials h2 {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    background-color: #5B5C70;
    line-height: 95px;
    padding: 20px 0px
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 95%;
    margin: 0 auto;
    align-items: start;
  }
  .testimonial-card {
    text-align: center;
    padding: 10px 16px;
  }
  .testimonial-card .quote-icon {
    margin-bottom: 16px;
  }
  .testimonial-card .quote-icon i {
    font-size: 36px;
    color: #e8a030;
  }
  .testimonial-card h3 {
    font-family: "Roboto", sans-serif;
    color: #e8a030;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #0D1B36;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .testimonial-card p:last-child {
    margin-bottom: 0;
  }

  /* Bottom Image Strip */
  .services-bottom-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  .services-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Services Page Mobile */
  @media (max-width: 768px) {
    .services-hero {
      flex-direction: column;
      min-height: auto;
    }
    .services-hero-text {
      flex: none;
      padding: 40px 24px;
    }
    .services-hero-text h1 {
      font-size: 34px;
    }
    .services-hero-img {
      flex: none;
      height: 280px;
    }
    .testimonials {
      padding: 40px 20px 50px;
    }
    .testimonials h2 {
      font-size: 26px;
      margin-bottom: 30px;
    }
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .services-bottom-img {
      height: 200px;
    }
  }