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

body{
  font-family:Arial,Helvetica,sans-serif;
  color:#1f2d3d;
  background:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:100%;
  max-width:1180px;
  margin:auto;
  padding:0 22px;
}

.topbar{
  background:#0b3b78;
  color:#fff;
  font-size:14px;
}

.topbar .container{
  display:flex;
  justify-content:space-between;
  padding:10px 22px;
}

.header{
  background:#fff;
  border-bottom:1px solid #e6ecf3;
  position:sticky;
  top:0;
  z-index:100;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:30px;
  font-weight:900;
  color:#0b3b78;
}

.logo span{
  color:#f58220;
}

.logo img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-weight:700;
}

.nav a{
  color:#243446;
}

.nav a:hover{
  color:#f58220;
}

.dropdown{
  position:relative;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:32px;
  left:0;
  min-width:260px;
  background:#fff;
  border:1px solid #e4eaf2;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  border-radius:10px;
  overflow:hidden;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:14px 16px;
  border-bottom:1px solid #edf2f7;
  font-size:14px;
}

.dropdown-menu a:last-child{
  border-bottom:none;
}

.dropdown-menu a:hover{
  background:#f5f8fc;
}

.hero{
  background:linear-gradient(120deg,#08306b,#0b5caf);
  color:#fff;
  padding:90px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-block;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.22);
  padding:9px 18px;
  border-radius:30px;
  font-weight:800;
  margin-bottom:24px;
}

.hero h1{
  font-size:62px;
  line-height:1.06;
  margin-bottom:22px;
}

.hero p{
  font-size:20px;
  color:#eef5ff;
}

.hero-buttons{
  display:flex;
  gap:14px;
  margin-top:30px;
}

.btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:8px;
  font-weight:900;
}

.btn-primary{
  background:#f58220;
  color:#fff;
}

.btn-light{
  background:#fff;
  color:#0b3b78;
}

.hero-card{
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.24);
  border-radius:20px;
  padding:34px;
}

.hero-card h3{
  font-size:28px;
  margin-bottom:18px;
}

.hero-card ul{
  list-style:none;
}

.hero-card li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.section{
  padding:75px 0;
}

.section.light{
  background:#f5f8fc;
}

.section-title{
  font-size:40px;
  color:#0b3b78;
  margin-bottom:14px;
}

.section-subtitle{
  color:#5a6a7b;
  font-size:18px;
  margin-bottom:32px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:#fff;
  border:1px solid #e5ebf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.card img{
  height:220px;
  width:100%;
  object-fit:cover;
}

.card-content{
  padding:24px;
}

.card h3{
  color:#0b3b78;
  margin-bottom:10px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-image img{
  border-radius:18px;
}

.checklist{
  list-style:none;
}

.checklist li{
  padding:12px 0;
  border-bottom:1px solid #e3eaf2;
}

.checklist li:before{
  content:"✓";
  color:#f58220;
  font-weight:900;
  margin-right:10px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery img{
  border-radius:16px;
  height:260px;
  object-fit:cover;
}

.page-hero{
  background:#0b3b78;
  color:#fff;
  padding:70px 0;
}

.page-hero h1{
  font-size:48px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.form{
  display:grid;
  gap:14px;
}

input,
textarea,
select{
  width:100%;
  padding:14px;
  border:1px solid #d7e0ea;
  border-radius:8px;
  font-size:15px;
}

textarea{
  min-height:140px;
}

.map{
  border-radius:18px;
  overflow:hidden;
  min-height:350px;
}

.cta{
  background:#0b3b78;
  color:#fff;
  text-align:center;
  padding:75px 0;
}

.footer{
  background:#071e3d;
  color:#fff;
  padding:60px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}

.footer h3{
  margin-bottom:14px;
}

.footer a{
  display:block;
  margin:8px 0;
  color:#d9e7f7;
}

.copy{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:26px;
  padding-top:18px;
  text-align:center;
  color:#d9e7f7;
}

.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  background:#25d366;
  color:#fff;
  padding:14px 18px;
  border-radius:50px;
  font-weight:900;
  z-index:999;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}

@media(max-width:900px){

  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .grid-4,
  .grid-3,
  .gallery{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:42px;
  }

}

@media(max-width:600px){

  .topbar .container,
  .header-inner{
    display:block;
    text-align:center;
  }

  .nav{
    flex-wrap:wrap;
    justify-content:center;
    margin-top:14px;
    gap:14px;
  }

  .grid-4,
  .grid-3,
  .gallery{
    grid-template-columns:1fr;
  }

}


/* ===== DECCAN FINAL CLEAN WEBSITE FIX ===== */
.dp-hero{
  background:#0b3f7f;
  color:#fff;
  padding:72px 0;
}
.dp-hero h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:14px;
}
.dp-hero p{
  font-size:18px;
  max-width:760px;
}
.dp-section{
  padding:70px 0;
}
.dp-title{
  color:#0b3b78;
  font-size:36px;
  margin-bottom:12px;
}
.dp-subtitle{
  color:#586777;
  font-size:17px;
  margin-bottom:30px;
}
.dp-grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.dp-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.dp-card{
  background:#fff;
  border:1px solid #e5ebf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.dp-card img{
  width:100%;
  height:230px;
  object-fit:contain;
  background:#f7f9fc;
  padding:10px;
}
.dp-card-body{
  padding:20px;
}
.dp-card h3{
  color:#0b3b78;
  font-size:20px;
  margin-bottom:8px;
}
.dp-card p{
  color:#425466;
}
.dp-cta{
  background:#0b3b78;
  color:#fff;
  text-align:center;
  padding:65px 0;
}
.dp-cta .dp-title,
.dp-cta .dp-subtitle{
  color:#fff;
}
.dp-btn{
  display:inline-block;
  background:#f58220;
  color:#fff;
  padding:14px 24px;
  border-radius:8px;
  font-weight:800;
  text-decoration:none;
}
.dp-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}
.dp-feature{
  list-style:none;
  padding:0;
  margin:0;
}
.dp-feature li{
  padding:12px 0;
  border-bottom:1px solid #e5ebf2;
}
.dp-feature li:before{
  content:"✓";
  color:#f58220;
  font-weight:900;
  margin-right:10px;
}
.dp-clean-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.dp-clean-gallery .dp-card img{
  height:220px;
}
.form{
  display:grid;
  gap:14px;
}
.form input,
.form textarea,
.form select{
  width:100%;
  padding:14px;
  border:1px solid #d7e0ea;
  border-radius:8px;
  font-size:15px;
}
.form textarea{
  min-height:130px;
}
@media(max-width:1000px){
  .dp-grid-4,.dp-clean-gallery{grid-template-columns:repeat(2,1fr)}
  .dp-grid-3{grid-template-columns:1fr 1fr}
  .dp-split{grid-template-columns:1fr}
}
@media(max-width:650px){
  .dp-grid-4,.dp-grid-3,.dp-clean-gallery{grid-template-columns:1fr}
  .dp-hero h1{font-size:36px}
}
