/* 

TemplateMo 562 Space Dynamic

https://templatemo.com/tm-562-space-dynamic

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 

*/
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik";
  src: url("./fonts/Graphik-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Graphik-Regular", sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: "Graphik-Regular", sans-serif;
}

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}

:root {
  --ink: #4f647a;
  --ring: rgba(79, 100, 122, 0.8);
  --soft: rgba(0, 0, 0, 0.06);
  --paper: rgba(255, 255, 255, 0.75);
  --green: #86b35b;
  --radius: 18px;
}

.stats {
  overflow: hidden;
}

.stats__container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  align-items: center;
  justify-items: center;
  padding-top: 20px;
}

/* Card */
.stat-card {
  width: 100%;
  display: grid;
  place-items: center;
}

/* Ring container */
.stat-ring {
  width: clamp(170px, 16vw, 210px); /* smaller */
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  position: relative;
  background: radial-gradient(circle at 30% 25%, #ffffff, #f2f4f6 70%);
  box-shadow: inset 0 0 0 1px var(--soft);
  display: grid;
  place-items: center;
}

/* Double ring effect */
.stat-ring::before,
.stat-ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 999px;
  border: 2px solid rgba(79, 100, 122, 0.22);
}
.stat-ring::after {
  inset: 9px;
  border-color: rgba(79, 100, 122, 0.55);
}

.stat-inner {
  width: 76%;
  height: 76%;
  padding: 14px; /* smaller padding */
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 -18px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  text-align: center;
  backdrop-filter: blur(6px);
}

.stat-icon {
  width: 42px;
  height: 42px;
  color: var(--ink);
  opacity: 0.95;
}

.stat-number {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--green);
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.95;
}

/* ===== Enter animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Subtle “breathing” ring once visible */
.reveal.is-visible .stat-ring::after {
  animation: ringPulse 2.4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(134, 179, 91, 0);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(134, 179, 91, 0.08);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .stats__container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 20px;
  }
  .stat-ring {
    width: clamp(170px, 16vw, 210px);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .reveal.is-visible .stat-ring::after {
    animation: none;
  }
}

@media (max-width: 992px) {
  html,
  body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }

  .main-banner::before {
    width: 300px !important;
    height: 320px !important;
  }
  .main-banner:after {
    top: 40px !important;
    width: 110px !important;
    height: 210px !important;
  }
  .our-portfolio {
    padding-top: 30px !important;
    margin-top: 0px;
  }
}

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
}

.section-heading h2 em {
  font-style: normal;
  color: #03a4ed;
}

.section-heading h2 span {
  color: #fe3f40;
}

.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #006e3c;
  font-size: 15px;
  font-family: "Graphik", sans-serif;
  font-weight: 900;
  color: #fff;
  text-transform: capitalize;
  border-radius: 23px;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #00512e;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  background-color: #fff !important;
  height: 80px !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e !important;
}

.background-header .main-nav .nav li:hover a {
  color: #00512e !important;
}

.background-header .nav li a.active {
  color: #00512e !important;
}

.header-area {
  background-color: #fafafa;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 60px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  min-height: 60px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 75px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #03a4ed;
  line-height: 100px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.logoCss {
  width: 200px;
  height: 45px;
}

.logo h4 span {
  color: #fe3f40;
}
*/ .background-header .main-nav .logo h4 {
  line-height: 80px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area {
  background: linear-gradient(
    to right,
    rgb(247, 249, 248) 0%,
    rgb(210, 225, 214) 50%,
    rgb(173, 200, 180) 100%
  );
}

.header-area .main-nav .nav {
  float: right;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  padding-left: 40px;
}

.header-area .main-nav .nav li:last-child a,
.background-header .main-nav .nav li:last-child a {
  color: #fff !important;
  padding: 0px 20px;
  font-weight: 700;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: #fff !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-family: "Graphik", sans-serif;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

/* Language switcher styles */
.language-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.language-switcher-Mobile {
  display: none;
}

.language-button img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  cursor: pointer;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1001;
  overflow: hidden;
}

.language-dropdown.show {
  display: block;
}

.language-option {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
}

.language-option:hover {
  background-color: #f8f9fa;
}

.language-option.active {
  background-color: #e9ecef;
  font-weight: 600;
}

.language-option img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-right: 10px;
}

/* ========== Carousel Layout ========== */
.hero-carousel {
  width: 100%;
  overflow: hidden;
  /* optional if you want it to touch the header seamlessly */
  margin-top: -1px;
}

.carousel {
  position: relative;
  width: 100%;
  /* aspect-ratio: 2300 / 1100;  */
  aspect-ratio: 2300 / 750;
  /* height: 650px; */
  overflow: hidden;
}

.carousel-track {
  height: 100%;
  display: flex;
  transition: transform 600ms ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex: 0 0 100%;
}

.carousel-slide picture,
.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-slide img {
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Optional overlay */
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
}

.dot {
  width: 10px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.75);
  transition:
    transform 200ms ease,
    background 200ms ease,
    opacity 200ms ease;
  opacity: 0.9;
}

.dot:hover {
  transform: scale(1.15);
}

/* Active dot color like your green */
.dot.is-active {
  background: #7fd3a6; /* change if you want closer to your exact green */
  opacity: 1;
}

/* Better touch behavior */
@media (max-width: 600px) {
  .carousel-dots {
    bottom: 12px;
    gap: 8px;
    padding: 6px 10px;
  }
  .carousel {
    position: relative;
    width: 100%;
    /* Responsive height like your screenshot */
    /* height: clamp(300px, 55vw, 650px); */
    height: 450px !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
  .dot {
    transition: none;
  }
}

.header-area .main-nav .nav li a {
  color: #2a2a2a;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #00512e !important;
  text-decoration: underline #00512e !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #00512e !important;
  opacity: 1;
}

.header-area .main-nav .nav li:last-child a:hover,
.background-header .main-nav .nav li:last-child a:hover {
  background-color: #000000;
}

.hero-video,
.framed-video {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Ensure video maintains aspect ratio */
.video-container,
.video-frame {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.video-container {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  border-radius: 15px;
}

.overlay-content {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content h4 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.overlay-content p {
  font-size: 16px;
  opacity: 0.9;
}
.readmoreContainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 25px;
  background: #006e3c;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.read-more-btn.viewall {
  background: #006e3c;
}

.read-more-btn.viewall:hover {
  transform: scale(1.05);
}

.read-more-btn.shine {
  background: #006e3c;
}

.read-more-btn.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s ease;
}

.read-more-btn.shine:hover::before {
  left: 100%;
}

.read-more-btn.shine:hover {
  transform: scale(1.05);
}

/* Add the specific effect classes */
.read-more-btn.slide-arrow:hover {
  padding-right: 48px;
}

.read-more-btn .arrow {
  transition: transform 0.4s ease;
}

.read-more-btn.slide-arrow:hover .arrow {
  transform: translateX(4px);
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition:
    all 0.3s ease-in-out 0s,
    visibility 0s linear 0.3s,
    z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #00512e !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 20px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.portfolioHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 20px;
}

.header-area.header-sticky .nav li a.active {
  color: #00512e;
}
/* Section */
.team-section {
  padding: 80px 5%;
  background: #f8f8f8;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Title */
.section-title {
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00512e;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Scroll Area – Always scrollable on desktop */
.team-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  cursor: pointer;
  white-space: nowrap;
}

/* Make scroll smooth */
.team-scroll::-webkit-scrollbar {
  height: 6px;
}
.team-scroll::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 20px;
}
.team-scroll::-webkit-scrollbar-thumb {
  background: #00512e;
  border-radius: 20px;
}

/* Cards */
.team-card {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;

  /* Strong animation */
  opacity: 0;
  transform: translateY(70px) scale(0.7);
  animation: appear 0.8s forwards ease-out;
}

/* Animation delays */
.team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.team-card:nth-child(3) {
  animation-delay: 0.3s;
}
.team-card:nth-child(4) {
  animation-delay: 0.4s;
}
.team-card:nth-child(5) {
  animation-delay: 0.5s;
}
.team-card:nth-child(6) {
  animation-delay: 0.6s;
}
.team-card:nth-child(7) {
  animation-delay: 0.7s;
}

/* Hover effect */
.team-card:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image */
.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-image img {
  width: 100%;
  object-fit: cover;
}

/* Text */
.team-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
}

.role {
  font-size: 14px;
  color: #00512e;
  margin-bottom: 8px;
  font-weight: 500;
}

.description {
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

.navContainer {
  padding-left: 100px;
  padding-right: 100px;
}

.bannerContainer {
  padding-left: 100px;
}

.brands-area {
  overflow: hidden;
  background: #fff;
}

.brands-wrapper {
  width: 100%;
  overflow: hidden;
}

.brands-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 35s linear infinite;
}

.brand {
  flex: 0 0 auto;
  width: 120px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.brand img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.brands-area:hover .brands-track {
  animation-play-state: paused;
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Stronger appear animation */
@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(70px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
  .header-area .main-nav .nav li:last-child {
    padding-right: 0px;
    padding-left: 40px;
  }

  .header-area .main-nav .nav li:last-child a,
  .background-header .main-nav .nav li:last-child a {
    background: #f7f7f7 !important;
    color: #191a20 !important;
    font-weight: 400 !important;
  }

  .header-area .main-nav .nav li:last-child a:hover,
  .header-area .main-nav .nav li:last-child a.active {
    color: #00512e !important;
  }
  .header-area .main-nav .nav li:last-child a:hover,
  .background-header .main-nav .nav li:last-child a:hover {
    background-color: #000000;
  }
  .main-red-button {
    display: inline-block;
    background-color: #f7f7f7 !important;
    font-size: 15px;
    font-family: "Graphik", sans-serif;
    font-weight: 900;
    color: unset !important;
    text-transform: capitalize;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0% !important;
    width: 100% !important;
  }

  .readmoreContainer {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
  .introSize {
    padding-left: 0 !important;
  }
  .bannerDescription {
    padding-left: 0 !important;
  }
  .readmoreContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .language-switcher {
    display: none;
  }

  .language-switcher-Mobile {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: center;
    align-items: flex-start;
    margin-top: 35px;
    padding-left: 30px;
  }

  .language-dropdown {
    display: none;
    position: relative;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1001;
    overflow: hidden;
    float: left;
  }

  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #00512e !important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: flex !important;
    flex-direction: row;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 80px;
  }
  .navContainer {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area {
    padding: 0px !important;
  }

  .header-area .main-nav .menu-trigger {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 20px;
    width: 28px;
    height: 36px;
    text-indent: -9999em;
    z-index: 99;
    right: 40px;
    display: none;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #00512e !important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3b566e;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (max-width: 1140px) {
  .language-switcher-Mobile {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: center;
    align-items: flex-start;
    margin-top: 35px;
    padding-left: 30px;
    margin-right: 60px;
  }
}

@media (max-width: 850px) {
  .introSize {
    font-size: 28px !important;
    line-height: 35px !important;
  }
}

@media (min-width: 1201px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #00512e;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #00512e;
  border-radius: 50%;
}

.on-button-click {
  cursor: pointer;
  color: #00512e !important;
}

.floating-btn-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 30px;
  height: 55px;
  border-radius: 50%;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
  outline: none;
}

.floating-btn-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(85, 85, 85, 0.4);
}

.floating-btn-whatsapp:active {
  transform: translateY(0) scale(0.95);
  box-shadow: 0 5px 15px rgba(85, 85, 85, 0.4);
}

.floating-btn-whatsapp i {
  color: white;
  font-size: 24px;
  padding: 10px;
}

.floating-btn-whatsapp:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  position: absolute;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite;
}
.tooltip {
  position: absolute;
  bottom: 55px;
  right: 10px;
  background: linear-gradient(135deg, #00512e, #008552);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.flags {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.flags:hover .flags-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.flags-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;

  background: linear-gradient(135deg, #00512e, #008552);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* === UAE dropdown like floating language button === */
.flags-group-float {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* make the flag feel like a button */
.flags-group-float > img {
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.flags-group-float:hover > img {
  transform: translateY(-4px) scale(1.03);
}

/* Dropdown container: same behavior as floating-language-options */
.flags-dropdown-float {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;

  padding: 0 6px; /* becomes visible when open */
  transition: all 0.28s ease;
  z-index: 9999;
}

/* open state */
.flags-group.active .flags-dropdown-float {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  max-height: 240px;
  pointer-events: auto;
  padding: 8px 6px;
}

.flags-group.active .flags-tooltip {
  opacity: 0 !important;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
}

/* items: same "pill" style as floating-language-option */
.flags-dd-item {
  appearance: none;
  border: 0;
  background: #fff;
  color: #006e3c;
  font-weight: 600;
  font-size: 13px;
  text-wrap-mode: nowrap;
  padding: 10px 14px;

  border-radius: 30px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.12);

  cursor: pointer;
  text-align: left;

  transform: translateX(18px);
  opacity: 0;
  transition: all 0.28s ease;
}

/* animate items in when open */
.flags-group.active .flags-dd-item {
  transform: translateX(0);
  opacity: 1;
}

/* stagger like your language options */
.flags-group.active .flags-dd-item:nth-child(1) {
  transition-delay: 0.05s;
}
.flags-group.active .flags-dd-item:nth-child(2) {
  transition-delay: 0.1s;
}

/* hover effect like your floating options */
.flags-dd-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

/* RTL support (slide direction) */
[dir="rtl"] .flags-dd-item {
  text-align: right;
  transform: translateX(-18px);
}

[dir="rtl"] .flags-group.active .flags-dd-item {
  transform: translateX(0);
}

[dir="rtl"] .flags-dd-item:hover {
  transform: translateX(4px);
}

[dir="rtl"] .banner-image {
  transform: scaleX(-1);
  justify-content: flex-start;
}

[dir="rtl"] .bannerContainer {
  padding-right: 100px !important;
  padding-left: 0px !important;
}

[dir="rtl"] .contact-us {
  background: url("../images/footer-background-rotated.png") center/cover
    no-repeat;
}

[dir="rtl"] .section-heading {
  padding-left: 30px !important;
}

/* Floating Language Switcher Styles */
.floating-language-switcher {
  position: fixed;
  bottom: 27.5px;
  right: 95px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-language-button {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.floating-language-button .tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;

  background: linear-gradient(135deg, #00512e, #008552);

  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;

  display: inline-block;
  width: max-content; /* fits the whole text */
  max-width: 240px; /* optional safety limit */

  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

[dir="rtl"] .floating-language-button {
  left: auto !important;
  left: 67px !important;
}

[dir="rtl"] .slick-prev {
  right: 0px !important;
  left: auto !important;
}

[dir="rtl"] .slick-next {
  right: auto !important;
  left: -0px !important;
}

.floating-language-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(85, 85, 85, 0.4);
}

.floating-language-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.floating-language-button.active {
  transform: rotate(180deg);
  overflow: hidden;
}

.floating-language-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.floating-language-button:hover::before {
  opacity: 1;
}

.floating-language-button i {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.floating-language-button.active i {
  transform: rotate(180deg);
}

.floating-language-options {
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  transform: translateY(20px);
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 7px;
  padding-top: 7px;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-language-options.show {
  opacity: 1;
  transform: translateY(0);
  max-height: 300px;
  pointer-events: auto;
}

.floating-language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateX(20px);
  opacity: 0;
}

.floating-language-options.show .floating-language-option {
  transform: translateX(0);
  opacity: 1;
}

.floating-language-option:nth-child(1) {
  transition-delay: 0.05s;
}

.floating-language-option:nth-child(2) {
  transition-delay: 0.1s;
}

.floating-language-option:nth-child(3) {
  transition-delay: 0.15s;
}

.floating-language-option:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-language-option.active {
  background: #f0f9ff;
  border: 1px solid #00512e;
}

.floating-language-option img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.floating-language-option span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

/* Remove old language switcher from navbar */
.language-switcher,
.language-switcher-Mobile {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-language-switcher {
    bottom: 18.5px;
    right: 80px;
  }

  .section-headings h2 {
    font-size: 24px !important;
  }

  .read-more-btn {
    /* Base styles */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #2c772c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  [dir="rtl"] .floating-language-button {
    left: auto !important;
    left: 70px !important;
  }

  .floating-language-button i {
    font-size: 20px;
  }
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  left: -15px;
  top: 40px !important;
  width: 200px;
  height: 350px;

  background: url("../images/banner2.png") no-repeat center;
  background-size: contain;

  pointer-events: none;
}

.main-banner::before {
  content: "";
  position: absolute;
  top: -20px !important;
  right: -72px;

  width: 350px;
  height: 400px;

  background: url("../images/bannershape.png") no-repeat center;
  background-size: contain;

  pointer-events: none;
}

.main-banner .left-content h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: #fe3f40;
  margin-bottom: 15px;
}

.main-banner .left-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 40px;
}

/* .banner-section {
  background-color: #00512e;
} */

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 60px;
}

/* 🔥 Make text section bigger */
.banner-text {
  flex: 1.4;
  max-width: 650px;
}

/* Button under text */
.readmoreContainer {
  margin-top: 10px;
}

/* 🔥 Push image fully to right */
.banner-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.banner-image img {
  width: 450px;
  height: auto;
}

.ServicesMaincontainer {
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 30px;
}

.GreenBannerContainer {
  padding-left: 90px;
  padding-right: 90px;
}

.FooterContainer {
  padding-left: 160px;
  padding-right: 160px;
}

.phoneResp {
  margin-top: 2px;
}

@media (min-width: 1900px) {
  .banner-image img {
    width: 600px;
    height: auto;
  }
  .banner-text {
    flex: 1.4;
    max-width: unset !important;
    display: flex;
    flex-direction: column;
    align-self: self-start;
  }
  .ServicesMaincontainer {
    padding-left: 80px;
    padding-right: 80px;
  }
  .GreenBannerContainer {
    padding-left: 80px;
    padding-right: 80px;
  }

  .navContainer {
    padding-left: 95px;
    padding-right: 95px;
  }

  .FooterContainer {
    padding-left: 170px;
    padding-right: 170px;
  }
}

@media (max-width: 1400px) {
  .FooterContainer {
    padding-left: 100px;
    padding-right: 100px;
  }
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  [dir="rtl"] .bannerContainer {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }

  .banner-text {
    max-width: 100%;
  }

  .banner-image {
    display: none !important;
  }

  .GreenBannerContainer {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .bannerContainer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .FooterContainer {
    padding-left: 50px;
    padding-right: 50px;
  }

  .phoneResp {
    padding-left: 0px !important;
    margin-top: 20px !important;
  }
}

.main-banner .left-content h2 em {
  color: #03a4ed;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #fe3f40;
}

.main-banner .left-content p {
  margin: 20px 0px;
}

.main-banner .left-content form {
  margin-top: 30px;
  width: 470px;
  height: 66px;
  position: relative;
}

.main-banner .left-content form button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #fe3f40;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  outline: none;
  border: none;
}

.main-banner .left-content form input {
  width: 470px;
  height: 66px;
  background-color: #03a4ed;
  border-radius: 33px;
  border: none;
  outline: none;
  padding: 0px 25px;
  color: #fff;
  letter-spacing: 0.25px;
  font-size: 15px;
  font-weight: 300;
}

.main-banner .left-content form input::placeholder {
  color: #fff;
}

/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
*/

/* #about {
  margin-top: 120px;
} */

.about-us {
  /* background-image: url(../images/contact-bg.png); */
  /* background-color: rgba(240, 248, 244, 0.9); */
  background: linear-gradient(
    to right,
    rgb(247, 249, 248) 0%,
    rgb(210, 225, 214) 50%,
    rgb(173, 200, 180) 100%
  );
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 140px 0px 120px 0px;
}

.about-us .left-image {
  margin-right: 45px;
}

.about-us .services .item {
  margin-bottom: 60px;
}

.about-us .services .item .icon {
  float: left;
  margin-right: 25px;
}

.about-us .services .item .icon img {
  max-width: 70px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
/* Tablet */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

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

  .service-item {
    flex-direction: column;
    text-align: center;
  }
}

.service-item h4 {
  color: black;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.service-item p {
  color: black;
}

.choose-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #006e3c;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.choose-icon img {
  width: 50px;
  height: 50px;
  padding: 7px;
  opacity: 0.95;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.slick-list {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

.our-services {
  margin-top: 0px;
  padding-top: 80px;
}

.our-services .left-image {
  margin-right: 45px;
}

.our-services .section-heading h2 {
  margin-right: 100px;
}

.our-services .section-heading p {
  margin-top: 30px;
  margin-bottom: 60px;
}

.our-services .progress-skill-bar {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.our-services .progress-skill-bar span {
  position: absolute;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #03a4ed;
}

.our-services .first-bar span {
  left: 69%;
}

.our-services .second-bar span {
  left: 81%;
}

.our-services .third-bar span {
  left: 88%;
}

.our-services .progress-skill-bar h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.our-services .progress-skill-bar .full-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #f7eff1;
  position: relative;
  z-index: 1;
}

.our-services .progress-skill-bar .filled-bar {
  background: rgb(255, 77, 30);
  background: linear-gradient(
    105deg,
    rgba(255, 77, 30, 1) 0%,
    rgba(255, 44, 109, 1) 100%
  );
  height: 6px;
  border-radius: 3px;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.our-services .first-bar .filled-bar {
  width: 71%;
}

.our-services .second-bar .filled-bar {
  width: 83%;
}

.our-services .third-bar .filled-bar {
  width: 90%;
}

/* Section Heading */
.section-headings h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}
.section-headings h2::after {
  width: 80px;
  height: 3px;
  background: #2d5534;
  display: block;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}
.section-headings p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Cards */
.services-home {
  padding: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.services-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.services-home figure {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 350px !important;
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform 0.3s;
  background-size: cover;
  background-position: center;
}
.services-home:hover figure {
  transform: scale(1.05);
}
.services-home figcaption {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  width: 100%;
  height: 170px;
}
.services-home h4.title {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}
.services-home .content {
  font-size: 0.7rem;
  margin-bottom: 15px;
  height: 60px;
}
.services-home .btn-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.services-home .btn-link img {
  margin-left: 5px;
  width: 16px;
  height: 16px;
}

/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

/* Cards */
.portfolio-home {
  padding: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.portfolio-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.portfolio-home figure {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 350px !important;
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform 0.3s;
  background-size: cover;
  background-position: center;
}
.portfolio-home:hover figure {
  transform: scale(1.05);
}
.portfolio-home figcaption {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  width: 100%;
  height: 100px;
}
.portfolio-home h4.title {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}
.portfolio-home .content {
  font-size: 0.7rem;
  margin-bottom: 15px;
  height: 60px;
}
.portfolio-home .btn-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.portfolio-home .btn-link img {
  margin-left: 5px;
  width: 16px;
  height: 16px;
}

.projectTitlePort {
  font-size: 20px;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.play-btn:hover {
  background: white;
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-content {
  background: #000;
  padding: 15px;
  border-radius: 10px;
  width: 80%;
  max-width: 700px;
  position: relative;
}

.close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
}

.video-wrapper {
  width: 100%;
  height: 400px;
}

.our-portfolio {
  padding-top: 60px;
  margin-top: 0px;
}

.our-portfolio .section-heading h2 {
  text-align: center;
  margin: 0px 90px 0px 90px;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.our-portfolio .item {
  position: relative;
}

.our-portfolio .item:hover .hidden-content {
  top: -100px;
  opacity: 1;
  visibility: visible;
}

.our-portfolio .item:hover .showed-content {
  top: 90px;
}

.our-portfolio .hidden-content {
  background: rgb(255, 77, 30);
  background: linear-gradient(
    105deg,
    rgba(255, 77, 30, 1) 0%,
    rgba(255, 44, 109, 1) 100%
  );
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  top: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  transition: all 0.5s;
}

.our-portfolio .hidden-content:after {
  width: 20px;
  height: 20px;
  position: absolute;
  background: rgb(255, 77, 30);
  content: "";
  left: 50%;
  bottom: -8px;
  margin-left: -5px;
  transform: rotate(45deg);
  background: linear-gradient(
    105deg,
    rgba(255, 52, 69, 1) 0%,
    rgba(255, 51, 78, 1) 100%
  );
  z-index: -1;
}

.our-portfolio .hidden-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.our-portfolio .hidden-content p {
  color: #fff;
}

.our-portfolio .showed-content {
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.our-portfolio .showed-content img {
  max-width: 100px;
}

/* 
---------------------------------------------
Blog
--------------------------------------------- 
*/

.our-blog {
  position: relative;
  margin-top: 20px;
  padding-top: 80px;
}

.our-blog .section-heading h2 {
  margin-right: 180px;
}

.our-blog .top-dec {
  text-align: right;
  margin-top: -80px;
}

.our-blog .top-dec img {
  max-width: 270px;
}

.our-blog .left-image {
  position: relative;
}

.our-blog .left-image img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.our-blog .left-image .info {
  position: relative;
}

.our-blog .left-image .info .inner-content {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-right: 75px;
  position: absolute;
  margin-top: -100px;
  padding: 30px;
}

.our-blog .left-image ul li {
  display: inline-block;
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
  margin-right: 20px;
}

.our-blog .left-image ul li:last-child {
  margin-right: 0px;
}

.our-blog .left-image ul li i {
  color: #ff4d61;
  font-size: 16px;
  margin-right: 8px;
}

.our-blog .left-image h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 20px 0px 15px 0px;
}

.our-blog .left-image .info .main-blue-button {
  position: absolute;
  bottom: -80px;
  left: 0;
}

.our-blog .right-list {
  margin-left: 30px;
}

.our-blog .right-list ul li {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}

.our-blog .right-list .left-content {
  margin-right: 45px;
}

.our-blog .right-list .left-content span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
}

.our-blog .right-list .left-content span i {
  color: #ff4d61;
  font-size: 16px;
  margin-right: 8px;
}

.our-blog .right-list .left-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 20px 0px 15px 0px;
}

.our-blog .right-list .right-image img {
  width: 250px;
  border-radius: 20px;
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  background: url("https://i.postimg.cc/qvDS4kXh/futuristic-city-with-green-sky.png")
    center/cover no-repeat;
  position: relative;

  /* Fade effect */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  padding: 160px 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 50px;
}

.contact-us .section-heading h2,
.contact-us .section-heading h2 em,
.contact-us .section-heading h2 span {
  color: #fff;
}

.contact-us .section-heading p {
  color: #fff;
  margin-top: 30px;
}

.phone-info {
  margin-top: 40px;
}

.phone-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.phone-info h4 span img {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.phone-info h4 span a {
  font-size: 15px;
  font-weight: 400;
}

.phone-info h4 span img:hover {
  cursor: pointer;
  transform: translateY(-4px);
}

form#contact .contact-dec {
  position: absolute;
  right: -155px;
  bottom: 0;
}

form#contact .contact-dec img {
  max-width: 178px;
}

form#contact {
  margin-left: 30px;
  position: relative;

  background-color: rgba(240, 248, 244, 0.9);
  /* background-image: url(../images/banner2.png); */
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;

  padding: 60px 30px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 33px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  margin-bottom: 20px;
}

form#contact input::placeholder {
  color: #2a2a2a;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 140px;
  height: 140px;
  border-radius: 20px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 20px;
}

form#contact textarea::placeholder {
  color: #2a2a2a;
}

form#contact button {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all 0.3s;
}

form#contact button:hover {
  background-color: #fe3f40;
}

form#contact span {
  color: black !important;
}

form#contact p {
  color: black !important;
}

.contact-sub-titles {
  color: #006e3c !important;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer p {
  text-align: center;
  margin: 30px 0px 45px 0px;
}

footer p a {
  color: #fe3f40;
}

/* Keep the carousel LTR even if the page is RTL */
.hero-carousel,
.hero-carousel .carousel,
.hero-carousel .carousel-track,
.hero-carousel .carousel-slide {
  direction: ltr !important;
}

/* Keep brands section LTR even in Arabic */
.brands-area,
.brands-wrapper,
.brands-track,
.brand {
  direction: ltr !important;
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1645px) {
  form#contact .contact-dec {
    display: none;
  }
}

@media (max-width: 1100px) {
  .serviceText {
    font-size: 16px !important;
  }
}

@media (max-width: 993px) {
  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .main-banner:after {
    top: 76px;
    z-index: -1;
  }
  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100% !important;
  }
  #about {
    margin-top: 0px;
  }
  .about-us {
    position: relative;
    padding: 0px;
  }
  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
  }
  .about-us .services {
    text-align: center;
  }
  .service-item {
    background: rgb(0, 81, 46);
    background: linear-gradient(
      105deg,
      rgb(1, 103, 58) 0%,
      rgb(0, 81, 46) 100%
    );
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    align-items: center;
    justify-items: center;
    width: 366px !important;
  }
  .service-item .right-text {
    text-align: left;
    color: white !important;
  }
  .serviceText {
    color: white !important;
  }
  .our-services {
    margin-top: 200px;
  }
  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
  }
  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
  }
  .our-portfolio .section-heading h2 {
    margin: 0px 0px 80px 0px;
  }
  .our-portfolio .item {
    margin-bottom: 15px;
  }
  .our-blog {
    margin-top: 0px;
  }
  .our-blog .top-dec {
    display: none;
  }
  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }
  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .our-blog .left-image {
    margin-bottom: 45px;
  }
  .contact-us {
    padding: 120px 0px;
  }
  .contact-us .section-heading {
    text-align: center;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact .contact-dec {
    display: none;
  }
  footer p {
    margin: 15px 0px 30px 0px;
  }
  .about-us .services .item .icon {
    float: unset;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .section-headings {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
  }

  .section-headings h2 {
    margin-bottom: 5px;
    font-size: 2rem;
  }
  .section-headings p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 767px) {
  .about-us .left-image {
    bottom: -280px;
  }
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  .phone-info h4 span {
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }

  .serviceText {
    font-size: 16px !important;
  }
  .service-item {
    margin-bottom: 30px;
  }

  .floating-btn-whatsapp {
    bottom: 19px;
    right: 20px;
  }
}

@media (max-width: 620px) {
  .ServicesMaincontainer {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 500px) {
  .projectTitlePort {
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  .service-item {
    width: 320px !important;
  }

  .banner-image img {
    width: 350px;
    height: auto;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
