: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); }

  

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

  p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 200;
  }

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* spacing consistency */
section {
  position: relative;
}

/* service cards */
.service-card {
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* icons */
.icon {
  font-size: 28px;
  color: #0d6efd;
}

/* gallery */
.gallery-card {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-img {
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

/* testimonials */
.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

/* reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}


.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: 0.4s ease;
  text-align: center;
}

/* hover effects */
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}


.service-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon {
  font-size: 28px;
  color: #0d6efd;
}


/* project cards */
.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* featured large image */
.project-card.large img {
  height: 420px;
}

/* overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
  text-align: center;
  padding: 20px;
}

/* hover effect */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
}
