/* -----------Css-variable------ */
:root {
  --light-green: #eaf1f1;
  --green: #235657;
  --dark-green: #154b4c;
  --white: #ffffff;
  --black: #000000;
  --light-bg: #f7fafa;
  --medium-green: #90bfc0;
  --green-rgb: 5, 110, 110;
  --dark-green-rgb: 35, 86, 87;
}
/* ------Common-Css------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: inherit;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
  color: var(--black);
  background-color: var(--white);
}
p {
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  margin-bottom: 0px;
}
.page_wrapper {
  width: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}
.sub_menu a {
  color: var(--dark-green);
}
a:hover {
  text-decoration: none;
  color: var(--medium-green);
}
ul,
li {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button:focus,
.btn.focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}

/* ----------- Form Reset Styles (Improved) ----------- */

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
.row_am {
  padding: 50px 0;
}
.btn {
  padding: 10px 32px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 500;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.green_btn {
  color: var(--white); 
  background-color: var(--green);
  border: 1px solid var(--dark-green);
}
.green_btn:hover, .white_btn:hover {
  color: var(--white);
  background-color: #022f2f;
}



.green_btn i, .white_btn i, .read-more-btn i {
  margin-left: 8px;
  font-size: 1rem;
}
.white_btn {
  border: 1px solid var(--green);
  color: var(--green);
  background-color: var(--white);
}

/* -----------Preloader-Css-Start------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader {
  position: relative;
  width: 100px;
  height: 100px;
}
#loader,
#loader::before,
#loader::after {
  content: "";
  display: block;
  border-radius: 50%;
  border: 3px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#loader {
  border-top-color: var(--medium-green);
  animation: spin 2s linear infinite;
}
#loader::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: var(--dark-green);
  animation: spin 3s linear infinite;
}
#loader::after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: var(--medium-green);
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* -----------Header-Css-Start------------------- */
header {
  position: absolute;
  width: 100%;
  z-index: 99999;
  transition: 0.4s all;
}
header.fix_style {
  position: fixed;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  top: 0;
  backdrop-filter: blur(5px);
  background-color: #022f2f;
  padding: 15px 0;
  transition: none;
  opacity: 0;
  pointer-events: none;
}
header.fixed {
  pointer-events: all;
  opacity: 1;
  transition: 0.4s all;
}
header.fixed .navbar {
  padding: 0;
}

/* -----------navigation-Css-Start------------------- */
.navbar {
  padding-left: 0;
  padding-right: 0;
  padding-top: 35px;
}
.navbar-expand-lg .navbar-nav {
  align-items: center;
}
.navbar-expand-lg .navbar-nav .nav-link {
 padding: 5px 17px;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease; 
  position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
  color: var(--medium-green);
  background-color: var(--black);
  font-size: 16px;
  padding: 9px 40px;
  border-radius: 25px;
  margin-left: 20px;
  font-weight: 500;
  position: relative;
  transition: background-color 0.4s ease, color 0.3s ease;
  text-transform: uppercase;
}
.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
  color: var(--green);
  background-color: var(--light-bg);
}
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--green);
  height: 100%;
  border-radius: 42px;
  z-index: -1;
   transition: width 0.4s ease;
}
.navbar-brand img {
  width: 200px;
  height: auto;
}
.navbar-expand-lg .navbar-nav .has_dropdown {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: 0.4s all;
}
.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
  position: relative;
  right: 10px;
}
.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
  position: absolute;
  top: 100%;
  left: 10px;
  background-color: var(--white);
  min-width: 370px;
  max-width: 480px;
  margin-top: -10px;
  transition: 0.4s all;
  opacity: 0;
  pointer-events: none;
  box-shadow: rgba(34, 139, 34, 0.1) 0px 4px 20px;
  min-height: 220px;        
  max-height: 400px;        
  overflow-y: auto;      
  overflow-x: hidden; 
}
.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
  margin-left: 0;
  padding: 0px;
}
.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
  font-size: 1rem;
  transition: 0.3s all;
  line-height: 30px;
  font-weight: normal;
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid var(--light-green);
}
.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover, .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a.active {
  color: var(--white);
  background-color: var(--dark-green);
}
.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
  opacity: 1;
  left: 0;
}
.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
  opacity: 1;
  pointer-events: all;
  margin-top: -1px;
}
.navbar-expand-lg .navbar-nav .nav-link.active{
  color: var(--medium-green) !important;
}
.bi-chevron-down {
  color: var(--white);
  transition: color 0.3s ease;
  font-size: 14px;
  margin-left: 2px;
}
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle-bar {
  width: 25px;
  margin: 10px 0;
  position: relative;
  border-top: 4px solid var(--medium-green);
  display: block;
}
.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: var(--medium-green);
  height: 4px;
  width: 30px;
  position: absolute;
  top: -12px;
  right: 0px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}
.toggle-bar::after {
  top: 4px;
}
.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}
.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ---------Hero-banner-Css-Start------------------ */
.banner_section {
  margin-top: 0px;
  padding-top: 200px;
  position: relative;
  align-items: center;
  justify-content: center;
  animation: AnimateBG 10s ease infinite;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3), 
    rgba(0, 0, 0, 0.3)
  ), url(../images/Background-Img.png) center/cover no-repeat;
  /* background-image: url(../images/Background-Img.png); */
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 700px;
  background-position: center;
}
.category .banner_section {
  background: linear-gradient(
    rgba(0, 0, 0, 0.9), 
      rgba(var(--dark-green-rgb), 0.6)
  ), url(../images/categories-bg.jpg) center/cover no-repeat;
  padding-top: 160px;
}
.content-library .banner_section {
  background: linear-gradient(
    rgba(0, 0, 0, 0.7), 
      rgba(var(--dark-green-rgb), 0.6)
  ), url(../images/content-library-banner-bg.png) center/cover no-repeat;
  padding-top: 440px;
}
.features-page .banner_section {
  background: linear-gradient(
    rgba(0, 0, 0, 0.3), 
      rgba(var(--dark-green-rgb), 0.1)
  ), url(../images/features-bg.png) center/cover no-repeat;
  padding-top: 100px;
}
.contact .banner_section {
  background: linear-gradient(
    rgba(0, 0, 0, 1), 
      rgba(var(--dark-green-rgb), 0.7)
  ), url(../images/contact-img.jpg) center/cover no-repeat;
}

@keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.banner_section .container {
  position: relative;
}
.banner_section .row {
  align-items: center;
}

.banner_section .banner_text h1 {
  font-size: 87px;
  color: var(--white);
  font-weight: 700;
}
.category .banner_section .banner_text h1 {
  font-size:3.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
  font-weight: 700;
}

.banner_section .banner_text p {
  padding: 0px 0 15px 0;
  color: var(--white);
}
.banner_section .banner_image {
  position: relative;
}
.banner_section .banner_image img {
  max-width: 100%;
}
.h-60 {
  height: 540px;
  min-height: 400px;
  display: flex;
  align-items: center; 
}
.section {
  padding: 60px 0;
  text-align: center;
}

/* ------------About-Section-Css-Start----------- */
.about {
  text-align: left;
  margin-top: 60px;
  padding-bottom: 0px;
}
.subtitle {
  text-transform: uppercase;
  color: #727272;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0px !important;
}
.main-title {
  font-size: 2.2rem;
  font-weight: 600;
}

/* ------------Trusted-Section-Css-Start----------- */
.trusted_section {
  background-color: #f9f9f9;
  padding: 60px 0px;
}
.trusted_section .company_logos img {
  margin: 0 auto;
}
.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 16px;
}
.owl-carousel .owl-dots button {
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--light-green);
  border-radius: 15px;
  margin: 0 5px;
}
.owl-carousel .owl-dots button.active {
  background-color: var(--green);
}
.company_logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px; 
  margin: 10px 0;
}
.company_logos .logo img {
  max-height: 80px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* -------------content-library-Section-Css-Start------------------ */
.content-library,  .content-library-page{
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--white);
  background: linear-gradient(135deg, #202a2b 0%, #184646 50%, #154b4d 100%);
}
.content-library-page{
  background: var(--white);
  color: var(--black);
}
.content-library .content-library-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin: 40px 0px;
}
.content-library .content-library-inner h3 {
  color: var(--white);
}
.content-library .content-library-inner p {
  color: var(--white);
}
.content-library .step_block {
  max-width: 1170px;
  margin: 0 auto;
  padding: 10px 0px;
  position: relative;
}
.content-library .step_block .step_box {
  text-align: left;
}
.content-library .step_block .step_box .step_img {
  display: inline-block;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.content-library .step_block .step_box .step_img img {
  max-width: 100%;
  display: block;
  transition: transform 0.5s ease;
  text-align: center;
}
.content-library .step_block .step_box .step_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(21, 75, 77, 0.7), rgba(24, 70, 70, 0.7));
  z-index: 1;
  transition: opacity 0.5s ease;
}
.content-library .step_block .step_box .step_img img,
.content-library .step_block .step_box .step_text {
  position: relative;
  z-index: 2;
}
.content-library .step_block .step_box .step_img:hover img {
  transform: scale(1.05);
}
.content-library .step_block .step_box .step_text h6{
  font-size: 0.9rem;
  color: #90bfc0;
}
.content-library .step_block .step_box .step_text p {
  text-align: left;
  padding: 30px 0px 0 0px;
  color: var(--white);
  font-size: 1rem;
}

/* ---------------features-Css-Start------------- */
.features {
  margin-bottom: 20px;
}
.features .section_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin: 40px 0px;
  color: var(--dark-green);
}
.features .feature_box {
  background-color: var(--light-bg);
  text-align: left;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 60px;
  border: 1px solid var(--light-green);
  transition: light-green 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}
.features .feature_box:hover {
    box-shadow: 0 4px 20px rgba(34, 139, 34, 0.1);
}
.features .feature_box .features_img {
  position: relative;
  top: -20px;
  left: 20px;
}
.features .feature_box .features_img img {
  max-width: 100%;
}
.features .feature_box .features_text {
  padding: 8px 30px 30px 30px;
}
.features .feature_box .features_text h3 {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* ---------------Testimonial-Css-Start------------- */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background-image: url('../images/Ellipse-bg-shape.png');
  background-repeat: no-repeat;
  background-position: top 100px left 140px; 
  background-size: 340px;
  padding: 100px 20px;
}
.testimonials-section .subtitle {
    color: var(--green);
}
.testimonial-card {
  border: 1px solid var(--light-green);
  border-left: 8px solid #e7eeee;
  transition: light-green 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  padding: 20px;
  background-color: #fefefe;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: none;
}
.testimonial-card.active {
  border-left-color: var(--green); 
  transform: translateX(-50px);
  box-shadow: 0 4px 20px rgba(34, 139, 34, 0.1); 
}
.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-quote {
  font-size: 1em;
  margin: 0;
}
.testimonial-name {
  margin-top: 10px;
  color: var(--green);
  font-weight: 500;
  font-size: 0.9em;
}
.read-more-btn {
  background-color: #efebeb;
  border: none;
  color: var(--dark-green);
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
}
.read-more-btn:hover {
  background-color: #e2dfdf;
}

/* ------Footer-Css-Start-------------- */
.bottom_footer .logo img {
  width: 150px;
}
footer .bottom_footer {
  background-color: #363637;
}
.footer-nav ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
footer p,
footer a {
  color: var(--white);
  font-size: 0.8rem;
}
footer a:hover {
  color: var(--white);
}
footer h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 50px;
  padding-top: 10px;
}
footer .bottom_footer {
  padding: 20px 0;
}
.go_top {
  position: fixed;
  right: 30px;
  bottom: 75px;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  background-color: var(--dark-green);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); 
}
.go_top:hover {
  bottom: 80px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); 
}

/* ---------------content library page-Css-Start------------- */

    .content-library-card .card-custom {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      height: 100%;
      background-color: #f0f2f2;
      transition: 0.4s;
    }
    .content-library-card .card-custom:hover {
      background-color: #e1fdf7;
    }
    .content-library-card .card-body-custom {
      padding: 2rem;
      padding-bottom: 1.6rem;
      flex: 1;
    }
    .content-library-card .card-img-custom {
      width: 100%;
      height: 325px;
      object-fit: cover;
      border-radius: 10px;
    }
    .content-library-card .btn-content {
      background: rgba(45, 51, 57, 0.4);
      color: #fff;
      border-radius: 30px;
      padding: 6px 6px 6px 24px;
      font-size: 14px;
      position: absolute;
      bottom: 16px;
      right: 16px;
      display: flex;
      align-items: center;
      transition: 0.3s;
    }
    .content-library-card .btn-content:hover {
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
    }
   .content-library-card  .card-image-wrapper {
      position: relative;
    }
    .content-library-card .card-body-custom h2{
      font-size: 1.6rem;
      line-height: 2.4rem;
    }
  .content-library-card .card-body-custom p {
  margin-bottom: 0.5rem !important; 
  font-size: 1rem;
}
.btn-content {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.btn-content:hover {
  background-color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.arrow-circle {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
}
.arrow-icon {
  color: #747474;
  font-size: 1rem;
  line-height: 1;
  font-style: normal;
}

/* ---------------category page page-Css-Start------------- */
     
    .info-card {
      border: 1px solid var(--light-green);
      border-radius: 8px;
      padding: 24px;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      height: 100%;
    }
    .info-card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
    .info-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--black);
      line-height: 2rem;
    }
    .info-card p {
      color: var(--black);
      margin-bottom: 10px;
      font-size: 0.9rem;
    }
    .info-card li span {
      font-weight: 500;
      color: var(--green);
      font-size: 0.9rem;
      text-decoration: none;
    }
    .info-card img {
    object-fit: cover;
    }
    .info-card .card-body {
      padding: 0px 24px 24px 24px;
    }
    .meta li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    margin-bottom: 10px;
    }
    .meta li span i {
    font-weight: 500;
    color: var(--medium-green);
    margin-right: 6px;
    }

    /* pagination */ 
  #pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
  .pagination {
  margin-top: 2rem;
  text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.page-item .page-link {
  color: var(--dark-green);
  border: 1px solid var(--light-green);
}
.page-item.disabled .page-link{border-color:var(--light-green);}
.page-item.active .page-link {
  background-color: var(--green);
  color: #fff;
}
.pagination .page-link i {
  font-size: 0.9rem;
}
.page-item.active .page-link{
  border-color: var(--green);
}
.page-link:focus{box-shadow: none;}


.image-wrapper {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--light-green);
}
.image-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease;
}
.image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.40);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-wrapper:hover img {
  transform: scale(1.05);
}
.image-wrapper:hover .overlay {
  opacity: 1;
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* modal */
.modal-dialog {
    width: 100%;
    max-width: 550px;
}
.modal-bg {
   background: url(../images/Ellipse-bg-shape.png) center no-repeat;
  background-size: cover;
  background-color: var(--white);
  color: var(--black);
  border-radius: 6px;
  border: 1px solid var(--dark-green);
}
.modal-content{padding: 20px;}
.modal-content input.form-control {
  border-radius: 4px;
  font-size: 14px;
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--medium-green);
}
.modal-content label {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
  color: var(--dark-green);
}
.modal-body{
  padding: 0px 1rem;
}
.modal-content h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: var(--dark-green);
}
.modal-content .close {
  font-size: 1.5rem;
}
.modal-header .close {
    margin-top: -2px;
    position: absolute;
    top: -5px;
    right: 14px;
}

/* ---------------features page-Css-Start------------- */

.features-sections .icon-img {
  width: 44px;
  height: auto;
  z-index: 2;
  position: relative;
}
.features-sections .bg-icon-shape {
  background-image: url('../images/features-section-shape.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  position: absolute;
  top: 0;
  left: -10%;
  width: 300px;
  height: 100%;
  z-index: -1;
}
.features-sections .bg-icon-shape-middle {
  background-image: url('../images/features-section-shape.png');
  background-repeat: no-repeat;
  background-size: 300px auto;
  background-position: left top;
  position: absolute;
  top: 0;
  left: 40%;
  width: 300px;
  height: 100%;
  z-index: -1
}
.features-sections .feature-img {
  width: 100%;
}
.features-page .features {
  margin: 40px 0px;
}
.features-page .banner_section .banner_text h1 {
  font-size:3.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
  font-weight: 700;
}
.features-sections h1 {
  font-size: 2rem;
}
.Highlights{
  background-color: #f5f3ee;
  padding: 100px 0px;
}
.core {
  margin: 50px 0px;
}
.features-page .subtitle{
  color: var(--green); 
}
.Highlights h2, .core h2 {
  font-size: 2.2rem;
}
.Highlights h6, .core h6 {
  font-size: 1.1rem;
}

/* ---------------contact page-Css-Start------------- */

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

    .sub-heading {
      color: #207d7f;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
    }
.form-control {
    background-color: var(--light-bg);
    border: none;
    padding: 20px;
    font-size: 15px;
    border-radius: 4px;
    height: calc(2rem + 20px);
    padding: 14px 20px;
    outline: 0;
    border: 1px solid var(--light-green);
    color: var(--black);
    font-size: 0.9rem;
    width: 100%;
}
.form-group{
  margin-bottom: 20px;
}
 textarea.form-control {
    min-height: 160px;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}
    .contact-info .icon-box {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }
    .icon-box .icon {
      background-color: #207d7f;
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 30px;
      margin-right: 20px;
    }
    .icon-box h6 {
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--black)
    }
    .icon-box p {
      margin: 0;
      color: var(--black)
    }
    .icon-box p a {
      margin: 0;
      color: var(--black)
    }
     .location-section {
      padding: 60px 40px 30px;
      background-color: var(--dark-green);
      color: var(--white);
    }
    .region-title {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .address strong {
      font-size: 1rem;
    }
    .address p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: var(--white);
    }
    .divider {
      border-bottom: 1px solid var(--light-green);
      width: 80%;
    }
    
/* ---------------bookdemo page-Css-Start------------- */
.bookdemo .banner_section {
 background: linear-gradient(
    rgba(0, 0, 0, 0.7), 
      rgba(var(--dark-green-rgb), 0.4)
  ), url(../images/bookdemo-bg.jpg) center/cover no-repeat;
  height: 550px;
}
.bookdemo .contact-form{
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px 16px;
  margin-top: -180px;
}
.bookdemo {background-color:#f3f5f8}
.bookdemo .demo-title {
  font-size: 1.6rem;
}
.bookdemo .banner_section .banner_text {
  padding-top: 70px;
}
