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

body{
  font-family:'Poppins',sans-serif;
  color:#1c1c1c;
  line-height:1.6;
  background:#ffffff;
  padding-top:90px;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

html{
  scroll-behavior:smooth;
}

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

.logo{
  height:60px;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav ul li a{
  text-decoration:none;
  color:#0d2d62;
  font-weight:500;
}

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to right,
rgba(0,0,0,0.35),
rgba(0,0,0,0.15)
);
z-index:-1;
}

.hero-content{
  position:relative;
  text-align:center;
  color:#fff;
  z-index:2;
}

.hero-content h1{
  font-size:58px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 34px;
  background:#0056d6;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  transition:0.3s;
}

.btn:hover{
  background:#003b94;
}

.section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:42px;
  color:#0d2d62;
}

.vision-grid,
.services-grid,
.why-grid,
.contact-grid{
  display:grid;
  gap:30px;
}

.vision-grid{
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  margin-top:40px;
}

.vision-box,
.service-card,
.why-box{
  background:#fff;
  padding:35px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.service-card:hover,
.vision-box:hover,
.why-box:hover{
  transform:translateY(-10px);
}

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

.service-card h3{
  color:#0056d6;
  margin-bottom:15px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}
@media(max-width:768px){

.why-grid{
grid-template-columns:1fr;
}

}

.about-content{
max-width:1000px;
margin:auto;
}

.about-content p{
font-size:17px;
line-height:2;
margin-bottom:35px;
color:#42526b;
text-align:justify;
text-justify:inter-word;
}

.service-card p,
.why-box p{
text-align:justify;
line-height:1.9;
}

.why-box{
  text-align:center;
  font-weight:600;
  color:#0d2d62;
}

.contact-grid{
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px;
  margin-bottom:20px;
  border:1px solid #ddd;
  border-radius:10px;
}

.contact-form button{
  padding:14px 30px;
  background:#0056d6;
  color:#fff;
  border:none;
  border-radius:50px;
  cursor:pointer;
}

footer{
  background:#0d2d62;
  color:#fff;
  text-align:center;
  padding:25px;
}

.whatsapp-btn{
  position:fixed;
  right:25px;
  bottom:25px;
  background:#25D366;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
}

@media(max-width:768px){

header{
padding:10px 0;
}

.navbar{
flex-direction:column;
align-items:center;
gap:15px;
}

.logo{
height:48px;
}

nav{
width:100%;
}

nav ul{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
padding:10px 0;
}

nav ul li a{
font-size:14px;
padding:8px 12px;
display:block;
background:rgba(255,255,255,0.08);
border-radius:30px;
backdrop-filter:blur(5px);
}

.hero-content h1{
font-size:38px;
line-height:1.3;
}

.hero-content p{
font-size:17px;
line-height:1.8;
}

.section-title h2{
font-size:34px;
}

.services-grid,
.why-grid,
.contact-grid,
.vision-grid{
grid-template-columns:1fr;
}

}