/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: May 04 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Outfit", sans-serif;
  --heading-font: "Outfit", sans-serif;
  --nav-font: "Outfit", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #3d4348;
  --default-color-rgb: 61, 67, 72;
  --heading-color: #3e5055;
  --heading-color-rgb: 62, 80, 85;
  --accent-color: #188754;
  --accent-color-rgb: 56, 141, 168;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
  /* 6776f4 */
}

/* Nav Menu Colors */
:root {
  --nav-color: #313336;
  --nav-hover-color: #188754;
  --nav-dropdown-color: #313336;
  --nav-dropdown-hover-color: #188754;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #317f9e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

body.overlay-active {
  overflow: hidden; /* Prevents scrolling */
  height: 100%; /* Optional, helps on some mobile browsers */
  position: fixed; /* Locks the body in place */
  width: 100%; /* Ensures the body spans the viewport */
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  height: 10vh;
}

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

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

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

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(var(--default-color-rgb), 0.15);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: bolder;
  }

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(var(--default-color-rgb), 0.1);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

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

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

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

.header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  position: fixed;
  width: 100%;
  top: 0;
}
.header .header-left {
  display: flex;
}
.header-left img {
  width: 200px;
  margin-right: 3rem;
}
nav {
  display: flex;
  align-items: center;
  margin-left: 3rem;
}
nav ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 2rem;
  font-size: 1rem;
}
nav ul li {
  color: black  ;
}
nav ul li a {
  color: black;
}
.header .header-right {
  display: flex;
  gap: 1rem;
}
.header-right a:first-child button{
  background-color: transparent;
  color: black;
  border: 0;
}

.header-right a:first-child button:hover {
  background-color: transparent;
  color: #317f9e;;
}
.header-right button:last-child {
  background-color: #188754;
  color: white;
  border: 0;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.header-right button:last-child:hover {
  background-color: #317f9e; /* Change background to #343A40 on hover */
  color: white; /* Ensure text remains white */
}
.header-nav-toggle {
  display: none;
}
@media (max-width: 1435px) {
  .header-left img {
    width: 150px;
  }
  nav {
    margin-left: 1.5rem;
  }
  nav ul {
    gap: 1rem;
  }
  .header .header-right {
    gap: 0;
  }
}
@media (max-width: 1245px) {
  nav,
  .header .header-right {
    display: none;
  }
  .header-nav-toggle {
    display: block;
  }
  .header .header-left {
    width: 100%;
    justify-content: space-between;
    z-index: 20;
  }
  .header-mobile-nav {
    position: fixed;
    width: 100%;
    top: 107px;
  }
  .header-mobile-nav nav{
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    display: none;
    z-index: 10;
    padding-top: 107px;
    width: 100vw;
    margin-left: 0;
  }
  .header-mobile-nav nav::before {
    content: ' ';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  }
  .header-mobile-nav nav ul {
    flex-direction: column;
    position: absolute;
    z-index: 10;
    width: 69vw;
    gap: 0;
  }
  .header-mobile-nav nav ul li {
    width: 100%;
    text-align: left;
    /* border-bottom: 0.px solid #188754; */
    padding: 1.5rem 0;
    margin: 0 10rem;
    text-align: center;
    z-index: 999;
  }
  .header-mobile-nav nav ul li:nth-child(8) {
    border: 0;
  }
  .header-mobile-nav nav ul li:last-child {
    border: 0;
    background-color: #188754;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    margin-top: 10px;
  }
  .header-mobile-nav nav ul li:last-child a {
    color: white;
  }
}
@media (max-width: 1000px) {
  .header {
    padding: 0 6rem;
  }
  .header-mobile-nav nav ul {
    width: 81vw;
  }
  .header-mobile-nav nav ul li {
    margin: 0 6rem;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 0 2rem;
  }
  .header-mobile-nav nav::before {
    height: 110vh;
  }
  .header-mobile-nav nav ul {
    width: 88.5vw;
  }
  .header-mobile-nav nav ul li {
    margin: 0 2rem;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: rgba(var(--accent-color-rgb), .03);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

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

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
  display: flex;
  background-color: var(--contrast-color);
  transition: 0.3s;
}

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

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

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

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

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.footer .footer-newsletter .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

.footer .footer-newsletter .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: subscription-loading 1s linear infinite;
}

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 1rem;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  /* z-index: 99; */
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top.active {
  animation: pulse-glow 1.6s infinite;
}

/* Pulsating animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 10);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--accent-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0);
  }
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* Chatbot Button */
.chatbot-toggle {
  position: fixed;
  bottom: 80px;
  right: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.chatbot-toggle:hover {
  background-color: #0056b3;
}

/* Chatbot Modal */
.chatbot-modal {
  display: none;
  position: fixed;
  bottom: 140px;
  right: 20px;
  width: 330px;
  height: 500px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  /* z-index: 1000; */
  overflow: hidden;
  flex-direction: column;
}

/* .chatbot-header {
  background: #007bff;
  color: white;
  padding: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;

} */

.chatbot-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px;
}

.chatbot-messages {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 10px;
  font-size: 14px;
}

.bot-msg, .user-msg {
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 5px;
  background: #f1f1f1;
}

.user-msg {
  background-color: #d1ecf1;
  align-self: flex-end;
}

#chatbot-input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: rgba(var(--default-color-rgb), .04);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 4rem 0;
  padding-bottom: 4rem;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/* .hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.60);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: rgba(var(--default-color-rgb), 0.7);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.2);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85);
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: rgba(var(--accent-color-rgb), 0.85);
}

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

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
} */
 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  background-image: url("../img/hero-bg.jpg");
  background-color: rgba(255,255,255,0.5);
  background-blend-mode: lighten;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90vh;
  padding: 0 10rem;
  margin-top: 107px;
}
.hero-section h1 {
  color: #188754;
  font-size: 7rem;
  font-weight: 700;
}
.hero-section h2 {
  color: #717171;
  margin-top: -1.75rem;
   font-size: 3.5rem;
   font-weight: 400;
   /* width: 18ch; */
}
.hero-section h3 {
  color: #858585;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.hero-section p {
  color: #858585;
  font-weight: 300;
  font-size: 1.25rem;
}
.hero-section ul {
  list-style-image: url("../img/icons/check.svg");
  line-height: 2.5rem;
  margin-top: -0.5rem;
}
.hero-section ul li {
  color: #858585;
  font-weight: 300;
  font-size: 1.25rem;
}
.hero-section ul li span {
  font-weight: 600;
}
.hero-section button {
  color: white;
  background-color: #343A40;
  border: 0;
  width: 180px;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.hero-section button:hover {
  background-color: #188754; /* Change background to green on hover */
  color: white; /* Ensure text stays white */
  transform: scale(1.05); /* Slight scaling effect for emphasis */
}

@media (max-width: 1000px) {
  .hero-section {
    padding: 6rem;
  }
  .hero-section h1 {
    font-size: 5rem;
  }
  .hero-section h2 {
    font-size: 3rem;
    margin-top: -0.75rem;
  }
  .hero-section h3 {
    font-size: 1.4rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .hero-section ul {
    line-height: 1.75rem;
  }
  .hero-section ul li {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 2rem;
  }
  .hero-section h1 {
    font-size: 3rem;
  }
  .hero-section h2 {
    font-size: 2rem;
    margin-top: 0;
  }
  .hero-section h3 {
    font-size: 1rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .hero-section ul {
    line-height: 1.75rem;
  }
  .hero-section ul li {
    font-size: 1rem;
  }
  .hero-section button {
    width: 100%;
    padding: 0.35rem;
    font-size: 1rem;
  }
}
/* Divider */
.home-divider {
  position: absolute;
  overflow: hidden;
  background-color: white;
  width: 120%;
  height: 140px;
  top: 92vh;
  transform: rotate(-3.5deg);
  margin-left: -5rem;
  z-index: 99;
}


 /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  background-color: #188754;
  background-image: url("../img/about-bg.svg");
  display: flex;
  height: 100vh;
  padding: 0;
}
.about-section-details {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 65%;
  padding: 10rem 3rem 10rem 10rem;
}
.about-section-details h2,
.about-section-details h3 {
  color: white;
}
.about-section-details h3 {
  font-weight: 400;
  font-size: 1.5rem;
}
.about-section-details h2 {
  font-size: 3.5rem;
  margin: 0.75rem 0;
}
.about-section-details p {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.about-section-images {
  display: flex;
  flex-direction: column;
  width: 35%;
  align-items: flex-end;
}
.about-section-images div {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  transform: rotate(20deg);
  margin-right: -3rem;
  margin-top: -4rem;
}
.about-section-images img {
  width:100%;
  object-fit: cover;
}
.about-section-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.about-section-details button {
  background-color: white;
  border: none;
  width: 200px;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  color: #188754;
  transition: all 0.3s ease;
}
.about-section-details button:hover {
  background-color: #343A40; /* Green background on hover */
  color: white; /* Text changes to white on hover */
}

.about-section-details button:nth-child(2) {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-section-details button:nth-child(2):hover {
  background-color: #343A40; /* Background becomes white on hover */
  color: white; /* Text changes to green on hover */
  border-color: #343A40; /* Border changes to green on hover */
}

.hidden-profile {
}

.see-more-toggle {
  color: white; /* Optional: Blue color for visibility */
  cursor: pointer;
  text-decoration: underline;
  font-style: italic;
  cursor: pointer;
}
.see-more-toggle:hover {
  text-decoration: none; /* Optional: Remove underline on hover */
}

@media (max-width: 1920px) {
  .about-section-images img{
    width: 105%;
  }
}
@media (max-width: 1845px) {
  .about-section-images img{
    width: 110%;
  }
}
@media (max-width: 1720px) {
  .about-section-images img{
    width: 120%;
  }
}
@media (max-width: 1600px) {
  .about-section-images img{
    width: 125%;
  }
}
@media (max-width: 1500px) {
  .about-section-images img{
    width: 150%;
  }
}
@media (max-width: 1200px) {
  .home-divider {
    width: 100%;
    position: unset;
    transform: unset;
    height: 75px;
  }
  .about-section-images{
    display: none;
  }
  .about-section {
    height: unset;
  }
  .about-section-details {
    padding: 6rem;
    width: 100%;
  }
  .about-section-details h2 {
    font-size: 3rem;
    margin: 0;
  }
  .about-section-details h3 {
    font-size: 1.4rem;
  }
  .about-section-details p {
    font-size: 1rem;
  }
  .about-section-cta {
    flex-direction: column;
  }
  .about-section-cta button {
    font-size: 1rem;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .about-section-details {
    padding: 2rem;
  }
  .about-section-details h2 {
    font-size: 2rem;
    margin: 0;
  }
  .about-section-details h3 {
    font-size: 1rem;
  }
  .about-section-details p {
    font-size: 1rem;
  }
  .about-section-cta {
    flex-direction: column;
  }
  .about-section-cta button {
    font-size: 1rem;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Watch Video Modal
--------------------------------------------------------------*/
.watch-video-container {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: brightness(1%) opacity(90%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.watch-video-container span {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
  width: 1280px;
  cursor: pointer;
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --background-color: rgba(var(--accent-color-rgb), .06);
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: rgba(var(--accent-color-rgb), 0.2);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

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

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

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

/*--------------------------------------------------------------
# Values-Section Styling
--------------------------------------------------------------*/

.values-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  /* min-height: 80vh; */
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 55px;
}

.values-section .section-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #2b9348;
  margin-bottom: -50px;
}

.values-section .section-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 30px;
}

.inside-values-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal-width columns */
  gap: 1rem;
  padding: 0.2rem;
}

.top-left {
  grid-column: 1 / 2; 
  grid-row: 1 / 2; 
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left; 
}

.bottom-left {
  grid-column: 1 / 2; 
  grid-row: 2 / 3; 
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.right-center {
  grid-column: 2 / 3; 
  grid-row: 1 / 3; 
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.top-left img {
  max-width: 100px;
  margin-bottom: 1rem;
  display: block;
}

.top-left p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}


.bottom-left img {
  max-width: 100px;
  margin-bottom: 1rem;
  display: block; 
}

.bottom-left p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.right-center img {
  max-width: 100px;
  margin-bottom: 1rem;
  display: block; 
}

.right-center ul {
  font-size: 0.9rem;
  line-height: 1.5;
  list-style: none;
  padding: 0;
}

.right-center ul li {
  margin-bottom: 0.5rem;
}

.top-left,
.bottom-left,
.right-center {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  gap: 1rem; 
}

.top-left img,
.bottom-left img,
.right-center img {
  max-width: 400px;
  max-height: 120px;
  flex-shrink: 0; 
}

.top-left h3,
.bottom-left h3,
.right-center h3 {
  margin: 0;
  font-size: 2rem;
  flex-shrink: 0;
}

.top-left p,
.bottom-left p,
.right-center ul li {
  font-size: 1rem;
}

.top-left,
.bottom-left,
.right-center {
  position: relative;
  overflow: hidden;
}

.top-left::before,
.bottom-left::before,
.right-center::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: #2b9348;
  transition: left 0.4s ease;
}

.top-left:hover::before,
.bottom-left:hover::before,
.right-center:hover::before {
  left: 0;
}

.top-left img,
.bottom-left img,
.right-center img {
  transition: transform 0.4s ease;
}

.top-left:hover img,
.bottom-left:hover img,
.right-center:hover img {
  transform: scale(1.3) rotate(9deg);
}

.top-left:hover h3,
.bottom-left:hover h3,
.right-center:hover h3 {
  background: linear-gradient(to right, #2b9348, #6ec072);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s ease;
}

.top-left:hover p,
.bottom-left:hover p,
.right-center:hover ul li {
  transform: translateY(-5px); 
  transition: transform 0.3s ease;
}

/* Media Query for Block Layout */
@media (max-width: 768px) {
  .inside-values-section {
    display: flex;
    flex-direction: column; 
    gap: 1rem;
    height: auto;
  }

  .top-left,
  .bottom-left,
  .right-center {
    align-items: flex-start; 

  }

  .top-left img{
    max-width: 80px;
    margin: 0 auto;
    max-height: 120px;
    flex-shrink: 0;
    margin-top: 30px;
  }

  .bottom-left img{
    max-width: 80px; 
    margin: 0 auto;
    max-height: 120px;
    flex-shrink: 0;
    margin-top: 20px;
  }

  .right-center img{
    max-width: 60px; 
    margin: 0 auto;
    max-height: 120px;
    flex-shrink: 0;
    margin-top: 180px;
    display: flex;
  }

  .top-left h2,
  .bottom-left h2,
  .right-center h2 {
    font-size: 1.5rem;
  }

  .top-left p,
  .bottom-left p,
  .right-center ul li{
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .values-section {
    padding: 20px 10px; 
 
  }

  .values-section .section-title {
    font-size: 2rem; 

  }

  .values-section .section-subtitle {
    font-size: 1rem;
    margin-top: 3rem;
    text-align: center;
  }

  .top-left img{
    max-width: 70px;
    margin: 0 auto;
    max-height: 120px;
    flex-shrink: 0;
    margin-top: 35px;
  }

  .bottom-left img{
    max-width: 70px;
    margin: 0 auto;
    max-height: 120px;
    flex-shrink: 0;
    margin-top: 20px;
  }

  .right-center img{
    max-width: 80px; 
    margin: 0 auto;
    max-height: 120px;
    flex-shrink: 0;
    margin-top: 200px;
  }

  .right-center {
    flex: 1 1 100%; /* Full-width cards */
    max-width: 100%;
  }

  .top-left h2,
  .bottom-left h2,
  .right-center h2 {
    font-size: 1rem; 
    text-align: left; 
  }

  .top-left p,
  .bottom-left p,
  .right-center ul li {
    font-size: 1rem; 
  }
}

/*--------------------------------------------------------------
# Values-Section Styling Ends
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/* .features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(var(--default-color-rgb), 0.15);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: rgba(var(--accent-color-rgb), 0.04);
}

.features .nav-link.active {
  background: rgba(var(--accent-color-rgb), 0.08);
}

.features .tab-pane img {
  border-radius: 15px;
} */

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
/* .features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
} */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  text-align: center;
  color: white;
  border-radius: 5px;
}

.services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left; /* Ensure the title and subtitle align left */
  padding: 0 5rem;
  background-image: url('../img/about-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -3.5rem;
  height: 40vh;
  gap: 28rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-top: 2.5rem;
  color:#fff
}

.section-subtitle {
  font-size: 1.5rem;
  color:#fff;
}

/* Service Cards */
.inside-services-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
  padding: 0 5rem;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #333;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  width: 350px;
  position: relative; 
  overflow: hidden; 
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
}

.service-card:first-child {
  flex: 2 1 calc(50% - 20px);
  width: calc(700px + 20px); 
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  flex: 1 1 calc(25% - 20px);
}

.inside-services-section .service-card:first-child .service-text ul {
  columns: 2;
  column-gap: 20px;
  column-fill: balance;
}

.service-card:first-child .service-text ul li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.service-text {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #188754;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-text ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.service-text ul li:before {
  content: '';
  display: inline-block;
  width: 20px; 
  height: 20px; 
  margin-right: 10px;
  background-image: url('../img/Check Mark.jpg'); 
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0; 
}

.service-button {
  margin-top: auto; 
}

.service-button button {
  margin-top: 1.6rem;
  padding: 8px 16px;
  font-size: 14px;
  color: #343A40; 
  border: 1px solid #343A40; 
  border-radius: 5px; 
  background-color: transparent; 
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}

#second-service-button a {
  margin-top: 0.8rem;
}

#third-service-button a {
  margin-top: 1rem;
}

#fourth-service-button a {
  margin-top: 0.8rem;
}

.service-button button:hover {
  background-color: #343A40; 
  color: white;
}

.icon-container {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #188754; 
  border-radius: 10%; 
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon-container img {
  width: 20px;
  height: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); 
}

.icon-container {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #188754, #28a745); 

  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.3s;
}

.icon-container img {
  width: 20px;
  height: 20px;
  filter: invert(1); 
  transition: transform 0.3s;
}

.service-card:hover .icon-container {
  background: linear-gradient(45deg, #34c759, #4cd964); 
  transform: scale(1.2); 
}

.service-card:hover .icon-container img {
  transform: rotate(20deg); 
}

.service-button {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.service-button a{
  margin-top: 1.5rem;
  padding: 8px 16px;
  font-size: 14px;
  color: #343A40; 
  border: 1px solid #343A40; 
  border-radius: 5px; 
  background-color: transparent; 
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  width: 100%;
  display: block;
  text-align: center;
}

.service-button a:hover {
  background-color: #343A40; 
  color: white; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

.icon-container:hover {
  animation: pulse 1.5s infinite; 
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
  .inside-services-section {
    padding: 0 2rem;
    flex-direction: column; /* Stacks cards vertically */
    align-items: center;
    justify-content: center;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px); 
    width: 80%;
  }

  /* Reset first card width on tablets */
  .service-card:first-child {
    flex: 1 1 calc(50% - 20px);
    width: 80%;
  }

  /* Reset column layout for mobile/tablet */
  .service-card:first-child .service-text ul {
    columns: 1;
  }

  .services-header {
    padding: 1rem; 
    flex-direction: column;
    margin-bottom: 0;
    margin-top: -3.8rem;
    gap: unset;
  }
  .section-title {
    font-size: 2rem; 
    white-space: nowrap;
    margin-bottom: 0;
    margin-top: 0;
  }

  .section-subtitle {
    font-size: 1rem; 
    white-space: nowrap;
    text-align: center;
  }
  .inside-services-section .service-card:first-child .service-text ul {
  columns: 1;
}
}

/* Responsive Design for Mobile Phones */
@media (max-width: 480px) {
  .inside-services-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .service-card {
    max-width: unset;
    width: 100%;
  }

  .service-card:first-child {
    max-width: unset;
    width: 100%;
    flex: unset;
  }

  .service-card:first-child .service-text ul {
    columns: 1;
  }

  .services-header {
    padding: 1rem; 
    flex-direction: column;
    gap: unset;
  }

  .section-title {
    font-size: 2rem; 
    padding-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem; 
    text-align: center;
  }

  .service-text {
    height: unset;
  }
}

/* Media query for devices with widths between 767px and 1024px */
@media (min-width: 767px) and (max-width: 1024px) {

  .services-header {
    padding: 1rem;
    flex-direction: column;
    gap: unset;
  }
  .section-title {
    font-size: 2rem;
    white-space: nowrap;
    margin-top: .2rem;
  }

  .section-subtitle {
    font-size: 1rem; 
    white-space: nowrap;
    text-align: center;
  }

  .inside-services-section {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
  }

  .service-card {
    flex: 1 1 45%; 
    max-width: 45%; 
    margin: 10px; 
  }

  /* Reset first card width on medium tablets */
  .service-card:first-child {
    flex: 1 1 45%;
    max-width: 45%;
    width: unset;
  }

  /* Reset column layout for medium tablets */
  .service-card:first-child .service-text ul {
    columns: 1;
  }
  .inside-services-section .service-card:first-child .service-text ul {
    columns: 1;
  }
  
}

.inside-services-section-old {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 50px;
  padding: 0 5rem;
  flex-wrap: wrap;
}

.inside-services-section-old .service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #333;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}


/* Old service text */
.inside-services-section-old .service-text {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inside-services-section-old .service-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #188754;
}

.inside-services-section-old .service-card img {
  width: 100%;
  object-fit: cover;
}

.inside-services-section-old .service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inside-services-section-old .service-text ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.inside-services-section-old .service-text ul li:before {
  content: '';
  display: inline-block;
  width: 20px; 
  height: 20px; 
  margin-right: 10px;
  background-image: url('../img/Check Mark.jpg'); 
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0; 
}

/* Buttons, hover, icons also scoped */
.inside-services-section-old .service-button { margin-top: auto; }
.inside-services-section-old .service-button a {
  margin-top: 1.5rem;
  padding: 8px 16px;
  font-size: 14px;
  color: #343A40; 
  border: 1px solid #343A40; 
  border-radius: 5px; 
  background-color: transparent; 
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  width: 100%;
  display: block;
  text-align: center;
}
.inside-services-section-old .service-button a:hover {
  background-color: #343A40; 
  color: white; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
   .inside-services-section-old {
    padding: 0 2rem;
    flex-direction: column;
    align-items: center;
  }

  .inside-services-section-old .service-card {
    flex: 1 1 80%;
    width: 80%;
    max-width: 80%;
  }
}
@media (max-width: 480px) {
 .inside-services-section-old {
    flex-direction: column;
    align-items: center;
  }

  .inside-services-section-old .service-card {
    width: 100%;
    max-width: 100%;
    flex: unset;
  }
}

/*HEADER STYLES*/
.blogs-page-header {
  background-color: #188754;
  background-image: url("../img/about-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47rem;
  height: 25rem;
}

.announcements-page-header {
  background-color: #188754;
  background-image: url("../img/about-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34rem;
  height: 25rem;
}

.careers-page-header {
  background-color: #188754;
  background-image: url("../img/about-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40rem;
  height: 25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blogs-page-header, .announcements-page-header, .careers-page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50rem;
    height: auto;
    flex-direction: column;
    text-align: center;
    height: 20rem;
  }
}

/* Services Page */
.services-page-content {
  padding: 1rem;
}
.services-page-header {
  background-color: #188754;
  background-image: url("../img/about-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40rem;
  height: 25rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
  padding-top: 5rem;
}

.services-breadcrumb {
  font-size: 1.2rem;
  display: flex;
  gap: 0.5rem;
  padding-top: 5rem;
}

.services-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.services-breadcrumb a:hover {
  text-decoration: underline;
}

.services-breadcrumb span {
  color: #ddd;
}

/* Search Bar */
.services-search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

#services-search-input {
  width: 300px;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#services-filter-button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #2f8f2f;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#services-filter-button:hover {
  background: #267326;
}

/* Services List Container */
.services-list-container {
  padding: 2rem 7rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Service Categories */
.services-category {
  border-bottom: 1px solid #cfcfcfa9;
  padding-bottom: 3rem;
}

.category-title {
  font-size: 2rem;
  color: #2f8f2f;
  margin-bottom: 2rem;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
  gap: 1.5rem;
}

/* Service Cards */
.custom-service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.custom-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-title {
  font-size: 1.5rem;
  color: #2f8f2f;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
}

.card-description {
  font-size: 1rem;
  padding: 0 1rem 1rem;
  color: #555;
}

.card-keywords {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-button {
  background: #f0f0f0;
  border: none;
  border-radius: 5px;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: #555;
}

.keyword-button:hover {
  background: #ddd;
}


#contract-admin-more-text {
  display: none;
}


.see-more-btn {
  background: none;
  border: none;
  color: #188754;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.see-more-btn:hover {
  color: #145d40;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .services-search-bar {
    grid-template-columns: repeat(1, 1fr);
  }

  #services-search-input {
    width: 100%;
  }

  .services-page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50rem;
    height: auto;
    flex-direction: column;
    text-align: center;
    height: 20rem;
  }

  .services-breadcrumb {
    font-size: 1rem;
    margin-top: -54rem;
  }

  .custom-service-card {
    width: unset;
  }

  .services-list-container {
    padding: 2rem 4rem;
  }
}

@media (max-width: 425px) {
  
  .services-list-container {
    padding: 1rem 2rem;
  }

  .custom-service-card {
    width: 100%;
    align-self: center;
  }

  .category-card-grid {
    grid-template-columns: unset;
  }
}
/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: rgba(var(--accent-color-rgb), 0.04);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  background-color: var(--default-color);
  color: var(--contrast-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: rgba(var(--default-color-rgb), 0.7);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(var(--default-color-rgb), 0.4);
}

.pricing ul .na i {
  color: rgba(var(--default-color-rgb), 0.4);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
 FAQ Section
--------------------------------------------------------------*/
.faq-section {
  display: flex;
  padding: 5rem 10rem;
  gap: 4rem;
  border-bottom: 1px solid #cfcfcfa9;
}

.faq-main {
  width: 70%;
}
.faq-main h2 {
  color: #188754;
  font-size: 3.5rem;
  font-weight: 700;
}
.faq-main h3 {
  color: #858585;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.faq-main ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 3rem;
  margin-bottom: 0;
}
.faq-main ul li {
  border: 1px solid #85858550;
  padding: 1.5rem;
  cursor: pointer;
}
.faq-main .faq-question {
  display: flex;
  justify-content: space-between;
}
.faq-main p {
  color: #717171;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 1rem;
}
.faq-main h4 {
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
}
.faq-main button {
  background-color: #343A40;
  color: white;
  border: 0;
  border-radius: 0.25rem;
  font-size: 1rem;
  margin-top: 2rem;
  padding: 0.5rem 1.5rem;
}
.faq-img {
  width: 30%;
  object-fit: cover;
  height: 750px;
}
@media (max-width: 1000px) {
  .faq-section {
    padding: 5rem 6rem;
  }
  .faq-main {
    width: 100%;
  }
  .faq-main h2 {
    font-size: 3rem;
  }
  .faq-main h3 {
    font-size: 1.4rem;
  }
  .faq-main h4 {
    font-size: 1.25rem;
  }
  .faq-main p {
    font-size: 1rem;
  }
  .faq-main button {
    font-size: 1rem;
    width: 100%;
  }
  .faq-img {
    display: none;
  }
}
@media (max-width: 600px) {
  .faq-section {
    padding: 2rem 2rem;
  }
  .faq-main h2 {
    font-size: 2rem;
  }
  .faq-main h3 {
    font-size: 1rem;
  }
  .faq-main ul {
    margin-top: 1.5rem;
  }
  .faq-main ul li {
    padding: 1.35rem;
  }
  .faq-main h4 {
    font-size: 1rem;
  }
  .faq-main button {
    margin-top: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(var(--default-color-rgb), 0.15);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: rgba(var(--accent-color-rgb), 0.03);
  border-color: rgba(var(--accent-color-rgb), 0.2);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  --background-color: rgba(var(--accent-color-rgb), .03);
}

.testimonials .testimonial-item {
  background-color: var(--contrast-color);
  box-shadow: 0px 0 20px rgba(var(--default-color-rgb), 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}
.testimonials-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.testimonials-title h2 {
  color: #188754;
  font-size: 3.5rem;
  font-weight: 700;
}
.testimonials-title h3 {
  color: #858585;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
  
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }

  .testimonials-title h2 {
    font-size: 3.5rem;
  }
}

/* Responsive Styling for Tablets */
@media (max-width: 1024px) {
  .testimonials-title h2 {
    font-size: 3rem; /* Slightly smaller heading */
  }
  .testimonials-title h3 {
    font-size: 1.25rem; /* Reduce subheading size */
  }
}

/* Responsive Styling for Small Screens */
@media (max-width: 575px) {
  .testimonials-title h2 {
    font-size: 2.5rem; /* Smaller heading */
  }
  .testimonials-title h3 {
    font-size: 1.1rem; /* Smaller subheading */
  }
}

/* Responsive Styling for Extra Small Screens */
@media (max-width: 425px) {
  .testimonials-title h2 {
    font-size: 2rem; /* Even smaller heading for extra small screens */
  }
  .testimonials-title h3 {
    font-size: 1rem; /* Smaller subheading */
    text-align: center; /* Ensures alignment for narrow screens */
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0 0 4px rgba(var(--default-color-rgb), 0.15);
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(var(--default-color-rgb), 0.15);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0 0 4px rgba(var(--default-color-rgb), 0.15);
}
.contacts-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.contacts-title h2 {
  color: #188754;
  font-size: 3.5rem;
  font-weight: 700;
}
.contacts-title h3 {
  color: #858585;
  font-size: 1.5rem;
  font-weight: 400;
  width: 40ch;
  text-align: center;
}

.container {
  padding: 0 2rem; /* Adds space from both sides */
}

.info-item {
  margin: 0.1rem; /* Adds space between individual items */
  text-align: center; /* Centers the text and icons for better alignment */
  padding: 0.1rem;
  border-radius: 0.1rem; /* Optional: Slightly rounds the corners */
  background-color: #fff; /* Optional: Sets a clean white background */
}
/* Responsive Styling for Tablets */
@media (max-width: 1024px) {
  .contacts-title h2 {
    font-size: 3rem; /* Slightly smaller heading */
  }
  .contacts-title h3 {
    font-size: 1.25rem;
    width: 35ch; /* Reduce width for smaller screens */
  }
}

/* Responsive Styling for Small Screens */
@media (max-width: 575px) {
  .contacts-title h2 {
    font-size: 2.5rem; /* Smaller heading */
  }
  .contacts-title h3 {
    font-size: 1.1rem; /* Smaller subheading */
    width: 30ch; /* Reduce width further */
  }
}

/* Responsive Styling for Extra Small Screens */
@media (max-width: 425px) {
  .contacts-title h2 {
    font-size: 2rem; /* Even smaller heading for extra small screens */
  }
  .contacts-title h3 {
    font-size: 1rem; /* Smaller subheading */
    width: 90%; /* Use percentage for better fluidity */
  }
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.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 var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.12);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: rgba(var(--default-color-rgb), 0.04);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blogs Page
--------------------------------------------------------------*/
.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left; /* Ensure the title and subtitle align left */
  padding: 7.5rem 10rem;
  margin-top: 10vh;
  background-image: url('../img/about-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-header .posts-title {
  font-size: 2.5rem;
  font-weight: bold;
  color:#fff;
  margin: 0;
}
.posts-header .posts-subtitle {
  font-size: 1.5rem;
  color:#fff;
  margin: 0;
}
.posts-header .posts-subtitle a {
  color: #fff;
}
.posts.section-title {
  padding-bottom: 0;
}
.posts-title {
  font-size: 2rem;
  color: #2f8f2f;
  margin: 2rem 0;
  margin-left: 10rem;
}
.latest-post-container {
  border-radius: 1rem;
  margin: 1rem 10rem;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease, box-shadow 0.3s ease;
}
.latest-post-container:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.latest-post-container:hover h3 {
  color: #188754;
}
.latest-post {
  display: flex;
  margin-bottom: 1rem;
}
.latest-post img {
  width: 40%;
  border-radius: 1rem;
  object-fit: cover;
  height: 300px;
  left: 2px
}
.latest-post div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  padding: 0 2rem;
}
.latest-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.latest-post p,
.latest-post h3 {
  color: black; 
  margin: 0.5em 0;
}

.post-card-cta {
  color: green; 
  font-weight: bold;
}

.latest-post h3 {
  color: black !important;
}
.posts-container {
  width: 100%;
  padding: 2rem 10rem;
}
.posts-container h2 {
  color: #2f8f2f;
  font-size: 2rem;
}
.post-options-container {
  display: flex;
}
.post-options {
  display: flex;
  flex: 2;
}
.posts-search {
  flex: 1;
}
.posts-search-container {
  width: 50%;
}
.posts-option-container {
}
.posts-option-details {
  position: absolute;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
  margin-top: 1rem;
  padding: 1rem;
  gap: 1rem;
  z-index: 996;
}
.posts-option-details .sort-option {
  display: flex;
  align-items: center;
}
.posts-option-details .sort-orders {
  display: flex;
  gap: 1rem;
}
.posts-option-details .sort-order {
  border: 1px solid black;
  border-radius: 0.15rem;
  padding: 0.5rem 1rem;
}
.sort-order.active {
  border: 1px solid #2f9264;
}
.posts-option-details input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #2f9264;
  cursor: pointer;
  margin-right: 0.5rem;
}
.posts-option-details select {
  width: 250px;
}
.posts-option {
  background-color: white;
  border: 2px solid white;
  color: #333;
  padding: 0.5rem;
  border-radius: 0.25rem;
  outline: none;
}
.posts-option:hover {
  border: 2px solid #2f9264 !important;
}
.feather-search {
  position: absolute;
  margin-top: 12px;
  margin-left: 12px;
}
.posts-search {
  width: 100%;
  padding: 0.5rem 2.25rem;
  border: 1px solid rgb(175, 175, 175);
  border-radius: 0.25rem;
}
.posts-search:focus {
  background-color: transparent;
  outline: 2px solid #2f9264;
}
.post-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  padding: 0 10rem 1rem 10rem;
}
.post-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.post-card-image {
  height: 150px;
  width: 100%;
  overflow: hidden;
  cursor: default;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .card-image img {
  transform: scale(1.05);
}
.post-card-content {
  padding: 20px;
}
.post-card-tag {
  display: inline-block;
  background-color: #f0f0f0;
  color: #555;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.post-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.card-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.post-card-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #888;
  margin-top: 15px;
}
.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.post-card-meta .date {
  margin-left: auto;
}
.post-card-cta {
  display: inline-block;
  color: #188754;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 5px;
  transition: color 0.3s ease;
}
.post-card-cta:hover {
  color: #126840;
}
.post-card-tag,
.post-card-title,
.post-card-excerpt,
.post-card-meta .author,
.post-card-meta .date {
  color: black;
}

.post-card-cta {
  color: green;
  font-weight: bold;
  text-decoration: none;
}

.post-card-cta:hover {
  text-decoration: underline;
}
.post-card-title {
  color: black !important;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
}
.page-link {
  padding: 8px 12px;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 4px;
}
.page-link.active {
  background-color: #188754;
  color: white;
  border-color: #188754;
}

.page-link:hover:not(.active) {
  background-color: #f5f5f5;
}
@media (max-width: 1200px) {
  .post-card-container {
    grid-template-columns: repeat(2, 1fr);
    /* margin: 0 2rem; */
  }
}

@media (max-width: 1075px) {
  .posts-title {
    margin-left: 2rem;
  }
  .latest-post-container {
    margin: 0 2rem;
    border-bottom: 1px dashed #919191;
    border-radius: 0;
  }
  .latest-post {
    flex-direction: column;
  }
  .case-study-thumb,
  .case-study-content {
    width: 100% !important;
  }
  .case-study-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem;
  }
  .case-study-footer > * {
    width: 100% !important;
    text-align: center !important;
  }
  .latest-post img,
  .latest-post div {
    width: 100%;
  }
  .latest-post div {
    padding: 0;
  }
  .posts-container,
  .post-card-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem;
  }
  .posts-container {
    padding-bottom: 1rem;
  }
  .post-card-container {
    padding-top: 0rem;
  }
  .posts-search {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10vh 3rem 3rem 3rem;
}
.blog-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0;
  width: 60%;
}
.blog-info .blog-info-text {
  width: 100%;
}
.blog-info .blog-info-text h1 {
  text-align: left;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blog-info .blog-info-text div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #727272;
  font-style: italic;
}
.blog-info .blog-info-text div p {
  margin-bottom: 0;
}
.blog-info img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}
.blog-content {
  padding: 0;
  width: 60%;
}
.blog-suggestion {
  width: 60%;
}
.blog-suggestion .blog-cards {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.blog-cards .blog-card-content {
  background-color: #fdfdfd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 0.5rem;
  width: 45%;
}
.blog-cards .blog-card-content:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.blog-card-content-text {
  padding: 1.25rem;
}
.blog-cards .blog-card-content img {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.blog-read-more {
  color: green;
  font-weight: bold;
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.blog-read-more:hover {
  text-decoration: underline;
}

.blog-social {
  border-top: 0.5px solid rgb(163, 163, 163);
  border-bottom: 0.5px solid rgb(163, 163, 163);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  padding: 2rem 0;
  margin-top: 3rem;
}
.blog-social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.blog-social-icons svg{
  width: 32px;
  height: 32px;
}

@media (max-width: 1200px) {
  .blog-info,
  .blog-content,
  .blog-suggestion,
  .blog-social {
    width: 90%;
  }
  .blog-info .blog-info-text h1 {
    text-align: left;
    font-size: clamp(24px, 4vw, 48px);
  }
  .blog-suggestion .blog-cards {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
  .blog-cards .blog-card-content {
    width: 100%;
  }

  .blog-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-content figure,
  .blog-content [data-mce-style],
  .blog-content div[style*="width"] {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
  }
  .blog-content .image-left,
  .blog-content .image-right,
  .blog-content [style*="float"] {
    float: none !important;
  }
}

/* Quote Modal Styles */
.quote-modal-container {
  backdrop-filter: brightness(1%) opacity(90%);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}
.quote-modal-container span {
  color: white;
  width: 90%;
  margin-bottom: 1rem;
  max-width: 930px;
  text-align: right;
}
.quote-modal {
  backdrop-filter: 2rem;
  display: flex;
  width: 90%;
  max-width: 930px;
}
.quote-modal-close{
  cursor: pointer;
}
.quote-modal-left {
  background-image: url('../img/modal-cover.svg');
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  width: 50%;
  height: 683px; 
}
.quote-modal-left-header {
  display: flex;
  gap: 1rem;
  padding: 2rem 1.5rem;
  display: none;
}
.quote-modal-left-header div:first-child {
  width: 70%;
}
.quote-modal-left-header h2,
.quote-modal-left-header h3 {
  color: white;
  display: none;
}
.quote-modal-left-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.quote-modal-left-header h3 {
  font-size: 0.9rem;
  font-weight: 300;
}
.quote-modal-left-header img:nth-child(2) {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.quote-modal-cover {
  object-fit: cover;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: -2.75rem;
}
.quote-modal-left-details {
  background-color: #fef3ff;
  border-top-left-radius: 300% 300px;
  border-top-right-radius: 300% 300px;
  padding: 5rem 1.5rem 1rem 1.5rem;
  display: none;
}
.quote-modal-brands {
  display: flex;
  justify-content: space-between;
}
.quote-modal-brands img {
  width: 60px;
  height: 15px;
  display:none
}
.quote-company-client {
  margin-top: 2rem;
}
.quote-company-client p {
  color: #777;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  display: none;
}
.quote-company-client ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 0;
  display: none;
}
.quote-company-client ul li {
  color: #777;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 500;
}
.quote-company-client span {
  color: #1e4eca;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
}
.quote-modal-right {
  background-color: white;
  width: 50%;
}
.quote-modal-cta {
  background-color: #343A40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.quote-modal-cta h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}
.quote-modal-cta button {
  background-color: white;
  border-radius: 0.5rem;
  border: 0;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  padding: 0.5rem 2rem;
}
.quote-modal-main {
  padding: 1rem 1.5rem;
}
.quote-modal-progress-indicator {
  background-color: #e1e1e1;
  display: flex;
  width: 100%;
  height: 15px;
  border-radius: 1rem;
}
.quote-modal-progress-indicator span {
  transition: all 0.25s ease-in-out;
  width: 25%;
  height: 15px;
}
.quote-modal-progress-indicator span:first-child {
  width: 25%;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.quote-modal-progress-indicator span:last-child {
  width: 25%;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.progress-active {
  background-color: #188754;
}
.quote-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}
.quote-modal-main p {
  font-weight: 500;
}
.quote-modal-main input[type="radio"] {
  display: none;
}
.quote-modal-radio-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.quote-modal-radio-label {
  border: 1px solid #e1e1e1;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  text-align: center;
}
.quote-modal-radio-label:hover {
  border: 1px solid #188754;
}
.quote-modal-industry-select {
  background-color: white;
  color: #777;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem;
  width: 100%;
}
.quote-modal-third-step div {
  margin-bottom: 0.5rem;
}
.quote-modal-third-step label {
  font-weight: 500;
}
.quote-modal-third-step input {
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  width: 100%;
}
.quote-modal-third-step input::placeholder {
  font-size: 0.8rem;
  color: #ccc;
}
.quote-modal-third-step textarea {
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  resize: none;
  width: 100%;
}
.quote-modal-name {
  display: flex;
  justify-content: space-between;
}
.quote-modal-first-name,
.quote-modal-last-name {
  width: 49%;
}
.quote-modal-first-name label,
.quote-modal-last-name label,
.quote-modal-email label,
.quote-modal-number label {
  font-size: 0.9rem;
  font-weight: 700;
}
.quote-modal-first-name input,
.quote-modal-last-name input,
.quote-modal-email input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
}
.quote-modal-number input{
  border: 0;
  padding: 0.5rem 1rem;
  width: 100%;
}
.quote-modal-number input:focus {
  border: none;
  outline: none;
}
.iti {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: white !important;
}

.iti__country-list {
  background: #fff; /* Sets background color */
  color: #333; /* Ensures text is dark */
}

.iti__country {
  color: #333 !important; /* Ensures country names are visible */
}

.iti__country:hover, 
.iti__country.iti__highlight {
  background: #f1f1f1; /* Hover effect */
}
.quote-notice {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: #777;
}
.quote-modal-fourth-step span {
  color: black;
}
.quote-modal-error-message {
  color: red;
}
.quote-modal-buttons {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 1rem;  
}
.quote-modal-submit,
.quote-modal-next {
  background-color: #0056b3;
  color: white;
  border: 0;
  border-radius: 0.35rem;
  padding: 0.65rem 1rem;
  width: 100%;
}
.quote-modal-back {
  color: #777;
  background-color: transparent;
  border: none;
  font-weight: 400;
}
.hidden {
  display: none;
}

@media (max-width: 820px) {
  .quote-modal-container {
    justify-content: flex-end;
  }
  .quote-modal-container span {
    width: 100%;
  }
  .quote-modal {
    width: 100%;
  }
  .quote-modal-left {
    display: none;
  }
  .quote-modal-right {
    width: 100%;
  }
}

/* Footer Styles */
.footer-main {
  background-color: #188754;
  background-image: url("../img/about-bg.svg");
  display: flex;
  padding: 5rem 10rem;
  justify-content: space-between;
  gap: 2rem;
  background-repeat: no-repeat;
}
.footer-main .footer-contact-info {
  width:33%;
}
.footer-contact-info .footer-logo {
  width: 300px;
  margin-bottom: 1.5rem;
}
.footer-contact-info p {
  color: white;
  font-size: 1rem;
}
.footer-contact-info p:nth-child(2) {
  text-align: justify;
  margin-bottom: 1.25rem;
}
.footer-contact-info p span {
  margin-right: 1rem;
}
.footer-main .footer-useful-links {
  width: 17%;
}
.footer-main .footer-our-services {
  width: 17%;
}
.footer-main .footer-subscribe-social {
  width: 33%;
}
.footer-useful-links h3,
.footer-our-services h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-useful-links ul,
.footer-our-services ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-useful-links ul li,
.footer-our-services ul li {
  position: relative;
  color: white;
  font-size: 1rem;
  padding-left: 2rem;
}
.footer-useful-links ul li::before,
.footer-our-services ul li::before {
  content: "\203A";
  position: absolute;
  transform: translateY(-10%);
  left: 0;
  font-size: 1rem;
  font-weight: 300;
  color: white;
}
.footer-useful-links ul li a,
.footer-our-services ul li a {
  color: white;
}
.footer-subscribe-social h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-subscribe-social p {
  color: white;
  font-size: 1rem;
}
.footer-subscribe {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.footer-subscribe input {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 2rem;
  border: 0;
  padding: 0.75rem;
  padding-left: 1.5rem;
}
.footer-subscribe input:focus {
  outline: 0;
}
.footer-subscribe button {
  position: absolute;
  background-color: #343A40;
  color: white;
  width: 150px;
  border-radius: 2rem;
  border: 0;
  padding: 0.75rem;
  margin-left: -150px;
}
.footer-subscribe div {
  display: none;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials img {
  width: 40px;
  height: 40px;
}
.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}
.footer-copyright p {
  color: #313336;
  font-size: 1rem;
  margin: 0;
}
.footer-copyright span {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .footer-main {
    flex-direction: column;
    padding: 4rem 6rem;
    text-align: center;
  }
  .footer-main .footer-contact-info,
  .footer-main .footer-useful-links,
  .footer-main .footer-our-services,
  .footer-main .footer-subscribe-social {
    width: 100%;
  }
  .footer-contact-info .footer-logo {
    width: 50%;
  }
  .footer-contact-info p {
    font-size: 1rem;
  }
  .footer-contact-info p:nth-child(2) {
    text-align: center;
  }
  .footer-useful-links h3,
  .footer-our-services h3 {
    font-size: 1.4rem;
  }
  .footer-useful-links ul li,
  .footer-our-services ul li {
    font-size: 1rem;
    padding-left: 0;
  }
  .footer-useful-links ul li::before,
  .footer-our-services ul li::before {
    left: 25%;
  }
  .footer-subscribe-social h3 {
    font-size: 1.4rem;
  }
  .footer-subscribe-social p {
    font-size: 1rem;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-copyright {
    padding: 1.5rem;
  }
  .footer-copyright p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .footer-main {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  .footer-useful-links h3,
  .footer-our-services h3 {
    font-size: 1rem;
  }
  .footer-useful-links ul li::before,
  .footer-our-services ul li::before {
    left: 10%;
  }
  .footer-subscribe-social h3 {
    font-size: 1rem;
  }
  .footer-subscribe-social p {
    font-size: 1rem;
  }
}
.grecaptcha-badge {
  /* visibility: hidden !important;
  opacity: 0 !important;
  display: none !important; */
}
.for-remove-div div {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}
.contact-form-submit {
  background-color: #188754;
  color: white;
  border: 0;
  padding: 0.5rem;
  width: 100%;
}
.iub__us-widget.left {
  justify-content: center !important;
}
.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}
/* Career */
.starter-section {
  padding-top: 0;
}
.suggestions {
  z-index: unset !important;
}