:root{
    --brand-blue: #033375;
    --brand-gold: #fbc531;
  }

  .text-primary {
    color: var(--brand-blue) !important;
  }

  /* HERO */
  .hero-section { height: 70vh; min-height: 420px; position: relative; }
  .hero-slider { height: 100%; position: relative; }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1.2s ease;
    display: flex;
    align-items: center;
  }
  .hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,51,117,0.55) 0%, rgba(3,51,117,0.25) 40%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
    backdrop-filter: blur(0.6px);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
    text-align: left;
    padding: 40px 15px;
  }
  .hero-content h1 { font-weight: 700; letter-spacing: -0.4px; }
  .hero-content p { margin-top: 1rem; margin-bottom: 1.2rem; }

  .btn-cta {
    background: var(--brand-gold);
    border: none;
    color: var(--brand-blue);
    font-weight: 600;
    border-radius: 40px;
    padding: 10px 18px;
  }
  .btn-cta:hover { background: #e1a800; color: white; text-decoration: none; }

  .hero-controls { position: absolute; bottom: 12px; left: 0; right: 0; z-index: 3; }
  .hero-indicators { display:flex; gap:8px; align-items:center; }
  .hero-indicators button { width:12px; height:12px; border-radius:50%; border: none; background: rgba(255,255,255,0.4); }
  .hero-indicators button.active { background: var(--brand-gold); box-shadow:0 0 6px rgba(0,0,0,0.25); }

  /* Services */
  .service-card { background: white; border-radius: 12px; transition: transform .3s ease, box-shadow .3s ease; border: 1px solid rgba(3,51,117,0.06); }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(3,51,117,0.06); }
  .service-card .icon { font-size: 28px; color: var(--brand-gold); }

  /* Gallery */
  .gallery-card { overflow: hidden; border-radius: 10px; border: 1px solid #eee; }
  .gallery-img { display:block; width:100%; height:230px; object-fit:cover; transition: transform .4s ease; cursor: pointer; }
  .gallery-card:hover .gallery-img { transform: scale(1.06); }

  /* Testimonials */
  .testimonials-slider { position: relative; min-height: 220px; }
  .testimonial { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
  .testimonial.active { opacity: 1; transform: translateY(0); }
  .testimonial-avatar { width: 90px; height:90px; object-fit:cover; border: 4px solid #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }

  /* Reveal animation helper */
  [data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
  [data-reveal].revealed { opacity: 1; transform: none; }

  /* Responsive tweaks */
  @media (max-width: 991px) {
    .hero-content { padding: 28px 10px; max-width: 90%; }
    .hero-section { min-height: 520px; }
  }
  @media (max-width: 575px) {
    .gallery-img { height:160px; }
    .hero-section { min-height: 420px; }
  }

 h3, h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--brand-blue);
  }