*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f7f9fc;
  color:#222;
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 7%; /* reduce vertical padding */
  background:white;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

/* NAV LINKS */

.nav-links{
  display:flex;
  list-style:none;
  gap:28px; /* reduced from 45px */
}
.nav-links a{
  font-size:18px;
  font-weight:700;
  color:#082d67;
  text-decoration:none;
}

.nav-links a:hover{
  color:#c5160c;
}

/* HAMBURGER */

.hamburger{
  display:none;
  font-size:32px;
  cursor:pointer;
  color:#082d67;
}

/* HERO */

.hero{
  position:relative;

  background:
  linear-gradient(
    rgba(8,45,103,0.68),
    rgba(8,45,103,0.68)
  ),
  url("images/hero-image (2).jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:white;
  text-align:center;

  min-height:600px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:120px 7%;
}
.hero-content{
  max-width:950px;
  margin:auto;

  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:68px;
  line-height:1.2;
  margin-bottom:25px;

  font-weight:800;

  text-shadow:0 4px 14px rgba(0,0,0,0.35);
}

.hero-content p{
  font-size:22px;
  line-height:1.9;

  max-width:900px;
  margin:auto auto 35px;

  text-shadow:0 3px 10px rgba(0,0,0,0.3);
}
@media(max-width:900px){

  .hero{
    min-height:90vh;
    padding:120px 25px 90px;

    background-position:center;
  }

  .hero-content h1{
    font-size:46px;
  }

  .hero-content p{
    font-size:18px;
  }
}

@media(max-width:600px){

  .hero{
    min-height:85vh;
    padding:110px 20px 80px;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.7;
  }
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn{
  padding:15px 35px;

  background:#c5160c;
  color:white;

  border-radius:10px;

  text-decoration:none;
  font-weight:600;

  transition:0.3s;
}

.secondary-btn{
  padding:15px 35px;

  background:white;
  color:#082d67;

  border-radius:10px;

  text-decoration:none;
  font-weight:600;

  transition:0.3s;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-4px);
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  margin-bottom:45px;
}

.section-title h2{
  font-size:42px;
  color:#082d67;
}

/* ABOUT */

.about-section{
  padding:110px 7%;
  background:white;
}

.about-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
  align-items:center;
}

.about-image{
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-image img{
  width:100%;
  max-width:450px;

  height:500px;
  object-fit:cover;

  border-radius:20px;

  box-shadow:0 5px 18px rgba(0,0,0,0.08);
}

.about-content p{
  font-size:18px;
  line-height:1.9;
  color:#444;
}

/* SERVICES */

.services{
  padding:110px 7%;
}

.service-grid{
  max-width:1600px;

  margin:0 auto;

  display:grid;

  grid-template-columns:repeat(5, 1fr);

  gap:24px;

  justify-content:center;
  align-items:stretch;
}

/* CARD */

.service-card{
  position:relative;
  overflow:hidden;

  border-radius:18px;

  box-shadow:0 5px 18px rgba(0,0,0,0.08);

  transition:0.4s ease;
  cursor:pointer;

  height:300px;
}

/* IMAGE */

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:0.5s ease;
}

/* OVERLAY */

.service-overlay{
  position:absolute;
  left:0;
  bottom:0;

  width:100%;
  height:100%;

  background:linear-gradient(
    to top,
    rgba(5,34,84,0.96),
    rgba(5,34,84,0.15)
  );

  color:#fff;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;

  padding:22px;

  transition:0.4s ease;
}

/* SERVICE NAME */

.service-overlay h3{
  width:100%;

  font-size:20px;
  font-weight:700;

  line-height:1.5;
  text-align:center;

  margin-bottom:0;

  transition:0.4s ease;
}

/* DESCRIPTION */

.service-overlay p{
  opacity:0;

  max-height:0;
  overflow:hidden;

  font-size:15px;
  line-height:1.7;

  text-align:center;

  margin-top:12px;

  transition:0.4s ease;
}

/* HOVER EFFECT */

.service-card:hover img{
  transform:scale(1.08);
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card:hover .service-overlay{
  background:linear-gradient(
    to top,
    rgba(5,34,84,0.97),
    rgba(5,34,84,0.45)
  );
}

.service-card:hover .service-overlay p{
  opacity:1;
  max-height:140px;
}

/* TABLET */

@media(max-width:1200px){

  .service-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

/* MOBILE */

@media(max-width:768px){

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .service-card{
    height:260px;
  }

  .service-overlay h3{
    font-size:18px;
  }

  .service-overlay p{
    font-size:14px;
  }

}

@media(max-width:520px){

  .service-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    height:240px;
  }

}

/* CONTACT */

.contact-section{
  padding:110px 7%;
  background:#eef4ff;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.contact-form,
.map-section{
  background:white;
  padding:35px;

  border-radius:18px;

  box-shadow:0 5px 18px rgba(0,0,0,0.08);
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px;

  border:1px solid #ddd;
  border-radius:10px;

  font-size:15px;
  outline:none;
}

.contact-form button{
  background:#c5160c;
  color:white;

  border:none;

  padding:15px;

  border-radius:10px;

  font-size:16px;
  font-weight:600;

  cursor:pointer;
}

.map-section iframe{
  width:100%;
  height:100%;
  min-height:420px;

  border:none;
  border-radius:12px;
}

/* FOOTER */

footer{
  background:#04152d;
  color:#fff;
}

/* CONTAINER */

.footer-container{
  max-width:1400px;

  margin:auto;

  display:grid;
  grid-template-columns:1.2fr 1.1fr 0.8fr 0.9fr;

  gap:45px;

  padding:38px 5%;
}

/* BRAND */

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;

  margin-bottom:14px;
}


.footer-brand img{
  width:58px;
}


.footer-brand h3{
  color:white;
  font-size:24px;
  line-height:1.3;
}

/* COLUMN */

.footer-column{
  text-align:left;
}

.footer-column h3{
  font-size:18px;
  margin-bottom:18px;
}


/* TEXT */

.footer-column p,
.footer-column a{
  font-size:15px;
  line-height:1.9;
  color:#e4e4e4;
  text-decoration:none;
}


/* LINKS */

.footer-column a{
  display:block;

  color:#ddd;
  text-decoration:none;

  margin-bottom:14px;

  transition:0.3s;
}

.footer-column a:hover{
  color:#ff4b2b;
}

/* CONTACT DETAILS */

.contact-details{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;

  font-size:15px;
  line-height:1.8;
}

.contact-item i{
  color:#ff4b2b;
  font-size:15px;
  min-width:18px;
  margin-top:5px;
}

/* COPYRIGHT */

.copyright{
  text-align:center;

  padding:14px;

  font-size:13px;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVE */

@media(max-width:1000px){

  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
  }

}

@media(max-width:650px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-brand{
    justify-content:flex-start;
  }

} 

/* RESPONSIVE */

@media(max-width:900px){

  .nav-links{
    position:absolute;
    top:100%;
    right:0;

    width:100%;

    background:white;

    flex-direction:column;
    align-items:center;

    padding:25px 0;

    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .hamburger{
    display:block;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:17px;
  }
}

@media(max-width:600px){

  .hero{
    padding:140px 20px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

  .section-title h2{
    font-size:32px;
  }

  .service-card img{
    height:240px;
  }
}
/* =========================
   RESPONSIVE NAVBAR + LOGO
========================= */

.logo-section img{
  width:95px;
  height:auto;
  display:block;
}
/* LARGE TABLET */

@media(max-width:992px){

  .navbar{
    padding:12px 5%;
  }

  .logo-section img{
    width:110px;
  }

  .nav-links{
    gap:28px;
  }

  .nav-links a{
    font-size:17px;
  }
}

/* MOBILE MENU */

@media(max-width:900px){

  .navbar{
    padding:14px 5%;
  }

  .logo-section img{
    width:95px;
  }

  .hamburger{
    display:block;
    font-size:30px;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:#fff;

    flex-direction:column;
    align-items:center;

    gap:22px;

    padding:25px 0;

    display:none;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    font-size:18px;
  }
}

/* SMALL MOBILE */

@media(max-width:600px){

  .navbar{
    padding:12px 4%;
  }

  .logo-section img{
    width:80px;
  }

  .hamburger{
    font-size:28px;
  }

  .nav-links a{
    font-size:17px;
  }
}
/* FOOTER CONTACT LINKS */

.footer-contact-link{
  color:#e4e4e4;
  text-decoration:none;
  transition:0.3s;
}

.footer-contact-link:hover{
  color:#ff4b2b;
}