*{margin:0; padding:0; box-sizing:border-box;}
    body {font-family: 'Poppins', sans-serif; background:linear-gradient(120deg,#f9f9f7,#e9f5db,#dce3dc); background-size:400% 400%; animation:gradientShift 12s ease infinite; color:#2e2e2e; overflow-x:hidden;}

    @keyframes gradientShift {
      0% {background-position:0% 50%;}
      50% {background-position:100% 50%;}
      100% {background-position:0% 50%;}
    }

    nav {position:fixed; top:0; left:0; width:100%; background:#3a5a40; padding:20px 60px; display:flex; justify-content:space-between; align-items:center; z-index:1000; box-shadow:0 3px 10px rgba(0,0,0,0.2);}
    nav h1 {font-size:1.8rem; font-weight:800; color:#e9f5db; letter-spacing:2px; text-transform:uppercase;}
    nav ul {display:flex; list-style:none; gap:40px;}
    nav ul li a {text-decoration:none; color:#e9f5db; font-weight:600; letter-spacing:1px; transition:0.3s;}
    nav ul li a:hover {color:#a3b18a;}
    nav h1 img.logo {
  height: 50px;   /* logo height */
  width: auto;    /* keep proportions */
  display: block; /* removes unwanted extra spacing */
}
/* Logo styles */
.logo {
  height: 50px;         /* Adjust size */
  width: auto;          /* Keeps aspect ratio */
  object-fit: contain;  /* Prevents stretching */
}

/* Make sure nav items align correctly */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* On small screens */
@media (max-width: 768px) {
  .logo {
    height: 40px;   /* slightly smaller for mobile */
  }
}


    /* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3a5a40;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

nav h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e9f5db;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Default desktop nav */
#nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

#nav-links li a {
  text-decoration: none;
  color: #e9f5db;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

#nav-links li a:hover {
  color: #a3b18a;
}

/* Hamburger (hidden on desktop) */
#hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

#hamburger .bar {
  width: 28px;
  height: 3px;
  background: #e9f5db;
  border-radius: 3px;
  transition: 0.3s;
}

/* === MOBILE ONLY === */
@media (max-width: 768px) {
  /* Show hamburger */
  #hamburger {
    display: flex;
  }

  /* Slide-in menu */
  #nav-links {
    position: fixed;
    top: 0;
    right: -250px;   /* hidden */
    width: 250px;
    height: 100%;
    background: #3a5a40;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  /* When JS toggles */
  #nav-links.show {
    right: 0;
  }

  /* Links in mobile menu */
  #nav-links li {
    text-align: center;
  }

  #nav-links li a {
    font-size: 1.2rem;
  }
}


   
    .hero {height:100vh; display:flex; align-items:center; justify-content:center; flex-direction:column; text-align:center; background:url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; color:#f1f1f1; position:relative; overflow:hidden;}
    .hero::after {content:""; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.45);}
    .hero h2, .hero p, .hero button {position:relative; z-index:2;}
    .hero h2 {font-size:3.5rem; margin-bottom:25px; animation:fadeIn 1.5s ease-out; font-weight:900; text-transform:uppercase; letter-spacing:3px;}
    .hero p {font-size:1.3rem; max-width:750px; margin-bottom:40px; animation:fadeUp 2s ease-out; color:#f1f1f1;}
    .hero button {padding:16px 40px; border:none; border-radius:5px; background:#a3b18a; color:#2e2e2e; font-weight:700; font-size:1rem; cursor:pointer; transition:0.3s; text-transform:uppercase; box-shadow:0 6px 18px rgba(0,0,0,0.3); position:relative; overflow:hidden;}
    .hero button:hover {background:#e9f5db; color:#344e41; transform:scale(1.05);} 
    .hero button::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
      transition: 0.5s;
    }
    .hero button:hover::before {left: 100%;}

    @keyframes fadeIn {from{opacity:0;} to{opacity:1;}}
    @keyframes fadeUp {from{opacity:0; transform:translateY(40px);} to{opacity:1; transform:translateY(0);}}

    section {padding:120px 60px;}
    h3.section-title {text-align:center; font-size:2.5rem; margin-bottom:70px; color:#344e41; font-weight:800; text-transform:uppercase; letter-spacing:2px;}

    .services {display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:40px;}
    .service {background:#fff; padding:20px; border-radius:16px; box-shadow:0 4px 15px rgba(0,0,0,0.15); text-align:center; transition:transform 0.3s ease, box-shadow 0.3s ease; display:flex; flex-direction:column; justify-content:flex-start; align-items:center;}
    .service img {width:100%; height:200px; object-fit:cover; border-radius:12px; margin-bottom:15px; transition:transform 0.4s ease;}
    .service h4 {font-size:1.3rem; font-weight:bold; margin-bottom:10px; color:#2c3e50;}
    .service p {font-size:0.95rem; line-height:1.6; color:#555;}
    .service:hover {transform:translateY(-8px); box-shadow:0 8px 20px rgba(0,0,0,0.25);}
    .service:hover img {transform:scale(1.05);}

    .testimonials {background:#e9f5db;}
    .slider {display:flex; overflow:hidden;}
    .slide {min-width:100%; transition:0.5s; padding:50px; text-align:center; font-size:1.2rem; font-style:italic; color:#344e41;}

    .clients {background:#f9f9f7; padding:100px 60px; overflow:hidden; position:relative;}
    .client-logos {overflow:hidden; width:100%;}
    .logo-track {display:flex; gap:80px; animation:scroll 20s linear infinite;}
    .logo-track img {max-width:120px; filter:grayscale(100%); opacity:0.7; transition:all 0.3s ease;}
    .logo-track img:hover {filter:grayscale(0%); opacity:1; transform:scale(1.1);}
    @keyframes scroll {0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

    /* Toast */
    #toast {position:fixed; bottom:30px; right:30px; background:#222; color:#fff; padding:15px 25px; border-radius:8px; opacity:0; transform:translateY(20px); transition:all 0.5s; z-index:2000;}
    #toast.show {opacity:1; transform:translateY(0);}

    /* WhatsApp floating button */
    .whatsapp-btn {position:fixed; bottom:25px; left:25px; background:#25D366; border-radius:50%; width:60px; height:60px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(0,0,0,0.3); z-index:2000;}
    .whatsapp-btn img {width:35px; height:35px;}

    /* FAQ Accordion */
    .faq {background:#fff; padding:80px 40px; border-top:1px solid #ddd;}
    .faq-item {margin-bottom:20px;}
    .faq-question {width:100%; text-align:left; padding:15px 20px; font-weight:bold; background:#f1f1f1; border:none; border-radius:8px; cursor:pointer;}
    .faq-answer {max-height:0; overflow:hidden; transition:max-height 0.4s ease; background:#fafafa; padding:0 20px; border-radius:0 0 8px 8px;}
    .faq-answer p {padding:15px 0; color:#555;}

    footer {background:#3a5a40; color:#e9f5db; text-align:center; padding:40px; font-weight:500;}
    footer p span {color:#a3b18a; font-weight:700;}

    /* Gallery grid */
    .gallery-grid {
      display: grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
      margin-top:40px;
    }

    @media(max-width:768px){
      nav{padding:15px 25px;}
      .hero h2{font-size:2.5rem;}
      .hero p{font-size:1.1rem;}
      section{padding:80px 30px;}
      .services{grid-template-columns:1fr;}
      .gallery-grid{grid-template-columns:1fr;}
      .logo-track{gap:40px;}
    }
    /* Show hamburger only on mobile */




/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background: #f9fafb;
  color: #1e293b;
  line-height: 1.7;
}

/* Header */
header {
  background: #1e293b; /* dark blue */
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Main content */
main {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

main h2 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: #111827;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

main p, main ul {
  margin-top: 1rem;
  font-size: 1rem;
  color: #374151;
}

main ul {
  padding-left: 1.5rem;
}

main ul li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: #1e293b;        /* dark navy */
  color: #ffffff;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 1rem;
}

footer .footer-links a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .footer-links a:hover {
  color: #38bdf8;             /* sky blue accent */
  transform: translateY(-2px);
}

footer p {
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
}
/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #38bdf8; /* sky blue accent */
  box-shadow: 0 0 0 2px rgba(56,189,248,0.3);
}

.contact-form button {
  background: #1e293b;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #0f172a;
  transform: translateY(-2px);
}
/* Shared page headers (About + Privacy) */
/* Shared page headers (About + Privacy) */
.page-header {
  background: #1e293b; /* dark blue, matches site */
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Main content box */
.page-content {
  max-width: 900px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page-content h2 {
  font-size: 1.6rem;
  color: #111827;
  margin-top: 1.8rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.4rem;
}

.page-content p,
.page-content li {
  font-size: 1rem;
  color: #374151;
  margin-top: 1rem;
  line-height: 1.7;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

/* Accent links */
.page-content a {
  color: #2563eb; /* bright blue */
  font-weight: 500;
}

.page-content a:hover {
  text-decoration: underline;
}
/* Theme-friendly styling for rich content blocks */
section[id$="-extra"],
section[id$="-rich"] {
  background-color: #f5f8ff;      /* Soft light blue to match theme */
  padding: 25px 20px;             /* Comfortable spacing */
  margin-top: 30px;                /* Space between sections */
  border-left: 4px solid #0b5ed7; /* Blue accent line to match theme */
  border-radius: 6px;              /* Rounded corners */
  box-shadow: 0 3px 8px rgba(0,0,0,0.04); /* Subtle shadow for depth */
}

/* Headings inside extra/rich sections */
section[id$="-extra"] h2,
section[id$="-rich"] h2 {
  color: #0b5ed7;           /* Match site primary color */
  font-size: 1.75em;
  margin-bottom: 12px;
  border-bottom: 2px solid #0b5ed7;
  padding-bottom: 5px;
}

/* Paragraphs inside extra/rich sections */
section[id$="-extra"] p,
section[id$="-rich"] p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #444;              /* Dark gray text for readability */
  margin-bottom: 12px;
}

/* Ensure buttons, links, and existing CTAs are unaffected */
section[id$="-extra"] a.cta,
section[id$="-rich"] a.cta {
  background-color: #0b5ed7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

section[id$="-extra"] a.cta:hover,
section[id$="-rich"] a.cta:hover {
  background-color: #094bb5;
}
.company-info {
  background: #e9f5db;  /* soft green background */
  padding: 80px 60px;
}

.company-info .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #344e41;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.company-info .company-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #2e2e2e;
}

.company-info .company-content p {
  margin-bottom: 20px;
}
.company-content {
  text-align: center;
  font-size: xx-large;
  font-style: italic;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .company-info {
    padding: 60px 20px;
  }

  .company-info .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .company-info .company-content {
    font-size: 0.95rem;
  }
}
.yo {
  text-align: center;
  font-style: italic;
  font-weight: 400;
}
.bol {
  font-weight: 900;
}

