* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

header {
  background: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}

.top-bar {
  background: #f5f5f5;
  padding: 8px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0,0.08);
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.top-contact span {
  display: flex;
  align-items: center;
  color: #007bff;
  font-weight: 500;
}

.contact-section {
  padding: 40px 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.contact-left,
.contact-right {
  flex: 1 1 500px;
  min-width: 280px;
}

.contact-left h2 {
  color: #0645AD;
  border-left: 4px solid #0645AD;
  padding-left: 10px;
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-left h3 {
  margin-top: 30px;
  margin-bottom: 5px;
  font-size: 22px;
  color: #000;
}

.contact-left p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-left a {
  color: #0645AD;
  text-decoration: none;
}

.contact-left a:hover {
  text-decoration: underline;
}

.contact-right iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .contact-left h2 {
    font-size: 24px;
  }

  .contact-left h3 {
    font-size: 20px;
  }

  .contact-right iframe {
    height: 300px;
  }
}



.site-footer {
  background-color: #3b3e51;
  color: #fff;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  color: #ffc107;
  border-left: 4px solid #00aaff;
  padding-left: 8px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.site-footer .contact ul li {
  color: white;
  list-style: none;
  text-decoration: none;
  cursor: pointer;
  margin-left: 6rem;
}

.site-footer .contact ul li a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.site-footer .contact ul li a:hover {
  text-decoration: underline;
}
.site-footer .contact h3{
  margin-left: 6rem;
}


/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0a8618;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none;
}
.floating-btn i {
  margin-right: 6px;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content Box */
.modal-box {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.modal-header {
  background: #0a8618;
  color: white;
  padding: 20px;
  position: relative;
}
.modal-header h3 {
  margin: 0;
}
.modal-header p {
  margin: 5px 0 0;
}
.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Form Styling */
form {
  padding: 20px;
}
.modal-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.input-group.full {
  flex: 100%;
}
input, textarea {
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
label {
  margin-bottom: 5px;
  font-weight: 600;
}
.submit-btn {
  background: #0a8618;
  color: white;
  padding: 10px 16px;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #056b12;
}









/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  border-bottom: 1px solid #ddd;
}

.sidebar-header img {
  height: 40px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.overlay.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
