body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fdfdfd;
}
/* content wrapper */
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
  z-index:2
}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px;position:relative;z-index:2}
.site-header{display:flex;align-items:center;justify-content:space-between;padding:18px 0;background:linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));backdrop-filter:blur(4px);position:relative;z-index:5}
.header-left{display:flex;align-items:center;gap:12px}
.logo-small{width:100px;height:100px;border-radius:8px;object-fit:cover;border:2px solid rgba(0,0,0,0.06)}
.brand .company{font-family:'Poppins',sans-serif;color:#0b2545;font-weight:700}
.brand .tag{font-size:15px;color:white}

/* NAVBAR */
.navbar {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 3em;
  background: linear-gradient(90deg, #0072ff, #00c853, #ffd700);
}
.logo {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  align-items: center;
}
.nav-links a {
  color: #0b2545;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links a:hover, .active {
  text-decoration: underline;
  background:linear-gradient(90deg,#d4af37,#0072c6);
  color:white
}

/* HERO SECTION */
.hero-image {
  background: url('images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6em 2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 500px; /* keeps good height on large screens */
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  line-height: 1.7;
  font-size: 26px;
  border-radius: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-align: center;
  margin: 0 auto;
}

/* ✅ RESPONSIVENESS */
@media (max-width: 992px) {
  .hero-image {
    padding: 5em 1.5em;
    min-height: 400px;
  }

  .hero-text {
    font-size: 22px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .hero-image {
    padding: 4em 1em;
    min-height: auto; /* auto height for tablets */
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero-image {
    padding: 3em 1em;
    min-height: auto; /* auto height for small phones */
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.4;
    padding: 10px;
  }
}

 .btn1 {
  background: linear-gradient(90deg, #0072ff, #00c853);
  padding: 0.7em 1.5em;
  color: #fff;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn1:hover {
  transform: scale(1.05);
  background-color: #46564d;
  color: white;
} 

.btn2 {
  background: linear-gradient(90deg, #0072ff, #00c853);
  padding: 0.7em 1.5em;
  color: #fff;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  size: 700px;
}
.btn2:hover {
  transform: scale(1.15);
  background-color: #46564d;
  color: white;
} 
    

.btn {
  background: linear-gradient(90deg, #0072ff, #00c853);
  padding: 0.7em 1.5em;
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  transform: scale(1.05);
  background-color: #46564d;
  color: white;
}


/* FEATURES */
.features {
  text-align: center;
  padding: 3em 2em;
}
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.card {
  width: 300px;
  background: #b5bd10af;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ABOUT */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  padding: 3em;
  align-items: center;
}
.about-img {
  width: 45%;
  border-radius: 10px;
}
.about-text {
  flex: 1;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgba(0, 0, 0, 0.729);
  text-align: justify;
}

.about-image{
  background: linear-gradient(rgba(174, 217, 175, 0.7),rgba(145, 136, 136, 0.7)),url('images/beautiful-alternative-energy-plant-with-solar-panels.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6em 2em;
  position: relative;
  height: 1100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}


/* SERVICES */
.services-list {
  padding: 3em 2em;
}
.service {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}
.service img {
  width: 45%;
  border-radius: 10px;
}

/* CONTACT */
.contact-section {
  padding: 3em 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
 .contact-form {
      background: linear-gradient(to right, #718aac, #ff7b00);
      padding: 30px 40px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 450px;
      text-align: center;
    }

.contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 15px;
      transition: border-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #007bff;
      outline: none;
    }


.map-container {
  display: flex;
   justify-content: center;
   align-items: center;
   /*margin: 40px auto;
   width: 100%;
   max-width: 1200px;
   padding: 10px;*/
   animation: fadeIn 1.2s ease-in-out;
}
.map-container iframe {
  border-radius: 10px;
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 20px auto;
 width: 100%;
 height: 430px;
 max-width: 1200px; /* keeps it from stretching too wide on large screens */
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/*.map-container iframe {
  border: 0;
  border-radius: 10px;
  width: 100%;
  height: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}*/

/* Fade-in animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    @keyframes fadeOut {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(20px); }
    }


/* Responsive height adjustments */
@media (max-width: 992px) {.map-container iframe {height: 400px;}
}

@media (max-width: 768px) {.map-container iframe {height: 350px;}
}

@media (max-width: 576px) {.map-container iframe {height: 300px;}
}

/* responsive */
@media (max-width:900px){ .contact-grid{grid-template-columns:1fr} .main-nav{display:none} .hero h1{font-size:28px} .thumbs img{width:120px} }
.content{
    align-items: center;

     .navbar {
        flex-direction: column;
      }
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }
}

/* Floating Toast Message */
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #e8f7ec;
      color: #0a7e29;
      padding: 20px 25px;
      border-radius: 12px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
      font-weight: 500;
      display: none;
      animation: fadeIn 0.6s ease;
      max-width: 300px;
      z-index: 9999;
    }

    .toast strong {
      display: block;
      margin-bottom: 5px;
    }

    .close-btn {
      position: absolute;
      top: 8px;
      right: 10px;
      background: none;
      border: none;
      font-size: 18px;
      color: #0a7e29;
      cursor: pointer;
    }
    
    .close-btn:hover {
      color: #d62828;
    }



.contact-image{
  background: linear-gradient(rgba(174, 217, 175, 0.7),rgba(145, 136, 136, 0.7)),url('images/contact_us.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6em 2em;
  position: relative;
  height: 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #0072ff, #00c853, #ffd700);
  color: #fff;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}
/*.hero-image{
    background-image: linear-gradient(rgba(174, 217, 175, 0.5),rgba(145, 136, 136, 0.5)),url(hero.jpg);
    height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
    /* footer & floating icons */
.site-footer{
  padding:18px;
  margin-top:40px;color:#0b2545;
  background:linear-gradient(90deg,rgba(125, 128, 217, 0.9),rgba(255,255,255,0.8));
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center
}

 /* Floating Icons */
    .floating-icons {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .floating {
      color: white;
      font-size: 24px;
      border-radius: 50%;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.3s, background 0.3s;
    }

    .floating:hover {
      background: #0056b3;
      transform: scale(1.1);
    }


/*.floating-icons{position:fixed;right:18px;bottom:18px;display:flex;flex-direction:column;gap:10px;z-index:10}
.floating{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:50%;text-decoration:none;font-size:22px;color:white}*/
.whatsapp{background:#25D366}
.email{background:#0072C6}

/* popup */
.popup{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);background:#fff;padding:20px;border-radius:10px;box-shadow:0 30px 70px rgba(11,37,69,0.25);z-index:9999;max-width:360px;width:90%}
.hidden{display:none}

/* animations */
.animate-up{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease}
.delay-1{transition-delay:.12s}
.in-view{opacity:1;transform:none}




.thick-line{
  height: 5px;
  background-color: greenyellow;
  border: none;
}



/* ---------- Services List ---------- */
    .services-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
      padding: 70px 10%;
      background-color: #f8fafc;
      background: linear-gradient(rgba(174, 217, 175, 0.7),rgba(145, 136, 136, 0.9)),url('images/home_hero_image.jpeg') center/cover no-repeat;
    }

    .service {
      background: white;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 74, 173, 0.25);
    }

    .service img {
      width: 50%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .service div {
      padding: 20px 25px 30px 25px;
      text-align: left;
    }

    .service h3 {
      color: #004aad;
      font-size: 1.3em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .service p {
      color: #333;
      font-size: 15px;
      line-height: 1.7;
    }

    /* ---------- Why Choose Us ---------- */
    .why-choose {
      background: #ffffff;
      text-align: center;
      padding: 80px 10%;
    }

    .why-choose h2 {
      color: #004aad;
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .why-choose p {
      max-width: 750px;
      margin: 0 auto 40px auto;
      font-size: 16px;
      color: #444;
      line-height: 1.7;
    }

    .features1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .feature1 {
      background: #f8fafc;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .feature1:hover {
      background: #004aad;
      color: white;
      transform: translateY(-5px);
    }

    .feature1 h4 {
      margin-bottom: 10px;
      font-size: 1.1em;
      font-weight: 700;
    }

    /* ---------- CTA Section ---------- */
    .cta {
      background: linear-gradient(to right, #718aac, #ff7b00);
      text-align: center;
      color: white;
      padding: 60px 20px;
      margin-top: 60px;
    }

    .cta h3 {
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .cta p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .cta a {
      background: white;
      color: #004aad;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .cta a:hover {
      background: #ffcc00;
      color: #004aad;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 600px) {
      .page-header h2 {
        font-size: 1.8em;
      }
      .service div {
        padding: 20px;
      }
    }


    /* ----- Mobile Responsive Fix ----- */
@media screen and (max-width: 768px) {

  /* Stack navbar items vertically */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: left;
    gap: 1em;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  /* Hero text smaller on phones */
  .hero-text h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  /* Features: stack cards */
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  /* About section: stack image and text */
  .about-content {
    flex-direction: column;
  }

  .about-img, .service img {
    width: 100%;
  }

  /* Contact section */
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  footer {
    font-size: 14px;
  }
}


/* ================================
   EXTRA RESPONSIVE FIX FOR SERVICES
   ================================ */

@media screen and (max-width: 900px) {
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 40px 5%;
  }

  .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .service div {
    width: 100%;
    padding: 15px 10px;
    text-align: center;
  }

  .service h3 {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .service p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
/* ================================
   Responsive & Alternating Services Layout
   ================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3em;
  padding: 3em 10%;
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 45%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.service div {
  width: 55%;
  text-align: left;
}

/* Alternate layout for every even service */
.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* Headings and paragraphs styling */
.service h3 {
  color: #004aad;
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.service p {
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

/* ================================
   Responsive Layout (Mobile / Tablet)
   ================================ */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
    text-align: center;
  }

  .service:nth-child(even) {
    flex-direction: row row-reverse;
  }

  .service img {
    width: 100%;
  }

  .service div {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .service h3 {
    font-size: 1.2em;
  }

  .service p {
    font-size: 15px;
  }
}


/* ================================
   Why Choose Us - Responsive Grid Layout
   ================================ */
.why-choose {
  background: #ffffff;
  padding: 80px 10%;
  text-align: center;
}

.why-choose h2 {
  color: #004aad;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.why-choose p {
  max-width: 750px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* Features inside Why Choose Us */
.features1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.feature1 {
  background: #f8fafc;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature1:hover {
  background: #004aad;
  color: white;
  transform: translateY(-5px);
}

.feature1 h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 700;
}

/* ================================
   Responsive Layout for Smaller Screens
   ================================ */
@media (max-width: 768px) {
  .features1 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose h2 {
    font-size: 1.6em;
  }

  .why-choose p {
    font-size: 15px;
  }

  .feature1 {
    padding: 20px;
  }
}

/* ---------- Services Section (2-column on desktop, stacked on mobile) ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 70px 10%;
  background: linear-gradient(rgba(174, 217, 175, 0.7), rgba(145, 136, 136, 0.9)),
              url('images/home_hero_image.jpeg') center/cover no-repeat;
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.25);
}

.service img {
  width: 45%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.service div {
  width: 50%;
  text-align: left;
}

.service h3 {
  color: #004aad;
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.service p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* Alternate image positions for variety */
.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* ---------- Responsive for Tablets & Phones ---------- */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
    text-align: center;
  }

  .service img {
    width: 100%;
  }

  .service div {
    width: 100%;
    padding-top: 15px;
  }
}











/* ---------- SERVICES SECTION (2-column desktop, stacked mobile) ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 70px 10%;
  background: linear-gradient(rgba(174, 217, 175, 0.7), rgba(145, 136, 136, 0.9)),
              url('images/home_hero_image.jpeg') center/cover no-repeat;
}

/* Each service item */
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.25);
}

/* Service image */
.service img {
  width: 45%;
  height: auto;
  max-height: 350px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text content beside image */
.service .service-text {
  width: 50%;
  text-align: left;
}

.service .service-text h3 {
  color: #004aad;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 12px;
}

.service .service-text p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* Alternate layout (image right, text left) */
.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* ---------- RESPONSIVE LAYOUT (Phones & Small Tablets) ---------- */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .service img {
    width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 10px;
  }

  .service .service-text {
    width: 100%;
    text-align: left;
    padding-top: 15px;
  }

  .service .service-text h3 {
    font-size: 1.2em;
  }

  .service .service-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}












/* ---------- SERVICES SECTION: FIXED RESPONSIVE DESIGN ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 70px 10%;
}

/* Each service block */
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.25);
}

/* Images */
.service img {
  width: 45%;
  height: auto;
  max-height: 350px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text beside images */
.service-text {
  width: 50%;
  color: #333;
  font-family: inherit;
}

.service-text h3 {
  color: #004aad;
  font-size: 1.4em;
  margin-bottom: 12px;
  font-weight: bold;
}

.service-text p {
  line-height: 1.7;
  font-size: 15px;
}

/* Alternate layout (image right on even rows) */
.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* ---------- RESPONSIVE FIX FOR MOBILE ---------- */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 20px;
  }

  .service img {
    width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 10px;
  }

  .service-text {
    width: 100%;
    padding-top: 15px;
    text-align: left;
  }

  .service-text h3 {
    font-size: 1.2em;
  }

  .service-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}







/* ---------- FINAL FIXED SERVICES SECTION (Always image left, text right; stacked on mobile) ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 70px 10%;
}

/* Each service item */
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.25);
}

/* Service image - always left on desktop */
.service img {
  width: 45%;
  height: auto;
  max-height: 350px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text section always beside image */
.service > div {
  width: 50%;
  text-align: left;
}

.service h3 {
  color: #004aad;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 12px;
}

.service p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- RESPONSIVE BEHAVIOR (Phones & Tablets) ---------- */
@media (max-width: 900px) {
  .service {
    flex-direction: column; /* stack image and text vertically */
    text-align: center;
    padding: 20px;
  }

  .service img {
    width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 10px;
  }

  .service > div {
    width: 100%;
    padding-top: 15px;
    text-align: left;
  }

  .service h3 {
    font-size: 1.3em;
  }

  .service p {
    font-size: 14px;
    line-height: 1.6;
  }
}


















/* ---------- PERFECTED SERVICES SECTION ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 70px 10%;
}

/* Each service block */
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  position: relative;
  flex-wrap: nowrap;
}

/* Alternate layout: every even service swaps sides */
.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image control */
.service img {
  width: 45%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

/* Text control */
.service-content {
  width: 50%;
  z-index: 2;
  position: relative;
}

.service-content h3 {
  color: #004aad;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-content p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

/* Hover effect */
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.25);
  transition: all 0.3s ease;
}

/* ---------- RESPONSIVE FIX ---------- */
@media (max-width: 900px) {
  .service {
    flex-direction: column !important;
    text-align: center;
    padding: 20px;
  }

  .service img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 15px;
  }

  .service-content {
    width: 100%;
    text-align: left;
    padding-top: 10px;
  }

  .service-content h3 {
    font-size: 1.3em;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}





 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f8f9fa;
    }

    .table-container {
      width: 90%;
      max-width: 800px;
      margin: 40px auto;
      overflow-x: auto; /* enables horizontal scroll on small screens */
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-left: 1px;
      min-width: 400px; /* ensures layout doesn’t break */
    }

    th, td {
      border: 2px solid black;
      padding: 12px;
      text-align: center;
    }

    th {
      background-color: #f2b632;
      color: white;
      font-size: 18px;
    }

    tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    /* Make text smaller on very small screens */
    @media screen and (max-width: 500px) {
      th, td {
        padding: 8px;
        font-size: 14px;
      }
    }








    