:root {
  --green: #65b741;
  --dark: #0f263f;
  --black: #111816;
  --text: #6f7775;
  --light: #f6faf4;
  --white: #ffffff;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  overflow-x: hidden;
  background: #fff;
}

a {
  text-decoration: none;
}


img {
  max-width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.section-padding2 {
  padding: 0 0 100px 0;
}

.sub-title {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 900;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0 20px;
}

p {
  color: var(--text);
  line-height: 1.8;
}

.section-head {
  max-width: 760px;
  margin: auto;
}

.about-section{
  padding: 0 0 50px 0;
}

/* Cursor */

.custom-cursor {
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

/* Preloader */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999999;
  display: grid;
  place-items: center;
}

.loader {
  width: 55px;
  height: 55px;
  border: 5px solid rgba(255,255,255,.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */

.main-header {
  background: #fff;
  padding: 16px 150px;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 8px 35px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
}

.nav-menu a:hover {
  color: var(--green);
}

.btn-primary-custom {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 30px;
  font-weight: 800;
  border: 0;
  border-radius: 25px;
  transition: .3s;
}

.btn-primary-custom:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-dark-custom {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 14px 30px;
  font-weight: 800;
  margin-top: 20px;
  border-radius: 25px;
}

.btn-dark-custom:hover {
  background: var(--green);
  color: #fff;
}

/* Hero */

.hero-section {
  padding: 25px 0 0 0;
  margin: 0 100px;
}

.hero-box{
    position: relative;
    height: 920px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.hero-box::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -220px; 
    transform: translateX(-50%);
    width: 160%;
    height: 420px;
    background: #fff; 
    border-radius: 50%;
    z-index: 5;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 9s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,38,63,.90) 0%,
    rgba(15,38,63,.75) 35%,
    rgba(15,38,63,.35) 60%,
    rgba(15,38,63,0) 100%
);
}

.hero-content {
  position: absolute;
  z-index: 4;
  left: 10%;
  top: 15%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 620px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin: 18px 0;
}

.hero-content p {
  color: #f1f1f1;
  max-width: 540px;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
  font-size: 40px;
  border-radius: 25px;
}

.play-btn {
  color: #fff;
  font-weight: 800;
}

.play-btn i {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
}

.shape-1{
  position:absolute;
  left:-120px;
  bottom:-250px;
  width:150px;
  height:1000px;
  background: linear-gradient(
    to top,
    rgba(101,183,65,0.95) 0%,
    rgba(101,183,65,0.7) 40%,
    rgba(101,183,65,0.25) 75%,
    rgba(101,183,65,0) 100%
);
  transform:rotate(45deg);
  z-index:2;
}

.shape-2{
  position:absolute;
  left:140px;
  bottom:-130px;
  width:100px;
  height:700px;
  background: linear-gradient(
    to top,
    rgba(101,183,65,0.95) 0%,
    rgba(101,183,65,0.7) 40%,
    rgba(101,183,65,0.25) 75%,
    rgba(101,183,65,0) 100%
);
  transform:rotate(45deg);
  z-index:1;
}

.experience-badge {
  position: absolute;
  bottom: 45px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 6px solid rgba(255,255,255,.5);
}

.experience-badge strong {
  font-size: 30px;
  display: block;
}

.experience-badge span {
  font-size: 12px;
}

/* About */

.about-images {
  position: relative;
  min-height: 520px;
}

.about-main {
  width: 78%;
  height: 470px;
  object-fit: cover;
}

.about-small {
  position: absolute;
  right: 0;
  top: 115px;
  width: 48%;
  height: 300px;
  object-fit: cover;
  border: 12px solid #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.about-list {
  margin-top: 25px;
}

.about-list div {
  margin-bottom: 14px;
  font-weight: 800;
}

.about-list i {
  color: var(--green);
  margin-right: 10px;
}

/* Marquee */

.marquee-section {
  background: var(--green);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 16s linear infinite;
}

.marquee-track span {
  font-size: 24px;
  font-weight: 900;
  padding-right: 50px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Services */

.services-section {
  background: #fff;
}

.service-card {
  background: #fff;
  padding: 38px 28px;
  min-height: 295px;
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  transition: .35s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--green);
  transition: .35s;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card i {
  font-size: 42px;
  color: var(--green);
  margin-bottom: 20px;
}

.service-card span {
  font-size: 22px;
  font-weight: 800;
  display:block
}

.service-card a {
  color: var(--black);
  font-weight: 800;
}

.service-card:hover,
.service-card.active {
  transform: translateY(-12px);
}

.service-card:hover::before,
.service-card.active::before {
  height: 100%;
}

.service-card:hover *,
.service-card.active * {
  color: #fff;
}


.feature-section{
  background:
    url('../img/back-green.png') 1200px center / 25% auto no-repeat
}

/* Long Text */

.long-text-section {
  background:
    url('../img/back-green.png') 400px center / 25% auto no-repeat,
    var(--light);
}

.long-text-section p {
  font-size: 17px;
  margin-bottom: 18px;
}

/* CTA */

.cta-section {
  position: relative;
  z-index: 3;
  margin-bottom: -70px;
}



.cta-box {
  background: var(--green);
  color: #fff;
  padding: 42px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.cta-box span,
.cta-box h2,
.cta-box h3,
.cta-box p {
  color: #fff;
  margin: 0 0 8px;
}

.cta-box form {
  display: flex;
  gap: 12px;
}

.cta-box input {
  border: 0;
  padding: 15px;
  outline: none;
}

.cta-box button {
  border: 0;
  background: var(--dark);
  color: #fff;
  padding: 15px 28px;
  font-weight: 800;
}

/* Process */

.process-section {
  background: var(--dark);
  padding-top: 155px;
  color: #fff;
}

.process-section h2,
.process-section h4,
.process-section p {
  color: #fff;
}

.process-card {
  text-align: center;
  padding: 35px 25px;
  border: 1px solid rgba(255,255,255,.15);
  transition: .3s;
}

.process-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-10px);
}

.process-card span {
  width: 75px;
  height: 75px;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Feature */

.feature-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.feature-item {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.feature-item i {
  color: var(--green);
  font-size: 42px;
}

/* Details */

.details-section {
  background: #fff;
}

.detail-box {
  min-height: 360px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.green-box {
  background: var(--green);
}

.green-box h3,
.green-box p {
  color: #fff;
}

.detail-text {
  background: var(--light);
  padding: 40px;
  min-height: 360px;
}

/* Gallery */

.gallery-section {
  background: #fff;
}

.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: .4s;
}

.gallery-grid img:hover {
  transform: scale(.96);
  filter: brightness(.8);
}

/* Testimonials */

.testimonial-section {
  background: var(--light);
}

.testimonial-card {
  background: #fff;
  padding: 38px 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
  text-align: center;
  transition: .3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-card h5 {
  background: var(--green);
  color: #fff;
  padding: 14px;
  margin-top: 20px;
}

/* FAQ */

.faq-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.accordion-item {
  border: 0;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.accordion-button {
  font-weight: 800;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--green);
  color: #fff;
}

/* Counter */

.counter-section {
  background: var(--green);
  padding: 70px 0;
}

.counter-section h2 {
  color: #fff;
  font-size: 44px;
  margin: 0;
}

.counter-section p {
  color: #fff;
  font-weight: 800;
  margin: 5px 0 0;
}

/* Blog */

.blog-section {
  background: #fff;
}

.blog-card {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,38,63,.95), transparent);
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-content {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 25px;
}

.blog-content span {
  background: #fff;
  color: var(--green);
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 800;
}

.blog-content h4 {
  color: #fff;
  margin-top: 15px;
}

/* Contact */

.contact-section {
  background: var(--light);
}

.contact-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.contact-form {
  background: #fff;
  padding: 35px;
  margin-left: -75px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}



.CUS p{
  padding: 0;
 }

form.CUS input.subject {
    display: none;
}

.CUS .form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.CUS .form-row p {
    flex: 1;
    margin: 0;
}

.CUS textarea {
    width: 100%;
    font-size: 15px;
    border: 1px solid #020202;
    box-sizing: border-box;
    border: 1px solid #d4d4d4;
    background-color: #f0f0f0;
}

.CUS .submit {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    border: 1px solid #d4d4d4;
    background-color: #f0f0f0;
    color: #161515;
}

.CUS input,
.CUS select {
    width: 100%;
    font-size: 15px;
     border: 1px solid #d4d4d4;
    box-sizing: border-box;
    font-weight: normal;
    padding: 10px;
    margin: 5px 0;
    background-color: #f0f0f0;

}

.CUS label {
    font-size: 15px;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
    color: #3b3b3b;
}

.CUS legend {
    font-size: 20px;
    text-align: left;
    color: #3b3b3b;
}

form.CUS,
.CUS fieldset {
    border: none;
}


@media only screen and (max-width:500px){
    .CUS .form-row {
        flex-direction: column;  
        align-items: stretch;    
    }

    .CUS .form-row p {
        flex: 1 0 100%;
        width: 100%;
    }
 } 

.map{
  width: 600px;
  height: 650px;
}


/* Footer */

.footer {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
}

.footer h3,
.footer h5 {
  color: #fff;
}

.footer p {
  color: #c7d0d9;
}

.footer a {
  color: #c7d0d9;
  display: inline;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--green);
}

.footer input {
  width: 100%;
  border: 0;
  padding: 15px;
  margin-bottom: 10px;
}

.footer button {
  width: 100%;
  border: 0;
  padding: 15px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

/* Reveal Animation */

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .hero-section {
    margin: 0;
    padding: 0;
  }

  .hero-box {
    border-radius: 0;
  }

  .hero-box::after {
    display: none;
  }

.hero-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 25px;
  font-size: 30px;
  border-radius: 25px;
}

.hero-content {
  position: absolute;
  z-index: 4;
  left: 5%;
  top: 15%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 620px;
}

  /* .hero-box {
    height: 560px;
  }

  .hero-content {
    left: 7%;
  } */

  .hero-content h1 {
    font-size: 46px;
  }

  .about-images {
    min-height: auto;
  }

  .about-main {
    width: 100%;
  }

  .about-small {
    display: none;
  }

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

  .cta-box form {
    width: 100%;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 70px 0;
  }

  h2 {
    font-size: 32px;
  }

  .main-header .btn-primary-custom {
    display: none;
  }

  .hero-box {
    height: 590px;
    clip-path: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .experience-badge {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-img {
    height: 360px;
  }

  .contact-form {
    padding: 35px 25px;
  }

  .custom-cursor {
    display: none;
  }
}



.service-areas{
    background: var(--light);
}

.area-card{
    background:#fff;
    padding:25px 15px;
    text-align:center;
    border-radius:12px;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

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



.area-card i{
    font-size:32px;
    color:var(--green);
    margin-bottom:12px;
    display:block;
}

.area-card h5{
    margin:0;
    font-size:18px;
}



.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 30px;
  color: #fff;
}

@media (max-width: 991px) {

  .main-header {
  background: #fff;
  padding: 16px 10px;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 8px 35px rgba(0,0,0,.06);
}

  .logo {
  width: 70%;
}

  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: block;
    color: #65b741;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--black);

    flex-direction: column;
    padding: 5px;
    z-index: 9999;
  }

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

  .nav-menu a {
    color: #fff;
    padding: 0 10px;
  }
}

#backToTop{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}