/*===============================================================
# START OF INDEX.HTML
================================================================*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
  font-family: Inter, Helvetica, sans-serif;
}

:root {
  --color1-primary-color: #56ab2f;
  --color1-secondary-color: #a8e063;
  --color2-primary-color: #000000;
  --color2-secondary-color: #1C1C1C;
  --white-color:#ffffff;
  --gray-color: #aaaaaa;
  --text-color: #151515;
}

body {
  color: var(--text-color);
}

a {
  color: var(--color1-primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--color1-secondary-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color2-primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--color1-primary-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color1-primary-color);
}

.back-to-top:hover i {
  color: var(--color2-primary-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  position: relative;
}

#preloader img {
  width: 70px; /* Adjust the width as needed */
  height: 70px; /* Adjust the height as needed */
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color1-primary-color);
  border-top-color: var(--text-color);
  border-bottom-color: var(--text-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--color2-primary-color);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: var(--white-color);
}

#header .logo a span {
  color: var(--color1-primary-color);
}

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

/*--------------------------------------------------------------
#  Get in Touch Button
--------------------------------------------------------------*/
.get-in-touch-btn {
  color: var(--white-color);
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--color1-primary-color);
}

.get-in-touch-btn:hover {
  background: var(--color1-primary-color);
  border: 2px solid var(--color1-primary-color);
  color: var(--text-color);
}

@media (max-width: 992px) {
  .get-in-touch-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white-color);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color1-primary-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: var(--text-color);
  font-weight: 400;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: var(--color1-primary-color);
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--white-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--white-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--text-color);
  background-color: var(--color1-primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: var(--text-color);
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: var(--color1-primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/herovideo.gif") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--color1-primary-color);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--color1-primary-color);
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: var(--white-color);
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: var(--color1-primary-color);
}

#hero .icon-box:hover {
  border-color: var(--color1-primary-color);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-color);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--color1-secondary-color);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: None;
  color: var(--text-color);
}

/*--------------------------------------------------------------
# Solutions
--------------------------------------------------------------*/
#solutions {
  background: var(--white-color);
  padding: 100px 0;
  overflow: hidden;
  box-sizing: border-box;
}

#solutions .card a.product-link {
  text-decoration: none;
}

#solutions .card-container {
  display: flex;
  padding: 35px 35px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to left top, #56ab2f, #a8e063);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.3);
}

#solutions .inner-rectangle {
  border: 5px solid var(--white-color);
  padding: 5px;
  border-radius: 10px;
  background-color: white;
  transition: color 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  width: 1050px;
}

#solutions .inner-rectangle:hover {
  background-color: #a8e063;
  color: var(--white-color);
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#solutions .inner-rectangle h3 {
  padding: 20px;
  font-size: 30px;
  font-weight: 800;
  color: var(--color2-primary-color);
  text-align: center;
  transition: color 0.3s ease-in-out;
}

#solutions .inner-rectangle:hover h3{
  background-color: #a8e063;
  color: var(--text-color);
}

#solutions .wrapper {
  max-width: 1100px;
  width: 100%;
  max-height: 1100px;
  height: 100%;
  position: relative;
  flex: 1;
}

#solutions .wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

#solutions .wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
#solutions .wrapper i:first-child{
  left: -50px;
}

#solutions .wrapper i:last-child{
  right: -50px;
}

#solutions .wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#solutions .carousel::-webkit-scrollbar {
  display: none;
}

#solutions .carousel.no-transition {
  scroll-behavior: auto;
}

#solutions .carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
#solutions .carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
#solutions .carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
#solutions .carousel .card {
  scroll-snap-align: start;
  height: auto;
  box-sizing: border-box;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  padding-top: 15px;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--white-color);
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 5px 5px rgba(0.5, 0.5, 0.5, 0.5);
}
#solutions .carousel .card .img {
  background-color: transparent;
  height: auto;
  width: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: transform 0.1s ease-in-out;
  
}

#solutions .card .img {
  background:rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 90%;
}

#solutions .card .img img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border: 4px solid #fff;
}

#solutions .carousel .card:hover img {
  transform: scale(1.1);
}

#solutions .carousel .card:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

#solutions .carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

/*--------------------------------------------------------------
# Software
--------------------------------------------------------------*/
#software .content h3 {
  font-weight: 700;
  font-size: 28px;
}

#software .content ul {
  list-style: none;
  padding: 0;
}

#software .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

#software .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color1-primary-color);
}

#software .content p:last-child {
  margin-bottom: 0;
}

#software .content p span {
  font-style: normal;
  color: var(--color1-primary-color);
}

#software .learn-more-app-btn {
  color: var(--text-color);
  background-color: var(--white-color);
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--color1-primary-color);
}

#software .learn-more-app-btn:hover {
  color: var(--text-color);
  background-color: var(--color1-primary-color);
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--color1-primary-color);
}

#software .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

#software .content {
  text-align: center;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: var(--white-color);
}

.contact .info i {
  font-size: 20px;
  background: var(--color1-primary-color);
  color: var(--text-color);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-color);
}

.contact .info .email,
.contact .info .phone,
.contact .info .tel {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: var(--white-color);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--white-color);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--white-color);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--white-color);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color1-primary-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--white-color);
  border: 0;
  padding: 10px 24px;
  color: var(--text-color);
  transition: 0.4s;
  border-radius: 4px;
  border: 2px solid var(--color1-primary-color);
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color1-primary-color);
  color: var(--text-color);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background:var(--text-color);
  padding: 0 0 30px 0;
  color: var(--white-color);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--color2-primary-color);
  border-bottom: 1px solid var(--text-color);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: var(--color1-primary-color);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--white-color);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color2-secondary-color);
  color: var(--white-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--color1-primary-color);
  color: var(--color2-primary-color);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color1-primary-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: var(--white-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color1-primary-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--white-color);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color1-primary-color);
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--color1-secondary-color);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--white-color);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery #gallery-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.gallery #gallery-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.gallery #gallery-flters li:hover,
.gallery #gallery-flters li.filter-active {
  color: var(--text-color);
  background: var(--color1-primary-color);
}

.gallery #gallery-flters li:last-child {
  margin-right: 0;
}

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .gallery-wrap img {
  transition: all ease-in-out 0.3s;
}

.gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.gallery .gallery-wrap .gallery-info h4 {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
}

.gallery .gallery-wrap .gallery-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.gallery .gallery-wrap .gallery-links {
  text-align: center;
  z-index: 4;
}

.gallery .gallery-wrap .gallery-links a {
  color: var(--white-color);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery .gallery-wrap .gallery-links a:hover {
  color: var(--color1-primary-color);
}

.gallery .gallery-wrap:hover::before {
  opacity: 1;
}

.gallery .gallery-wrap:hover img {
  transform: scale(1.2);
}

.gallery .gallery-wrap:hover .gallery-info {
  opacity: 1;
}

/*===============================================================
# INNER PAGES
================================================================*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*===============================================================
# SOLUTIONS
================================================================*/

/*--------------------------------------------------------------
# Bannner
--------------------------------------------------------------*/
#banner {
  width: 100%;
  min-height: 50vh;
  background: url("../img/cta-bg.svg") top center; /* Replace with your background image path */
  background-size: cover;
  position: relative;
}

#banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#banner .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#banner h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
}

#banner h1 span {
  color: var(--color1-primary-color);
}

#banner h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  #banner h1 {
      font-size: 28px;
      line-height: 36px;
  }

  #banner h2 {
      font-size: 20px;
      line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Chargers
--------------------------------------------------------------*/

#chargers .card {
  width: 85%;
  min-width: 85%;
  max-width: 85%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 10px; /* Add padding to the card */
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

#chargers .card:hover {
  transform: scale(1.05);
}

#chargers .card img {
  width: auto;
  max-height: 400px;
  padding: 20px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 991px) {
  #chargers .card {
    margin-bottom: 50px;
  }
}

#chargers .card-body {
  text-align: center;
}

#chargers .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

#chargers .card-text {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 15px;
}

#chargers .list-group {
  text-align: center;
}

#chargers .list-group-item {
  font-size: 14px;
  color: var(--text-color);
}



#chargers .button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  overflow-x: auto; /* Enable horizontal scrolling for small screens */
}

#chargers .app-store-button,
#chargers .play-store-button {
  margin-right: 0; /* Adjust the margin as needed for spacing */
}

#chargers .app-store-button img,
#chargers .play-store-button img {
  width: 220px;
  height: auto;
}

#chargers .app-store-button:hover,
#chargers .play-store-button:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  #chargers .button-row {
    flex-wrap: nowrap;
    overflow-x: hidden; /* Hide the horizontal scrollbar in mobile view */
  }

  #chargers .app-store-button img,
  #chargers .play-store-button img {
    width: 180px;
    height: auto;
  }

  #chargers .app-store-button,
  #chargers .play-store-button {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# ABOUT US
--------------------------------------------------------------*/
.aboutus .container {
  display: flex;
  justify-content: center;
}

.aboutus .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 40px;
  transition: all ease-in-out 0.3s;
  background: var(--white-color);
  margin: 20px;
  max-width: 800px;
}

.aboutus .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--color1-primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.aboutus .icon-box .icon i {
  color: var(--color2-primary-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.aboutus .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.aboutus .icon-box h4 a {
  color: var(--text-color);
  transition: ease-in-out 0.3s;
}

.aboutus .icon-box h4 a:hover {
  color: var(--color1-primary-color);
}

.aboutus .icon-box p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.aboutus .icon-box:hover {
  border-color: var(--white-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}




/*--------------------------------------------------------------
# MEET THE FOUNDER
--------------------------------------------------------------*/
.founder {
  background: var(--white-color);
  padding: 60px 0;
}

.founder .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.founder .member .member-img {
  width: 100%;
  height: auto;
}

.founder .member .member-info {
  padding: 25px 15px;
}

.founder .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--text-color);
}

.founder .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-color);
}

.founder .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.founder .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/* Styling for Column 2 - Biography */
.biography {
  background: var(--white-color);
  padding: 60px 20px;
}

.biography h2 {
  font-size: 32px;
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.biography p {
  font-size: 16px;
  line-height: 26px;
  color: #777777;
}

/*--------------------------------------------------------------
# DOWNLOAD THE APP
--------------------------------------------------------------*/

.download-app-image {
  max-width: 200px; /* Set the maximum width as desired */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Add some spacing between the images */
}

/*--------------------------------------------------------------
# Profile of the Founder
--------------------------------------------------------------*/
.profile {
  background: var(--white-color);
  padding: 60px 0;
}

.profile .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.profile .member .member-img {
  position: relative;
  overflow: hidden;
}

.profile .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.profile .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.profile .member .social a:hover {
  color: #151515;
  background: var(--color1-primary-color);
}

.profile .member .social i {
  font-size: 18px;
  line-height: 0;
}

.profile .member .member-info {
  padding: 25px 15px;
}

.profile .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.profile .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.profile .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.profile .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# OTHER SERVICES
--------------------------------------------------------------*/
.other-services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: var(--white-color);
  margin: 5px; /* Added margin */
}

.other-services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--color1-primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.other-services .icon-box .icon i {
  color: var(--color2-primary-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.other-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.other-services .icon-box h4 a {
  color: var(--text-color);
  transition: ease-in-out 0.3s;
}

.other-services .icon-box h4 a:hover {
  color: var(--color1-primary-color);
}

.other-services .icon-box p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.other-services .icon-box:hover {
  border-color: var(--white-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Gellery for Projects
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.projects {
  background: #fff;
  padding: 60px 0;
}

.projects .project {
  width: 400px;  /* Set the fixed width for the container */
  height: 350px;  /* Set the fixed height for the container */
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.projects .project img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures the image covers the entire container */
  object-position: center;  /* Centers the image within the container */
  border-radius: 5px;
  transition: ease-in-out 0.3s;
}

.projects .project:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .projects .project {
    width: 100%;  /* Set to 100% width on mobile view */
  }
}

/*--------------------------------------------------------------
# installations in the PH
--------------------------------------------------------------*/
.installs {
  background: #fff;
  padding: 60px 0;
}

.installs .install {
  width: 400px;  /* Set the fixed width for the container */
  height: 350px;  /* Set the fixed height for the container */
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.installs .install img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures the image covers the entire container */
  object-position: center;  /* Centers the image within the container */
  border-radius: 5px;
  transition: ease-in-out 0.3s;
}

.installs .install:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .installs .install {
    width: 100%;  /* Set to 100% width on mobile view */
  }
}
