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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  overflow-x: hidden;

}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 1000;
  top: 0;
  left: 0;
}


body {
  padding-top: 100px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0px;
}

.nav-links li {
  font-size: 1.1rem;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.nav-links li.active {
  color: #62a435;
  font-weight: bold;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #19620d;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #00e0c6;
  border: 2px solid #00e0c6;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.hero {}

.hero-left {
  flex: 1;
  max-width: 95%;
  margin: 0px auto 70px auto;
}

.established {
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 15px;
}

.established span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.hero-left h1 {
  font-size: 3rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  /* width: 70%; */
  margin-bottom: 20px;
}

.highlight {
  color: #fff;
  text-transform: capitalize;
}

.description {
  color: #fff;
  font-size: 1.1rem;
  padding: 0px 10px;
  margin-bottom: 30px;
  border-left: 2px solid #fff;
}

.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  color: #ccc;
}

.stats div {
  font-size: 0.9rem;
}

.stats strong {
  color: #00e0c6;
  font-size: 1.3rem;
}

.hero-right {
  flex: 1;
  max-width: 80%;
  height: 700px;
  margin: auto;
  position: relative;
  position: relative;
  transform: translateY(-10%);
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  height: 700px;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #00e0c6;
  border-radius: 50%;
  color: #000;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}



/*header start*/
.header {

  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 55px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: #000;
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  background-color: #fff;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*  Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #111;
}

.scrolled .nav-headers {
  background-color: #111;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: capitalize;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #19620d;
    font-weight: 600;
  }

  .navmenu .dropdown .who-about {
    font-size: 22px !important;
    margin: 0px auto;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 50%;
    /* Move to the center */
    transform: translateX(-50%);
    /* Adjust position */
    top: 130%;
    width: 1300px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown .what-service {
    margin: 0px auto;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 50%;
    /* Move to the center */
    transform: translateX(-50%);
    /* Adjust position */
    top: 130%;
    width: 1000px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 0px;
    font-size: 15px;
    text-transform: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
    margin: 0px;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #62a435;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: #ffffffe8;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*header end*/

.hero {
  background-color: #19620dc7;
  border-radius: 0px 0px 50px 50px;
  padding: 30px 60px;
  position: relative;
  height: 600px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-hero.png);
  background-size: cover;
  opacity: 0.9;
  z-index: -1;
}

.banner-rows {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*banner end*/

/*number*/
#numberings {
  margin-top: 20px;
  padding: 40px 0px;
  overflow-x: hidden;
}

.counter-container1 {
  background: linear-gradient(rgb(17 69 19), rgba(17, 69, 19, 0.8)), url(../img/about-bg2.png);
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  padding: 40px 40px;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 12px;
}


.counter-container {
  background-color: #4CAF50;
  padding: 40px 40px;
  width: 100%;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 12px;
  background: url('../img/blob-top-left.png'), #295e2b;
  background-position:
    left 0px top 0px,
    right 0px top 0px,
    left 0px bottom 0px,
    right 0px bottom 0px,
    center center;
  background-repeat: no-repeat;
}

.counter {
  font-weight: 700;
  font-size: 32px;
}

span.no-headings {
  font-size: 1.1rem;
}

.color-green-icons {
  font-size: 32px;
}

.counter1 {
  font-size: 4rem;
  font-weight: 700;
}

.no-headings1 {
  font-size: 18px;
}

/*End*/

/*footer*/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #114513;
  font-size: 14px;
  position: relative;
  color: #fff;
}

.footer .footer-top {
  padding-top: 45px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 15px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  color: #fff;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000;
}

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: #fff;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #cdf4ab;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #fff;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  box-shadow: rgb(0 0 0 / 11%) 0px 5px 15px;
  border: 1px solid #62a43557;
  display: flex;
  background-color: #e2e1e1;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: #e2e1e1;
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: #3ca145;
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  color: #000;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 16px;
}

.footer .credits {
  margin-top: 6px;
  color: #000;
  font-weight: 700;
  font-size: 13px;
}

.footer-icons {
  border: 1px solid #fff;
  height: 40px;
  width: 40px;
  color: #fff;
  padding: 4px 10px;
  background-color: #62a435;
  font-size: 20px;
  margin: auto;
  border-radius: 50px;
}

.footers-anchor {
  color: #62a435;
  font-size: 16px;
  font-weight: 600;
}

/*end footer*/

/*about*/
h2.two-headings {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #62a435;
  width: max-content;
  margin: 0px 0px 8px 0px;
}

p.abouts-paras {
  margin: 0px;
  color: #62a435;
  /* text-shadow: 1px 1px 2px #114513; */
  font-weight: 700;
  font-size: 38px;
}

.abouts-paras1 {
  color: #333;
  font-weight: 600;
}

.about-right-parts {
  /* border-left: 3px solid #62a435; */
  padding-left: 10px;
}

.about-right-parts {
  /* border-left: 3px solid #62a435; */
  padding-left: 10px;
}

p.about-rights-para1 {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  text-align: justify;
}

.abouts-part {
  padding: 40px 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 24.33%), #fff;
}

.left-abouts-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: #4CAF50 0px 6px 12px -2px, rgb(76 175 80 / 80%) 0px 3px 7px -3px;
}

.about-row2 {
  margin: 0px;
  padding: 16px 0px;
}

img.work-icons {
  width: 60px;
  height: 60px;
}

h3.work-vission {
  color: #19620d;
  font-weight: 600;
  text-transform: capitalize;
}

.row.right-first {
  margin-bottom: 18px;
}

p.para-vission {
  color: #333;
}

.about-work-left {
  padding-right: 32px;
}

.span-counters {
  display: flex;
}

.imgs-works {

  background: linear-gradient(90deg, rgba(17, 69, 19, 1) 0%, rgba(98, 164, 53, 1) 0%, #62a435 100%);
  justify-content: center;
  padding: 10px;
  align-items: center;
  display: flex;
  border-radius: 0px;
  width: 100px;
  height: 100px;
  background-color: #5d1fff;
  /* Adjust to match your purple */
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.about-work-right {
  margin: 20px;
}

/*end about*/

/*srvice*/
#services-part {
  background: linear-gradient(#114513, #114513d6), url('../img/testimonials-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 40px 40px 40px;
  margin-bottom: 0px;
  color: #fff;
  border-radius: 0px;
}

h2.service-heads {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 8px;
  background-color: #62a435;
  width: max-content;
  margin: 0px 0px 8px 0px;
}

p.para-services {
  font-weight: 700;
  font-size: 32px;
}

a.anchor-services {
  background-color: #fff;
  width: max-content;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 8px;
  float: right;
  color: #114513;
  text-decoration: none;
}

.right-paras {
  text-align: justify;
   hyphens: auto;

}


#services-part .section-title {
  text-transform: uppercase;
  font-size: 14px;
  color: #6c63ff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#services-part .section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

#services-part .section p {
  color: #666;
  max-width: 600px;
  margin-bottom: 20px;
}

#services-part .btn {
  background: #6c63ff;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 30px;
}

#services-part .btn:hover {
  background: #554bda;
}

#services-part .swiper {
  padding-bottom: 40px;
}

#services-part .swiper-slide {
  display: flex;
  justify-content: center;
  scroll-snap-align: start;
}


#services-part .card {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

#services-part .card:hover {
  transform: translateY(-8px);
}

#services-part .card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

#services-part .card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, #19620d, rgba(0, 0, 0, 0));
  padding: 60px 20px 20px 20px;
  color: #fff;
}

#services-part .card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Responsive Swiper Slides */
@media (max-width: 768px) {
  #services-part .swiper {
    padding-left: 15px;
    padding-right: 15px;
  }

  #services-part .swiper-slide {
    max-width: 250px;
  }

  #services-part .card {
    max-width: 250px;
  }
}

@media (max-width: 500px) {
  #services-part .swiper {
    padding-left: 10px;
    padding-right: 10px;
  }

  #services-part .swiper-slide {
    max-width: 100%;
  }

  #services-part .card {
    max-width: 100%;
  }
}

/* Swiper Navigation Buttons */
#services-part .swiper-button-next,
.swiper-button-prev {
  color: #6c63ff;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#services-part .swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.row-services {
  margin: 0px 0px 20px 0px;
}

/*end service*/


.expert_wrap {}

.expert_wrap .ex_content {
  display: flex;
  padding: 70px 0;
  align-items: center
}

.expert_wrap .ex_heading {
  padding: 0px;
  text-align: center
}

.expert_wrap .ex_heading h2 {
  margin: 0px;
  /* font-weight: 600; */
}

.expert_wrap .ex_heading p {
  color: rgb(120 120 120);
  font-size: 18px;
  margin: 0px;
}

.ex_right .col1:hover .expert_icon {
  background-color: #ccc !important;
  box-shadow: 0 10px 20px rgb(88 197 255 / 30%);
  transform: translate(0, -5px) !important;
  transition: .3s ease-in-out !important
}

.ex_right .col1:hover .expert_icon svg path {
  fill: #333 !important
}

.ex_right .col1 .expert_icon:before {
  content: "";
  position: absolute;
  background: #f0f6f94f;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  z-index: 1;
  top: 14px;
  left: 14px
}

.ex_right .col1:hover h3,
.right_text_wrapper a:hover {
  color: #005989 !important;
  transition: .2s ease-in-out
}

.ex_content .ex_left {
  width: 42%;
  position: relative
}

.logo-top-block {
  position: relative;
  z-index: 9;
  width: 220px;
  height: 220px;
  margin: 0 auto
}

.logo-shadow-1,
.logo-shadow-2 {
  margin: auto;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07);
  border-radius: 100%;
  right: 0
}

.logo-top-circle {
  width: 220px;
  height: 220px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07);
  border-radius: 100%;
  z-index: 1;
  padding: 30px;
  position: relative;
  align-items: center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: 4s infinite pulse-black;
  animation: 4s infinite pulse-black
}

@-webkit-keyframes pulse-black {
  0% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .1)
  }

  70% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .02)
  }

  100% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .01)
  }
}

@keyframes pulse-black {
  0% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .1)
  }

  70% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .02)
  }

  100% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .01)
  }
}

.logo-shadow-1 {
  position: absolute;
  display: block;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, .7);
  z-index: -1;
  left: -40px;
  top: -40px;
  -webkit-animation: 4s infinite shadow-pulse;
  animation: 4s infinite shadow-pulse
}

.logo-shadow-2 {
  position: absolute;
  display: block;
  width: 380px;
  height: 380px;
  background-color: rgba(255, 255, 255, .3);
  z-index: -2;
  left: -80px;
  top: -80px;
  -webkit-animation: 4s infinite pulse;
  animation: 4s infinite pulse
}

@-webkit-keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .01);
    background-color: rgba(255, 255, 255, .7)
  }

  70% {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07);
    background-color: rgba(255, 255, 255, .9)
  }

  100% {
    box-shadow: 0 10px 40px 0 transparent;
    background-color: rgba(255, 255, 255, 0)
  }
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .01);
    background-color: rgba(255, 255, 255, .7)
  }

  70% {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07);
    background-color: rgba(255, 255, 255, .9)
  }

  100% {
    box-shadow: 0 10px 40px 0 transparent;
    background-color: rgba(255, 255, 255, 0)
  }
}

.project_box,
.tech_box:hover {
  box-shadow: 0 10px 20px rgb(88 197 255 / 30%)
}

@-webkit-keyframes pulse {

  .css-1mjwclc 0%,
  .css-1mjwclc 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .07)
  }

  .css-1mjwclc 70% {
    -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07)
  }

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .07)
  }

  70% {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07)
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .07)
  }

  70% {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .07)
  }
}

.ex_content .ex_left .circle_2 {
  position: absolute;
  top: 56%;
  left: 14px
}

.ex_content .ex_right {
  width: 54%;
  position: relative;
  min-height: 600px
}

.ex_content .ex_right .ex_text {
  padding-left: 40px;
  margin: -10px
}

.ex_content .ex_right .ex_text h3 {
  font-size: 22px;
  color: #333;
  text-transform: uppercase;
  font-weight: 600
}

.ex_content .ex_right .ex_text h3 a {
  text-decoration: none;
  color: #19620d;
}

.ex_content .ex_right .ex_text p {
  font-size: 16px;
  color: #333;
}

.ex_right .col1 .expert_icon {
  height: 110px;
  width: 110px;
  background-color: #62a435;
  display: flex;
  padding: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -100px
}

.tech_box a>img,
.tech_box h4,
.tech_box:hover a>span img {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important
}

.ex_right .col1 .expert_icon svg {
  width: 55px;
  height: 55px;
  z-index: 1
}

.ex_right .col1 .expert_icon svg path {
  fill: #fff !important
}

.exprt_btn {
  position: relative;
  margin-left: 200px
}

.exprt_btn:before {
  content: '';
  position: absolute;
  width: 190px;
  height: 1px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
  left: -215px
}

.ex_content .ex_right::after {
  content: "";
  background: url('../img/round_curve.png') no-repeat;
  position: absolute;
  top: 10px;
  left: -90px;
  width: 185px;
  height: 591px;
  z-index: -1
}

.ex_right_detail1 {
  position: absolute;
  top: -10px;
  left: -10px
}

.ex_right_detail2 {
  position: absolute;
  top: 117px;
  left: 100px
}

.ex_right_detail3 {
  position: absolute;
  top: 268px;
  left: 147px
}

.ex_right_detail4 {
  position: absolute;
  top: 438px;
  left: 110px
}

.ex_right_detail5 {
  position: absolute;
  top: 571px;
  left: -25px
}


.f-newsllater {
  display: block;
  padding: 0 0 30px
}

.f-newsllater h5 {
  padding: 0 0 25px;
  font-size: 24px;
  color: #026da6;
  display: block;
  font-weight: 700
}

.f-frm form .input-text {
  width: 100%;
  border: 2px solid #14507b !important;
  font-size: 15px;
  color: #333;
  border-radius: 100px
}

.f-frm form input[type=submit] {
  margin: 8px 0 0;
  border: 2px solid #14507b !important;
  font-size: 16px;
  color: #fff;
  border-radius: 100px;
  background: #005989;
  width: 154px;
  font-family: poppins, sans-serif;
  font-weight: 600
}

.new-blk.og_growth .g_container {
  position: absolute;
  top: -140px;
  z-index: 5
}

.f-logo-box {
  display: flex;
  min-height: 178px;
  align-items: center;
  position: relative
}

.f-logo-box-inner,
.industry-outer .container {
  position: relative;
  z-index: 5
}

.f-logo-box:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 200px 200px 0
}

.get-btn a,
.let-links a {
  font-weight: 700;
  border-radius: 0 0 30px 30px;
  padding: 13px 25px
}

.ex_content .ex_right .col1:hover .svg-show,
.footer-right-col .f-links ul li a:hover,
.gallery-row .gallery-img:hover span,
.gallery-row-2 .gallery-img:hover span {
  opacity: 1
}

.footer-bottom-new {
  padding: 70px 0 0
}

.left-stickey {
  position: fixed;
  right: -143px;
  top: 45%;
  z-index: 10;
  transform: translate(0, -50%)
}

.page_Wrapper {
  z-index: 2;
  overflow: visible !important
}

.side-social {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 75px 0 0
}

.side-social a {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff
}

.let-links,
.let-links a {
  display: inline-block;
  text-transform: uppercase
}

.let-links {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  position: relative;
  left: 10px
}

.let-links a {
  color: #fff;
  letter-spacing: 1px;
  font-family: poppins, sans-serif;
  font-size: 18px;
  transform-origin: 0 0
}

.side-social:after {
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 50px;
  background: #9bb3c0;
  content: ''
}

.side-social a:first-child:hover {
  background: #4b6ea8
}

.side-social a:nth-child(3):hover {
  background: #0088c4
}

.side-social a:nth-child(4):hover {
  background: #de4b37
}

.side-social a:nth-child(5):hover {
  background: #2f5c85
}

.side-social a:nth-child(6):hover {
  background: #4dcb5b
}

.right-stickey {
  position: fixed;
  right: -200px;
  z-index: 1000;
  top: 25%;
  transform: translateY(-50%)
}

.get-btn {
  position: relative;
  right: 0
}

.get-btn a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  text-transform: none;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  background: #fff;
  border: 1px solid #d6d6d6
}

.frm-blk h4,
.hidden-slider .dl-btn a,
.menu-colum h4,
.menu-colum h5,
.menu-link-2 ul li a,
.submit-btn input[type=submit] {
  text-transform: uppercase
}

.left-box-main .menu-box,
.sub-menu-inner {
  border-radius: 30px;
  display: flex;
  width: 100%
}

.get-btn a span {
  padding: 0 15px 0 0
}

.get-btn a i {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg)
}

.sub-menu-inner {
  background: #fff;
  padding: 43px 40px 95px
}

.left-box-main {
  margin-right: 80px;
  display: inline-block;
  min-width: 250px
}

.left-box-main .menu-box {
  min-height: 181px;
  flex-direction: column;
  box-shadow: rgb(0 0 0 / 10%) 2px 5px 40px;
  align-items: center;
  justify-content: center;
  position: relative
}

.left-box-main .menu-box+.menu-box {
  margin: 43px 0 0
}

.left-box-main .menu-box .text {
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 100%;
  text-align: center
}

.left-box-main .menu-box .text span {
  background: #e3eef3;
  padding: 8px 10px;
  font-size: 18px;
  text-align: center;
  color: #054061;
  font-weight: 600;
  text-transform: uppercase;
  width: 159px;
  border: 3px solid #fff;
  border-radius: 15px;
  display: inline-block
}

.left-box-main .menu-box .text span a {
  color: #054061
}

.menu-colum {
  width: 344px;
  padding-right: 80px
}

.menu-colum.second-colum {
  width: 276px
}

.menu-colum h4 {
  display: inline-block;
  background: #e5eff4;
  border-radius: 10px;
  padding: 0 21px;
  line-height: 42px;
  color: #046091;
  font-size: 20px;
  font-weight: 600
}

.menu-colum h5 {
  padding: 15px 0 12px;
  font-size: 18px;
  color: #333;
  font-weight: 600
}

.menu-link ul li {
  display: inline-block;
  width: 100%
}

.menu-link ul li a {
  display: inline-block;
  color: #999;
  font-size: 15px;
  font-weight: 500
}

.author_desc h4,
.header_wrap .header_menu>li:nth-child(5) .sub-menu-block .container .sub-menu-inner ul li a:hover,
.menu-link ul li a:hover,
.menu-link-2 ul li a:hover,
.text_blue span,
.why-description h4 {
  color: #046091
}

.menu-link-2 ul li {
  padding: 15px 0 0;
  display: inline-block;
  width: 100%
}

.menu-link-2 ul li a {
  display: inline-block;
  color: #999;
  font-size: 16px;
  font-weight: 500
}

.hidden-slider {
  left: 130%;
  opacity: 0;
  position: absolute;
  top: -100px;
  padding: 35px 0 30px;
  width: 490px;
  background: #fff;
  border-radius: 30px 0 0 30px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: rgb(16 17 10 / 5%) 24px 37px 42px;
  pointer-events: none;
  border: 1px solid #d6d6d6
}

.hidden-slider.active {
  left: -490px;
  right: auto
}

.hidden-slider .slide-blk {
  width: 100%;
  padding: 0 40px 0 50px;
  display: flex
}

.hidden-slider .slide-blk .img-blk {
  min-width: 190px;
  padding-right: 40px
}

.slide-blk-inner h6 {
  padding: 0 0 25px;
  font-size: 18px;
  color: #046091;
  font-weight: 600;
  line-height: 1.3
}

.f-link-left a,
.slide-blk-inner p {
  font-size: 15px;
  color: #333
}

.hidden-slider .slick-next,
.hidden-slider .slick-prev {
  z-index: 1000;
  position: absolute;
  right: 101px;
  bottom: -24px;
  left: auto;
  top: auto;
  width: auto;
  height: auto
}

.hidden-slider .slick-next {
  right: 41px
}

.hidden-slider .ply-icon-hidden {
  z-index: 100;
  position: absolute;
  top: 35px;
  left: -30px
}

.hidden-slider .dl-btn {
  display: inline-block;
  position: absolute;
  left: 40px;
  bottom: -24px
}

.hidden-slider .dl-btn a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  background: #005989;
  padding: 0 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 600
}

.frm-blk-inner .input-row .input-text,
.frm-blk-inner .input-row textarea {
  outline: 0;
  box-shadow: none;
  line-height: 51px;
  font-size: 14px;
  width: 100%;
  padding: 0 25px;
  background: no-repeat
}

.form-modal {
  z-index: 100000;
  opacity: 1
}

.let-modal-blk ul {
  display: flex;
  width: 100%;
  justify-content: space-between
}

.form-modal .modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  justify-content: center
}

.form-modal .modal-dialog {
  max-width: 90%;
  padding: 40px 0;
  margin: 0 auto;
  width: 1038px
}

.modal.fade.form-modal .modal-dialog {
  transform: none
}

.form-modal .modal-content {
  border-radius: 10px;
  border: 0;
  box-shadow: none
}

.let-modal-blk {
  background: url(../../../../../../../../themes/ongraph/assets/images/banner-home.jpg) right top/cover no-repeat;
  border: 10px solid #fff;
  padding: 0 50px;
  border-radius: 10px;
  display: block
}

.modal-backdrop.fade {
  opacity: .6
}

.frm-blk h4 {
  padding: 22px 0 20px;
  display: block;
  color: #fff;
  font-size: 36px;
  font-weight: 700
}

.frm-blk-inner {
  width: 621px;
  padding: 33px 27px 0;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, .2) 10px 0 20px
}

.frm-blk-inner .input-row {
  display: block;
  padding: 0 0 16px
}

.frm-blk-inner .input-row .input-text {
  height: 51px;
  color: #333;
  display: block;
  border-radius: 5px;
  border: 1px solid #c1c1c2
}

.frm-blk-inner .input-row textarea {
  height: 100px;
  color: #333;
  display: block;
  border-radius: 5px;
  resize: none;
  border: 1px solid #c1c1c2
}

.og_growth.og_growth_btm .g_container {
  margin: 140px 0 0
}

.cls-check-1 input,
.cls-check-11 input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer
}

.cls-check-1 label,
.cls-check-11 label,
.cls-check-11 label span.wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  color: #333;
  font-size: 11px
}

.cls-check-1 label:before,
.cls-check-11 label span.wpcf7-list-item-label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #054061;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 3px
}

.cls-check-1 input:checked+label:after,
.cls-check-11 label input:checked+span.wpcf7-list-item-label:after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.submit-btn {
  display: block;
  margin: 0 0 -27px
}

.chat-icon,
.whatup-icon {
  position: fixed;
  margin: 5px;
  z-index: 100
}

.submit-btn input[type=submit] {
  background: #58c5ff;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  display: inline-block;
  margin: 16px 0 0;
  height: 55px;
  border-radius: 100px;
  border: 0;
  width: 194px
}

.submit-btn input[type=submit]:hover {
  background: #1885bf;
  color: #fff
}

.let-modal-blk ul {
  padding: 63px 0 35px;
  align-items: center
}

.let-modal-blk ul li img {
  max-width: 80%
}

.chat-icon {
  right: 20px;
  bottom: 20px
}

.whatup-icon {
  left: 10px;
  bottom: 10px
}

.chat-icon img,
.whatup-icon img {
  width: 50px
}

.f-newsllater .f-frm,
.f-newsllater .f-frm form {
  display: inline-block;
  width: 100%;
  position: relative
}

.f-newsllater .f-frm input[type=submit] {
  height: 55px;
  width: 55px;
  margin: 0;
  position: absolute;
  font-size: 0;
  right: 0;
  background: url(../../../../../../../../themes/ongraph/assets/images/submit-arrow.png) center center no-repeat #005888;
  top: 0
}

.f-link-left {
  padding: 20px 0 0;
  display: flex
}

.f-link-left span {
  font-size: 15px;
  color: #333;
  padding: 0 5px
}

.f-link-left a:hover {
  color: #005888
}

.ncontact_img .video {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.input-box .input-text,
.input-box .nice-select {
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  color: #333;
  box-shadow: none;
  outline: 0
}

.ncontact_img .video iframe {
  object-fit: cover
}

.footer-row {
  padding: 24px 0;
  justify-content: space-between;
  margin: 54px 0 0;
  border-top: 2px solid #e4e4e4;
  align-items: center
}

.ct-frm .row .col-md-12,
.ct-frm .row .col-md-6,
.footer-row .f-link-left span {
  padding: 0 10px
}

.side-social-2 a {
  margin: 0 0 0 10px;
  font-size: 20px
}

.ex_content .ex_right {
  z-index: 100
}

.ex_content .ex_right .col1 .svg-show {
  opacity: 0;
  z-index: 1000;
  background: #fff;
  height: 220px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  border-radius: 200px;
  left: -381px;
  top: 200px
}

.ex_content .ex_right .col1 .svg-show svg {
  width: 100px;
  max-height: 100px
}

.ex_content .ex_right .col1 .svg-show svg path {
  fill: #005989
}

.ex_content .ex_right .col1.ex_right_detail2 .svg-show {
  left: -491px;
  top: 73px
}

.ex_content .ex_right .col1.ex_right_detail3 .svg-show {
  left: -538px;
  top: -78px
}

.ex_content .ex_right .col1.ex_right_detail4 .svg-show {
  left: -501px;
  top: -248px
}

.ex_content .ex_right .col1.ex_right_detail5 .svg-show {
  left: -366px;
  top: -381px
}


.why-heads {
  color: #62a435;
  font-size: 42px;
  font-weight: 700;
}

.one-head-service {
  font-size: 24px;
  font-weight: 600;
}

#why-choose-us {
  background-color: #4caf504a;
  padding: 40px 0px;
}

.logo-chooses {
  width: 80px;
}

/* Main heading styles */
.heading-highlights {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
}

/* Slide-up and fade-in animation wrapper */
.slide-up-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  /* Start slightly below */
  animation: slideUp 2s ease-out forwards;
  /* Animation timing */
}

/* Highlighted part of the text */
.highlight {
  color: #fff;
  font-weight: bold;
}

/* Fade-in and slide-up animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.footer {
  position: relative;
  background-color: #fff;
  background: linear-gradient(172deg, #114513, #114513), #114513;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-blend-mode: color-burn;
  right: 0;
  bottom: 0;
  background: url(../img/map.png) no-repeat center top;
  background-size: cover;
  opacity: 0.4;
  /* Adjust opacity here */
  z-index: 0;
}

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

h2.Certifications-heads {
  font-size: 16px;
  color: #62a435;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 8px;
  background-color: #fff;
  width: max-content;
  margin: 0px 0px 8px 0px;
}


.five-grid div {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.five-grid div:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#Our-Certifications {
  padding: 40px 0px;
  background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png), #114513;
  background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center;
  background-repeat: no-repeat;
}

.para-Certifications {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0px 0px 16px 0px;
  text-transform: capitalize;
}

.Certifications-paras {
  color: #fff;
  font-size: 18px;
}


.five-grid>div {
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 50%;
  border: 9px solid #d7dfd8;
  /* height: 180px; */
  text-align: center;
}

@media (max-width: 1400px) {
  .five-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 1000px) {
  .five-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .five-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .five-grid {
    grid-template-columns: 1fr !important;
  }
}

.five-grid>div img {
  max-width: 160px;
  padding: 20px;
  height: 160px;
  display: block;
}

.five-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  align-items: center;
  /* vertical centering */
  justify-items: center;
  /* horizontal centering */
}

.para-Certifications1 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
}

.about-who {
  margin: 0px;
  color: #62a435;
  font-weight: 700;
  font-size: 42px;
}

/*test*/



/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
  padding: 30px 30px 30px 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #C8E6C9 !important;
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ccc;
  border-radius: 60px;
  font-size: 18px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #fff;
  background: #62a435;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.para-tests {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 8px;
  background-color: #62a435;
  width: max-content;
  margin: 0px 0px 8px 0px;
}

.heading {
  color: #62a435;
  font-weight: 700;
  margin: 20px 0px 10px 0px;
  font-size: 42px;
}

#testimonial {
  background-image: url('../img/side-design_reverse.png'), url('../img/side-design_home@3x.png');
  background-position: left 0, right bottom;
  background-repeat: no-repeat;
  background-size: 10%;
}

.heading-ornate {
  font-size: 20px;
  font-weight: 600;
}

.para-ornate {
  color: #000;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #62a435 !important;
}

.nav-link {
  color: #000;
  font-size: 20px;
}

.tabs-leftss {
  padding: 10px 16px;
}

/*slider*/
/* Owl Carousel container */
.hero-right .owl-carousel {
  padding: 0px 0;
  background-color: #f9f9f9;
}

/* Each item (slide wrapper) */
.hero-right .owl-carousel .item {
  height: 700px;
  margin: 0px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Background image styling */
.hero-right .slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient overlay */
.hero-right .slide-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgb(55 56 53 / 0%), rgb(20 23 20 / 63%));
  z-index: 1;
}

/* Slide heading or content */
.hero-right .slide-image h4 {
  color: white;
  font-size: 28px;
  font-weight: 600;
  z-index: 2;
  position: relative;
  text-align: center;
  padding: 0 20px;
}

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

.hero-right .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.hero-right .owl-dot:hover,
.hero-right .owl-dot.active {
  background: #4DC7A0;
  transform: scale(1.2);
}

/* Hide navigation arrows */
.hero-right .owl-nav {
  display: none !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-right .slide-image h4 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-right .slide-image h4 {
    font-size: 18px;
  }
}

/*end*/


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  /* background: linear-gradient(#114513, #114513d6), url('../img/istockphoto-1303809341-2048x2048.jpg'); */
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  padding: 60px 0px;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px;
  max-width: 100%;
  background-color: #fff;
  width: 190px;
  border-radius: 16px;
  height: 190px;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

p.ours-clients {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 8px;
  background-color: #62a435;
  width: max-content;
  margin: 0px 0px 8px 0px;
}

h2.heads-clients {
  color: #62A435;
  font-weight: 700;
  margin: 20px 0px 10px 0px;
  font-size: 42px;
}

/* type js style  */
.typeJsWrapper {
  padding: 0px;
}

.typeJsWrapper .typeJsText {
  text-align: center;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
  font-size: 2.3rem;
  font-weight: 600;
  /* line-height: 1.4; */
  min-height: 120px;
  display: inline-block;
  padding: 0;
  border-right: 1px solid #41414100;
}

/* === Slider Wrapper === */
.logo-slider {
  width: 100%;
  overflow: hidden;
  /* background: #fff; */
  padding: 30px 0;
  position: relative;
}

/* === Scrolling Track === */
.logo-track {
  display: flex;
  gap: 40px;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* === Logo Item === */
.logo {
  flex-shrink: 0;
  width: 200px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /* height: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

/* === Logo Image === */
.logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.8; */
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* === Optional: Fade Edges for Aesthetic === */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  /* background: linear-gradient(to right, #fff, transparent); */
}

.logo-slider::after {
  right: 0;
  /* background: linear-gradient(to left, #fff, transparent); */
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .logo {
    width: 140px;
    height: 80px;
  }

  .logo img {
    max-height: 60px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 100px;
    height: 60px;
  }

  .logo img {
    max-height: 50px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 30px;
  }
}

.footer-logos {
  width: 142px;
  /* background-color: #fff; */
}

.hero-bannerss {
  position: relative;
  text-align: center;
  height: 700px;
  padding: 100px 20px;
  background: linear-gradient(rgb(255 255 255 / 95%), #113b14),
    /* background color overlay */
    url(../img/new-digitals.png), radial-gradient(#d0cece 1px, #00000021 1px);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

.hero-bannerss1 {
  position: relative;
  text-align: center;
  height: 700px;
  padding: 100px 20px;
  background: linear-gradient(rgb(197 255 200), #070c08),
    /* background color overlay */
    url(../img/it-bg3.png), radial-gradient(#d0cece 1px, #00000021 1px);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

.hero-bannerss2 {
  position: relative;
  text-align: center;
  height: 700px;
  padding: 100px 20px;
  background: linear-gradient(rgb(255 255 255 / 95%), #1B5E20),
    /* background color overlay */
    url(../img/working-3.jpg), radial-gradient(#d0cece 1px, #00000021 1px);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

.icons .icon {
  position: absolute;
  width: 75px !important;
  background-color: #114513de;
  padding: 12px;
  border-radius: 29px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  /* Animation added */
  animation: 4s infinite moveHorizontal;
}

/* Animation keyframes */
@keyframes moveHorizontal {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

.icon-top-left {
  top: 40px;
  left: 100px;
}

.icon-mid-left {
  top: 60%;
  left: 10%;
}

.icon-top-right {
  top: 40px;
  right: 100px;
}

.icon-mid-right {
  top: 60%;
  right: 10%;
}

.agency-title {
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.main-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  color: #3a641e;
}

.highlight-title {
  font-size: 40px;
  font-weight: 900;
  color: #2b2a2a;
  margin-top: 10px;
}

.description {
  font-size: 18px;
  color: #fff;
  margin: 20px auto 40px;
  max-width: 600px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  justify-content: left;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #fff;
  color: #222;
}

.primary-btn:hover {
  background-color: #7fa500;
}

.outline-btn {
  border: 2px solid #ccc;
  background-color: #114513;
  color: #fff;
}

.outline-btn:hover {
  background-color: #f5f5f5;
}

.description4 {
  font-size: 18px;
  color: #201f1f;
  margin: 20px auto 40px;
  max-width: 600px;
  line-height: 1.6;
}


.icons1 {
  margin-top: 50px;
}


.icons1 .icon1 {
  position: absolute;
  width: 75px !important;
  background-color: #62a435;
  padding: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 2px solid #ffffff96;
  border-radius: 29px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */

  /* Animation added */
  animation: 4s infinite moveHorizontal;
}

/* Animation keyframes */
@keyframes moveHorizontal {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

.icon-top-left1 {
  top: 40px;
  left: 100px;
}

.icon-mid-left1 {
  top: 60%;
  left: 10%;
}

.icon-top-right1 {
  top: 40px;
  right: 100px;
}

.icon-mid-right1 {
  top: 60%;
  right: 10%;
}

.subscribes {
  color: #000;
}


.cmmi-logos {
  width: 80px;
}

.partner {
  text-align: center;
  margin: 0 20px
}

.partner p {
  color: rgb(242, 242, 242);
  font-size: 18px;
  position: relative;
  margin: 0
}

.partner p:before {
  content: "";
  height: 50px;
  width: 30px;
  position: absolute;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  left: -15px;
  top: 50%;
  background-size: cover !important
}

.partner p:after {
  content: "";
  height: 50px;
  width: 30px;
  position: absolute;
  background-repeat: no-repeat;
  transform: translate(0%, -50%);
  right: -35px;
  top: 50%;
  background-size: cover !important;
  background-position: right center !important
}

.partner p:before {
  background: url('../img/lef-left.png');
}

.partner p:after {
  background: url('../img/lef-right.png');
}

/*contact us*/

#contact-page .container {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  padding: 2rem 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-page .form {
  width: 100%;
  max-width: 84%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#contact-page .contact-form {
  background-color: #62a435;
  position: relative;
}

#contact-page .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #114513);
  position: absolute;
}

#contact-page .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

#contact-page .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

#contact-page .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #114513;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

#contact-page form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

#contact-page .title {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

#contact-page .input-container {
  position: relative;
  margin: 1rem 0;
}

#contact-page .input {
  width: 100%;
  outline: none;
  border: 2px solid #96b699;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #114513;
  background-color: #f2f1f1;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

#contact-page textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

#contact-page .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #62a435;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

#contact-page .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

#contact-page .btn {
  padding: 0.6rem 1.3rem;
  background-color: #19620d;
  border: 2px solid #fafafa6b;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: max-content;
}

#contact-page .btn:hover {
  background-color: transparent;
  color: #fff;
}

#contact-page .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

#contact-page .input-container span:before,
#contact-page .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

#contact-page .input-container span:before {
  left: 50%;
}

#contact-page .input-container span:after {
  right: 50%;
}

#contact-page .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

#contact-page .input-container.focus span:before,
#contact-page .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

#contact-page .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

#contact-page .contact-info .title {
  color: #62a435;
}

#contact-page .text {
  color: #333;
  margin: 1.5rem 0 1rem 0;
}

#contact-page .information {
  display: flex;
  color: #555;
  margin: 0.5rem 0;
  align-items: center;
  font-size: 1rem;
}

#contact-page .information i {
  color: #62a435;
}

#contact-page .icon {
  width: 28px;
  margin-right: 0.7rem;
}

#contact-page .social-media {
  padding: 1rem 0 0 0;
}

#contact-page .social-media p {
  color: #333;
}

#contact-page .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

#contact-page .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #62a435, #19620d);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

#contact-page .social-icons a:hover {
  transform: scale(1.05);
}

#contact-page .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #62a435;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

#contact-page .big-circle {
  position: absolute;
  width: 500px;
  display: none;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #19620de6, #62a435);
  bottom: 49%;
  right: 45%;
  transform: translate(-40%, 38%);
}

#contact-page .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

#contact-page .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  #contact-page .form {
    grid-template-columns: 1fr;
  }

  #contact-page .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  #contact-page .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  #contact-page .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  #contact-page .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  #contact-page .text {
    margin: 1rem 0 1.5rem 0;
  }

  #contact-page .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  #contact-page .container {
    padding: 1.5rem;
  }

  #contact-page .contact-info:before {
    display: none;
  }

  #contact-page .square,
  .big-circle {
    display: none;
  }

  #contact-page form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  #contact-page .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  #contact-page .title {
    font-size: 1.15rem;
  }

  #contact-page .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  #contact-page .icon {
    width: 23px;
  }

  #contact-page .input {
    padding: 0.45rem 1.2rem;
  }

  #contact-page .btn {
    padding: 0.45rem 1.2rem;
  }
}

.contact-paras {
  margin: 0px;
}

#contact-page .form-label {
  margin-bottom: .5rem;
  color: #fff;
}

#contact-page {
  background-color: #fafafa;
}

/*end contact*/
/*thank*/

#thank-page .wrapper-1 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#thank-page .wrapper-2 {
  padding: 30px;
  text-align: center;
}

#thank-page h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 4em;
  letter-spacing: 3px;
  color: #5892FF;
  margin: 0;
  margin-bottom: 20px;
}

#thank-page .wrapper-2 p {
  margin: 0;
  font-size: 1.5rem;
  margin-top: -20px;
  color: #aaa;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
}

#thank-page .go-home {
  color: #fff;
  background: #62a435;
  border: none;
  padding: 10px 50px;
  margin: 30px 0;
  border-radius: 30px;
  text-transform: capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

#thank-page .footer-like {
  margin-top: auto;
  background: #D7E6FE;
  padding: 6px;
  text-align: center;
}

#thank-page .footer-like p {
  margin: 0;
  padding: 4px;
  color: #5892FF;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
}

#thank-page .footer-like p a {
  text-decoration: none;
  color: #5892FF;
  font-weight: 600;
}

@media (min-width:360px) {
  #thank-page h1 {
    font-size: 4.5em;
  }

  #thank-page .go-home {
    margin-bottom: 20px;
  }
}

@media (min-width:600px) {
  #thank-page .content {
    /* max-width:1000px; */
    /* margin:0 auto; */
  }

  #thank-page .wrapper-1 {
    height: initial;
    max-width: 55%;
    margin: 30px auto;
    box-shadow: 4px 8px 40px 8px rgb(139 195 74 / 34%);
  }

}

.thank-img {
  width: 100%;
  max-width: 65%;
}

/*end thank*/



/*about*/
.about-two {
  background: url('../img/story-bg.png'), #114513;
  background-position: center;
  background-size: cover;
}

.row.rows-abouts {
  margin: 0px;
  align-items: center;
  padding: 60px 40px;
}

.ours-nos {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 3rem;
}

.story-twos {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin: 10px 0px;
}

p.about-no {
  font-size: 32px;
  color: #62a435;
  font-weight: 600;
}

p.about-headings {
  color: #114513;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.part-abouts {
  width: 80%;
  margin: auto;
}

.pars-abouts1 {
  color: #fff;
}

.pars-abouts1 {
  color: #fff;
  text-align: justify;
}

.abouts-imgs {
  width: 100%;
}

.about-one .row {
  display: flex;
  align-items: center;
  /* Vertically center content */
  flex-wrap: wrap;
  /* Ensure it wraps on smaller screens */
}


section#abouts-page {
  padding: 0px;
}

h2.about-headings-rights {
  color: #62a435;
  font-size: 3rem;
  font-weight: 700;
}

/*end about*/

/*mission*/

.puzzle-background {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;

  position: relative;
  overflow: hidden;
}

.section {
  padding: 20px 20px;
  color: white;
  position: relative;
  z-index: 2;
}

.mission {
  background-color: #000;
  grid-column: 1;
  grid-row: 1;
}

.vision {
  background-color: #62a435;
  grid-column: 1;
  grid-row: 2;
}

.core-values {
  background-color: #efecec;
  color: black;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.puzzle-background::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
}

.puzzle-background::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 10%, transparent 10% 20%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 10%, transparent 10% 20%);
  background-size: 40px 40px;
}

.row.row-threes {
  margin: 0px;
}

.three-aboust-part {
  padding: 0px;
}

.imgss-leftss-about {
  width: 100%;
 
  object-fit: cover;
}

.row-threes {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* Makes both columns equal height */
}

.three-aboust-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-three-right,
.abouts-three-lefts {
  height: 100%;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
}

/*end mission*/

/*certification*/
.about-four {
  padding: 40px 0px;
  background-color: #fafafa;
}

h2.about-certifications1 {
  color: #62a435;
  font-weight: 700;
  font-size: 3rem;
}

p.about-para-certificate {
  font-size: 18px;
}

/*end certification*/

/*web*/
img.web-imgs {
  width: 100%;
}

.web-about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}



p.web-right-heads2 {
  color: #19620d;
  font-size: 22px;
  margin: 0px;
}

h2.web-right-heads1 {
  font-weight: 700;
  color: #19620d;
  font-size: 2.3rem;
}

.test-webs {
  padding: 20px 0px;
  background-color: #efebeb;
}

h2.seconds-webs {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
  color: #19620d;
}


p.seconds-webs1 {
  text-align: center;
  color: #62a435;
  font-size: 2rem;
  font-weight: 600;
}

img.test-secs-web {
  margin: 20px auto;
  display: flex;
}

.card-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-prev,
.custom-next {
  background: #62a435;
  border: none;
  border-radius: 50%;
  align-items: center;
  color: #fff;
  padding: 10px 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.custom-prev {
  left: -40px;
}

.custom-next {
  right: -40px;
}

.web-customs .arrow {
  display: inline-block;
  margin: AUTO;
  width: 10px;
  height: 10px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.web-customs .arrow.left {
  border-right: 12px solid #fff;
}

.web-customs .arrow.right {
  border-left: 12px solid #fff;
}

#web-page .web-customs {
  background: linear-gradient(#114513, #114513d6), url(../img/web-services.png);
  background-size: cover;
  background-position: center;
  padding: 80px 40px 40px 40px;
  margin-bottom: 0px;
  color: #fff;
  border-radius: 0px;
}

.custom-web1 {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  margin: 0px;
}

.custom-web2 {
  text-align: center;
  font-weight: 600;
  font-size: 42px;
  color: #9de66b;
  margin: 0px;
}

.web-customs .card-slider-wrapper {
  margin: 16px 0px;
}

.web-customs .card-webs {
  width: 200px !important;
  height: 200px;
  margin: 0px auto 20px auto;
}

.web-customs .card {
  padding: 20px;
  /* max-height: 500px; */
}

.threes-php {
  color: #19620d;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.web-ser-paras {
  text-align: justify;
}
.web-customs .web-ser-paras {
  text-align: justify;
  min-height: 250px;
   hyphens: auto;
}

.web-customs .owl-carousel .owl-stage {
  display: flex;
}

.web-customs .owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}

p.web-right-heads22 {
  color: #635f5f;
  font-size: 22px;
  margin: 0px;
  font-weight: 600;
}

/*end web*/
#websites-page .web-customs {
  background: linear-gradient(#0a120a, #114513d6), url(../img/website-bgs.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 40px 40px 40px;
  margin-bottom: 0px;
  color: #fff;
  border-radius: 0px;
}

#web-page-mobile .web-customs {
  background: linear-gradient(#547054, #114513d6), url(../img/banner33.jpeg);
  background-size: cover;
  background-position: center;
  padding: 80px 40px 40px 40px;
  margin-bottom: 0px;
  color: #fff;
  border-radius: 0px;
}

img.app-imgs1 {
  width: 100%;
}

.row.applications-rows {
  margin: 16px 0px;
  padding: 0px 20px;
  display: flex;
  border-radius: 14px;
  align-items: center;
  background-color: #4CAF50;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex-wrap: wrap;
}

.heading-appli {
  font-size: 2.5rem;
  font-weight: 600;
}

.erp-paras {
  font-size: 17px;
}

.row.applications-rows1 {
  margin: 16px 0px;
  padding: 10px 20px;
  display: flex;
  border-radius: 14px;
  align-items: center;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex-wrap: wrap;
}

.heading-appli1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #62a435;
}

.erp-paras1 {
  font-size: 17px;
  color: #222;
}


#career-parts-pages .perks-section {
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

#career-parts-pages .section-title-career {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
}

#career-parts-pages .perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

#career-parts-pages .perk-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgb(139 195 74 / 68%);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

#career-parts-pages .perk-card:hover {
  transform: translateY(-5px);
}

#career-parts-pages .perk-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #8BC34A;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.orange {
  background: #fff;
}

.blue {
  background: #fff;
}

.pink {
  background: #fff;
}

.cyan {
  background: #fff;
}

#career-parts-pages .perk-card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

#career-parts-pages .perk-card p {
  font-size: 0.95rem;
  color: #555;
}

#career-parts-pages #careers-page {
  background: url('../img/preks-bgs.png'), #000;
  background-size: cover;
  padding: 60px 0px;
  background-position: center;
}

#career-parts-pages .hero-section {
  position: relative;
  padding: 4rem 2rem;
  /* max-width: 1200px; */
  margin: auto;
  /* min-height: 600px; */
  overflow: hidden;
}

#career-parts-pages .hero-content {
  max-width: 60%;
  z-index: 2;
  position: relative;
}

#career-parts-pages .hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 1rem;
}

#career-parts-pages .highlight {
  background-color: #0e5aed;
  color: white;
  padding: 0 0.3em;
  border-radius: 4px;
}

#career-parts-pages .blue-text {
  color: #19620d;
  font-weight: 700;
}

#career-parts-pages .hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0;
  color: #666;
}

#career-parts-pages .hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#career-parts-pages .hero-image img {
  width: 500px;
  height: auto;
  display: block;
}

/* Optional: for smaller screens */
@media (max-width: 768px) {
  #career-parts-pages .hero-content {
    max-width: 100%;
  }

  #career-parts-pages .hero-image img {
    width: 200px;
  }
}

.section-header-blue-dark {
  padding: 60px 0px;
}

.heading-section-white {
  color: #19620d;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 600;
}

.para-desktop-only {
  color: #333;
  font-size: 17px;
}

.row.join-rows {
  align-items: center;
  border-radius: 8px;
  background-color: #acf97842;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid #62a43538;
  padding: 30px 20px;
}

.section-header-blue-dark .careers-joins1 {
  float: right;
}

.section-header-blue-dark .join-career-btns {
  text-decoration: none;
}

.section-header-blue-dark .text-block {
  background-color: #62a435;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  margin: 0px 3px;
  width: max-content;
  text-decoration: none;
  border-radius: 8px;
}


#newsroom-part .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}


#newsroom-part .card {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ECE9E6;
  background: linear-gradient(to right, #FFFFFF, #62a43570);
}



#newsroom-part .card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


#newsroom-part .tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

#newsroom-part .tag+.tag {
  margin-left: .5em;
}

#newsroom-part .tag-blue {
  background: #56CCF2;
  background: linear-gradient(to bottom, #19620d, #4CAF50);
  color: #fafafa;
}

#newsroom-part .tag-brown {
  background: #D1913C;
  background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

#newsroom-part .tag-red {
  background: #cb2d3e;
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

#newsroom-part .card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

#newsroom-part .card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

#newsroom-part .user {
  display: flex;
  gap: .5rem;
}

#newsroom-part .user__image {
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

#newsroom-part .user__info>small {
  color: #666;
}

#newsroom-part .card__image {
  width: 100%;
  height: 200px;
}

#newsroom-part .head-room2 {
  margin: 0px;
}

.blogs-headings {
  font-size: 2.4rem;
  font-weight: 600;
  color: #19620d;
}

.anchor-services22 {
  color: #62a435 !important;
  font-weight: 600 !important;
  font-size: 20px !important;
}

.head-room-anchors {
  text-decoration: none;
  color: #000;
}

/*news-detials*/


#newsroom-details .leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
#newsroom-details .rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
#newsroom-details .fakeimg {
  background-color: #aaa;
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #62a435;
  padding: 0px;
}

/* Add a card effect for articles */
#newsroom-details .card {
  background-color: #ece7e7;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
#newsroom-details .row:after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {

  #newsroom-details .leftcolumn,
  .rightcolumn {
    width: 100% !important;
    padding: 0px !important;
  }
}

.blogs-cards {
  background-color: #62a435 !important;
  color: #fff;
}

.heading-blogs1 {
  font-weight: 500;
}

.blogs-icons {
  background-color: #fff;
  color: #62a435;
  border-radius: 50px;
  padding: 10px;
}

.blog-socials {
  margin-top: 20px;
}

.blogs-headings-details {
  color: #19620d;
  font-weight: 600;
}

#newsroom-details {
  padding: 20px 0px;
  margin: 20px 0px;
}

.back-btns-blogs {
  margin: 10px;
  font-weight: 600;
  float: right;
  color: #000;
}

/*end details*/

/*Sap*/
.sap-img1 {
  width: 100%;
}

.sap-services {
  background: linear-gradient(#62a435a8, #114513), url(../img/sap-bg1.png);
  background-size: cover;
  background-position: center;
  padding: 100px 40px 80px 40px;
  margin-bottom: 0px;
  color: #fff;
  border-radius: 0px;
}

h2.head-sap1 {
  color: #19620d;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.row.rw-sap1 {
  flex-wrap: wrap;
  align-items: center;
}

p.para-sap1 {
  font-size: 17px;
  text-align: justify;
}

h2.sap-service-head {
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
}

p.sap-service-para {
  color: #fff;
  font-size: 18px;
}

.col-service-box {
  background: linear-gradient(#25322699, #9b9d9b), url(../img/ecommerce1.png);
  border-radius: 8px;
  height: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 10px 0px;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 40px;
}

h3.three-saps-service {
  color: #fff;
  font-size: 24px;
  margin: 0px;
  text-align: center;
  font-weight: 600;
}

.margin-boxs {
  margin-bottom: 10px;
}

.sap-benefits .container {
  position: relative;
  max-width: 1200px;
  height: fit-content;
  margin: 80px auto;
}

.sap-benefits .box {
  position: relative;
  width: 50%;
  padding: 1rem 3rem;
  opacity: 0;
  animation: animateBox 0.3s linear forwards;
}

@keyframes animateBox {
  0% {
    opacity: 0.8;
    transform: translateY(500px) scale(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sap-benefits .box:nth-child(2) {
  animation-delay: 0s;
}

.sap-benefits .box:nth-child(3) {
  animation-delay: 0.4s;
}

.sap-benefits .box:nth-child(4) {
  animation-delay: 0.6s;
}

.sap-benefits .box:nth-child(5) {
  animation-delay: 0.9s;
}

.sap-benefits .box:nth-child(6) {
  animation-delay: 1s;
}

.sap-benefits .box:nth-child(7) {
  animation-delay: 1s;
}

.sap-benefits .box-left {
  left: 0;
}

.sap-benefits .box-right {
  left: 50%;
}

.sap-benefits .box i {
  position: absolute;
  background: linear-gradient(-311deg, #19620d, #96b699, #114513);
  top: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 50%;
  right: -25px;
  z-index: 10;
  /* color: red; */
}

.sap-benefits .box .html {
  color: #114513;
  border: 4px solid #114513;
}

.sap-benefits .box .css {
  /* color: var(--blue); */
  /* border: 4px solid var(--blue); */
  color: #114513;
  border: 4px solid #114513;
}

.sap-benefits .box .javascript {
  /* color: var(--yellow); */
  /* border: 4px solid var(--yellow); */
  color: #114513;
  border: 4px solid #114513;
}

.sap-benefits .box .react {
  /* color: var(--blue); */
  /* border: 4px solid var(--blue); */
  color: #114513;
  border: 4px solid #114513;
}

.sap-benefits .box .angular {
  /* color: var(--red); */
  /* border: 4px solid var(--red); */
  color: #114513;
  border: 4px solid #114513;
}

.sap-benefits .box .vue {
  /* color: var(--green); */
  /* border: 4px solid var(--green); */
  color: #00626c;
  border: 4px solid #00626c;
}

.sap-benefits .box-right i {
  left: -25px;
}

.sap-benefits .info {
  border-bottom: 2px;
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background: #19620d;
  color: #fafafa;
  box-shadow: 0 5px 9px #62a435;
  border-bottom: 2px solid #114513;
}

.sap-benefits .info h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.sap-benefits .info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.sap-benefits .info a {
  text-decoration: none;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  display: none;
}

.sap-benefits .info a:hover {
  text-decoration: underline;
}

.sap-benefits .info::after {
  content: "";
  position: absolute;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #62a435;
  right: -14px;
  z-index: 10;
}

.sap-benefits .box-right .info::after {
  border-left: 0;
  border-right: 14px solid #62a435;
  left: -14px;
}

.sap-benefits .vertical-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(45deg, #62a435, #003136 186%);
  animation: animateLine 3s linear forwards;
}

@keyframes animateLine {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@media screen and (max-width: 775px) {
  .sap-benefits .container {
    margin: 40px auto;
  }

  .sap-benefits .vertical-line {
    left: 60px;
  }

  .sap-benefits .box {
    width: 100%;
    /* padding-right: 1.5rem; */
    padding-left: 109px;
  }

  .sap-benefits .box-left,
  .box-right {
    left: 0;
  }

  .sap-benefits .box i {
    left: 35px;
  }

  .sap-benefits .info::after {
    left: -16px;
  }

  .sap-benefits .box-left .info::after {
    border-left: 0;
    border-right: 14px solid white;
    left: -14px;
  }

}

@media screen and (max-width: 500px) {
  .sap-benefits .vertical-line {
    left: 40px;
  }

  .sap-benefits .box {
    width: 100%;
    padding-right: 1.5rem;
    left: 0%;
    padding-left: 85px;
  }

  .sap-benefits .box i {
    left: 15px;
  }
}

.benefits-heading-two {
  color: #19620d;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.sap-benefits {
  background-image: url(../img/side-design_reverse.png), url(../img/side-design_home@3x.png);
  background-position: left 0, right bottom;
  background-repeat: no-repeat;
  background-size: 10%;
}

/*end sap*/
section.terms-parts {
  padding: 40px 0px;
}

.terms-parts {
  background-image: url(../img/side-design_reverse.png), url(../img/side-design_home@3x.png);
  background-position: left 0, right bottom;
  background-repeat: no-repeat;
  background-size: 11%;
}

h2.terms-heads {
  color: #114513;
  font-weight: 600;
  font-size: 2.5rem;
  text-transform: capitalize;
}

h3.three-heads-terms {
  color: #19620d;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 24px;
  text-decoration: underline;
}

p.terms-paras {
  text-align: justify;
}

/*end terms*/

h2.policy-headings {
  color: #114513;
  font-weight: 600;
  font-size: 2.5rem;
  text-transform: capitalize;
}

h2.heading-policys {
  font-size: 21px;
  font-weight: 600;
  color: #114513;
}

.heading-policys1 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

#policy-terms {
  background-image: url(../img/side-design_reverse.png), url(../img/side-design_home@3x.png);
  background-position: left 0, right bottom;
  background-repeat: no-repeat;
  background-size: 11%;
  padding: 40px 0px;
}

/*end policy*/
#breadcrum-part {
  width: 100%;
  z-index: 999;
  color: #fff;
  padding: 12px 0px 1px;
  background-color: #114513;
}

#breadcrum-part ol {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

#breadcrum-part li::after {
  content: ">";
  margin: 0 10px;
  color: #ccc;
}

#breadcrum-part li:last-child::after {
  content: "";
}

#breadcrum-part li a {
  text-decoration: none;
  color: #b9f292;
}

#breadcrum-part li {
  color: #fff;
}

/*breadcrum*/

@media (min-width: 200px) and (max-width: 767px) {
  .ex_content .ex_right .ex_text {
    padding-left: 50px !important;
    margin: -10px !important;
    width: 80% !important;
    margin: auto !important;
  }

  .logo-chooses {
    width: 50px !important;
  }

  .ex_right .col1 .expert_icon {
    height: 75px !important;
    width: 75px !important;
  }

  .ex_content .ex_right .ex_text h3 {
    font-size: 16px !important;
  }

  .ex_content .ex_right .ex_text p {
    font-size: 12px !important;
  }

  .expert_wrap .ex_content {
    display: grid !important;
  }

  .ex_content .ex_right {
    width: 100% !important;
  }

  .ex_content .ex_right::after {
    display: none;
  }

  .ex_right .col1 .expert_icon {
    top: 0px !important;
    left: 0px !important;
  }

  .ex_right_detail2 {
    left: 0px !important;
  }

  .ex_right_detail3 {
    left: 0px !important;
  }

  .ex_right_detail4 {
    left: 0px !important;
  }

  .ex_right_detail5 {
    left: 0px !important;
  }

  .ex_content .ex_left {
    display: none !important;
  }

  body {
    overflow-x: hidden;
  }

  .logo-headers {
    width: 100px;
  }

  .navbar {
    padding: 20px 10px !important;
  }

  .cmmi-logos {
    width: 45px;
  }

  #why-choose-us {
    overflow-x: hidden !important;
  }

  #services-part {
    padding: 40px 0px !important;
  }

  .icons .icon {
    width: 45px !important;
  }

  .icons1 .icon1 {
    width: 45px !important;
  }

  .icons2 .icon2 {
    width: 45px !important;
  }

  .hero-right {
    max-width: 100% !important;
  }

  .main-title {
    font-size: 18px;
  }
.description4{
  font-size: 14px;
}
  .hero {
    padding:20px;
  }
  .highlight-title {
    font-size: 22px !important;
  }

  .abouts-part {
    overflow-x: hidden;
  }

  .btn {
    padding: 6px 4px!important;
    font-size: 11px !important;
  }

  .nav-pills .nav-link.active,
  .nav-pills .show>.nav-link {
    font-size: 16px !important;
    padding: 4px !important;
  }

  .anchor-services22 {
    font-size: 16px !important;
  }

  .para-ornate {
    margin: 0px !important;
  }

  .partner {
    margin: 0 30px 0px 20px !important;
  }

  .row.rows-abouts {
    padding: 40px 0px !important;
  }

  .puzzle-background {
    display: inline !important;
  }

  img.test-secs-web {
    width: 100% !important;
  }

  .custom-web2 {
    font-size: 34px !important;
  }

  .custom-web1 {
    font-size: 24px !important;
  }

  #newsroom-details {
    padding: 10px !important;
  }

  #breadcrum-part ol {
    gap: 0px !important;
  }

  #breadcrum-part li {
    font-size: 12px !important;
  }

  #breadcrum-part li::after {
    margin: 0 3px;
  }
}


@media (min-width: 767px) and (max-width: 1400px) {
  .ex_content .ex_right {
    width: 70% !important;
  }
.certs-news-update {

    min-height: 200px;
    max-height: 200px;
 
}
  #why-choose-us {
    overflow-x: hidden !important;
  }

  .abouts-part {
    overflow-x: hidden;
  }

  .icons .icon {
    width: 60px !important;
  }

  .icons1 .icon1 {
    width: 60px !important;
  }

  .icons2 .icon2 {
    width: 60px !important;
  }

  .hero-right {
    max-width: 100% !important;
  }

  body {
    overflow-x: hidden !important;
  }

  .imgs-works {
    width: 75px !important;
    height: 75px !important;
  }

  img.work-icons {
    width: 45px !important;
    height: 45px !important;
  }

  .about-who {
    font-size: 36px !important;
  }

  .righttext-works {
    margin-left: 10px;
  }

 

  img.test-secs-web {
    width: 100% !important;
  }

  #newsroom-details {
    padding: 10px !important;
  }
}

.row.about-row1 {
  margin: 0px;
}

.row.row-Certifications {
  margin: 0px;
}

.number-part {
  display: flex;
  flex-wrap: wrap;
}
.certs-news-update {
    border: 1px solid #ccc;
    border-left: 4px solid #62a435;
    margin: 10px 0px;
    background-color: #e3e1e1;
    padding: 16px;
    border-radius: 8px;
}

p.para-updates {
    margin: 0px;
    font-weight: 600;
}
.heading-section-white2{
  color: #19620d;
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 600;
}

.hero-bannerss .icons {
    margin-top: 50px;
}
.para-vissionnew{
  margin-bottom:6px;
}
.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-item {
  flex: 1 1 300px; /* Adjust width as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.counter2{
    font-size: 2rem;
}

.para-counters1{
    min-height: 180px;
}
#web-page {
    padding: 0px 0px;
}

.web-right-heads2-new {
    color: #19620d;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0px 0px 20px 0px;
}
.services-details-lilist {
    font-size: 18px;
    color: #444;
}
.para-webs-part-updates{
  font-size: 18px;
}
.why-careers {
    color: #62a435;
    font-weight: 700;
}
/*gallery*/
.life-ornates-heads{
   color: #62a435;
   font-size: 2.5rem;
   font-weight: 700;
   text-transform: capitalize;
}

#gallery{
    padding: 60px 0px;
}

#gallery .section-padding {
  padding-top: 80px;
}

#gallery .gallery-section {
  position: relative;
  z-index: 1;
}

.title {
  font-size: 46px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #f44336;
} 

.filter {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.btn {
  padding: 10px 20px;
  margin: 5px 4px 4px 0;
  display: inline-block;
  color: #003;
  background: #eee;
  border: 1px solid #62a435;
  transition: all 0.4s;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}
.btn:hover,.btn-active {
  background: #62a435;
  color: #fff;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  /* gap: 14px; */
}
.gallery a {
  display: flex;
}
.gallery img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 10px;
}

.gallery img:hover {
  transform: scale(1.1);
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

.closeBtn {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  right: 25px;
  top: 25px;
  color: white;
  transition: 0.5s linear;
  padding: 8px 40px;
  border-radius: 25px;
  background: red;
  outline-offset: -6px;
  outline: 2px solid #fff;
}
.closeBtn:hover {
  cursor: pointer;
  background: white;
  color: black;
  outline: 2px solid #000;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}
.imgPreview {
  width: 70%;
  object-fit: scale-down;
  max-height: 40vw;
  height: auto;
}
.prevButton,
.nextButton {
  transition: 1s linear;
  padding: 10px 35px;
  font-size: 18px;
  border: none;
  color: white;
  background: #0005;
  border-radius: 10px;
  border: 1px solid white;
  margin: 10px;
}
.prevButton:hover,
.nextButton:hover {
  background: #fff;
  color: black;
}

/* resposive CSS Code */

@media (max-width: 1199px) {
  .section-padding {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 36px;
  }
  .gallery img {
    margin: 8px 8px;
    width: 175px;
  }
  .closeBtn {
    padding: 6px 25px;
  }
  .prevButton,
  .nextButton {
    font-size: 18px;
    padding: 8px 25px;
  }
}

@media (max-width: 540px) {
  .section-padding {
    padding-top: 30px;
  }
  
  .gallery img {
    margin: 8px 6px;
    width: 155px;
  }

  .closeBtn {
    font-size: 18px;
    border-radius: 15px;
  }
  .prevButton,
  .nextButton {
    font-size: 18px;
    padding: 6px 20px;
    border-radius: 10px;
    margin: 5px;
  }

  .imgPreview {
    width: 90%;
    max-height: 50vh;
    height: auto;
  }
  
}
/*end gallery*/

.read-more-service {
    border: 1px solid #ccc;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    width: max-content;
    color: #fff;
    background-color: #62a435;
}

.unordered-newsroom {
    list-style: decimal;
}

.img-deatils-newsroom {
    width: 100%;
    border-radius: 8px;
}

/*client*/
.custom-logo {
  transition: transform 0.4s ease;
  max-height: 80px; /* Adjust size as needed */
}

.logo-wrapper:hover .custom-logo {
  transform: scale(1.1);
}
/* Center the logo content in each column */
.client {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Optional: Add spacing or a fixed height to each logo cell */
.logo-wrapper {
  padding: 10px;
}

/* Custom logo styles with hover zoom effect */
.custom-logo {
  max-height: 100px;
  transition: transform 0.3s ease-in-out;
}

.logo-wrapper:hover .custom-logo {
  transform: scale(1.1);
}
.heading-ornate-clients {
    color: #62a435;
    font-weight: 700;
    text-align: center;
    margin: 20px 0px 20px 0px;
    font-size: 42px;
}
/*end client*/
#services-part .card-title  a{
  text-decoration: none;
  color:#fff;
}

.newsrooms-prs1 {
    text-align: center;
    margin-bottom:5px;
}
.heading-ornate{
    color: #62a435;
    font-weight: 700;
    text-align: center;
    margin: 20px 0px 10px 0px;
    font-size: 42px;
}

.information-divs {
    border-radius: 8px;
    padding: 10px 10px;
    margin-bottom: 10px;
    color: #114513;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-weight: 500;
    background-color: #c0e7a5;
}
.new-infos-career {
    font-weight: 600;
    font-size: 20px;
    margin: 5px;
}
.new-infos-career1{
  padding-left: 26px;
}

.carrer-maps iframe {
    margin: auto;
    width: 84%;
}

/*jobs*/
.job-card {
  background: #e7e7e7;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  max-width: 100%;
  margin: 10px auto;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
}

.job-info h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.company span {
  font-size: 0.9rem;
  color: #555;
}

.logo-job img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 6px;
}

.job-details {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #333;
  flex-wrap: wrap;
}

.job-openings {
    padding: 40px 0px 20px 0px;
    background-image: url(../img/side-design_reverse.png), url(../img/side-design_home@3x.png);
    background-position: left 0, right bottom;
    background-repeat: no-repeat;
    background-size: 10%;
}

.life-ornates-jobs {
    color: #62a435;
    font-size: 2.5rem;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 700;
}
.careers-joins-jobs {
    background-color: #62a435;
    border-radius: 8px;
    padding: 8px 8px;
}

a.join-career-btns-jobs {
    text-decoration: none;
    color: #fff;
}
#accordionFlushExample {
    border: 1px solid #ccc;
    background-color: #cccccc1f;
    padding: 10px;
    border-radius: 8px;
}

.accordion-button.collapsed {
    background-color: #cccccc1f;
    font-weight: 700;

}
.carousel-control-next-icon
 {
   background-color: #304c1d;
    border-radius: 8px;
}
.carousel-control-prev-icon {
   background-color: #304c1d;
    border-radius: 8px;
}
.primary-btn-banner {
    padding: 10px 20px;
    margin: 5px 4px 4px 0;
    display: inline-block;
    color: #fff;
    background: #62a435;
    border: 1px solid #62a435;
    transition: all 0.4s;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}
/*end*/
.mail-footers{
  text-decoration: none;
  color: #fff;
}
.icons-contacts{
  color:#444;
  text-decoration: none;
}

.policy-btns {
    background-color: #114513;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    margin: 10px 0px;
    border-radius: 8px;
}

#web-page-part{
  padding-top:50px;
}
.web-dev-card-part .web-ser-paras{
  min-height:200px;
}
.read-more-service2 {
    border: 1px solid #ccc;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    width: max-content;
    color: #62a435;
    background-color: #fff;
}

.para-webs-part-updates-news2 {
    font-size: 18px;
    margin-bottom:5px;
}
.job-dess {
    margin: 10px 0px;
}




   .apply-nows-div .job-card {
      background: #cccccc52;
      max-width: 800px;
      margin: 20px auto;
      margin: 32px auto;
      padding: 24px;
      border-radius: 12px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
    }

   .apply-nows-div .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

   .apply-nows-div .header h2 {
      font-size: 22px;
      margin: 0;
    }

  .apply-nows-div  .active-tag {
      background-color: #e6f4ea;
      color: #137333;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 6px;
      display: inline-block;
      margin-bottom: 10px;
    }

   .apply-nows-div .company-info {
      margin: 10px 0;
      color: #555;
    }

  .apply-nows-div  .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 14px;
      color: #666;
      margin: 16px 0;
    }

  .apply-nows-div  .meta div {
      display: flex;
      align-items: center;
      gap: 6px;
    }

   .apply-nows-div .apply-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 20px 0;
      font-size: 14px;
    }

  .apply-nows-div  .apply-button {
      background-color: #62a435;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
    }

  .apply-nows-div  .job-description h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

   .apply-nows-div .job-description p {
      margin-bottom: 10px;
      font-size: 14px;
      line-height: 1.6;
    }

  .apply-nows-div  .job-description ul {
      padding-left: 20px;
      font-size: 14px;
    }

 .apply-nows-div  .job-description ul li {
      margin-bottom: 8px;
    }

  .apply-nows-div  .logo {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .services-columns {
  display: flex;
  gap: 2rem; /* space between columns */
}

.services-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .services-columns {
    flex-direction: column;
  }
}
.links-columns {
  display: flex;
  gap: 2rem; /* space between columns */
}

.links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Optional responsive behavior */
@media (max-width: 600px) {
  .links-columns {
    flex-direction: column;
  }
}



/* Section Background and Layout */
#sap-part .services-section {
 background: 
    linear-gradient(to bottom right, #62a439 60%, #e6efdc 60%),
    url('../img/wordpress1.png'); /* Replace with your image URL or path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 60px 5%;
  overflow: hidden;
}

/* Header Layout */
#sap-part .services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Header Text */
#sap-part .text-content {
  max-width: 600px;
}

#sap-part .text-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}

#sap-part .text-content h1 span {
  color: white;
}

#sap-part .text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #fff;
}

/* Right Side Illustration */
#sap-part .image-content img {
  max-width: 100%;
  width: 100%;
}

/* Cards Container */
#sap-part .services-cards {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual Service Card */
#sap-part .card {
  background-color: white;
  color: #4b2e83;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
  position: relative;
  flex: 1 1 calc(33.333% - 40px); /* Three cards per row */
  min-width: 280px;
  max-width: 400px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effect */
#sap-part .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

/* Card Title */
#sap-part .card h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.5rem;
}

/* Card Text */
#sap-part .card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 40px; /* so it doesnÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢t overlap corner icon */
}

/* Corner Icon Button */
#sap-part .corner-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ff6d3d;
  color: white;
  padding: 12px;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 20px;
  font-size: 1.1rem;
}

/* Responsive: Two cards per row on tablets */
@media (max-width: 1024px) {
 #sap-part .card {
    flex: 1 1 calc(50% - 40px);
  }
}

/* Responsive: One card per row on small screens */
@media (max-width: 600px) {
 #sap-part .card {
    flex: 1 1 100%;
  }

 #sap-part .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

 #sap-part .image-content {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }

 #sap-part .image-content img {
    max-width: 200px;
  }
}

.paras-sap-adds {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
    color: #fff;
}
.new-rights{
  margin-right:8px;
}
.news-certs {
    margin: 0px;
}
.work-icons1 {
    width: 70px;
    margin-bottom: 5px;
}
.noida-loctaion{
  padding-left: 16px;
}


@media (min-width: 767px) and (max-width: 1400px) {
  .row-threes {
    display: grid;
    flex-wrap: wrap;
  
  }
.three-aboust-part {
    display: contents;
}
  .puzzle-background {
    display: grid;
  }

}

.hero1 .item {
  height: 75vh;
  position: relative;
}
.hero1 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero1 .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
.hero1 .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
.hero1 .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.hero1 .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
.hero1 .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
.hero1 .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.hero1 .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero1 .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero1 .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.hero1 .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.hero1 .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: none;
  z-index: 1000;
  border-radius: 0;
}
.hero1 .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.hero1 .owl-nav .owl-prev:focus {
  outline: 0;
}
.hero1 .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.hero1 .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: none;
  z-index: 1000;
  border-radius: 0;
}
.hero1 .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.hero1 .owl-nav .owl-next:focus {
  outline: 0;
}
.hero1 .owl-nav .owl-next:hover {
  background: #000 !important;
}
.hero1:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.hero1:hover .owl-next {
  right: 0px;
  opacity: 1;
}
.hero1 .owl-dots {
    display: none;
}

.hero1 .owl-nav button {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.hero1 .owl-nav .owl-prev {
  left: 10px;
}

.hero1 .owl-nav .owl-next {
  right: 10px;
}
.clients-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.ours-clients12 {
    margin: 20px 0px 10px 0px;
    background-color: #19620d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
}
.sitename {
    border-radius: 8px;
    background-color: #fff;
    padding: 10px;
}



.testimonial_section {
  display: block;
  overflow: hidden;
  padding: 100px 0px 50px 0px;
  overflow: hidden;
  background-image: url(../img/side-design_reverse.png), url(../img/side-design_home@3x.png);
  background-position: left 0, right bottom;
  background-repeat: no-repeat;
  background-size: 10%;
}
.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content {
  background-color: #020d26;
  padding-top: 77px;
  padding-right: 210px;
  padding-left: 100px;
  padding-bottom: 62px;
  position: relative;
}
.testimonial_section .about_content .background_layer {
  background-color: #000;
  width: auto;
  margin-left: 0px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}
.testimonial_section .about_content .layer_content .section_title h2 {
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}
.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}
.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}
.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #62a426;
}
.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}
.testimonial_section .about_content .layer_content a {
  color: #fff;
  background-color: #62a426;
  padding: 10px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}
.testimonial_section .about_content .layer_content a:hover {
  color: #fff;
}
.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container {
  background-color: #c6c6c6;
  margin-left: -170px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: #c6c6c6ba;
  width: auto;
  margin-right: 0px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
  padding: 50px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: #ff5e14;
  position: absolute;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #020d26;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: #ff5e14;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: #020d26;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: #ff5e14;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: #020d26;
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding: 32px!important;
  }
  .testimonial_section .about_content .background_layer {
    width: 100% !important;
  }
  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }
  .testimonial_section .testimonial_box .background_layer {
    width: 100% !important;
    margin-left: 0px;
  }
  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: 0px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }
}


.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: #ff5a6e;
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.site-heading h4::before {
  background: #ff5a6e none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading h2 span {
  color: #ff5a6e;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}

.team-area .single-item {
  margin-bottom: 0px;
}
.leader-icons{
  color: #0077B5;
}
.team-area .item .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.team-area .item .thumb::after {
  background: #232323 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
}

.team-area .team-items .item:hover .thumb::after {
  opacity: 0.7;
}

.team-area .item .thumb .overlay {
  top: -100%;
  left: 0;
  padding: 20px;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: 1;
}

.team-area .item:hover .thumb .overlay {
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.team-area .item .thumb .overlay p {
  color: #ffffff;
}

.team-area .item .thumb .overlay h4 {
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}

.team-area .item .thumb img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 8px 8px 0px 0px;
  width: 100%;
}

.team-area .item:hover .thumb img {
  opacity: .6;
}

.team-area .item .thumb .social li {
  display: inline-block;
}

.team-area .item .thumb .social li a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin: 0 2px;
  text-align: center;
  width: 40px;
}

.team-area .info {
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  padding: 40px 20px 20px;
  position: relative;
  text-align: center;
  z-index: 9;
  border-radius: 0px 0px 8px 8px;
}

.team-area .info .message {
  height: 50px;
  line-height: 40px;
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

.team-area .info .message a {
  background: #fff none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  box-sizing: border-box;
  color: #ff5a6e;
  display: inline-block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  width: 50px;
}

.team-area .info .message a i {
  font-weight: 500;
}

.team-area .info h4 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0px!important;
}

.team-area .info span {
  color: #5a5e56;
  font-weight: 400;
  font-size: 15px;
}

.team-area .social li.twitter a {
  background-color: #00b6f1;
}

.team-area .social li.pinterest a {
  background-color: #bd081c;
}

.team-area .social li.facebook a {
  background-color: #3b5998;
}

.team-area .social li.google-plus a {
  background-color: #df4a32;
}

.team-area .social li.vimeo a {
  background-color: #1ab7ea;
}

.team-area .social li.instagram a {
  background-color: #cd486b;
}

.leaders-details-page .item {
    margin-bottom: 20px;
}


/*msg*/
.msgs-part {
    border: 1px solid #62a42638;
    background-color: #0f5757;
    background-color: #62a4263d;
    width: 300px;
    margin: auto;
    height: 300px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 50%;
}

.dg-img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 10px;
}

section#messages {
    padding: 20px 0px;
    margin-top: 120px;
  background-image: #ccc;
}

p.msgs-part1 {
    margin: 0px 0px 6px 0px;
}

h2.msg-headings {
    color: #62a426;
    font-weight: 600;
}

p.paras-msg {
    /* margin: 5px 0px; */
    color: #444;
    /* margin-bottom: 2.928vw; */
    padding-top: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    hyphens: auto;
    text-align: justify;
}

.msgs-part1 {
    margin: auto 0px auto 16px;
}

.cols-msgs1 {
    margin: auto;
}
.msgs-part-dg {
	margin:5px 0px;
	color: #333;
}
.rows-msg {
    border: 1px solid #8080805e;
    background-color: #0f5757;
    background: #f1eaea6e;
    margin: 20px 13px;
    padding: 50px 20px;
    align-items: center;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.leaders-details-page {
    padding: 50px 0px;
}

.heading-leaders {
    font-size: 2.5rem;
    text-transform: capitalize;
    font-weight: 500;
    color: #114513;
    margin: 0px 13px;
}

.paras-leaders-new {
    margin: 20px 13px;
    font-size: 18px;
    margin-bottom: 2.928vw;
    font-weight: 500;
    line-height: 30px;
}
.leaders-details-page .testimonial_box {
    padding: 20px 0px;
}

.custom-logo {
  max-height: 180px!important;
  max-width: 180px!important;
  min-width: 180px;
  transition: transform 0.3s ease-in-out;
}

.custom-nav {
  text-align: center;
  margin-bottom: 15px;
}

.custom-nav button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 8px 14px;
  margin: 0 50px;
  font-size: 16px;
  /* left: 20px; */
  cursor: pointer;
  width: 40px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
 

.custom-nav button:hover {
  background-color: #62a426;
}


/*end*/

@media (min-width: 200px) and (max-width: 767px) {

  .hero1 .item .cover .header-content h2 {
    font-size: 22px;
  }
  
  .hero1 .item .cover .header-content h1 {
    font-size: 32px;
  }

  .hero1 .item .cover .header-content h4 {
    font-size: 18px;
    line-height: 25px;
  }
  .hero1 .item .cover .header-content {
    padding: 36px 20px;
 }
 #abouts-page .item {
    margin-bottom: 10px;
  }
  .testimonial_section .testimonial_box .testimonial_container .background_layer {
    background-color: #c6c6c6;
    width: 100%!important;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content {
    background-color: #c6c6c6;
    padding: 20px;
  }
  .testimonial_section .container{
    padding:0px;
  }
  .row.join-rows {
    width: 98%;
    margin: auto;
  }
  .five-grid {
    gap: 20px 5px;
  }
  .msgs-part{
    margin: 10px auto 10px 5px;
    width: 220px;
    height: 220px;
  }
  .dg-img {
    width: 220px;
    height: 220px;
  }
  .rows-msg {
    padding: 20px 5px;
  }
  .msgs-part1 {
    margin: 0px;
  }
}


@media (min-width: 991px) and (max-width: 1200px) {
     .testimonial_section .about_content .layer_content .section_title h2 {
          font-size: 40px;
     }
     .testimonial_section .about_content {
          padding-left: 50px;
    }
}
