body {
  font-family: 'Segoe UI', sans-serif;
}

.nav-gradient {
  background: linear-gradient(90deg, #0d47a1, #1b5e20);
}

.logo {
  height: 48px;
  margin-top: 8px;
}

/* HERO */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.hero h1 {
  font-weight: 700;
  animation: slideUp 1.2s ease forwards;
}

.hero p {
  animation: fadeIn 1.8s ease forwards;
}




/* SECTIONS */
.section {
  padding: 80px 0;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* PARALLAX HEIGHT */
.parallax-container {
  height: 380px;
}

.parallax img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.9);
}

/* TRUST ICONS */
.trust-icon i {
  font-size: 60px;
  color: #0d47a1;
  transition: transform .3s;
}

.trust-icon:hover i {
  transform: scale(1.15);
}

/* ANIMATIONS */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.valign-wrapper {
    transition: transform 0.3s ease;
}

.valign-wrapper:hover {
    transform: translateX(6px);
}

.section h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.section i.large {
    margin: 15px 0;
}

.section p {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
}


.page-footer {
    padding-top: 30px;
}

.page-footer i.material-icons {
    vertical-align: middle;
    margin-right: 6px;
}

.footer-link {
    color: #fff;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-social a {
    margin: 0 12px;
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: #64b5f6;
}

.footer-contact p {
    margin: 6px 0;
}

.project-grid {
    margin-top: 40px;
}

.project-grid {
    margin-top: 50px;
}

.project-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.project-item img {
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.project-item img:hover {
    transform: scale(1.05);
}

.service-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}


