
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  color:#1a1a1a;
  line-height:1.6;
  background:#ffffff;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  background:#ffffff;
  border-bottom:1px solid #e5e5e5;
  position:sticky;
  top:0;
  z-index:1000;
}

header{
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}

nav a{
  margin-Left:25px;
  text-decoration:none;
  color:#003b8f;
  font-weight:bold;
}

.hero{
  background:linear-gradient(rgba(0,59,143,0.8), rgba(0,59,143,0.8)),
  url('logo.jpeg') center no-repeat;
  color:white;
  padding:240px 0;
  text-align:center;
}

.hero h1{
  font-size:3rem;
  margin-bottom:20px;
}

.hero p{
  font-size:1.2rem;
  max-width:750px;
  margin:auto;
}

.buttons{
  margin-top:35px;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  margin:10px;
  border-radius:5px;
  text-decoration:none;
  font-weight:bold;
}

.primary{
  background:#00a3ff;
  color:white;
}

.secondary{
  border:2px solid white;
  color:white;
}

.services{
  padding:80px 0;
}

.services h2,
.about h2,
.service-area h2,
.contact h2{
  text-align:center;
  margin-bottom:5px;
  color:#003b8f;
  font-size:2.2rem;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:25px;
}

.card{
  background:#f8f9fb;
  padding:30px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.card h3{
  margin-bottom:15px;
  color:#003b8f;
}

.about{
  background:#eef5ff;
  padding:80px 0;
  text-align:center;
}

.about p{
  max-width:900px;
  margin:20px auto;
  font-size:1.1rem;
}

.service-area{
  padding:80px 0;
  text-align:center;
}

.contact{
  background:#003b8f;
  color:white;
  padding:10px 0;
  text-align:center;
}

.contact-box{
  margin-top:10px;
  font-size:1.1rem;
}

.contact a{
  color:#7fd3ff;
}

footer{
  background:#001f4d;
  color:white;
  text-align:center;
  padding:10px 0;
}

@media(max-width:768px){

  .nav{
    flex-direction:column;
  }

  nav{
    margin-top:15px;
  }

  nav a{
    margin:0 10px;
  }

  .hero h1{
    font-size:2rem;
  }

  .logo-section img{
    height:65px;
  }

}
.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00a3ff;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-float:hover {
  background: #008ed6;
}
