/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#fff;
  color:#111;
}

/* TOP BAR */

.top-bar{
  background:#003a8c;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 70px;
  font-size:14px;
}

.left-top,
.right-top{
  display:flex;
  gap:25px;
  align-items:center;
}

.social-icons{
  display:flex;
  gap:15px;
  cursor:pointer;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 70px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo img{
  width:120px;
  border:3px solid red;
  border-radius:50%;
  padding:8px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
  color:#1f63ff;
}

.call-btn{
  background:#1f63ff;
  color:#fff;
  padding:14px 25px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

/* HERO SECTION */

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:70px;
  background:linear-gradient(to right,#f5f8ff,#edf3ff);
}

.hero-left{
  width:55%;
}

.tag{
  display:inline-block;
  background:#dfeaff;
  color:#1f63ff;
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  margin-bottom:25px;
}

.hero-left h1{
  font-size:65px;
  line-height:1.2;
  margin-bottom:20px;
  color:#061b4e;
}

.hero-left h1 span{
  color:#1f63ff;
}

.hero-left p{
  font-size:22px;
  color:#555;
  line-height:1.6;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.primary-btn,
.secondary-btn{
  padding:18px 35px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.primary-btn{
  background:#1f63ff;
  color:#fff;
}

.secondary-btn{
  border:2px solid #1f63ff;
  color:#1f63ff;
}

.hero-right img{
  width:500px;
}

/* SERVICES */

.services-section{
  padding:70px;
  text-align:center;
}

.services-section h2{
  font-size:45px;
  color:#061b4e;
  margin-bottom:10px;
}

.sub-text{
  color:#666;
  margin-bottom:50px;
  font-size:18px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.service-card{
  background:#fff;
  border-radius:15px;
  padding:30px 20px;
  box-shadow:0 0 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-card img{
  width:100px;
  height:100px;
  object-fit:contain;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
  color:#061b4e;
}

.service-card p{
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

.service-card a{
  text-decoration:none;
  color:#1f63ff;
  font-weight:bold;
}

/* FEATURES */

.features{
  margin:0 70px 70px;
  background:#eef4ff;
  border-radius:20px;
  padding:40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.feature-box{
  display:flex;
  align-items:center;
  gap:20px;
}

.feature-box i{
  font-size:40px;
  color:#1f63ff;
}

.feature-box h4{
  margin-bottom:8px;
  color:#061b4e;
}

.feature-box p{
  color:#666;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-left{
    width:100%;
    margin-bottom:40px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .top-bar,
  .navbar{
    flex-direction:column;
    gap:15px;
    padding:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    padding:40px 20px;
  }

  .hero-left h1{
    font-size:40px;
  }

  .hero-left p{
    font-size:18px;
  }

  .hero-right img{
    width:100%;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .features{
    margin:20px;
    grid-template-columns:1fr;
  }

}