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

body {
  font-family: "Albert Sans", sans-serif !important;
}

/* ---------------- HEADER ---------------- */
.container {
  max-width: 1550px;
  width: 100%;
  padding: 25px;
  margin: auto;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 1rem;
}



.logo img {
  height: 40px;
}

ul#navLinks {
  display: flex;
  list-style: none;
  margin-right: 120px;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-actions a {
  text-decoration: none;
  color: black;
}

.phone {
  margin-right: 15px;
  font-size: 14px;
  color: #333;
}

.book-btn {
  background-color: #8cc152;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 2rem;
  font-size: 14px;
  cursor: pointer;
}

/* ---------------- HERO ---------------- */
.hero {
  height: 60vh;
  background-size: cover;
  padding-bottom: 50px;
}

.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 1400px;
  padding: 20px;
  margin-top: 20px;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.contact-btn {
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: 15px;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #000;
  transform: translateY(-4px);
}

.hero-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  height: 80vh;
  object-fit: cover;
}

main.inner-page {
  margin-top: 125px;
}

/* ---------------- STATS ---------------- */
.stats {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #EAEAEA;
}

.stat {
  background-color: #EAEAEA;
  padding: 20px;
  border: 1px solid #C2C2C2;
  border-left: none;
  border-bottom: none;
}

.stat-last{
  border-right: none;
}

.stat h2 {
  font-size: 25px;
  color: #222;
}

.stat p {
  margin-top: 5px;
  font-size: 26px;
  color: #555;
}

/* ---------------- SERVICES ---------------- */
.service-container {
  background-color: #3a3939;
  width: 100%;
}

.service {
  max-width: 1400px;
  margin: auto;
  color: #fff;
  background-color: rgb(46, 45, 45);
  padding: 50px;
  border-radius: 1rem;
}

.service-heading {
  font-size: 80px;
  margin-bottom: 40px;
  font-weight: 300;
  border-bottom: 1px solid white;
  text-align: start;
}


.explore-btn {
  margin-top: 15px;
  border: 1px solid white;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
  width: 125px;
}

.explore-btn:hover {
  background-color: white;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ---------------- BANNER ---------------- */
.banner {
  background-color: #5D913F;
  display: flex;
  max-width: 1300px;
  margin: 180px auto 0;
  border-radius: 2rem;
  color: white;
  gap: 40px;
  padding: 55px;
  justify-content: end;
}

.banner-left-img {
  width: 600px;
}

.banner-right {
  display: flex;
  flex-direction: column;
  width: 600px;
  gap: 40px;
  align-items: start;
}

.banner-right-heading {
  font-size: 65px;
  font-weight: 300;
}

.banner-right-para {
  font-size: 20px;
}

.banner-btn {
  text-decoration: none;
  border: 2px solid white;
  background-color: #5D913F;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.banner-btn::after {
  content: "↗";
  transition: transform 0.3s;
}

.banner-btn:hover::after {
  transform: translateX(4px);
}

/* ---------------- CHOOSE US ---------------- */
.chooseUs {
  max-width: 1400px;
  margin: 40px auto 0;
  border-radius: 2rem;
  background-color: #f4f4f4;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.choose-heading {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 20px;
  border-bottom: 1px solid black;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.accordion-container {
  flex: 1 1 400px;
}

.accordion-item {
  margin-top: 20px;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  cursor: pointer;
}

.accordion-title {
  font-size: 35px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  margin-top: 10px;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.image-container {
  flex: 1 1 250px;
  border-radius: 16px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  border-radius: 16px;
}

/* ---------------- CONTACT ---------------- */
.contact {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  max-width: 1400px;
  margin: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.image-section {
  flex: 1 1 50%;
  padding: 20px;
}

.image-section img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  max-width: 650px;
}

.form-section {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.form-section h2 {
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 30px;
}

.form-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #007BFF;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn,
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: #000;
  color: #fff;
  padding: 13px 30px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

input.wpcf7-form-control.wpcf7-text {
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ---------------- RESPONSIVENESS ---------------- */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 48px; }
  .hero-content p { font-size: 18px; }
  .contact-btn { font-size: 14px; padding: 8px 16px; }

  .stats { flex-wrap: wrap; padding: 10px; }
  .stat { flex: 1 1 45%; margin: 10px; text-align: center; }
  .stat h2 { font-size: 22px; }
  .stat p { font-size: 22px; }

  .service-heading { font-size: 60px; text-align: center; padding-bottom: 20px; }

  .banner { flex-direction: column; padding: 40px 20px; text-align: center; gap: 30px; }
  .banner-left-img { max-width: 500px; width: 100%; }
  .banner-right { width: 100%; align-items: center; gap: 20px; }
  .banner-right-heading { font-size: 48px; }
  .banner-right-para { font-size: 18px; }

  .choose-heading { font-size: 40px; text-align: center; }
  .content-wrapper { flex-direction: column; }
  .accordion-title { font-size: 28px; }
  .accordion-content { font-size: 18px; }

  .blog-title { font-size: 48px; text-align: center; }
  .blog-grid { flex-direction: column; max-width: 400px; margin: auto; }

  .right-card { flex-direction: column; max-width: 650px; margin: auto; }
  .right-card img { max-width: 650px; height: auto; margin: auto; }
  .right-card .content { text-align: center; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
  .contact-btn { font-size: 14px; padding: 6px 12px; }

  .stats { flex-direction: column; gap: 10px; }
  .stat { width: 100%; padding: 15px; }
  .stat h2, .stat p { font-size: 18px; }

  .service-heading { font-size: 40px; }

  .banner-right-heading { font-size: 36px; }
  .banner-right-para { font-size: 16px; }
  .banner-btn { width: 100%; justify-content: center; }

  .choose-heading { font-size: 32px; }
  .accordion-title { font-size: 24px; }
  .accordion-content { font-size: 16px; }
  .chooseUs { padding: 20px; }

  .blog-title { font-size: 36px; }
  .left-feature .meta h3 { font-size: 20px; }
  .btn { font-size: 14px; padding: 6px 12px; }
  .right-card h4 { font-size: 18px; }
}


/* ===========================
   FOOTER SECTION
=========================== */
.end {
  background-color: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

footer {
  max-width: 1400px;
  margin: auto;
  padding: 60px 40px 30px;
  background-color: #1c1c1c;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: start;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}
.newsletter h2 {
  flex: 1 1 100%;
  font-size: clamp(32px, 5vw, 65px);
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  border-top: 1px solid #333;
  padding-top: 40px;
}
.footer-column h4 {
  margin-bottom: 15px;
  font-weight: bold;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: #fff;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo img {
  width: 150px;
}
.footer-logo span {
  color: #bbb;
  line-height: 1.5;
}
.footer-bottom {
  margin: 40px auto 0;
  padding: 15px 25px;
  border-radius: 5rem;
  border: 1px solid #333;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
}

/* ===========================
   EXPERTISE SECTION
=========================== */

.expertise-section {
  background-color: #eaeaea;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
  margin-top: 60px;
  border-radius: 23px;
  margin-bottom: 60px;
}

.expertise-title {
  max-width: 1400px;
  margin: 20px auto 40px;
  padding-bottom: 20px;
  font-size: clamp(28px, 5vw, 55px);
  font-weight: 400;
  border-bottom: 2px solid #000;
  text-align: start;
  position: relative;
}

/* underline animation */
.expertise-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transition: width 0.6s ease-in-out;
}
.expertise-title:hover::after {
  width: 100%;
}

.expertise-content {
  max-width: 1400px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* ---------- IMAGE ---------- */
.expertise-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expertise-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.expertise-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ---------- ABOUT BOX ---------- */
.about-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 16px;  
  padding: 22px 25px;  
  text-align: start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

/* heading tighter spacing */
.about-box h3 {
  font-size: 40px;     
  font-weight: 600;
  margin-bottom: 10px; 
}

/* paragraph more compact */
.about-box p {
  font-size: 20px;     
  font-weight: 300;
  line-height: 1.5;   
  color: #444;
  margin: 0;           
}
/* ---------- ANIMATIONS ---------- */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.3s;
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .expertise-content {
    flex-direction: column;
    text-align: center;
  }
  .about-box {
    text-align: center;
  }
}

/* ===========================
   BANNER TWO
=========================== */
.banner-two {
  max-width: 1300px;
  margin: 40px auto 0;
  padding: 55px;
  border-radius: 2rem;
  background-color: #5d913f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: white;
}
.banner-top-heading-two {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 300;
  text-align: center;
}
.banner-top-para-two {
  font-size: clamp(24px, 5vw, 45px);
  max-width: 800px;
  text-align: center;
  margin: auto;
}
.banner-bottom-two {
  padding-top: 60px;
}
.banner-bottom-cards-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.banner-bottom-card-two {
  background: white;
  color: black;
  border-radius: 1rem;
  padding: 40px 20px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
}
.banner-img-two {
  width: 59px;
  height: 59px;
  margin: auto;
}
.card-para-two {
  font-size: 20px;
  margin-top: 10px;
}
.card-desc-two {
  font-size: 16px;
  margin-top: 8px;
}

/* ===========================
   TESTIMONIAL SECTION
=========================== */
/* ---------- SECTION ---------- */
.testimonial-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 70px 40px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.testimonial-header {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.testimonial-header::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6cc14f, #a6f77b);
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ---------- SLIDER ---------- */
.testimonial-slider {
  margin: 40px auto 20px;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

.testimonial {
  display: flex;
  flex: 1 0 100%;
  gap: 25px;
  align-items: stretch;
  padding: 20px;
}

/* ---------- CARD ---------- */
.card {
  flex: 1;
  border-radius: 16px;
  padding: 50px 30px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.card.black {
  background: linear-gradient(135deg, #3d3d3d, #1f1f1f);
  color: #eee;
}

.card.white {
  background: #fff;
  color: #222;
}

/* ---------- QUOTE ICON ---------- */
.card .quote {
  font-size: 70px;
  font-weight: bold;
  line-height: 0.5;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 20px;
  left: 25px;
  z-index: 0;
}
.card.white .quote {
  color: rgba(0,0,0,0.1);
}

/* ---------- TEXT ---------- */
.card p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.card .author {
  font-size: 16px;
  font-weight: bold;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.card.white .author {
  color: #444;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

/* ---------- DOTS ---------- */
.dots {
  text-align: center;
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: #888;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.dot:hover {
  transform: scale(1.3);
  background: #6cc14f;
  box-shadow: 0 0 12px rgba(108,193,79,0.8);
}

.dot.active {
  background: #6cc14f;
  transform: scale(1.4);
  box-shadow: 0 0 14px rgba(108,193,79,0.9);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .testimonial {
    flex-direction: column;
  }
}

/* ===========================
   BLOG GRID
=========================== */

.blog-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 70px;
  font-family: "Albert Sans", sans-serif;
  padding-bottom: 20px;
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-radius: 23px;
  padding-bottom: 40px;
}

/* Title */
.blog-title {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: -1px;
  position: relative;
  color: #FFFFFF;
}

.blog-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #5d913f;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Layout */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left feature bigger */
  gap: 40px;
  align-items: stretch;
}

/* ---------- LEFT FEATURE POST ---------- */
.left-feature {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.left-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.15);
}

.left-feature img {
    width: 100%;
    height: 276px;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding-top: 15px;
}

.left-feature:hover img {
  transform: scale(1.05);
}

.left-feature .meta {
  padding: 28px;
}

.left-feature .date {
  font-size: 18px;
  color: #777;
  margin-bottom: 10px;
}

.left-feature h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 22px;
  line-height: 1.4;
}

/* ---------- RIGHT SIDE POSTS ---------- */
.right-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.right-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 215px; /* smaller height */
  padding: 10px;
  gap: 16px;
}

.right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.right-card img {
  width: 150px;   /* small thumbnail */
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.right-card:hover img {
  transform: scale(1.08);
}

.right-card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.right-card .date {
  font-size: 18px;
  color: #666;
}

.right-card h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- BUTTON ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1.5px solid #000;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  width: fit-content;
}

.btn:hover {
  background: #3a86ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn svg {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .blog-title {
    font-size: 44px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .right-card {
    height: auto;
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .blog-title {
    font-size: 34px;
  }
  .left-feature img {
    height: 240px;
  }
  .left-feature h3 {
    font-size: 22px;
  }
  .right-card {
    flex-direction: column;
    text-align: center;
    padding: 14px;
    height: auto;
  }
  .right-card img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
  }
}


/* ===========================
   RESPONSIVE QUERIES
=========================== */
@media (max-width: 1024px) {
  .banner-two { padding: 40px 20px; }
  .banner-bottom-card-two { max-width: 100%; }
  .testimonial-section { padding: 40px 20px; }
  .testimonial-section h2 { text-align: center; }
}

@media (max-width: 768px) {
  .newsletter { flex-direction: column; align-items: stretch; }
  .content-wrapper { flex-direction: column; }
}

@media (max-width: 600px) {
  .card .author { font-size: 16px; }
  .banner-bottom-card-two { padding-top: 20px; }
  .card.white.white-one { display: none; }
}


    /* ---------------------------------------------------------------------------------------------------------------------------------- */


       .elementor.elementor-44{
        margin-top: 80px;
      }

    .expertise-section-two{
      text-align: center;
      background-color: #413F40;
      padding: 40px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
    .expertise-title-two {
      max-width: 1400px;
      text-align: start;
      margin: auto;
      font-size: 55px;
      font-weight: 400;
      margin-bottom: 40px;
      border-bottom: 1px solid white;
      padding-bottom: 20px;
      margin-top: 20px;
      color: white;

      
    }

    .expertise-desc-two{
        color: white;
        font-size: 50px;
        text-align: center;
        font-weight: 200;
    }

    .expertise-content-two {
      max-width: 1400px;
      margin: auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    
    .expertise-image img {
      width: 100%;
      max-width: 670px;
      border-radius: 20px;
    }

    .about-box-two {
      max-width: 500px;
      flex: 1;
      text-align: start;
      color: white;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

    }
    .about-box-two h3 {
    
      font-size: 17px;
      font-weight: 300;
    }


    .counter-cards{
        display: flex;
        justify-content: space-between;
        
    }

    .counter-card{
        background-color: #5D913F;
        width: 210px;
        height: 120px;
        border-radius: 1rem;
        margin: auto;
        padding: 20px;
    }

    .counter-card h2{
        font-size: 35px;
        font-weight: 500;
    }

    .counter-card p{
        font-size: 18px;
    }


@media (max-width: 1024px) {

  .container {
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    padding: 20px;
  }

 

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
}


.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1024px) {

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .contact-actions img {
    display: none;
  }

  .contact-actions a{
    margin-left: 25px;
  }

  .contact-actions{
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 10px 20px;
    align-items: start;

  }

  .contact-actions.active{
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
  }

  .nav-links.active {
    align-items: start;
    gap: 5px;
  }

}

.wpcf7 form p {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
}




.wpcf7-submit:hover{
      background-color: #fff;
      color: #000;
      transform: translateY(-2px);
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    border-radius: 1rem;
}

textarea.wpcf7-form-control.wpcf7-textarea{
    border-radius: 1rem;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #8cc152;
    padding: 80px;
    border-radius: 2rem;
}

.card{
  background-color: white;
  color: black;
}

div#noptin-form-1__wrapper {
    flex: 1;
    padding: 12px 15px;
    background: transparent;
    border: none;
    color: #fff;
    transition: border-color 0.3s ease;
}
.noptin-form-id-14 .noptin-optin-form-wrapper form .noptin-form-footer .noptin-form-field
 {
    flex: 1 ;
    padding: 12px 15px ;
    background: transparent ;
    border: none ;
    border-bottom: 1px solid #666 ;
    color: #fff;
    transition: border-color 0.3s ease ;
}

   .noptin-form-id-14 .noptin-optin-form-wrapper form .noptin-form-footer .noptin-form-field:focus {
      border-bottom: 1px solid #fff;
      outline: none;
    }

  #noptin-form-1__submit{
      border: 1px solid white;
      background-color: #000;
      color: #fff;
      padding: 13px 25px;
      border-radius: 40px;
      cursor: pointer;
      font-size: 1em;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .blog-image{
      margin-bottom: 20px;
    }

.blog-navbar-container {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card.black{
  background-color: #413F40;
  color: white;
}

@media (max-width: 1024px) {

  .row {
flex-direction: column;
flex-wrap:wrap ;
justify-content: center;
  }

}


.elementor-element.elementor-element-265cee6.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded{
  margin-top: 30px;
}


.navbar {
  text-align: center;
  position: relative;
  margin-top: 35px;
  z-index: 10;
  overflow: visible;
}

  /* --------------------------------------------------------------------------------------------------------------------- */


.expertise-section-service {
      text-align: center;
      background-color: #EAEAEA;
      padding: 40px;
}
    .expertise-content-service {
      max-width: 1400px;
      margin: auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .expertise-image-service img {
      width: 100%;
      max-width: 600px;
      border-radius: 20px;
    }
    .about-box-service {
      max-width: 500px;
      flex: 1;
      text-align: start;
      padding: 30px;
      border-radius: 20px;
    }
    .about-box-service h3 {
    
      font-size: 28px;
      margin-bottom: 15px;
      font-weight: 500;
    }
    .about-box-service p {
      font-size: 18px;
      color: #444;
      text-align: start;
      line-height: 1.6;
      font-weight: 300;
      padding-bottom: 50px;
    }

    .about-box-service p span{
        font-weight: bold;
    }


    /* --------------------------------------------------------------------------------------------------------------------- */


    .banner-section{
        background-color: #413F40;
    }


     .banner-top-service{
        max-width: 1400px;
        text-align: center;
     }

     .banner-service{
      display: flex;
      flex-direction: column;
      width: 1300px;
      align-items: center;
      margin: auto;
      border-radius: 2rem;
      justify-content:start;
      color: white;
      gap: 40px;
      padding: 55px;
      justify-content: space-between;
    }

    .banner-top-service h1{
        font-size: 100px;
        font-weight: 300;
        border-bottom: 1px solid #ffffff;
        text-align: left;
        padding-bottom: 30px;
    }

    .banner-top-para-service{
        margin-top: 20px;
        font-size: 19px;
        max-width: 800px;
        padding-top: 10px;
    }


    .banner-bottom-service{
        padding-top:40px ;
    }

    .banner-bottom-cards-service{
 
        display: flex;
        justify-content: space-around;
        gap: 10px;
    }

    .banner-bottom-card-service{
        background-color: white;
        color: #000;
        border-radius: 1rem;
        width: 220px;
        padding-top: 90px;
        display: flex;
        flex-direction: column;
    }

    .banner-img-service{
        height: 59px;
        width: 59px;
        margin: auto;
        margin-bottom: 20px;
        
    }

    .card-para-service{
        padding-top: 5px;
        font-size: 18px;
        max-width: 140px;
        margin: auto;
        text-align: center;
        font-weight: bold;
    }

    .card-desc-service{
        padding: 6px;
        text-align: center;
        font-size: 16px;
    }

    @media (max-width: 1024px) {
      

  .banner-service {
    width: 100%;
    padding: 40px 20px;
  }

  .banner-top-para-service {
    font-size: 36px;
    text-align: center;
  }

  .banner-bottom-cards-service {
    flex-wrap: wrap;
    justify-content: center;
  }

  .banner-bottom-card-service {

    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

}

@media (max-width: 600px) {
  .banner-top-heading-service {
    font-size: 20px;
    text-align: center;
  }

  .banner-top-para-service {
    font-size: 28px;
    padding-top: 5px;
  }

  .banner-bottom-card-service {
    min-height: auto;
    padding-top: 40px;
  }

  .card-para-service {
    font-size: 16px;
    text-align: center;
  }

  .card-desc-service {
    font-size: 14px;
    text-align: center;
  }

  .banner-img-service {
    height: 48px;
    width: 48px;
  }

    .image-container {
      flex: 1 1 250px;
    }
}

    .green-service{
      background-color: #5D913F;
      display: flex;
      width: 1300px;
      align-items: center;
      margin: auto;
      border-radius: 2rem;
      justify-content:start;
      color: white;
      gap: 40px;
      padding: 40px;
      margin-top: 100px;
      justify-content: end;
    }

    .green-left-img-service{
      width: 500px;

    }

    .green-right-service{
      display: flex;
      flex-direction: column;
      width: 600px;
      justify-content: start;
      gap: 40px;
      align-items: start;
    }
    .green-right-heading-service{
      font-size: 55px;
      font-weight: 300;
    }

    .green-right-para-service{
      font-size: 20px;
      
    }

    @media (max-width: 1024px) {
  .green-service {
    flex-direction: column;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    justify-content: center;
    gap: 30px;
  }

  .green-left-img-service {
    width: 100%;
    max-width: 500px;
  }

  .green-right-service {
    width: 100%;
    align-items: center;
    gap: 20px;
  }

  .green-right-heading-service {
    font-size: 48px;
    width: 100%;
    height: auto;
  }

  .green-right-para-service {
    font-size: 18px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .banner-right-heading-service {
    font-size: 32px;
  }

  .banner-right-para-service {
    font-size: 16px;
  }

}

/* --------------------------------------------------------------------------------------------------------------------- */
    .chooseUs-section{
      background-color: #FFFFFF;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: auto;
    }

    .choose-heading-service{
        font-size: 60px;
        font-weight: 400;
        margin: 0 auto;
        border-bottom: 1px solid black;
        padding: 40px;
    }
    
    .chooseus-description{
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px;
      justify-content: center;
      gap: 40px;
    }

    .about-box-two {
      max-width: 1400px;
      text-align: start;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 15px;
      width: 600px;
    }


    .about-box-two h3{
        margin-top: 80px;
    }
    
    .about-box-two a{
        width: fit-content;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        margin-top: 80px;
    }


    .cards-service{
        display: flex;
        max-width: 600px;
    }
    
    .card-service{
        display: flex;
        gap: 10px;
        background-color: #413F40;
        width: 290px;
        border-radius: 1rem;
        margin: auto;
        padding: 25px;
        height: 100px;
        color: white;        
    }

    .card-service p {
        height: fit-content ;
        font-size: 20px;
    }

    .card-service h2{
        font-weight: bold;
        background-color: #5D913F;
        padding: 5px;
        border-radius: 10px;
        height: fit-content;
    }

    .chooseus-image-section img{
        max-width: 600px;
    }

    .about-box-two h3{
        font-style: italic;
        font-weight: 600;
    }

    .newsletter input {
      flex: 1;
      padding: 12px 15px;
      background: transparent;
      border: none;
      border-bottom: 1px solid #666;
      color: #fff;
      transition: border-color 0.3s ease;
    }



    .newsletter .subscribe-btn {
      background-color: transparent;
      color: #fff;
      border: 1px solid #555;
      padding: 10px 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .subscribe-btn:hover {
      background-color: #fff;
      color: #000;
      transform: translateY(-2px);
    }

    .btn:hover {
      background-color: #000;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .btn svg {
      margin-left: 6px;
      transition: transform 0.3s ease;
    }

    .btn:hover svg {
      transform: translateX(4px);
    }

    @media (max-width: 768px) {
      .right-grid {
        grid-template-rows: 1fr;
      }
    }


@media (max-width: 1024px) {

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }


  }

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1224px) {

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 60px;
  }

  .contact-actions img {
    display: none;
  }

  .contact-actions.active{
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
  }

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

  .nav-links li {
    width: 100%;
    position: relative;
}

  .nav-links a {
    width: 100%;
    padding: 10px 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  .newsletter h2{
    font-size: 50px;
  }
}

.call{
    max-width: 1400px;
    text-align: center;
    margin: 0 auto;
    margin-top: 80px;
}

.call h2{
    font-size: 65px;
    font-weight: 300;
}

.call h2 span{
    font-weight: bold;
}

.call p{
    font-size: 20px;
    padding-top: 30px;
    max-width: 800px;
    margin: auto;
}


.call a{
    margin-top: 30px;
    margin-bottom: 40px;
}

.wpcf7-form h3{
  margin-bottom: 20px;
  margin-top: 50px;
}

.elementor hr
 {
    background-color: transparent;
    margin: 0;
    margin-bottom: 50px;
    margin-top: 50px;
}

div#noptin-form-1__wrapper {
    margin-top: -70px;
    margin-bottom: -75px;
}


img.attachment-full.size-full.wp-image-36 {
    max-height: 480px;
}

.elementor-element.elementor-element-ccd0411.e-con-full.e-flex.e-con.e-child{
    display: flex;
    justify-content: space-around;
}

.elementor-widget-container img{
    max-width: 570px;
    width: 100%;
}


.elementor-element.elementor-element-c06f9e2.e-con-full.e-flex.e-con.e-child{
    display: flex;
    justify-content: space-around;
}

img.attachment-full.size-full.wp-image-27{
  max-width: 570px;
  width: 100%;
}


.elementor-element.elementor-element-07bf4c4.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    max-width: 1520px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.elementor-element.elementor-element-07d7d13.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    max-width: 1520px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}


@media (max-width: 768px){

  img.img-fluid.wp-post-image{
    width: 250px;
    height: 200px;
  }

 

.elementor-42 .elementor-element.elementor-element-e6d8c33 .elementor-heading-title{
    font-size: 40px;
    text-align: left;
    margin-left: 20px;
    margin-top: -50px;
}

.elementor-42 .elementor-element.elementor-element-7f07d67 .elementor-divider-separator {
    width: 90%;
    margin: auto;
}

.elementor-42 .elementor-element.elementor-element-4c4109e .elementor-heading-title {
    font-size: 40px;
    text-align: left;
    margin-left: 20px;
}

.elementor-42 .elementor-element.elementor-element-4ce3eb7 .elementor-divider-separator {
    width: 90%;
    margin: auto;
}

.elementor-42 .elementor-element.elementor-element-5858c0d .elementor-heading-title {
    font-size: 40px;
    text-align: left;
    margin-left: 20px;
}

.elementor-42 .elementor-element.elementor-element-19063a0 .elementor-heading-title {
    font-size: 40px;
}

.form-section h2{
    font-size: 40px;
    text-align: left;
}

.newsletter h2{
      font-size: 40px;
}

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
  }

  .expertise-title{
    font-size: 40px
  }


  .wpcf7 form p{
    flex-direction: column;
    gap:5px;
    margin-bottom: 25px;

}

  .row {

    padding: 20px;
  }

}

h2.wp-block-heading {
    text-align: center;
}

.banner-container
 {
    margin-top: -120px;
}

.blog-inner-page{
  max-width: 1400px;
  margin: auto;
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 1rem;
  margin-bottom: 20px;
  margin-top: 110px;
}

.blog-inner-image{
  text-align: center;
  margin-bottom: 20px;
}

.blog-inner-desc{
  margin-bottom: 20px;
}

.blog-inner-headiing{
  text-align: center;
  margin-bottom: 20px;
}

div#wpcf7-f214-o1 {
    border-radius: 1rem;
    padding: 20px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.booknow-input {
    display: flex;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 15px;
}

select.wpcf7-form-control.wpcf7-select
 {
    margin-top: 10px;
}


a.navbar-brand img {
    max-width: 150px;
}

.navbar ul.navbar-nav>li {
    position: relative;
    padding: 0 22px;
}

.navbar ul.navbar-nav>li>a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 2.2;
    color: #fff !important;
    text-decoration: none;
    padding-bottom: 20px;
}

.navbar ul.navbar-nav>li>a::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.4s ease;
}

.navbar ul.navbar-nav>li:hover>a::before,
.navbar ul.navbar-nav>li>a[aria-expanded="true"]::before,
.navbar ul.navbar-nav>li>a.active::before {
    background-color: #fc7504;
}

.navbar ul ul {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    min-width: 300px;
    padding: 8px 0;
    margin: 0;
    background: lightgrey;
    color: #252525;
    border-radius: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    margin-top: 10px;
}

.navbar ul li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.navbar ul.sub-menu li {
    padding: 0 15px;
    list-style: none;
}

.navbar ul.sub-menu li a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.navbar ul.sub-menu li a:hover{
  background-color: white;
}

@media screen and (max-width: 1240px) {
    .navbar ul.sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.4s ease;
        padding: 0 0 !important;
    }

    .navbar ul.sub-menu.show-submenu {
        max-height: 1000px;
        padding: 10px 0 !important;
    }

    .navbar ul.navbar-nav>li>a::before {
        left: 45px !important;
    }

    .navbar ul.sub-menu li a {
        color: black !important;
        padding: 10px 0px !important;
    }

    .menu-item-has-children>a::after {
        content: " ▾";
        font-size: 18px;
        margin-left: 5px;
    }
}



.site-map-top{
  max-width: 600px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.site-map-top a{
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.wp-block-list{
  margin-left: 20px;
}

.navbar-ipad-view{
  margin-top: 5px;
}

@media (max-width: 768px) {
  .site-map-top{
    display: block;
    text-align: start;
    margin-left: 80px;
  }

.navbar-ipad-view{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booknow-input {
    display: flex;
    flex-direction: column;
}

}


.role{
  color: #5d913f;
}

.diff-color-text{
  color: #5d913f;
}

.diff-color-text-two{
  color:#413f40;
}


@media (max-width: 768px) {

  .explore-btn {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
}

 .service-heading {
  font-size: 80px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
}

/* Project Container */
.project-container {
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  gap: 40px;
}

/* Project Card */
.project-card {
  width: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #333 0%, #111 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Overlay Layers */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30,30,30,0.5);
  z-index: 0;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #5d913f 0%, #5d913f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
  z-index: 1;
  opacity: 0.8;
}

.project-card:hover::before {
  transform: scaleX(1);
}

/* Project Content */
.project-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 2em;
  gap: 1em;
  transform: scale(0.97);
  transition: transform 0.4s ease;
}

.project-card:hover .project-content {
  transform: scale(1);
}

.project-heading {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.project-sub-heading {
  font-size: 16px;
  font-style: italic;
  color: #ffbe0b;
}

.project-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Button */
.explore-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 30px;
    background: #fff;
    color: #111;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.explore-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 990px){
  .project-container{
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .project-container {
    gap: 30px;
    flex-direction: column;
  }
  .project-heading {
    font-size: 20px;
  }
  .project-desc {
    font-size: 14px;
  }

}

@media (max-width: 480px) {
  .service-heading {
    font-size: 32px;
  }
  .project-content {
    padding: 1.2em;
  }
  .explore-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

}