 /* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #588b76;
  line-height: 1.6;
}
a {
  color: #588b76;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* Promo Bar */
.promo-bar {
  background-color: #cfe8d5;
  color: #588b76;
  text-align: center;
  padding: 0.6em;
  font-weight: 600;
}

/* Contact Bar */
.contact-bar {
  background-color: #eaeaea;
  border-bottom: 1px solid #ccc;
}
.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 0.5em 10%;
  flex-wrap: wrap;
  font-size: 0.9em;
}
.contact-container span {
  margin: 0.3em 0;
}
.contact-container i {
  margin-right: 0.4em;
  color: #588b76;
}

/* Header & Navigation */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 10%;
}
.logo img {
  max-height: 50px;
}
.main-nav ul {
  display: flex;
  gap: 1.2em;
}
.main-nav li a {
  font-weight: bold;
  transition: color 0.3s;
}
.main-nav li a:hover {
  color: #588b76;
}

/* Hamburger Toggle */
#menu-toggle {
 display: none;
  font-size: 1.6rem;
  background-color: #eaeaea;
   padding: 10px 12px;
  font-size: 22px;
   border-radius: 5px;
  cursor: pointer;
   color: #588b76;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

#menu-toggle {
  display: none;
}

#toggle {
  display: none;
}

/* MOBILE NAVBAR */
@media (min-width: 320px) and (max-width: 768px) {
  #menu-toggle {
    display: block;

  }


  .navRight {
    display: none;
    background: #ffffff;
    padding: 1.4rem;
    position: absolute;
    top: 4rem;
    right: 3px;
    z-index: 1;
    width: 60%;
   transform: translate(100%, 0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.5, 1);
  }

  .nav-links {
    flex-direction: column;
  }

 .nav-links.active {
    display: flex;
  }

   .nav-links li {
    margin: 0.5rem 0;
  }

  #toggle:checked + .navRight {
    display: block;
    transform: none;
  }
}

/* Hero */
.hero {
  background: #ffffff;
  padding: 4rem 2rem;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}
.hero-text {
  flex: 1 1 400px;
}
.hero-text h1 {
  font-size: 2.5em;
  color: #588b76;
}
.hero-text p {
  margin: 1em 0;
}
.btn-primary {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: #588b76;
  color: #ffffff;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn-primary:hover {
  background-color: #588b76;
}
.hero-image {
  flex: 1 1 300px;
}

/* Services Section */
.services {
  text-align: center;
  padding: 4em 10%;
  background-color: #ffffff;
}
.services h2 {
  color: #588b76;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  margin-top: 2em;
}
.service-item {
  background: #eaeaea;
  padding: 1.5em;
  border: 1px solid #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: scale(1.05);
}
.service-item span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5em;
}

/* Experience Section */
.experience {
  background: #ffffff;
  text-align: center;
  padding: 3em 10%;
}
.experience h2 {
  color: #588b76;
}
.experience p {
  margin: 1em auto;
  max-width: 600px;
}
.btn {
  display: inline-block;
  padding: 0.7em 1.5em;
  background-color: #588b76;
  color: #ffffff;
  border-radius: 5px;
  margin-top: 1em;
}
.btn:hover {
  background-color: #588b76;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rm;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}


.about-text {
  flex: 1 1 400px;
}

.about-content h2 {
  margin-top: 1rem;
  color: #588b76;
  margin-bottom: 0.5rem;
}

.about-content p {
  margin-bottom: 1rem;
  font-size: 1.1em;
}

.about-text {
  flex: 1 1 400px;
}


.about-content p {
  margin-bottom: 1.2em;
  font-size: 1.1em;
}

.about-text {
  flex: 1 1 55%;
}

.about-image {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* === Values === */
.values {
  text-align: center;
  background: #ffffff;
  padding: 4rem 2rem;
}

.values h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.values li {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}


/* === HERO SECTION WITH IMAGE === */
.services-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 4rem 2rem;
  gap: 2rem;
}

.services-hero .hero-text {
  flex: 1 1 400px;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #588b76;
}

.services-hero p {
  font-size: 1.2rem;
  color: #588b76;
  max-width: 600px;
}

.services-hero .hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.services-hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* optional for soft corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* === Services List === */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #eaeaea;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.service-card h2 {
  margin-bottom: 1rem;
  color: #588b76;
}

.service-card p {
  color: #588b76;
}


/* === Blog Hero === */
.blog-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #eaeaea;
  padding: 4rem 2rem;
  gap: 2rem;
}

.blog-hero .hero-text {
  flex: 1 1 400px;
}

.blog-hero .hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.blog-hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* optional rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-hero h1 {
  font-size: 2.5rem;
  color: #588b76;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.2rem;
  color: #588b76;
}

/* === Blog Posts === */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #eaeaea;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.blog-card h2 {
  margin-bottom: 1rem;
  color:#588b76;
}

.blog-card p {
  margin-bottom: 1rem;
  color: #588b76;
}

.blog-card .btn-secondary {
  background: #588b76;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1.5rem;
}

/* --- Animation Keyframes --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Animation Classes --- */
.animate-fade-in {
  animation: fadeIn 1.2s ease-out forwards;
  opacity: 0; /* Start invisible until animated */
}

.animate-slide-up {
  animation: slideUp 1.2s ease-out forwards;
  opacity: 0;
}


/* Main blog post containers */
.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Each blog article */
.blog-post {
  background: #eaeaea;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease;
}

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

/* Featured image */
.featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Headings */
.blog-post h1 {
  font-size: 1.8rem;
  color: #205375;
  margin-bottom: 0.5rem;
}

.blog-post h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  color: #588b76;
}

.blog-post h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #3d3d3d;
}

/* Metadata */
.meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

/* CTA box */
.cta-box {
  background-color: #ffffff;
  border-left: 4px solid #588b76;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #588b76;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #588b76;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* === Contact Hero === */
.contact-hero {
  text-align: center;
  background: #ffffff;
  padding: 4rem 2rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: #588b76;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #588b76;
}


/* === Contact Content === */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form, .contact-info {
  flex: 1 1 400px;
  background: #eaeaea;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-info h2 {
  margin-bottom: 1rem;
  color: #588b76;
}

.contact-form form select,
.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form form button {
  border: none;
}

.contact-info p {
  margin: 0.5rem 0;
  color: #588b76;
}

.checkbox-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.checkbox-label input {
  margin-right: 8px;
}

.checkbox-label a {
  color: #588b76;
  text-decoration: underline;
}

.map-container {
  max-width: 2000px;
  margin: 5rem 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}




/* === Hiring Hero === */
.hiring-hero {
  text-align: center;
  background: #ffffff;
  padding: 4rem 2rem;
}

.hiring-hero h1 {
  font-size: 2.5rem;
  color: #588b76;
  margin-bottom: 1rem;
}

.hiring-hero p {
  font-size: 1.2rem;
  color: #588b76;
}

/* === Hiring Content === */
.hiring-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hiring-info {
  flex: 1 1 400px;
  background: #eaeaea;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hiring-info h2 {
  margin-bottom: 1rem;
  color: #588b76;
}

.hiring-info ul {
  list-style: none;
  padding: 0;
}

.hiring-info li {
  margin: 0.5rem 0;
  color: #588b76;
}

.hiring-form {
  flex: 1 1 400px;
  background: #eaeaea;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hiring-form h2 {
  margin-bottom: 1rem;
  color: #588b76;
}

.hiring-form form input,
.hiring-form form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hiring-form form button {
  border: none;
}



/* Privacy Policy */
.privacy-policy {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-policy h1,
.privacy-policy h2 {
  margin-top: 2rem;
  color: #205375;
}

.privacy-policy p,
.privacy-policy ul,
.privacy-policy ol {
  margin-bottom: 1rem;
}

/* policy fadein  */
.privacy-policy,
.disclaimer-policy,
.terms-policy,
.cookies-policy {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}


/* Disclaimer Policy */
.disclaimer-policy {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

.disclaimer-policy h1,
.disclaimer-policy h2 {
  margin-top: 2rem;
  color: #205375;
}

.disclaimer-policy p,
.disclaimer-policy ol {
  margin-bottom: 1rem;
}

/* terms Policy */
.terms-policy {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

.terms-policy h1,
.terms-policy h2,
.terms-policy h3 {
  margin-top: 1.5rem;
  color: #205375;
}

.terms-policy p,
.terms-policy ol {
  margin-bottom: 1rem;
}

.terms-policy ol {
  padding-left: 1.5rem;
}

/* cookies Policy */
.cookies-policy {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

.cookies-policy h1,
.cookies-policy h2,
.cookies-policy h3 {
  margin-top: 1.5rem;
  color: #205375;
}

.cookies-policy p,
.cookies-policy ul {
  margin-bottom: 1rem;
}

.cookies-policy ul {
  padding-left: 1.5rem;
}


/* Footer */
.footer {
  background-color: #eaeaea;
  color: #588b76;
  padding: 3em 10% 1em;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
}
.footer-box h3 {
  margin-bottom: 1em;
  font-size: 1.1em;
}
.footer-box p,
.footer-box a,
.footer-box label {
  color: #588b76;
  font-size: 0.95em;
  line-height: 1.6;
}
.footer-box ul {
  padding-left: 0;
}
.footer-box ul li {
  margin-bottom: 0.5em;
}
.footer-social a {
  margin-right: 0.6em;
  font-size: 1.3em;
  color: #588b76;
}
.footer-social a:hover {
  color: #588b76;
}

/* Quote Form */
.quote-form input,
.quote-form select {
  width: 100%;
  margin-bottom: 0.8em;
  padding: 0.6em;
  border: none;
  border-radius: 4px;
}
.quote-form button {
  width: 100%;
  padding: 0.8em;
  background: #588b76;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.quote-form button:hover {
  background: #588b76;
}
.quote-form label {
  display: block;
  margin-bottom: 0.8em;
  font-size: 0.9em;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 1em;
  font-size: 0.85em;
  color: #588b76;
  border-top: 1px solid #588b76;
} 



/* Floating chat button */
.floating-chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #588b76;
  color: #ffffff;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.floating-chat-btn:hover {
  background-color: #588b76;
  animation: none;
}

