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


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

}
.elementor-widget-container .elementor-heading-title{
    font-family: "Albert Sans", sans-serif !important;

}

.wrapper{
  /* width: 100%; */
}


.container {
  max-width: 1400px;
  width: 100%;
  height: fit-content;
  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 {
  height: 60vh ;
  background-size: cover;
  /* background-position: center; */
  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;
}

.hero-content a {
    text-decoration: none;
}

.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;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  margin-top: 15px;
  background: #fff;
  border: 1px solid white;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
  gap: 8px;
  border-radius: 5px;
  
  
}

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

button.contact-btn a {
    color: #fff;
    font-weight: 600;
}


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

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



.stats {
      max-width: 100%;
      margin: auto;
      display: flex;
      justify-content: center;
      border: 1px, solid , #C2C2C2;
      background-color: #EAEAEA;
}

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

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

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

@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;
  }
}

@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;
    margin-bottom: -8px;
  }

  .stat h2, .stat p {
    font-size: 18px;
  }
}




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

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

.service {
  border-radius: 2rem;
  max-width: 1400px;
  margin: auto;
  background-color: #2e2d2d;
  color: #fff;
  padding: 40px;
  align-items: center;
  justify-content: space-evenly;
}

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

.services {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto; /* Allow horizontal scroll for smaller screens */
}

/* Card styles */
.service-card {
  background: #3a3939;
  border: 1px solid #666;
  border-radius: 12px;
  padding: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.7s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 0;
  min-height: 400px;
  flex-basis: 290px;
  width: 100%;
}

.service-card.active {
  flex: 1;
  max-width: 100%;
  min-height: 300px;
  background: #4a4949;
}

.service-card-head {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.card-number {
  border: 1px solid #fff;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 28px;
  max-width: fit-content;
  height: fit-content;
  border-radius: 8px;

}

.card-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.card-price {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
}

.card-description {
  font-size: 20px;
  line-height: 1.5;
  color: #ccc;
  display: none;
  transition: all 0.5s ease-in-out;
}

.service-card.active .card-description {
  display: inline;
  margin-top: 10px;
}

.explore-btn {
  margin-top: 15px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  font-size: 0.8rem;
  border: 1px solid white;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
  gap: 8px;
}

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


@media (max-width: 1024px) {
  .service-heading {
    font-size: 60px;
    text-align: center;
    padding-bottom: 20px;
  }

  .services {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    flex: 1 1 calc(100%);
    min-height: 220px;
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .service {
    padding: 20px;
  }

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

  .services {
    flex-direction: column;
    gap: 15px;
  }

  .service-card {
    flex-basis: 100%;
    min-height: 220px;
    width: 95%;
  }

  .card-title,
  .card-price {
    font-size: 22px;
  }

  .card-description {
    font-size: 18px;
  }

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

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

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

    }

    .banner-right{
      display: flex;
      flex-direction: column;
      width: 600px;
      justify-content: start;
      gap: 40px;
      align-items: start;
    }
    .banner-right-heading{
      font-size: 65px;
      width: 581px;
      height: 292px;
      font-weight: 300;
    }

    .banner-right-para{
      font-size: 20px;
      width: 468px;
      height: 68px;
    }

.banner-btn {
    text-decoration: none;
    border: 2px solid white;
    background-color: #5D913F;
    color: #fff;
    padding: 12px 24px;
    border: 2px solid white;
    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);
    }

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

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

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

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

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

  .banner-btn {
    font-size: 1em;
    padding: 10px 20px;
  }
}

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

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

  .banner-btn {
    width: 100%;
    justify-content: center;
  }
}

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

    .chooseUs{
      max-width: 1400px;
      margin: 0 auto;
      border-radius: 2rem;
      background-color: #f4f4f4;
      padding: 40px;
      margin-top: 40px;
    }

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

    .divider {
      height: 2px;
      background: #ccc;
      margin-bottom: 40px;
    }

    .content-wrapper {
      /* padding-top: 50px; */
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
    }

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

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

    .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;
    }

    .expand-img img{
      width: 30px;

    }

    .accordion-item.active .expand-img {
      opacity: 0.5;
    }

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

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

@media (max-width: 1024px) {
  .choose-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: -10px;
    padding-bottom: 20px;
  }

  .content-wrapper {
    flex-direction: column;
    /* padding-top: 30px; */
  }

  .accordion-container,
  .image-container {
    width: 100%;
  }

  .accordion-title {
    font-size: 28px;
  }

  .accordion-content {
    font-size: 18px;
  }

  .expand-img img {
    width: 24px;
  }
}

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

  .accordion-title {
    font-size: 24px;
  }

  .accordion-content {
    font-size: 16px;
  }

  .chooseUs {
    padding: 20px;
  }
}







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

    .blog-section {
      max-width: 1400px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .blog-title {
      font-size:80px;
      margin-bottom: 40px;
      font-weight: 500;
      margin-bottom: 20px;
      border-bottom: 1px solid black;
    }

    .blog-grid {
      display: flex;
      gap: 20px;
    }

    .left-feature {
      margin: auto;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      padding-bottom: 20px;
    }

    .left-feature img {
      width: 100%;
      display: block;
    }

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

    .left-feature .meta .date {
    font-size: 15px;
    font-weight: 400;
    color: black;
    margin-bottom: 8px;
    }

    .left-feature .meta h3 {
      font-weight: 300;
      font-size: 25px;
      margin-bottom: 20px;
    }


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


@media (max-width: 1024px) {
  .blog-title {
    font-size: 48px;
    text-align: center;
  }

  .blog-grid {
    flex-direction: column;
    max-width: 400px;
    margin: auto;
  }

  .left-feature,
  .right-card {
    max-width: 400px;
    width: 100%;
  }

  .right-card {
    flex-direction: column;
    max-width: 650px;
    
    margin: auto;
  }

  .right-card img {
    max-width: 650px;
    height: auto;
    margin: auto;
  }

  .right-card .content {
    padding: 16px;
    text-align: center;
  }

  .right-card h4 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .blog-title {
    font-size: 36px;
  }

  .left-feature .meta h3 {
    font-size: 20px;
  }

  .right-card h4 {
    font-size: 18px;
  }

  .btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}




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

    .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);
      /* justify-content: space-around; */
    }
    .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;
    }


  .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
    form p {
    display: flex;
    gap: 20px;
    width: 100%;
  }
  input {
    border: hidden;
    border-bottom: 1px solid #ccc;
}

    input, textarea {
      width: 100%;
      padding: 12px;
      transition: border-color 0.3s;
    }

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

    textarea {
      grid-column: span 2;
      resize: vertical;
      min-height: 100px;
      border: hidden;
      border-bottom: 1px solid #ccc;
    } 

    .btn-wrapper {
      grid-column: span 2;
      text-align: left;
    }

    .submit-btn {
      background-color: #000;
      color: #fff;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1em;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: fit-content;
    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;
}


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

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


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

    .newsletter {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 50px;
    }

    .newsletter h2 {
      flex: 1 1 100%;
      font-size: 65px;
      font-weight: 300;
      margin-bottom: 20px;
    }
 /* .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 input:focus {
      border-bottom: 1px solid #fff;
      outline: none;
    }

    .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);
    } */

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 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;
      margin-bottom: 10px;
    }

    .footer-logo span {
      color: #bbb;
      line-height: 1.5;
    }

    .footer-bottom {
      margin: auto;
      width: fit-content;
      text-align: center;
      margin-top: 40px;
      font-weight: 200;
      font-size: 20px;
      padding: 15px;
      border-radius: 5rem;
      border: 1px solid #333;
    }

    .footer-bottom a {
    text-decoration: none;
    color: white;
}

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

      .newsletter input {
        width: 100%;
      }

      .subscribe-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* home.css end  */




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

.expertise-section {
      text-align: center;
      background-color: #EAEAEA;
      padding: 40px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
    .expertise-title {
      max-width: 1400px;
      text-align: start;
      margin: auto;
      font-size: 55px;
      font-weight: 400;
      margin-bottom: 40px;
      border-bottom: 1px solid black;
      padding-bottom: 20px;
      margin-top: 20px;
    }
    .expertise-content {
      max-width: 1400px;
      margin: auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .about-box {
    width: 100%;
    flex: 1;
    text-align: start;
    border: 1px, solid, #C2C2C2;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
    .about-box h3 {
    
      font-size: 28px;
      margin-bottom: 15px;
      font-weight: 500;
    }
    .about-box p {
      font-size: 18px;
      color: #444;
      text-align: start;
      line-height: 1.6;
      font-weight: 300;
      padding-bottom: 50px;
    }





    .banner-two{
      background-color: #5D913F;
      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;
      margin-top: 40px;
    }



    .banner-top-heading-two{
        font-size: 25px;
        font-weight: 300;
    }

    .banner-top-para-two{
        font-size: 45px;
        max-width: 800px;
        padding-top: 10px;
    }


    .banner-bottom-two{
        padding-top:60px ;
    }

    .banner-bottom-cards-two{
 
        display: flex;
        gap: 10px;
    }

    .banner-bottom-card-two{
        background-color: white;
        color: #000;
        border-radius: 1rem;
        max-width: 300px;
        min-height: 350px;
        padding-top: 90px;
        
    }

    .banner-img-two{
        height: 59px;
        width: 59px;
        margin: auto;
    }

    .card-para-two{
        padding-top: 5px;
        font-size: 20px;
        max-width: 151px;
        margin: auto;
    }

    .card-desc-two{
        padding: 8px;
        font-size: 16px;
    }

    @media (max-width: 1024px) {
      

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

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

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

  .banner-bottom-card-two {

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

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

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

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

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

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

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

.elementor-element-265cee6{
        max-width: 1400px;
      margin: auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
}


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

    .chooseUs{
      max-width: 1400px;
      margin: 0 auto;
      border-radius: 2rem;
      background-color: #f4f4f4;
      padding: 40px;
      margin-top: 40px;
    }

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



    .content-wrapper {
      /* padding-top: 50px; */
      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;
      position: relative;
    }

    .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;
    }

    .expand-img img{
      width: 30px;

    }

    .accordion-item.active .expand-img {
      opacity: 0.5;
    }

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

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

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

      .wpcf7 form p{
        flex-direction: column;
        gap:5px
      }
    }


/* --------------------------------------------------------------------------------------------------------------------- */
.testimonial-section {
      max-width: 1400px;
      margin: auto;
      border-radius: 2rem;
      background-color: #2c2c2c;
      color: white;
      padding: 60px 40px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .testimonial-section h2 {
      font-size: 80px;
      border-bottom: 1px solid white;
      font-weight: 500;
      padding-bottom: 20px;
    }

    .testimonial-slider {
      max-width: 100%;
      margin: 40px auto 20px;
      position: relative;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .testimonial {
      min-width: 100%;
      box-sizing: border-box;
      padding: 40px;
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: stretch;
    }

    .card {
      background: #413F40;
      border-radius: 12px;
      padding: 20px;
      
      display: flex;
      flex-direction: column;
      text-align: left;
      position: relative;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      color: #fff;
    }

    .black{
      width: 650px;
      background: #413F40;
      border-radius: 12px;
      padding: 20px;
      flex: 1;
      text-align: left;
      position: relative;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      color: #fff;
    }
    
    .card.white {
      background: #fff;
      color: #000;
      width: 850px;
    }

    .card p {
      font-size: 26px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .card .author {
      font-weight: bold;
      font-size: 20px;
      color: #ccc;
    }

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

    /* Dots */
    .dots {
      text-align: center;
      margin-top: 20px;
    }

    .dot {
      height: 12px;
      width: 12px;
      margin: 0 6px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
      cursor: pointer;
    }

    .dot.active {
      background-color: #6cc14f;
      transform: scale(1.2);
    }

    @media (max-width: 1024px) {
  .testimonial-section {
    padding: 40px 20px;
  }

  .testimonial-section h2 {
    font-size: 48px;
    text-align: center;
  }

  .testimonial {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .card,
  .black,
  .card.white {
    width: 100%;
    max-width: 100%;
  }

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

  .card p {
    font-size: 20px;
  }

  .card .author {
    font-size: 18px;
  }

    /* .dot-two{
    display: none;
  } */
}

@media (max-width: 600px) {
  .testimonial-section h2 {
    font-size: 36px;
    padding-bottom: 10px;
    }
  

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

  .card .author {
    font-size: 16px;
  }

  .testimonial {
    padding: 10px;
  }


  .white-one{
    display: none;
  }
}



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

    .blog-section {
      max-width: 1400px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .blog-title {
      font-size:80px;
      font-weight: 500;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid black;
    }

    .blog-grid {
      display: flex;
      gap: 20px;
    }

    /* .left-feature {

      max-width: 400px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      padding-bottom: 20px;
      margin: auto;
    } */

    .left-feature img {
      width: 100%;
      display: block;
    }

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

    .left-feature .meta .date {
    font-size: 15px;
    font-weight: 400;
    color: black;
    margin-bottom: 8px;
    }

    .left-feature .meta h3 {
      font-weight: 300;
      font-size: 25px;
      margin-bottom: 20px;
    }

    .right-grid {
      display: flex;
      flex-direction:column;
      gap: 20px;
    }

    .right-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
    }

    .right-card img {
      max-width: 400px;
      width: 100%;
      object-fit: cover;
    }

    .right-card .content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 15px;
    }

    .right-card .date {
    font-size: 15px;
    font-weight: 400;
    color: black;
    margin-bottom: 8px;
    text-align: start;
    }

    .right-card h4 {
      font-size: 25px;
      font-weight: 300;
      margin-bottom: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: start;
      background-color: transparent;
      border: 1.5px solid #000;
      padding: 8px 14px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 6px;
      text-decoration: none;
      color: #000;
    }

    .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) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
      .right-grid {
        grid-template-rows: 1fr;
      }

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

      .elementor-192 .elementor-element.elementor-element-4e3f068 > .elementor-widget-container{
        padding: 270px 0px 0px 0px;
        margin-top: -270px;
      }
    }



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


       .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: 100%;
    padding: 20px;
  }

 

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


  }
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .banner-right-heading {
    font-size: 36px;
    width: 100%;
    height: auto;
  }

  .banner-right-para {
    width: 100%;
    font-size: 16px;
    height: auto;
  }

  .blog-title, .choose-heading {
    font-size: 36px;
  }
}


.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;
  }

  .nav-links a {
    padding: 10px 20px;
    text-align: left;
  }


}

.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;
}


/* .elementor.elementor-44{
  margin-top: 180px;
} */



/* ----------------------------------service page --------------------------------------------- */

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


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

.wrapper{
  width: 100%;
}

.navbar {
  text-align: center;
  position: relative;
  margin-top: 35px;
}


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

.logo img {
  height: 40px;
}

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

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

.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;
}


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

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

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

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

/* .contact-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
} */



@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}

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


.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;
  }

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

@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{
      /* max-width: 1400px; */
      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;
    }

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

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


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

    .newsletter {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 50px;
    }

    .newsletter h2 {
      flex: 1 1 100%;
      font-size: 65px;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .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);
    }

    .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;
      margin-bottom: 10px;
    }

    .footer-logo span {
      color: #bbb;
      line-height: 1.5;
    }

    .footer-bottom {
      margin: auto;
      width: fit-content;
      text-align: center;
      margin-top: 40px;
      font-weight: 200;
      font-size: 20px;
      padding: 15px;
      border-radius: 5rem;
      border: 1px solid #333;
    }

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

      .newsletter input {
        width: 100%;
      }

      .subscribe-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* home.css end  */





   


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






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

   
    .btn {
      display: inline-flex;
      align-items: start;
      background-color: transparent;
      border: 1.5px solid #000;
      padding: 8px 14px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 6px;
      text-decoration: none;
      color: #000;
    }

    .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) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
      .right-grid {
        grid-template-rows: 1fr;
      }
    }



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



@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;
  }


  }
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .banner-right-heading {
    font-size: 36px;
    width: 100%;
    height: auto;
  }

  .banner-right-para {
    width: 100%;
    font-size: 16px;
    height: auto;
  }

  .blog-title, .choose-heading {
    font-size: 36px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}


.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{
    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 {
    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;
}


.navbar {
    /* background-color: #01416C; */
    position: relative;
    z-index: 10;
    overflow: visible;
}

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;
    /* color: white; */
}

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

/* Mobile Styles */
@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;
}

}
