  
  *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f7f9fc;
  color:#333;
  line-height:1.6;
  overflow-x:hidden;
}
img{
  max-width:100%;
  display:block;
}
/* COMMON SECTION WIDTH */

.navbar,
.hero,
.services,
.contact-section,
footer{
  width:100%;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:10px 7%;     /* reduced padding */
  height:140px;         /* fixed navbar height */

  background:white;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);

  position:sticky;
  top:0;
  z-index:1000;

  overflow:hidden;
}

/* LOGO */

.logo-section{
  display:flex;
  align-items:center;

  height:100%;
}

.logo-section img{
  width:185px;      /* increase logo size here */
  height:140px  ;

  max-height:160px;  /* keeps navbar same height */

  display:block;
  object-fit:contain;
}

/* NAV LINKS */

.nav-links{
  display:flex;
  list-style:none;

  gap:50px;

  margin-left:auto;

  transform:translateX(-80px);  /* moved to left */
}

.nav-links a{
  text-decoration:none;
  color:#333;

  font-size:22px;     /* increase size */
  font-weight:700;

  transition:0.3s;
}

.nav-links a:hover{
  color:#f7931e;
}

.hamburger{
  display:none;
  font-size:30px;
  cursor:pointer;
  color:#0a3d91;
}

/* HERO */

.hero{
  background:
  linear-gradient(
    rgba(10,61,145,0.65),
    rgba(10,61,145,0.65)
  ),
  url("images/hero-image.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:white;
  text-align:center;
  padding:160px 7%;
}

.hero-content{
  max-width:900px;
  margin:auto;
}

.hero h1{
  font-size:58px;
  margin-bottom:25px;
}

.hero p{
  font-size:20px;
  margin-bottom:35px;
}

.quote-btn{
  padding:15px 35px;
  border:none;
  border-radius:10px;

  background:#f7931e;
  color:white;

  font-size:17px;
  font-weight:600;

  text-decoration:none;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  transition:0.3s;
}

.quote-btn:hover{
  transform:translateY(-3px);
}

.hero-buttons .secondary-btn{
  padding:15px 35px;
  border:none;
  border-radius:10px;

  background:white;
  color:#0a3d91;

  font-size:17px;
  font-weight:600;

  text-decoration:none;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  transition:0.3s;
}

.hero-buttons .secondary-btn:hover{
  transform:translateY(-3px);
}

.hero button:hover{
  transform:translateY(-3px);
}

.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  margin-bottom:45px;
}

.section-title h2{
  font-size:42px;
  color:#0a3d91;
  margin-bottom:10px;
}

.section-title p{
  color:#666;
}

/* MOVE TITLES UPWARD */

.about-section .section-title{
  margin-top:-40px;
}

.services .section-title{
  margin-top:-40px;
}

.contact-section .section-title{
  margin-top:-40px;
}
.section-title p{
  color:#666;
}

/* ABOUT SECTION */

.about-section{
  padding:160px 7%;
  background:white;
}

.about-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:18px;
  display:block;
  object-fit:cover;
  box-shadow:0 5px 18px rgba(0,0,0,0.08);
}

.about-content{
  flex:1;
}

.about-content p{
  font-size:18px;
  line-height:1.9;
  color:#555;
}

/* Responsive */

@media(max-width:900px){

  .about-container{
    flex-direction:column;
  }

  .about-content{
    text-align:center;
  }

}

/* SERVICES */

.services{
    padding:100px 7%;;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  position:relative;
  height:320px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 5px 18px rgba(0,0,0,0.08);
  transition:0.4s;
}

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* SERVICE OVERLAY */

.service-overlay{
  position:absolute;
  left:0;
  bottom:0;

  width:100%;

  background:linear-gradient(
    to top,
    rgba(10,61,145,0.95),
    rgba(10,61,145,0.35)
  );

  color:white;
  padding:22px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  transform:translateY(68%);
  transition:0.45s ease;
}

/* SERVICE NAME ALWAYS VISIBLE */

.service-overlay h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:14px;

  text-align:center;

  position:relative;
  z-index:2;
}

/* DESCRIPTION */

.service-overlay p{
  font-size:15px;
  line-height:1.8;
  text-align:center;
}

/* HOVER */

.service-card:hover .service-overlay{
  transform:translateY(0);
}

.service-overlay::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:120px;

  background:linear-gradient(
    to top,
    rgba(10,61,145,0.95),
    transparent
  );

  z-index:-1;
}

/* HOVER EFFECT */

.service-card:hover .service-overlay{
  transform:translateY(0);
}

/* TITLE */

.service-overlay h3{
  font-size:25px;
  font-weight:700;
  margin-bottom:12px;
  letter-spacing:0.4px;
}

/* DESCRIPTION */

.service-overlay p{
  font-size:15px;
  line-height:1.8;
  font-weight:500;
}

/* CONTACT */

.contact-section{
   padding:100px 7%;
  background:#eef4ff;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 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:#f7931e;
  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:#082d67;
  color:white;
}

/* 3 COLUMN LAYOUT */

.footer-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;

  padding:70px 9%;   /* increased side spacing */

  align-items:flex-start;
  justify-items:center;  /* move columns toward center */
}

/* COLUMN */

.footer-column h3{
  color:#f7931e;
  margin-bottom:22px;
  font-size:24px;
  line-height:1.4;
}

.footer-column p{
  color:#ddd;
  line-height:2;
  font-size:16px;
}

/* BRAND */

.footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.footer-brand img{
  width:95px;
  height:auto;
  object-fit:contain;
  flex-shrink:0;

  background:transparent;
  padding:0;
  border-radius:0;
}

.footer-brand h3{
  margin:0;
  font-size:24px;
  line-height:1.4;
  color:#f7931e;
}

/* CONTACT */

.footer-contact p{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}

.footer-contact i{
  color:#f7931e;
  margin-top:6px;
  min-width:18px;
  font-size:16px;
}

/* SOCIAL */

.social-icons{
  display:flex;
  gap:15px;
  margin-top:22px;
}

.social-icons i{
  width:42px;
  height:42px;

  background:#f7931e;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
  transition:0.3s;
}

.social-icons i:hover{
  transform:translateY(-4px);
  background:white;
  color:#082d67;
}

/* COPYRIGHT */

.copyright{
  text-align:center;
  padding:22px;
  border-top:1px solid rgba(255,255,255,0.12);

  color:#ddd;
  font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-brand{
    align-items:center;
  }

}

/* MOBILE */

@media(max-width:900px){

  .footer-container{
    grid-template-columns:1fr;
    gap:45px;
  }

}

/* RESPONSIVE */

@media(max-width:900px){

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    background:white;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .hamburger{
    display:block;
  }

  .hero h1{
    font-size:42px;
  }

  .contact-wrapper{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){

  .logo-section img{
    width:90px;
  }

  .hero{
    padding:120px 20px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

 .section-title{
  text-align:center;
  margin-bottom:45px;
}