﻿/*---------------------------------------------------------------------------------

    Template Name: Greeno
    Version      : 1.0
    Author: KAPTAS Technologies

-----------------------------------------------------------------------------------
/*============================
    1. Variables
============================*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary: #48B774;
  --secondary: #0EA5E9;
  --block: #111111;
  --white: #ffffff;
  --text-gray: #303030;
  --tab-green-bg: #F8FFF4;
  --light-green-bg: #EFF3EF;
  --gradient-bg: linear-gradient(#22C55E 0%, #0EA5E9 100%);
  --gradient-but-bg: linear-gradient(#07a140 0%, #0e84bb 100%);
  --dark-gradient-bg: linear-gradient(#188A45 0%, #012A3C 100%);
  --gray-bg: #EAE9E9;
  --block-bg: #1D1D1D;
  --footer-bg: #0D2146;
  --footer-text: #EFEFEF;
  --footer-btm-text: #A5A1A1;
  --border-color: #e7e7e7;
  --manrope: "Manrope", sans-serif;
}

/*============================
    2. Base
============================*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  background-color: var(--white);
  color: var(--block);
  scroll-behavior: smooth;
  overflow-x: hidden;
  letter-spacing: 0.5px;
  line-height: 26px;
}

a {
  text-decoration: none;
  color: var(--block);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--block);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: 36px;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 36px;
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
}

@media (max-width: 991.98px) {
  h3 {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
}

@media (max-width: 991.98px) {
  h4 {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  h5 {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  h6 {
    font-size: 16px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  color: var(--block);
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

/*============================
    3. Button
============================*/

button {
  cursor: pointer;
}

button:focus {
  outline: 0;
  box-shadow: none;
}

.primary-btn {
  position: relative;
  overflow: hidden;
  color: var(--block);
  border: 1px solid var(--block);
  background-color: var(--white);
  font-size: 17px;
  font-weight: 500;
  padding: 11px 25px;
  cursor: pointer;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.primary-btn:hover {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #00e676, #00b0ff) border-box;
  border-style: solid;
  border-color: transparent;
  border-width: 1px 1px 2px 2px;
  transition: all 0.5s ease;
}

.primary-btn:hover svg path {
  fill: var(--primary);
}

@media (max-width: 575.98px) {
  .primary-btn {
    font-size: 15px;
    padding: 8px 16px;
  }
}

/*============================
    4. Border
============================*/
.border-gradient {
  border: 1px solid var(--gradient-bg);
}

.border-gray {
  border: 1px solid #DFE8DF;
}

.dark-bg-border {
  border: 1px solid #313131;
}

/*============================
    5. Card
============================*/
.card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  color: inherit;
}

.card .card-title {
  color: var(--gray-900);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
}

.card .card-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0px 0px 20px 0px;
  margin: 0px 0px 20px;
}

.card-body {
  padding: 20px;
}

.card-footer {
  background-color: var(--white);
  border-color: var(--border-color);
  padding: 15px 20px;
}

p:last-child {
  margin-bottom: 0;
}

/*============================
    5. Font size
============================*/
.font-10 {
  font-size: 10px;
}

.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

.font-18 {
  font-size: 18px;
}

.font-19 {
  font-size: 19px;
}

.font-20 {
  font-size: 20px;
}

.font-21 {
  font-size: 21px;
}

.font-22 {
  font-size: 22px;
}

.font-23 {
  font-size: 23px;
}

.font-24 {
  font-size: 24px;
}

.font-25 {
  font-size: 25px;
}

.font-26 {
  font-size: 26px;
}

.font-27 {
  font-size: 27px;
}

.font-28 {
  font-size: 28px;
}

.font-29 {
  font-size: 29px;
}

.font-30 {
  font-size: 30px;
}

.font-31 {
  font-size: 31px;
}

.font-32 {
  font-size: 32px;
}

.font-33 {
  font-size: 33px;
}

.font-34 {
  font-size: 34px;
}

.font-35 {
  font-size: 35px;
}

.font-36 {
  font-size: 36px;
}

/*============================
    6. Font weight
============================*/
.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}

/*============================
    7. color
============================*/
.white {
  color: var(--white);
}

.block {
  color: var(--block);
}

.green {
  color: var(--primary);
}

/*============================
 sub menus
==============================*/
header .main-nav>li {
  position: relative;
}

header .main-nav>li>ul {
  background-color: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  display: block;
  font-size: 14px;
  left: 0;
  margin: 0;
  min-width: 230px;
  opacity: 0;
  padding: 16px 0;
  position: absolute;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  transform-origin: top center;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  top: 100%;
  visibility: hidden;
  z-index: 1000;
}

header .main-nav li .submenu li a {
  color: var(--block);
  padding: 0px 15px 10px !important;
  display: block;
  font-size: 16px;
}

header .main-nav li .submenu li:last-child a {
  padding-bottom: 0 !important;
}

header .main-nav li.has-submenu:hover>.submenu {
  visibility: visible;
  opacity: 1;
  margin-top: 15px;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  border-radius: 6px;
}

header .main-nav li.has-submenu a i {
  transition: transform 0.3s ease;
  vertical-align: middle;
  display: inline-block;
}

header .main-nav li.has-submenu:hover>a i {
  transform: rotate(180deg);
  background: none;
  -webkit-text-fill-color: #0EA5E9;
  color: #0EA5E9;
}




/*============================
    7. Header
============================*/
header {
  background: transparent;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 111;
  -webkit-transition: all 0.9s;
  -ms-transition: all 0.9s;
  transition: all 0.9s;
}

header.fixed-top1 {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.9s;
  -ms-transition: all 0.9s;
  transition: all 0.9s;
  background-color: var(--block);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(--box-shadow);
}

header .header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.logo img {
  max-height: 50px;
  margin: 10px 0;
}

.navbar-nav.main-nav li a {
  color: var(--white);
  padding: 0 50px 0 0 !important;
  font-size: 17px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.navbar-nav.main-nav li:last-child a {
  padding-right: 0 !important;
}

.navbar-nav.main-nav li a.active {
  background: var(--gradient-bg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav.main-nav li a:hover {
  background: var(--gradient-bg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*============================
    8. Home 
============================*/
section {
  padding: 60px 0;
}

.banner {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: -100px;
  position: relative;
  background: url(../images/banner-img.jpg) no-repeat;
  background-size: cover;
  height: 800px;
  z-index: 1;
  padding: 0;
}

.banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: -1;
}

.slider-cnt {
  width: 100%;
  display: block;
  margin-top: 230px;
}

.banner-arrow-img {
  animation: horizontalMove 1.5s ease-in-out infinite alternate;
}

@keyframes horizontalMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0);
  }
}

.banner-title {
  font-size: 50px;
  color: var(--white);
  line-height: 65px;
  max-width: 455px;
  font-family: var(--manrope);
}

.banner-title .stroke-text {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-family: 'roboto', sans-serif;
}

.circle-img {
  float: right;
  max-width: 135px;
  margin-top: -50px;
  margin-right: 80px;
  width: 100%;
  position: relative;
}

.g-logo-icon {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 135px;
  z-index: 999;
}

.circle-btn a {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient-bg);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-family: var(--manrope);
  font-weight: 600;
  color: var(--white);
  margin: 80px 0 0 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.circle-btn a:after,
.circle-btn a:before {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-image: var(--gradient-but-bg);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-180deg);
  transform-origin: left;
  transition: 0.4s ease-out;
  z-index: -1;
}

.circle-btn a:hover:after,
.circle-btn a:hover:before {
  top: 0;
  left: 0;
  transform: rotate(0deg);
  transition: 0.4s ease-out;
}

.circle-btn a:before {
  transition-delay: 0.15s;
}

.circle-btn svg {
  max-width: 32px;
}

.main-banner-text {
  max-width: 500px;
  color: var(--white);
  line-height: normal;
  margin: 95px 0 0 50px;
  overflow: hidden;
}

.rotate-circle {
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes horiaontalmove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0);
  }
}

.home-about-us {
  width: 100%;
  display: block;
  background: var(--light-green-bg) url(../images/vector-bg.svg) no-repeat center center/100%;
  background-size: cover;
  padding: 0;
}

.h-about-card {
  width: 100%;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  top: -70px;
}

.h-about-img {
  position: relative;
  overflow: hidden;
}

.zoom-section {
  position: relative;
  overflow: hidden;
}

.zoom-img {
  width: 60%;
  transform: scale(1);
}

.h-about-img img {
  max-width: 375px;
  border-radius: 15px;
  margin-top: 100px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.common-divider {
  margin-top: 10px;
}

.h-abt-para-text {
  margin-top: 40px;
  margin-left: 100px;
}

.c-list {
  width: 100%;
  margin-top: 25px;
}

.c-list li {
  padding-bottom: 15px;
  background: url(../images/tick.svg) no-repeat;
  padding-left: 35px;
  background-size: 20px 20px;
}

.home-why-choose {
  width: 100%;
  display: block;
  overflow: hidden;
}

.h-why-choose-cnt ul li {
  padding: 25px 20px;
  border-bottom: 1px solid #DFE8DF;
  transition: all 0.5s ease
}



.h-why-choose-cnt {
  margin-top: 20px;
}

.why-choose-icon {
  margin-right: 25px;
}

.why-choose-cnt {
  margin-right: 25px;
}

.why-choose-cnt p {
  font-size: 16px;
  max-width: 505px;
  width: 100%;
}

.why-choose-arrow {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  border-radius: 50%;
  flex: 0 0 55px;
  margin-top: 15px;
  transition: all 0.5 ease;
}

.h-why-choose-cnt ul li {
  cursor: pointer;
}

.h-why-choose-cnt ul li:last-child {
  border-bottom: 0;
}

.h-why-choose-cnt ul li.active {
  transition: all 0.5s ease;
  background: var(--tab-green-bg);

}

.h-why-choose-cnt ul li.active .why-choose-arrow {
  background-image: var(--gradient-bg);
}

.h-why-choose-cnt ul li.active .why-choose-arrow svg path {
  fill: #fff;
}

.h-why-choose-cnt ul li:hover .why-choose-arrow {
  transform: translate(5px, -5px);
}

.why-choose-arrow {
  transition: all 0.5s ease;
}

.why-choose-prev-img {
  margin-top: 70px;
}

.change-prev-img img {
  max-width: 330px;
  border-radius: 15px;
  transform: rotate(-7deg);
  transition: transform 0.5s ease, opacity 0.3s ease;
  margin-left: 30px;
}

.change-prev-img {
  position: relative;
  max-width: 330px;
}

.change-prev-img::before {
  content: '';
  position: absolute;
  top: -23px;
  left: 50px;
  width: 20px;
  height: 75px;
  background-image: var(--gradient-bg);
  z-index: 9;
  transform: rotate(-7deg);
  opacity: 0;
}

.change-prev-img::after {
  content: '';
  position: absolute;
  bottom: -23px;
  right: -5px;
  width: 20px;
  height: 75px;
  background-image: var(--gradient-bg);
  z-index: 9;
  transform: rotate(-7deg);
  opacity: 0;
}

.change-prev-img.show-shapes::before,
.change-prev-img.show-shapes::after {
  opacity: 1;
}

.home-service-sec {
  width: 100%;
  display: block;
  background: var(--block-bg);
}

.services {
  width: 100%;
  display: block;
  margin-top: 60px;
}

.services .services-card,
.services-new .services-card {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  background: var(--block-bg);
  --start: 0;
  position: relative;
  transition: border-color 0.3s ease-in-out;

}

.services .items {
  width: 100%;
  float: left;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 3px;
}

.services-img {
  height: 60px;
  margin-bottom: 20px;
}

.services-img img {
  max-width: 50px;
}

.services-img .service-img-1 {
  max-width: 60px;
}

.services-card h4 {
  height: 58px;
  margin-bottom: 20px;
}

.read-more-btn {
  margin-top: 30px;
  display: block;
  font-family: var(--manrope);
}

.services-card:hover .read-more-btn {
  color: var(--primary);
}

.read-more-btn i {
  margin-left: 10px;
  transform: rotate(-35deg);
}

.services .owl-nav div,
.testimonials .owl-nav div {
  width: 50px;
  height: 50px;
  background: transparent;
  line-height: 44px;
  color: #9d6b34;
  bottom: 40%;
  color: #777777;
  position: absolute;
  transform: translateY(0%);
  text-align: center;
  background:
    linear-gradient(#1b1b1b, #1b1b1b) padding-box,
    linear-gradient(135deg, #00e676, #00b0ff) border-box;
  border: 1px solid transparent;
  transition: 0.3s;
  right: -10%;
  font-size: 20px;
  z-index: 1;
  border-radius: 50%;
}

.services .owl-nav div,
.testimonials .owl-nav div {
  bottom: 23%;
}

.services .owl-nav,
.testimonials .owl-nav {
  display: block !important;
}

.services .owl-nav .owl-prev,
.testimonials .owl-nav .owl-prev {
  left: -10%;
}

.services .owl-nav button,
.testimonials .owl-nav button {
  outline: none;
  border: none;
  background: none;
  line-height: normal;
}

.services .owl-nav .owl-next img,
.testimonials .owl-nav .owl-next img {
  transform: rotate(180deg);
}

.services .owl-nav button img,
.testimonials .owl-nav button img {
  max-width: 26px;
}

.services .owl-nav .owl-prev,
.testimonials .owl-nav .owl-prev {
  right: 10%;
  top: -30%;
  left: auto;
}

.services .owl-nav div {
  right: 4%;
  top: -30%;
  left: auto;
}

.testimonials .owl-nav div {
  right: 2%;
  top: -30%;
  left: auto;
}

.testimonials .owl-nav .owl-prev {
  right: 10%;
  top: -30%;
  left: auto;
}

.testimonials .owl-nav div {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #00e676, #00b0ff) border-box;
}

.services .services-card {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  background: var(--block-bg);
  position: relative;
  transition: border-color 0.5s ease-in-out;
}

.services-card {
  min-height: 438px;
}

.services-cnt p {
  min-height: 182px;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.services-card::after,
.services-card::before {
  content: '';
  position: absolute;
  height: 101.5%;
  width: 101.5%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  padding: 1.5px;
}

.services-card::after {
  background-image: conic-gradient(from var(--angle), #22C55E, #0EA5E9);
}

.services-card::before {
  background-image: conic-gradient(from var(--angle), #22C55E, #0EA5E9);

}

.services-card:hover::after,
.services-card:hover::before {
  opacity: 1;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}


.home-paralex-sec {
  width: 100%;
  display: block;
  position: relative;
  background: url(../images/parallex-bg.jpg)no-repeat;
  background-size: cover;
  height: 400px;
}

.home-paralex-sec::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--dark-gradient-bg);
  opacity: 0.8;
}

.home-paralex-sec .text-svg h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 9;
  font-family: 'roboto', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px white;
  width: 100%;
  text-align: center;
  letter-spacing: 4px;
}

.testimonial-cnt p {
  max-width: 570px;
  margin-top: 50px;
}

.testimonial-img {
  border-radius: 12px;
  /* Ensure it wraps the image */
}

.testimonial-img img {
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

/* Hover Zoom effects */
.testimonial-img:hover img,
.h-about-img:hover img {
  transform: scale(1.05);
}

.h-about-img img {
  transition: transform 0.6s ease;
}

.home-testimonial .card {
  border-radius: 15px;
  min-height: 400px;
  margin-bottom: 0;
}

.home-testimonial .card p {
  color: #303030;
  line-height: 30px;
}

.home-testimonial .card .card-body {
  padding: 30px;
}

.t-client-info {
  border-top: 1px solid #DFE8DF;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: center;
}

.t-client-info .t-client-details h4 {
  margin-bottom: 5px;
  color: var(--primary);
}

.quote-img {
  position: absolute;
  bottom: 30px;
  right: 40px;
}

.home-contact {
  width: 100%;
  display: block;
  background: var(--light-green-bg) url(../images/vector-bg.svg) no-repeat center center/100%;
  background-size: cover;
}

.home-contact .circle-btn {
  display: flex;
  justify-content: center;
  margin-top: -30px;
}

.h-contact-text {
  padding-left: 100px;
  margin-top: 35px;
}

.contact-shpae {
  text-align: center;
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/*============================
    9. Footer
============================*/
.footer {
  width: 100%;
  display: block;
  padding: 50px 0 0;
  background: var(--footer-bg);
}

.footer h3 {
  color: var(--white);
  margin-bottom: 30px;
}

.footer p {
  color: var(--footer-text);
  font-family: var(--manrope);
  font-size: 15px;
}

.footer ul li {
  padding-bottom: 15px;
}

.footer ul li a {
  color: var(--footer-text);
  font-family: var(--manrope);
  font-size: 15px;
  transition: all 0.5s ease;
}

.footer ul li a:hover {
  color: var(--primary);
}

.social-icons {
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #122953;
  padding: 7px !important;
  align-items: center;
  display: flex !important;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.social-icons a:hover {
  background: var(--gradient-bg);
}

.copy-text {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
}

.copy-text p {
  color: var(--footer-btm-text);
}

.copy-text a {
  color: var(--footer-btm-text);
  padding-left: 30px;
  font-size: 15px;
  font-family: var(--manrope);
  transition: all 0.5s ease;
}

.copy-text a:hover {
  color: var(--primary);
}

.scrollToTop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  background: none;
  border: none;
  cursor: pointer;
}

.scrollToTop i {
  color: #fff;
  font-size: 30px;
  display: block;
  height: 37px;
  transition: all 1s ease 0s;
  width: 37px;
  border-radius: 50px;
  -ms-transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  background: var(--gradient-bg);
  line-height: 37px;
  font-size: 20px;
}

/*============================
    9. Animation
============================*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.fadeInSmooth {
  animation-name: fadeInSmooth;
  animation-fill-mode: both;
}

@keyframes fadeInSmooth {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*============================
    9. Inner Banner
============================*/
.inner-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -100px;
  background: url(../images/inner-banner.jpg) no-repeat;
  height: 320px;
  background-size: cover;
}

.inner-banner h1 {
  font-size: 42px;
  margin-top: 30px;
}

/*============================
    10. About us
============================*/
.home-about-us.about-us-sec-1 {
  background: #fff;
  margin-top: 0;
}

.home-about-us.about-us-sec-1 .h-about-card {
  margin-top: 0;
  border-radius: 0;
  top: 0;
}

.h-abt-cnt.abouts-sec1-cnt {
  margin-right: 30px;
}

.about-us-mission {
  width: 100%;
  display: block;
  background: var(--block-bg);
  background-size: cover;
}

.about-us-sec-2 {
  margin-top: 0;
  padding: 60px 0;
}

.abouts-sec2-cnt {
  padding-left: 50px;
}

.about-us-sec-2 .h-about-card {
  top: 0;
  padding: 0;
  background: transparent;
}

.vision-img img {
  max-width: 440px;
  border-radius: 12px;
  margin-top: 30px;
  width: 100%;
}

.mission-card {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  background: var(--block-bg);
  position: relative;
  transition: border-color 0.5s ease-in-out;
  margin-bottom: 20px;
}

.mission-vision-sec {
  margin-top: 30px;
}

.about-businees-sec {
  display: block;
  width: 100%;
}

.abt-bussiner-card {
  display: block;
  align-items: center;
  border: 1px solid #C9D7C9;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  min-height: 240px;
}

.abt-bussiner-card h5 {
  margin-top: 10px;
}

.abt-bussiner-card p {
  font-size: 16px;
}

.bussiner-card-icon {
  min-height: 80px;
}

.about-us-sec-5 {
  background: #ffffff;
}

.about-sec-6 {
  background: var(--light-green-bg) url(../images/vector-bg.svg) no-repeat center center / 100%;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.about-sec-6 .services-cnt h4 {
  height: auto;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-sec-6 .services-card {
  min-height: 390px;
}

.about-sec-6 .services-card p {
  font-size: 15px;
}

.about-sec-7 {
  width: 100%;
  background: var(--block-bg);
}

.infor-logo img {
  max-width: 200px;
  margin-right: 40px;
}

/*============================
    11. Services
============================*/
.inner-banner.service-banner {
  background: url(../images/service-banner.jpg) no-repeat;
}

.services-sec-1 {
  width: 100%;
  display: block;
  position: relative;
}

.service-arrow {
  padding-left: 30px;
  padding-right: 50px;
  animation: verticalMove 1.5s ease-in-out infinite alternate;
  margin-top: 10px;
}

.service-sec-1-cnt {
  margin-top: 30px;
  padding-left: 130px;
}

.service-shape {
  position: absolute;
  right: 0;
  top: 10px;
}

.service-shape img {
  max-width: 90px;
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes verticalMove {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

.services-new .service-new-card {
  background: var(--white);
  border: 1px solid #E7E7E7;
  margin-bottom: 25px;
}

.services-card .read-more-btn i,
.service-new-card .read-more-btn i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  margin-left: 5px;
}

.services-card:hover .read-more-btn i,
.service-new-card:hover .read-more-btn i {
  transform: translateX(10px);
  color: var(--primary);
}


.services-new .service-new-card p {
  min-height: 182px;
}

.about-us-mission.services-new {
  background-size: cover;
  position: relative;
  z-index: 99;
}

.Service-related-blog .services-card h4 {
  height: auto;
}

.Service-related-blog .services-card {
  min-height: auto;
}

.Service-related-blog .services-card p {
  min-height: auto;
}

.Service-related-blog .services-card .services-img {
  height: auto;
}

.Service-related-blog .services-card .services-img .service-img-1 {
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
}

/*============================
    GSAP Image reveal and parallax
============================*/
.reveal-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

/* .reveal-overlay removed as sliding reveal is disabled */

.gsap-reveal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  border-radius: 12px;
}

/*============================
    Service Details
============================*/
.services-details-1 {
  width: 100%;
  display: block;
}

.services-details-1 img {
  max-width: 600px;
  border-radius: 12px;
}

.services-details-1 .service-1-details-cnt {
  padding-left: 30px;
}

/* Services Details 2 - Feature Tabs */
.services-details-2 {
  background-color: var(--white);
  padding: 60px 0;
}

.feature-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}

.feature-title {
  position: relative;
  display: inline-block;
}

.feature-title .dots {
  display: inline-flex;
  gap: 5px;
  margin-left: 10px;
}

.feature-title .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feature-title .dots span:nth-child(1) {
  background-color: var(--primary);
}

.feature-title .dots span:nth-child(2) {
  background-color: var(--secondary);
}

.feature-title .dots span:nth-child(3) {
  background-color: var(--primary);
  opacity: 0.5;
}

.feature-nav {
  list-style: none;
  padding: 0;
  margin-top: 0px;
  border-left: 2px solid var(--border-color);
  position: relative;
}

.feature-nav li {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  list-style: none;
  color: #555;
}

.feature-nav li.active {
  color: var(--primary);
}

.feature-nav li::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.feature-nav li.active::before {
  background-color: var(--primary);
}

.feature-right-cnt {
  padding-left: 50px;
  border-left: 1px solid var(--border-color);
}

.feature-item {
  display: none;
  animation: fadeIn 0.5s ease;
  margin-top: 15px;
}

.feature-item.active {
  display: block;
}


.feature-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item p {
  font-size: 18px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .feature-right-cnt {
    padding-left: 0;
    border-left: none;
    margin-top: 50px;
  }

  .feature-title {
    font-size: 32px;
  }
}

/*============================
    20. Accordion
============================*/
.home-contact.industry-sec-2 {
  background: var(--light-green-bg);
  position: relative;
  z-index: 1;
}

.industry-sec-1 h2 {
  width: 92%;
}

.industries-sec-2-cnt {
  position: sticky;
  top: 0;
}

.industries-sec-2-cnt h2 {
  width: 96%;
}

.custom-accordion {
  width: 100%;
  padding-left: 20px;
}

.industries-sec-2-img img {
  border-radius: 12px;
  margin-top: 15px;
}

.industry-contact {
  background: var(--block-bg);
}

.custom-accordion-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.7s ease;
}

.custom-accordion-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(72, 183, 116, 0.1);
}

.custom-accordion-header {
  padding: 13px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.custom-accordion-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--block);
  transition: all 0.3s ease;
}

.custom-accordion-header:hover h5 {
  color: var(--primary);
}

.custom-accordion-item.active .custom-accordion-header h5 {
  color: var(--primary);
}

.accordion-icon {
  width: 35px;
  height: 35px;
  background: var(--light-green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-accordion-item.active .accordion-icon {
  background-image: var(--gradient-bg);
  transform: rotate(180deg);
}

.accordion-icon::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--primary);
  transition: all 0.4s ease;
  margin-left: 2px;
}

.custom-accordion-item.active .accordion-icon::before {
  color: var(--white);
}

.custom-accordion-content {
  max-height: 0;
  overflow: hidden;
}

.custom-accordion-item.active .custom-accordion-content {
  max-height: none;
}

.custom-accordion-body {
  padding: 0 25px 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.custom-accordion-body p {
  font-size: 16px;
  margin-bottom: 15px;
}

.custom-accordion-body ul {
  margin-top: 15px;
  padding: 0;
}

.custom-accordion-body ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  list-style: none;
  padding-bottom: 0;
}

/* Reveal & Parallax Animations */
.reveal-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 95%;
}

.gsap-reveal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.5s ease-out;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/*============================
    21. Read more
============================*/
.read-more-sec-1 .service-1-details-cnt {
  padding-right: 30px;
}

.read-more-cnt-2 {
  padding-left: 30px;
}

.read-more-sec-4 .card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 13px;
}

.read-more-sec-4 .card .card-body {
  padding: 25px;
}

.qoute-img img {
  transform: rotate(-180deg);
  max-width: 50px;
  margin-right: 20px;
}

/*============================
    22. Products
============================*/
.product-list .change-prev-img {
  max-width: 350px;
}

.product-list .change-prev-img img {
  max-width: 350px;
}

.why-choose-prev-img.product-list {
  margin-top: 40px;
}

.product-sec-2 {
  padding-top: 0;
}

.product-sec-3 {
  width: 100%;
  display: block;
  background: var(--light-green-bg) url(../images/vector-bg.svg) no-repeat center center / 100%;
  background-size: cover;
}

.product-sec-3 .payroll-img img {
  max-width: 95%;
  width: 100%;
  border-radius: 12px;
}

.product-sec-4 {
  width: 100%;
  display: block;
}

.product-sec-4 .payroll-img img {
  max-width: 95%;
  width: 100%;
  border-radius: 12px;
  margin-left: 30px;
}

/*============================
    22. contact us
============================*/
.contact-card {
  min-height: auto;
  height: auto;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--gradient-bg);
  flex: 0 0 50px;
}

.contact-card h4 {
  min-height: auto !important;
  height: auto !important;
  margin-bottom: 10px;
}

.contact-card p {
  min-height: auto !important;
  height: auto !important;
}

.contact-form {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #fff;
  padding: 15px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  height: 50px;
}

.contact-form textarea {
  height: auto;
}

.form-controls button:hover {
  color: var(--primary);
}

.contact-sec-2 {
  width: 100%;
  display: block;
}

/*============================
    23. Service details
============================*/
.service-details .feature-img img {
  width: 85%;
}

.service-details-sec-4 .services-card {
  height: auto;
  min-height: 160px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}

.service-details-sec-4 .services-card h4 {
  height: auto;
  min-height: auto;
  margin-bottom: 0;
  font-size: 18px;
}

.service-details-sec-4 .services-card .services-icon {
  min-height: 65px;
  margin-bottom: 10px;
}

/*============================
    24. Product details
============================*/
.hr-dashboard-bt-img img {
  margin-top: 45px;
  border-radius: 12px;
}

.hcm-dashboard .owl-nav div {
  width: 50px;
  height: 50px;
  background: transparent;
  line-height: 44px;
  color: #9d6b34;
  bottom: 40%;
  color: #777777;
  position: absolute;
  transform: translateY(0%);
  text-align: center;
  background:
    linear-gradient(#1b1b1b, #1b1b1b) padding-box,
    linear-gradient(135deg, #00e676, #00b0ff) border-box;
  border: 1px solid transparent;
  transition: 0.3s;
  right: -10%;
  font-size: 20px;
  z-index: 1;
  border-radius: 50%;
}

.hcm-dashboard .owl-nav div {
  bottom: 23%;
}


.hcm-dashboard .owl-prev {
  left: -10%;
}

.hcm-dashboard .owl-nav button {
  outline: none;
  border: none;
  background: none;
  line-height: normal;
}

.hcm-dashboard .owl-nav .owl-next img {
  transform: rotate(180deg);
}

.hcm-dashboard .owl-nav button img {
  max-width: 26px;
}

.hcm-dashboard .owl-nav .owl-prev {
  right: 10%;
  top: -30%;
  left: auto;
}

.hcm-dashboard .owl-nav div {
  right: 4%;
  top: -30%;
  left: auto;
}

.hcm-dashboard .owl-nav div {
  right: 2%;
  top: -23%;
  left: auto;
}

.hcm-dashboard .owl-nav .owl-prev {
  right: 7%;
  top: -23%;
  left: auto;
}

.hcm-dashboard .owl-nav div {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #00e676, #00b0ff) border-box;
}

.hcm-dashboard {
  margin-top: 50px;
}

.hr-dashboard-items img {
  border-radius: 12px 12px 0 0;
}

.hr-dashboard-cnt.text-center {
  background: var(--white);
  padding: 13px;
  border-radius: 0 0 12px 12px;
}

/*============================
    25. Mobile Menu
============================*/
.mobile-view {
  display: none;
}

.side-menu li .active {
  color: var(--primary);
}

.side-menu nav {
  width: 300px;
  position: fixed;
  top: 0;
  right: -100%;
  background: #1a1a1a;
  height: 100%;
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 15000;
  transition: all 0.5s ease;
}

.side-menu.active {

  transition: all 0.5s ease;
}

.side-menu.active nav {
  right: 0;
  transition: all 0.5s ease;
}

.side-menu-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  z-index: 99999;
  cursor: pointer;
}

.side-menu-close-btn img {
  max-width: 30px;
  cursor: pointer;
}

.side-menu nav ul {
  padding: 30px;
}

.side-menu nav ul li a {
  padding: 20px 0 0;
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.cus-ft-mobile {
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

.side-menu nav .mobile-dropdown {
  padding: 0 0 0 15px;
}

.side-menu nav .mobile-dropdown li {
  padding: 10px 0;
  font-size: 13px;
}

.mobile-dropdown-li.active a {
  color: var(--primary);
}

.side-menu nav .mobile-dropdown.active {
  display: block;
}

.side-menu .mobile-menu ul li {
  padding: 0;
}

.side-menu nav .mobile-dropdown {
  display: none;
  transition: all 0.3s ease-in;
}

.side-menu nav ul.submenu {
  padding: 5px 20px;
}

.side-menu.active {
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  display: block;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--primary);
}

.side-mobile .social-icons a {
  background-image: var(--gradient-bg);
}

.cus-ft-mobile {
  margin-bottom: 10px;
}

.submenu .active {
  color: var(--primary);
}

.common-divider {
  border-radius: 0 !important;
}


/*============================
    20. Blog Details Enhancements
============================*/
.blog-details {
  width: 100%;
  float: left;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}

.blog-details h2 {
  font-size: 38px;
  line-height: 1.3;
  color: var(--block);
  margin-top: 15px;
  margin-bottom: 25px;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .blog-details h2 {
    font-size: 28px;
  }

  .blog-details {
    padding: 25px;
  }
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-gray);
  font-size: 15px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  padding: 2px;
}

.blog-meta i {
  color: var(--primary);
  font-size: 18px;
}

.blog-details img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-details img:hover {
  transform: translateY(-5px);
}

.blog-cnt p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.blog-cnt h4 {
  font-size: 26px;
  color: var(--block);
  margin-top: 10px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.blog-cnt h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 5px;
  background: var(--gradient-bg);
  border-radius: 10px;
}

.blog-cnt h6 {
  font-size: 20px;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-cnt ul {
  background: var(--tab-green-bg);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #e2efe2;
}

.blog-cnt ul li {
  padding: 10px 0 10px 35px;
  position: relative;
  font-size: 17px;
  color: #444;
  font-weight: 500;
}

.blog-cnt ul li::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 13px;
  left: 0;
  background: url(../images/tick.svg) no-repeat;
  display: inline-block;
  background-size: 20px;
}

.blog-tags-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed var(--border-color);
  gap: 20px;
}

.blog-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-tags span {
  background: var(--gray-bg);
  color: var(--block);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.blog-tags span:hover {
  background: var(--primary);
  color: var(--white);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-share strong {
  font-size: 16px;
  color: var(--block);
}

.blog-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-green-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.blog-share a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.service-new-card.service-blog-card .services-cnt h4{
  height: 48px;
  font-size: 20px;
}
.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-us-icon p {
  color: #fff !important;
  display: block;
  float: left;
}
.contact-us-icon p a{
  color: #fff !important;
  display: block;
  float: left;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}

100% {
    opacity: 1;
    transform: none;
}
}
