
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}
.social-icons li {
    display: inline-block;
}

.hero {
  background: url('https://sidhusurvey.com/wp-content/uploads/2022/10/title-bg5.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-inner {
  background: url('https://sidhusurvey.com/wp-content/uploads/2022/10/title-bg5.jpg') no-repeat center center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

ul#menu-primary li {
    list-style: none;
    display: inline-block;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 200px;
  height: auto;
}

.product-card .info {
  padding: 20px;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
}

.certificate_img a {
    border: 2px solid #011b36;
    display: inline-block;
    margin-top: 15px;
    background: #003366;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #eee; /* solid dark background */
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 18px;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto 30px auto;
      color: #000;
    }

    .cta-section .cta-button {
      padding: 12px 30px;
      background-color: #ff0000;
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .cta-section .cta-button:hover {
      background-color: #cc0000;
    }

    @media (max-width: 600px) {
      .cta-section h2 {
        font-size: 28px;
      }

      .cta-section p {
        font-size: 16px;
        padding: 0 10px;
      }

      .cta-section .cta-button {
        padding: 10px 25px;
        font-size: 15px;
      }
    }

.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bbb;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-icons a {
  margin-right: 15px;
  color: #bbb;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
  color: #aaa;
  font-size: 14px;
}

li.page_item {
    display: inline-block;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    background: #000;
    padding: 4px 10px;
}

.cp-box-abt img {
    width: 300px;
    margin: 20px 20px 0 0;
}

.contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }
    .contact-form, .contact-details {
      flex: 1 1 400px;
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
    }
    .contact-form h2, .contact-details h2 {
      margin-bottom: 20px;
      color: #333;
    }
    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-top: 5px;
    }
    .contact-form input[type="submit"] {
      padding: 10px 20px;
      background: #0077cc;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-family: inherit;
      font-size: 18px;
    }
    .contact-form button:hover {
      background: #005fa3;
    }
    .details-section p {
      margin-bottom: 10px;
      line-height: 1.6;
    }
    .contact-section h2 {
      text-align: left;
    }
    .details-section {
        padding: 20px;
    }

    a {
        text-decoration: none;
        color: #000;
    }
    li {
        list-style: none;
    }
    

  .cp-header h2{margin:0 0 6px;font-size:26px;color:#111}
  .lead{margin:0 0 18px;color:#444;font-weight:600}
  .cp-content p{color:#333;line-height:1.7;margin:0 0 16px}
  .cp-content h3{margin:18px 0 8px;color:#0b66a3;font-size:18px}
  .cp-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:8px}
  .cp-box{padding:14px;border-radius:8px;border:1px solid #ddd}
  .cp-box h4{margin:0 0 8px;font-size:16px;color:#0b66a3}
  .cp-box ul{margin:0;padding-left:18px;color:#333}
  .cp-box li{margin:6px 0}
  .cp-cta{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
  .btn-primary{display:inline-block;background:#0b66a3;color:#fff;padding:10px 16px;border-radius:6px;text-decoration:none;font-weight:600}
  .btn-ghost{display:inline-block;background:transparent;color:#0b66a3;padding:10px 16px;border-radius:6px;border:1px solid rgba(11,102,163,.12);text-decoration:none}
  @media (max-width:800px){
    .cp-grid{grid-template-columns:1fr}
    .cp-header h2{font-size:22px}
  }
    
/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin: 20px 0;
    text-align: center;
  }

  .social-icons a {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
    .abtleft img {
        width: 100%;
    }
    .abtright img {
        width: 100%;
    } 
    nav a {
        margin: 0 5px;
    }
}



