@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  color: #333333;
  overflow-x: hidden;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  color: #193636;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  margin-bottom: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: rgba(25, 54, 54, 0.1);
  color: #193636;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

.nav-overlay {
  display: none;
}

/* Hero Section */
.hero {
  margin-top: 90px;
  background: linear-gradient(135deg, #193636 0%, #2a5555 50%, #3a7070 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(170, 193, 144, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: white;
}

.hero-content h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #AAC190;
  color: #193636;
  box-shadow: 0 4px 15px rgba(170, 193, 144, 0.3);
}

.btn-primary:hover {
  background: #9ab180;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(170, 193, 144, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #193636;
}

.intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  background: #ffffff;
  text-align: center;
}

.intro h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #193636;
  position: relative;
  display: inline-block;
}

.intro h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #A8C686;
  border-radius: 2px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-top: 20px;
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #193636;
  font-weight: 700;
}

h3 {
  justify-content: center;

}

p {
  font-size: 16px;
  color: #333333;
}

/*services section*/
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 60px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  background: #f8f9fa;
}

.services-box {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(25, 54, 54, 0.1);
  position: relative;
  overflow: hidden;
}

.services-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #193636 0%, #AAC190 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services-box:hover::before {
  transform: scaleX(1);
}

.services-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(25, 54, 54, 0.15);
}

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.services-box:hover .service-icon {
  transform: scale(1.1);
}

.services-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #193636;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.services-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-block;
  color: #193636;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #AAC190;
  transform: translateX(5px);
}

/* Image Slider */
.image-slider-container {
  padding: 80px 40px 100px;
  background: #ffffff;
}

.image-slider-container h2 {
  text-align: center;
  font-size: 38px;
  color: #193636;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(25, 54, 54, 0.15);
  background: #fff;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(25, 54, 54, 0.95) 0%, rgba(25, 54, 54, 0.7) 70%, transparent 100%);
  color: white;
  padding: 30px;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(25, 54, 54, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #193636;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: #AAC190;
  border-color: white;
  transform: scale(1.2);
}

/* Footer */
footer {
  background: #193636;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
  border-top: 3px solid #AAC190;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #AAC190;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #c5d9b5;
  transform: translateY(-2px);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #193636 0%, #2a5555 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
  margin-top: 80px;
}

.page-header h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 15px;
}

.page-header p {
  color: #E0E0E0;
  font-size: 18px;
}

/* About Us Page Styles */
.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

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

/* Values Section */
.values-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.values-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 35px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #AAC190;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(170, 193, 144, 0.3);
}

.value-card h3 {
  color: #193636;
  font-size: 20px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.value-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.certifications-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 32px;
  margin-bottom: 20px;
}

.certifications-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.cert-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  background: linear-gradient(135deg, #AAC190 0%, #9ab180 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(170, 193, 144, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(170, 193, 144, 0.4);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 40px;
  background: white;
  text-align: center;
}

.why-choose-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  border-color: #AAC190;
  box-shadow: 0 8px 25px rgba(170, 193, 144, 0.2);
}

.why-icon {
      margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-icon svg {
  transition: transform 0.3s ease;
}

.why-choose-card:hover .why-icon svg {
  transform: scale(1.1);
}

.why-choose-card h3 {
  color: #193636;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.why-choose-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* Our Approach Section */
.approach-section {
  padding: 80px 40px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}

.approach-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 700;
}

.approach-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.approach-step {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 100px;
  transition: all 0.3s ease;
}

.approach-step:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(170, 193, 144, 0.2);
}

.step-number {
  position: absolute;
  left: 30px;
  top: 40px;
  font-size: 48px;
  font-weight: 700;
  color: #AAC190;
  font-family: 'Montserrat', sans-serif;
  opacity: 1;
}

.approach-step h3 {
  color: #193636;
  font-size: 22px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.approach-step p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #193636 0%, #2a5555 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #AAC190;
  color: #193636;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #9ab180;
}

/* Services Detailed Page */
.services-detailed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-card {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(25, 54, 54, 0.15);
}

/* Image on left, text on right (default) */
.service-card-left {
  flex-direction: row;
}

/* Image on right, text on left */
.service-card-right {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 400px;
  min-height: 300px;
  background: #f5f5f5;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Placeholder Styles */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f2e4 0%, #d4e5cd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #193636;
  border-radius: 8px;
}

.placeholder-icon {
  display: none;
}

.image-placeholder p {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.7;
  margin: 0;
}

.about-image .image-placeholder {
  min-height: 400px;
}

.service-image .image-placeholder {
  min-height: 300px;
}

.service-details {
  flex: 1;
  padding: 30px;
  min-width: 300px;
}

.service-details h3 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 24px;
  margin-bottom: 15px;
}

.service-details p {
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  text-align: left;
}

.service-details ul li:before {
  content: "✓";
  color: #AAC190;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 28px;
  margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #193636;
}

.submit-button {
  background-color: #AAC190;
  color: #193636;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #9ab180;
}

/* Contact Info Boxes */
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #AAC190;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #f0f7ed;
  transform: translateX(5px);
}

.info-icon {
  display: none;
}

.info-content h3 {
  color: #193636;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.info-content p {
  margin-bottom: 5px;
  text-align: left;
  line-height: 1.6;
}

.info-content a {
  color: #193636;
  text-decoration: none;
  font-weight: 600;
}

.info-content a:hover {
  color: #AAC190;
  text-decoration: underline;
}

.info-subtitle {
  font-size: 13px;
  color: #666;
}

.emergency-notice {
  background: linear-gradient(135deg, #193636 0%, #2a5555 100%);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #AAC190;
  margin-top: 30px;
}

.emergency-notice h3 {
  color: #AAC190;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.emergency-notice p {
  margin: 0;
  text-align: left;
  color: white;
}

.emergency-notice strong {
  color: #AAC190;
  font-weight: 700;
}

.emergency-notice p {
  margin: 0;
  text-align: left;
}

/* Map Section */
.map-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.map-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 32px;
  margin-bottom: 15px;
}

.map-section p {
  margin-bottom: 30px;
}

.map-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  border: 2px dashed #AAC190;
}

.map-placeholder p {
  font-size: 16px;
  color: #193636;
  margin: 10px 0;
  font-weight: 500;
}

.map-note {
  font-size: 14px !important;
  color: #6c757d !important;
  font-weight: 400 !important;
}

/* Responsive Design - Mobile First Approach */

/* Tablet & Large Mobile - 481px to 1024px */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }

  .logo img {
    height: 60px;
  }

  nav ul {
    gap: 15px;
  }

  nav ul li a {
    padding: 8px 14px;
    font-size: 15px;
  }

  .hero {
    margin-top: 80px;
    min-height: 450px;
    padding: 60px 30px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .services-preview {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 30px;
    gap: 25px;
  }

  .service-image {
    flex: 0 0 350px;
  }

  .contact-container {
    gap: 30px;
    padding: 50px 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Tablet Portrait & Medium Mobile - 481px to 768px */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    text-align: left;
  }

  .logo {
    width: auto;
    display: flex;
    justify-content: flex-start;
  }

  .logo img {
    height: 65px;
  }

  /* Hamburger Menu Button */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #193636;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }

  /* Slide-out Navigation */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #193636;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0 20px;
    max-width: 100%;
    text-align: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a {
    color: #ffffff;
    padding: 18px 30px;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  nav ul li a:hover {
    background-color: rgba(170, 193, 144, 0.2);
    color: #AAC190;
  }

  nav ul li a.active {
    color: #AAC190;
    background-color: rgba(170, 193, 144, 0.15);
  }

  nav ul li a.active::after {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 14px 30px;
    text-align: center;
    display: block;
  }

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

  .intro h1 {
    font-size: 28px;
    text-align: center;
  }

  .intro-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
  }

  .services-preview {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 25px;
  }

  .services-box {
    padding: 35px 25px;
    text-align: center;
    margin: 0 auto;
  }

  /* Image Slider Mobile */
  .image-slider-container {
    padding: 50px 20px;
  }

  .image-slider-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .slider-wrapper {
    height: 400px;
  }

  .slide-caption {
    font-size: 18px;
    padding: 20px 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .slider-dots {
    bottom: 15px;
    gap: 8px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .hero {
    min-height: 400px;
    margin-top: 80px;
    padding: 50px 20px;
  }

  .hero-content {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 14px 30px;
    text-align: center;
    display: block;
  }

  .page-header {
    padding: 100px 20px 50px;
    text-align: center;
  }

  .page-header h1 {
    font-size: 32px;
    text-align: center;
  }

  .page-header p {
    font-size: 16px;
    text-align: center;
  }

  .about-section {
    padding: 40px 20px;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .about-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .values-section {
    padding: 50px 20px;
    text-align: center;
  }

  .values-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .value-card {
    padding: 30px 25px;
    text-align: center;
    max-width: 100%;
  }

  .certifications-section {
    padding: 50px 20px;
    text-align: center;
  }

  .certifications-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .cert-badges {
    flex-direction: column;
    gap: 15px;
    max-width: 280px;
    margin: 0 auto;
    align-items: center;
  }

  .badge {
    width: 100%;
    text-align: center;
  }

  .cta-section {
    padding: 50px 20px;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .cta-button {
    display: inline-block;
    margin: 0 auto;
  }

  .services-detailed {
    padding: 30px 20px;
  }

  .service-card,
  .service-card-left,
  .service-card-right {
    flex-direction: column;
    margin-bottom: 30px;
    align-items: center;
  }

  .service-image {
    flex: 0 0 auto;
    width: 100%;
    min-height: 250px;
  }

  .service-details {
    padding: 25px 20px;
    text-align: center;
    width: 100%;
  }

  .service-details h3 {
    font-size: 22px;
    text-align: center;
  }

  .service-details p {
    text-align: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 30px;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px 20px;
    text-align: center;
  }

  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 24px;
    text-align: center;
  }

  .info-item {
    padding: 18px;
    text-align: center;
  }

  .map-section {
    padding: 50px 20px;
    text-align: center;
  }

  .map-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .map-placeholder {
    padding: 50px 20px;
  }

  footer {
    padding: 30px 20px;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Small Mobile - 320px to 480px */
@media (max-width: 480px) {
  header {
    padding: 12px 20px;
    text-align: left;
    justify-content: space-between;
  }

  .logo {
    width: auto;
    justify-content: flex-start;
  }

  .logo img {
    height: 60px;
  }

  .mobile-menu-toggle span {
    width: 25px;
  }

  nav {
    width: 260px;
    padding: 70px 0 20px;
  }

  nav ul li a {
    padding: 16px 25px;
    font-size: 15px;
  }

  .hero {
    min-height: 450px;
    margin-top: 70px;
    padding: 30px 15px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .hero-content {
    padding: 15px;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 15px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .intro h1 {
    font-size: 24px;
    text-align: center;
  }

  .intro-text {
    font-size: 15px;
    text-align: center;
  }

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

  .services-box h3 {
    font-size: 20px;
    text-align: center;
  }

  .services-box p {
    font-size: 14px;
    text-align: center;
  }

  .page-header h1 {
    font-size: 28px;
    text-align: center;
  }

  .about-text h2,
  .values-section h2,
  .certifications-section h2,
  .cta-section h2,
  .map-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .value-card,
  .service-details {
    padding: 25px 20px;
  }

  .service-details h3 {
    font-size: 20px;
  }

  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 22px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .submit-button {
    padding: 14px 30px;
    font-size: 15px;
  }

  .info-item {
    padding: 15px;
  }

  .emergency-notice {
    padding: 20px 15px;
  }
}

/* Extra Small Devices - below 360px */
@media (max-width: 360px) {
  .logo img {
    height: 40px;
  }

  nav ul li a {
    padding: 5px 10px;
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .intro h1 {
    font-size: 22px;
  }

  .services-box h3 {
    font-size: 18px;
  }

  .page-header h1 {
    font-size: 24px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 40px 100px;
  background-color: #f8f9fa;
  text-align: center;
}

.testimonials-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #193636;
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
  border-top: 4px solid #AAC190;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.client-info strong {
  display: block;
  color: #193636;
  font-size: 16px;
  margin-bottom: 4px;
}

.client-info span {
  font-size: 14px;
  color: #888;
}

/* Active Nav Link */
nav ul li a.active {
  position: relative;
  color: #193636;
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: #AAC190;
  border-radius: 2px;
}