* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f8;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b1d33;
  padding: 15px 30px;
}

header .logo {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  background: #5a748f;
  color: #fff;
  padding: 80px 30px;
  text-align: center;
}

.hero button {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  background: #1b9203;
  font-weight: bold;
  cursor: pointer;
}

.services {
  padding: 50px 30px;
  text-align: center;
  
}

.service-box {
  background: #fff;
  padding: 20px;
  margin: 15px auto;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hero {
  background: hsl(0, 12%, 55%);
  color: #130000;
  padding: 10px 10px;
  text-align: center;
}

.hero-logo {
  width: 500px;
  max-width: 60%;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

.hero button {
  margin-top: 25px;
  padding: 12px 28px;
  border: none;
  background: #aa4f04;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.hero-logo {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

/*dropdown */
.logo {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b1d33;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

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

/* Show menu when active */
.dropdown-menu.show {
  display: block;
}


.center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;   /* space above & below */
  background: #697381; /* optional: match site bg */
}

.center h2 p {
  
  font-size: medium;
}

/* services */

.services {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

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

.service-card p {
  color: #555;
  font-size: 15px;
}

/* about */

.about {
  padding: 70px 20px;
  background: #fff;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Mobile responsive */
.about {
  padding: 70px 20px;
  background: #681f1f;
}

.about-container {
  max-width: 2100px;
  margin: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: #4b2424;
}

.about-text h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #140000;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.services {
  padding: 70px 20px;
  background: #8b4242;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Contact Page */
.contact {
  padding: 70px 20px;
  background: #853a3a;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
  
}


.contact p {
  color: #5a5858;
  margin-bottom: 40px;
}

.fixp {
  color: #0e0000;
  margin-bottom: 400px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: #b19f9f;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #0b3c5d;
  padding: 10px;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 20px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #0b3c5d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #0b3c5d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #062a41;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-info a {
  color: #186835;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

.section-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
