/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7f6;
  color: #333;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.header h2 {
  color: #0a5c36;
}

.header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.header nav a:hover {
  color: #0a5c36;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 50px 20px;
  background: linear-gradient(to right, #e9f3ee, #ffffff);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 32px;
  color: #0a5c36;
  margin-bottom: 10px;
}

.hero-image {
  flex: 1;
  min-width: 280px;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

/* =========================
   BUTTONS
========================= */
.cta-buttons {
  margin-top: 15px;
}

.cta-buttons a {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  margin: 5px 5px 5px 0;
  font-weight: bold;
}

.btn {
  background: #0a5c36;
  color: #fff;
}

.btn:hover {
  background: #084c2d;
}

.btn-outline {
  border: 2px solid #0a5c36;
  color: #0a5c36;
}

/* =========================
   SECTION
========================= */
.section {
  padding: 40px 20px;
}

.section h2 {
  margin-bottom: 20px;
}

/* =========================
   PROJECTS
========================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* =========================
   BLOG GRID
========================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

/* =========================
   CTA
========================= */
.cta {
  text-align: center;
  background: #0a5c36;
  color: #fff;
  padding: 40px 20px;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}
.section h2 {
  margin-bottom: 20px;
}

/* =========================
   PROJECTS
========================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 50px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.project-card p {
    padding: 0 15px 10px;
    font-size: 14px;
    color: #555;
}

.project-card a {
    display: inline-block;
    margin: 10px 15px 15px;
    text-decoration: none;
    background: #0a5c36;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.project-card a:hover {
    background: #084c2d;
}

/* =========================
   BLOG
========================= */
.blog-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #e9f3ee, #ffffff);
}

.blog-header h1 {
    font-size: 36px;
    color: #0a5c36;
    margin-bottom: 10px;
}

.blog-header p {
    color: #555;
    font-size: 16px;
}

.blog-grid {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.blog-card p {
    padding: 0 15px 10px;
    font-size: 14px;
    color: #555;
}

.blog-card a {
    display: inline-block;
    margin: 10px 15px 15px;
    text-decoration: none;
    background: #0a5c36;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.blog-card a:hover {
    background: #084c2d;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* =========================
   CTA SECTION
========================= */
.cta {
    text-align: center;
    background: #0a5c36;
    color: #fff;
    padding: 50px;
}

.cta .btn {
    display: inline-block;
    margin-top: 15px;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h2,
.contact-info h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-list,
.social-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.social-list li {
    display: inline-block;
    margin-right: 15px;
}

.social-list a {
    text-decoration: none;
    color: #1a73e8;
    font-weight: bold;
    transition: color 0.3s;
}

.social-list a:hover {
    color: #0b59d0;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #1da851;
}

.contact-form {
    flex: 1 1 400px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
}

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

.contact-form form button {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form form button:hover {
    background-color: #0b59d0;
}

.map {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-image img {
        width: 100%;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }

    .projects-grid,
    .blog-grid {
        padding: 20px;
    }

    .blog-header h1,
    .projects-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1rem;
    }
}

/* =========================
   GLOBAL RESET & BODY
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f7f6;
    color: #333;
    line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header h2 {
    color: #0a5c36;
    font-size: 1.8rem;
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.header nav a:hover {
    color: #0a5c36;
}

/* =========================
   BLOG CONTENT
========================= */
.blog-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    padding: 30px;
}

.blog-content h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: #0a5c36;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
    background-color: #e9f3ee;
    border-left: 5px solid #0a5c36;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta-box .btn {
    display: inline-block;
    background-color: #0a5c36;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-box .btn:hover {
    background-color: #084c2d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .blog-content h1 {
        font-size: 1.6rem;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .cta-box h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header nav a {
        margin-left: 10px;
        font-size: 0.9rem;
    }

    .blog-content {
        padding: 20px 15px;
    }
}
/* =========================
   GLOBAL RESET & BODY
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f7f6;
    color: #333;
    line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header h2 {
    color: #0a5c36;
    font-size: 1.8rem;
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.header nav a:hover {
    color: #0a5c36;
}

/* =========================
   BLOG CONTENT
========================= */
.blog-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.blog-content h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: #0a5c36;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* =========================
   STRONG / WINNER HIGHLIGHT
========================= */
.blog-content strong {
    color: #0a5c36;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
    background-color: #e9f3ee;
    border-left: 5px solid #0a5c36;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.cta-box .btn {
    display: inline-block;
    background-color: #0a5c36;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-box .btn:hover {
    background-color: #084c2d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .blog-content h1 {
        font-size: 1.6rem;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .cta-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header nav a {
        margin-left: 10px;
        font-size: 0.9rem;
    }

    .blog-content {
        padding: 20px 15px;
    }
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
}
/* Floating WhatsApp button */
.whatsapp {
    position: fixed;       /* always visible on screen */
    bottom: 20px;          /* distance from bottom */
    right: 20px;           /* distance from right */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 28px;
    border-radius: 50%;    /* round button */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;         /* on top of other elements */
    transition: transform 0.2s;
}

.whatsapp:hover {
    transform: scale(1.1);
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #f0f2f5;
  color: #333;
}

/* NAVBAR */
.header {
  background: #007b5e;
  padding: 15px 0;
  text-align: center;
}

.header nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.header nav a:hover {
  text-decoration: underline;
}

/* CONTAINER */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 15px;
}

/* POST CARD */
.post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: 0.3s ease;
}

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

/* HEADER */
.post-header {
  display: flex;
  align-items: center;
  padding: 15px;
}

.post-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 12px;
}

.post-header h4 {
  font-size: 15px;
}

.post-header span {
  font-size: 12px;
  color: #777;
}

/* IMAGE */
.post-image {
  width: 100%;
  height: auto;
}

/* CONTENT */
.post-content {
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
}

/* STATS */
.stats {
  padding: 10px 15px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #eee;
}

/* ACTION BUTTONS */
.actions {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  border-top: 1px solid #eee;
}

.actions button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #555;
  padding: 8px 15px;
  border-radius: 6px;
  transition: 0.2s;
}

.actions button:hover {
  background: #f1f1f1;
  color: #007b5e;
}

/* MOBILE */
@media (max-width: 600px) {
  .header nav a {
    display: block;
    margin: 10px 0;
  }
} the css
/* =========================
   PROJECT DETAILS PAGE
========================= */

.section {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Title */
.section h1 {
  font-size: 2.2rem;
  color: #0a5c36;
  margin-bottom: 15px;
  text-align: center;
}

/* Image */
.section img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  object-fit: cover;
}

/* Paragraphs */
.section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Highlight text */
.section strong {
  color: #0a5c36;
}

/* List */
.section ul {
  margin: 15px 0 20px 20px;
}

.section ul li {
  margin-bottom: 10px;
  color: #444;
}

/* Back Button */
.section .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #0a5c36;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.section .btn:hover {
  background: #084c2d;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

  .section {
    margin: 30px 15px;
    padding: 20px;
  }

  .section h1 {
    font-size: 1.6rem;
  }

  .section p {
    font-size: 0.95rem;
  }

}
.comment-section {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.comment-input {
  width: 80%;
  padding: 8px 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

.submit-comment {
  padding: 8px 15px;
  border-radius: 20px;
  background: #0a5c36;
  color: #fff;
  border: none;
  cursor: pointer;
}

.comments-list p {
  background: #f1f1f1;
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 0.95rem;
}
