/* css/style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#eef2f7;
  color:#333;
}

/* ================= HEADER ================= */

.header{
  width:100%;
  padding:15px 7%;
  background:#ffffff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:1000;

  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo-section{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:55px;
  height:55px;
  object-fit:contain;
}

.logo-section h2{
  color:#103d75;
}

.logo-section p{
  font-size:12px;
  color:#666;
}

.navbar{
  display:flex;
  align-items:center;
  gap:25px;
}

.navbar a{
  text-decoration:none;
  color:#103d75;
  font-weight:600;
}

.login-btn{
  background:#103d75;
  color:#fff !important;
  padding:10px 18px;
  border-radius:8px;
}

/* ================= HERO ================= */

.hero{
  width:100%;
  height:100vh;
  background:url("../images/background.png");
  background-size:cover;
  background-position:center;
  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  width:90%;
  max-width:800px;
}

.hero-content h1{
  font-size:55px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  line-height:1.7;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  text-decoration:none;
  padding:15px 28px;
  border-radius:10px;
  font-weight:bold;
  transition:0.3s;
}

.btn-primary{
  background:#103d75;
  color:#fff;
}

.btn-primary:hover{
  background:#14509a;
}

.btn-secondary{
  background:#fff;
  color:#103d75;
}

/* ================= ABOUT ================= */

.about{
  padding:90px 8%;
  text-align:center;
  background:#fff;
}

.about h2{
  color:#103d75;
  margin-bottom:25px;
  font-size:38px;
}

.about p{
  max-width:900px;
  margin:auto;
  line-height:1.9;
  color:#555;
}

/* ================= SERVICES ================= */

.services{
  padding:90px 8%;
}

.services h2{
  text-align:center;
  color:#103d75;
  margin-bottom:50px;
  font-size:38px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:25px;
}

.service-card{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;

  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.service-card i{
  font-size:40px;
  color:#103d75;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
  color:#103d75;
}

.service-card p{
  color:#666;
  line-height:1.6;
}

/* ================= CTA ================= */

.cta{
  padding:90px 8%;
  background:#103d75;
  text-align:center;
  color:#fff;
}

.cta h2{
  font-size:42px;
  margin-bottom:20px;
}

.cta p{
  margin-bottom:30px;
}

/* ================= FOOTER ================= */

.footer{
  background:#081f3d;
  color:#fff;
  text-align:center;
  padding:50px 20px;
}

.footer-logo{
  width:70px;
  margin-bottom:15px;
}

.footer-links{
  margin:25px 0;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

/* ================= LIVE CHAT BUTTON ================= */

.chat-button{
  position:fixed;
  right:20px;
  bottom:20px;

  width:65px;
  height:65px;

  background:#25d366;
  color:#fff;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:32px;

  text-decoration:none;

  box-shadow:0 5px 15px rgba(0,0,0,0.3);

  z-index:1000;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

  .header{
    flex-direction:column;
    gap:15px;
  }

  .navbar{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:17px;
  }

  .cta h2{
    font-size:30px;
  }

}
