header {
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);

}

/* FORCE HEADER COLOR ACROSS ALL PAGES */
.site-header,
.main-header,
header {
  background: linear-gradient(120deg, #021b33, #043c66) !important;
}

/* Menu text color fix */
.site-header a,
.main-header a,
header a {
  color: #fff !important;
}

/* Fix sticky header white background */
.is-sticky .site-header,
.is-sticky header {
  background: linear-gradient(120deg, #021b33, #043c66) !important;
}


/* ABOUT PAGE css start */
/* Hero Section */
.about-hero {
  padding: 160px 0 90px;
  background: linear-gradient(120deg, #0b4a7a, #0f6fa8);
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
  color: #fff;
}

.about-hero p {
  font-size: 18px;
  color: #e3f3ff;
}

/* Content Section */
.about-content {
  padding: 90px 0;
}

.about-content .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.about-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

/* Feature Points */
.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 25px;
}

.about-points span {
  background: #f2f7fc;
  padding: 12px 14px;
  border-left: 4px solid #00d0ff;
  border-radius: 6px;
  font-size: 14px;
  display: block;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.stat-box h3 {
  font-size: 40px;
  color: #0f6fa8;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}

/* Promise Section */
.about-promise {
  padding: 80px 0;
  background: #f5f9fd;
  text-align: center;
}

.about-promise h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.about-promise p {
  font-size: 17px;
  max-width: 720px;
  margin: auto;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content .container {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 32px;
  }
}

/* about us page css end */

/* contact page css start*/
/* CONTACT HERO */
.contact-hero {
  padding: 160px 0 90px;
  background: linear-gradient(120deg, #0b4a7a, #0f6fa8);
  color: #fff;
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  color: #e3f3ff;
}

/* CONTACT SECTION */
.contact-section {
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* CONTACT INFO */
.contact-info h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #444;
  line-height: 1.7;
}

.info-box {
  margin-top: 20px;
}

.info-box strong {
  display: block;
  margin-bottom: 5px;
  color: #0b4a7a;
}

/* CONTACT FORM */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00d0ff;
  outline: none;
}

.btn-submit {
  background: #00d0ff;
  color: #000;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  background: #00b8e6;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}

.contact-cta {
  background: #ffffff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-cta p {
  color: #555;
  margin-bottom: 30px;
}

.btn-whatsapp {
  display: block;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
  text-decoration: none;
}

.btn-call {
  display: block;
  background: #00d0ff;
  color: #000;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp:hover,
.btn-call:hover {
  transform: translateY(-2px);
  transition: 0.3s;
}



/* contact page css end*/ 


/* service page css start*/
/* SERVICES HERO */
.services-hero {
  padding: 160px 0 90px;
  background: linear-gradient(120deg, #0b4a7a, #0f6fa8);
  color: #fff;
  text-align: center;
}

.services-hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 18px;
  color: #e3f3ff;
}

/* SERVICES SECTION */
.services-section {
  padding: 90px 0;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-intro h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.services-intro p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0b4a7a;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* CTA */
.services-cta {
  padding: 80px 0;
  background: #f4f8fc;
  text-align: center;
}

.services-cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.services-cta p {
  font-size: 17px;
  color: #444;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-hero h1 {
    font-size: 32px;
  }
}

/* service page css end */ 

/* floating whatsapp button logo*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}


/* floating whatsapp button logo*/