/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Aug 07 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 {
  --urbanist-default: "urbanist", sans-serif;
  --urbanist-medium: "urbanist-medium", sans-serif;
  --urbanist-semibold: "urbanist-semibold", sans-serif;
  --urbanist-bold: "urbanist-bold", sans-serif;
  --poppins-regular: "poppins-regular", sans-serif;
  --poppins-semibold: "poppins-semibold", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #000000;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: var(--primary-light-color);
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  /* --primary-color: #0A3981; */
  --primary-color: #193E52;
  /* --primary-light-color: #1F509A; */
  --primary-light-color: #22536E;
  /* --primary-bg-color: #D4EBF8; */
  /* --primary-bg-color: #E3F0F6; */
  --black: #000000;
  --primary-bg-color: #F4FBFF;
  --text-hover-color: #7f9ba6;
  --primarybtnshadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  --secondarybtnshadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  --primary-extralight-color: #D9EFFD;
  --green-light-color: #F2FFF0;

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: var(--primary-color);
  /* The default color of the main navmenu links */
  --nav-hover-color: var(--primary-color);
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(--primary-color);
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.section-background {
  --background-color: var(--primary-bg-color);
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* .accent-background {
  --background-color: #1bbd36;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --primary-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
} */

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

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
  font-family: 'urbanist';
  src: url('../fonts/urbanist/Urbanist-Regular.woff2') format('woff2'),
    url('../fonts/urbanist/Urbanist-Regular.woff') format('woff'),
    url('../fonts/urbanist/Urbanist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'urbanist-medium';
  src: url('../fonts/urbanist/Urbanist-Medium.woff2') format('woff2'),
    url('../fonts/urbanist/Urbanist-Medium.woff') format('woff'),
    url('../fonts/urbanist/Urbanist-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'urbanist-semibold';
  src: url('../fonts/urbanist/Urbanist-SemiBold.woff2') format('woff2'),
    url('../fonts/urbanist/Urbanist-SemiBold.woff') format('woff'),
    url('../fonts/urbanist/Urbanist-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'urbanist-bold';
  src: url('../fonts/urbanist/Urbanist-Bold.woff2') format('woff2'),
    url('../fonts/urbanist/Urbanist-Bold.woff') format('woff'),
    url('../fonts/urbanist/Urbanist-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'poppins-regular';
  src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/poppins/Poppins-Regular.woff') format('woff'),
    url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'poppins-semibold';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('woff2'),
    url('../fonts/poppins/Poppins-SemiBold.woff') format('woff'),
    url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--urbanist-default);
}

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

.container {
  max-width: 1460px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

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

a:hover {
  color: color-mix(in srgb, var(--primary-color), transparent 25%);
  text-decoration: none;
}

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

.form-control:focus {
  outline: 0;
  border-color: unset;
  box-shadow: unset;
}

.fw-bold {
  font-weight: 700;
}

i.bi.bi-arrow-right-short {
  font-size: 24px;
  margin: 0px;
}

/*--------------------------------------------------------------
# Primary / Secondary Button
--------------------------------------------------------------*/

.btn {
  transition: all 0.3s;
  padding: 9px 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.btn.btn-primary {
  background-color: #0A7E3C;
  color: #FFFFFF;
  border: 1px solid #0A7E3C;
}

.btn.btn-primary:hover {
  background-color: #ffffff;
  color: #0A7E3C;
  border-color: #0A7E3C;
}

.btn.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--primary-bg-color);
}

.btn i {
  font-size: 24px;
}

@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

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

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

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

.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(--primary-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Page Top
--------------------------------------------------------------*/
.page-top {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  font-family: var(--urbanist-medium);
  padding: 10px;
}

.page-top a {
  color: var(--contrast-color);
  white-space: pre-wrap;
}

.page-top .top-bar-slider a:hover {
  color: white !important;
}

.top-bar-slider {
  width: 100%;
  text-align: center;
}

.top-bar-slide {
  display: inline-block;
  margin: 0 10px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  background-color: #ffffff;
  /* box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); */
}

.header-content {
  /* position: absolute; */
  color: var(--default-color);
  background-color: #ffffff;
  padding: 11px 0;
  top: 24px;
  left: 0;
  border-radius: 20px;
  /* box-shadow: 0px 4px 20px 0px #0000000D; */
}

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


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

.header .logo span {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  /* padding: 0 0 0 15px; */
  display: flex;
  gap: 10px;
  align-self: center;
  justify-content: end;
  margin-left: auto;
}

.header .header-social-links a {
  color: #000000;
  display: inline-block;
  transition: 0.3s;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header i {
  transition: all 0.3s;
}

.header .header-social-links a:hover i {
  /* color: var(--primary-color); */
  /* background-color: var(--contrast-color); */
  scale: 0.8;
}

.header .header-social-links a i {
  line-height: 0px;
  font-size: 20px;
  margin: 0;
}

.header .download-booklet i {
  font-size: 24px;
  margin: 0px;
}

.header .navmenu li a {
  font-weight: 700;
  color: #828282;
  font-family: var(--urbanist-bold);
}


.header .navmenu li.active a {
  color: #0a7e3c;
  border-bottom: 2px solid;
}

.download-booklet a {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
}

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

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

  .header .header-social-links {
    order: 2;
    padding: 20px;
    position: absolute;
    bottom: 0;
    top: unset;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 768px) {
  .header .logo svg {
    max-width: 160px;
  }

  .header-content {
    padding: 14px 0;
    top: 16px;
  }

  .page-top p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .navigation-container {
    width: 100%;
    display: flex;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    gap: 42px;
    display: flex;
    list-style: none;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .navmenu li {
    position: relative;
  }

  /* .navmenu .nav-links>li:not(:last-child)::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: calc(50% - 4px);
    right: -4px;
    border-radius: 10px;
  } */

  .navmenu ul a,
  .navmenu ul a:focus {
    color: var(--nav-color);
    padding: 10px 0;
    font-size: 16px;
    line-height: 19px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 500;
    border-bottom: 2px solid transparent;
  }

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

  .navmenu li:hover>a {
    border-bottom: 2px solid var(--nav-hover-color);
  }

  .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(0, 0, 0, 0.1);
  }

  .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;
    background-color: var(--primary-bg-color);
  }

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

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

/* Navmenu - Mobile */
@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;
    position: relative;
  }


  .navmenu .navigation-container {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: all 0.6s ease-in-out;
    z-index: 9998;
    height: 100vh;
    max-width: 340px;
    width: 100%;
    padding-top: 24px;
  }

  .navmenu .download-booklet {
    padding: 10px 20px;
  }

  .navmenu .download-booklet a {
    display: inline-flex;
    gap: 6px;
  }

  .navmenu ul {
    /* display: none; */
    list-style: none;
    padding: 10px 0;
    margin: 0;
    /* border-radius: 6px; */
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); */
  }

  .navmenu ul li {
    border-bottom: 1px solid #969696;

  }

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

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

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-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(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    background-color: var(--nav-dropdown-background-color);
    /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown li:has(ul) {
    border: 0;
  }

  .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);
  }

  .navmenu .dropdown>.dropdown-active li:last-of-type {
    border: 0;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--primary-color);
    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>.navigation-container {
    display: block;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  font-size: 14px;
  position: relative;
  padding: 0px;
  background-color: var(--primary-color);
}

.footer-content {
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  /* align-items: center; */
  gap: 100px;
}

.footer-columns {
  display: flex;
  gap: 42px;
  justify-content: space-between;
}

.footer-logo {
  margin-bottom: 18px;
  display: block;
  position: relative;
  padding-top: 103.735%;
}

.footer-logo img {
  display: block;
  border-radius: 20px;
  background-color: var(--primary-bg-color);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.footer .social-links {
  gap: 16px;
}

.footer .social-links a {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  font-size: 16px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
}

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

.footer-info-content {
  flex: 1;
}

.newsletter {
  display: flex;
  align-items: end;
  gap: 40px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.newsletter-title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  width: 100%;
  margin-bottom: 0px;
  padding: 17px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-filed {
  position: relative;
  flex: 1;
}

.newsletter-filed input {
  font-size: 24px;
  border: none;
  color: #ffffff;
  padding: 25px 50px 25px 25px;
  background: #FFFFFF1A;
  border-radius: 10px;
  width: 100%;
}

.newsletter-filed input::placeholder {
  color: #ffffff;
}

.newsletter-btn {
  background-color: transparent;
  border: none;
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  color: #ffffff;
}

.footer-links-info-content {
  max-width: 578px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.footer-links-content {
  flex: 1;
}

.footer-title {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 12px;
  padding: 0px;
  margin: 0px;
}

.footer-links a,
.footer-info-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  font-family: var(--urbanist-medium);
}

.footer-links a:hover,
.footer-info-text:hover {
  color: #ffffff;
}

.footer-info {
  margin-bottom: 34px;
}

.footer-column-newsletter {
  flex: 0 0 37.235%;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 5px;
  position: relative;
}

.newsletter-input input {
  padding: 8.5px;
  width: 100%;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  outline: 0;
  color: #fff;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-input button {
  background-color: #ffffff;
  padding: 8px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  border: 0;
}

@media only screen and (max-width:1199px) {
  .footer-info-content {
    width: 100%;
  }

  .footer-logo-content {
    max-width: fit-content;
  }

  .footer-logo-content svg {
    max-width: 100%;
    height: auto;
  }

  .footer-content {
    gap: 30px;
    flex-direction: column;
  }

}


@media only screen and (max-width:992px) {
  .footer-columns {
    display: flex;
    gap: 22px;
    flex-direction: column-reverse;
  }

  .footer-links-info-content {
    max-width: 100%;
  }
}

@media only screen and (max-width:768px) {
  .footer {
    padding: 30px 0px;
  }

  .footer-content {
    padding: 40px 20px;
  }

  .newsletter {
    flex-direction: column;
    align-items: unset;
    gap: 16px;
  }


  /* .newsletter-filed input {
    padding: 20px 50px 20px 16px;
    font-size: 18px;
  } */

  .footer-links-info-content {
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-links-content {
    flex: 1;
    max-width: unset;
  }

  .footer-info-details {
    margin-top: 20px;
    flex: 0 0 100%;
    display: flex;
  }

  .footer-info-details div {
    width: 50%;
  }

  /* .footer-title {
    margin-bottom: 10px;
    font-size: 20px;
  } */

  .footer-info {
    margin-bottom: 0;
  }

}

@media (max-width:580px) {
  .footer-info-details {
    flex-wrap: wrap;
  }

  .footer-info-details div {
    width: 100%;
  }

  .footer-logo-content {
    max-width: fit-content;
    margin: auto;
  }

  .footer .social-links a {
    width: 45px;
    height: 45px;
  }

  .newsletter-title {
    font-size: 16px;
    line-height: 19px;
    max-width: 100%;
    padding: 14px;
  }

  .newsletter-input {
    padding: 5px;
  }

  .newsletter-input button {
    right: 5px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 140px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.whatsapp_icon {
  position: fixed;
  visibility: visible;
  opacity: 1;
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
  right: 15px;
  bottom: 68px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.whatsapp_icon:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  margin: 12px 0;
}

.page-title h1 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

@media (max-width:768px) {
  .page-title h1 {
    font-size: 24px;
    line-height: 30px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 13px 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.breadcrumbs li.current {
  font-weight: bold;
}

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

.breadcrumbs ol li+li::before {
  content: "»";
  display: inline-block;
  padding-right: 10px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section-subtitle-wrapper {
  max-width: fit-content;
  color: #0a7e3c;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  margin-bottom: 30px;
  padding: 8px 31px;
  border: 2px solid #0A7E3C;
  border-radius: 60px;
}

.title-center .section-subtitle-wrapper {
  margin: 0 auto;
  margin-bottom: 30px;
}

.title-center .section-title {
  text-align: center;
}

.section-subtitle-wrapper .section-subtitle {
  all: unset;
  position: relative;
  padding: 0 54.5px;
}

@media (max-width: 768px) {
  .section-subtitle-wrapper .section-subtitle {
    padding: 0 35px;
  }
}

.section-subtitle-wrapper .section-subtitle::after {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../img/smoothcorner.png');
  background-size: 100%;
}

.section-subtitle-wrapper .section-subtitle::before {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../img/smoothcorner.png');
  background-size: 100%;
}

section,
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title-content {
  margin-bottom: 60px;
  text-align: center;
}

.section-subtitle {
  color: #0a7e3c;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  margin-bottom: 24px;
}

.section-title {
  max-width: 890px;
  width: 100%;
  margin: auto;
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  margin-bottom: 40px;
  color: #000000;
}

.section-title span {
  color: #0A7E3C;
}

.section-subchildtitle {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  color: #000000;
  letter-spacing: 0.5px;
}

.section-info {
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  margin-bottom: 0px;
  color: #828282;
  line-height: 22px;
  letter-spacing: 0;
}

.item-card-title {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  line-height: 22px;
  font-family: var(--urbanist-semibold);
  margin-bottom: 16px;
}

.item-card-number {
  color: #0a7e3c;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  height: 61px;
  width: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  background-color: #0a7e3c21;
  border-radius: 50%;
}

@media (max-width: 1199px) {

  section,
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-title-content {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .item-card-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .section-subchildtitle {
    font-size: 20px;
  }

  .section-info {
    font-size: 16px;
  }

  .item-card-number {
    height: 45px;
    width: 45px;
    font-size: 20px;
  }


}

@media (max-width: 768px) {
  .section-subtitle-wrapper {
    margin-bottom: 12px;
    padding: 4px 10px;
    font-size: 18px;
    line-height: 25px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 26px;
  }

  .section-title-content {
    margin-bottom: 24px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .section-info {
    font-size: 16px;
  }

  .item-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .section-subchildtitle {
    font-size: 18px;
  }

  .item-card-number {
    height: 40px;
    width: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }

}

@media (max-width: 425px) {
  .section-subtitle-wrapper {
    font-size: 16px;
    line-height: 19px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  padding-top: 38.321% !important;
}

@media screen and (max-width:1280px) {
  .hero-section {
    padding-top: unset;
    height: 100vh;
  }

}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: rgba(25, 62, 82, 0.4);
}


.hero-section img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-section .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  text-align: center;
  z-index: 2;
}

.subtitle-wrapper {
  padding: 17.5px;
  border: 3px solid #ffffff;
  border-radius: 60px;
  margin-bottom: 28px;
  max-width: 760px;
  width: 100%;
}

.hero-content h1 {
  color: #ffffff;
  font-family: var(--urbanist-bold);
  font-size: 20px;
  font-family: var(--urbanist-bold);
  font-weight: 700;
  position: relative;
  margin: auto;
  margin-bottom: 0;
  width: fit-content;
  padding: 0 55px;
}

.hero-content h1::after {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../img/smoothcorner-icon.png');
  background-size: 100%;
}

.hero-content h1::before {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../img/smoothcorner-icon.png');
  background-size: 100%;
}

.hero-content .banner-title {
  font-family: var(--urbanist-bold);
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 14px;
}

.hero-content .section-info {
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 940px;
}

.hero-content .action {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-content .action .btn.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1.5px solid #fff;
  font-weight: 700;
  font-family: var(--urbanist-bold);
}

.hero-content .action .btn.btn-secondary:hover {
  background-color: #ffffff;
  color: #193E52;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    padding: 10px 30px;
    font-size: 18px;
  }

  .hero-content .banner-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {

  .subtitle-wrapper {
    padding: 0;
    border-width: 1px;
    margin-bottom: 16px;
  }

  .hero-content h1 {
    font-size: 16px;
    padding: 10px 0;
  }

  .hero-content h1::after,
  .hero-content h1::before {
    display: none;
  }

  .hero-content .banner-title {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-content .section-info {
    margin-bottom: 16px;
  }

  .hero-content .action {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Brand Section
--------------------------------------------------------------*/
.home-mercury {
  animation: scrollBrands 10s linear infinite;
}

.brand-section {
  overflow: hidden;
  background: var(--primary-color);
}

.brand-mercury {
  display: flex;
  width: max-content;
  animation: scrollBrands 30s linear infinite;
}

.brand-item {
  flex: 0 0 auto;
  margin: 0 53px;
  display: flex;
  justify-content: center;
}

.brand-item img {
  height: 39px;
  display: block;
  object-fit: contain;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .brand-item {
    margin: 0 30px;
  }

  .brand-item img {
    height: 30px;
  }
}

@media (max-width: 768px) {
  .brand-item img {
    height: 24px;
  }
}


/*--------------------------------------------------------------
# home about us
--------------------------------------------------------------*/

.home-about-us {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width:1024px) {
  .home-about-us {
    flex-wrap: wrap;
  }
}

.home-about-us-img {
  flex: 0 0 calc(41%);
}

.home-about-img-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-container-big {
  padding-top: 116.769%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.img-container-small {
  padding-top: 75.298%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.home-about-img-content img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-us-img {
  display: flex;
  gap: 20px;
  flex: 0 0 49.296%;
}

.home-about-us-content {
  flex: 1;
}

.home-about-us-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 49.296%;
}

.about-card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-card-grid .about-card {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 20px;
  /* flex: 1; */
  width: calc((100% - 20px) / 2);
}

@media screen and (max-width:580px) {
  .about-card-grid .about-card {
    flex: 0 0 100%;
  }
}

.about-card-grid .about-card p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  font-family: 'urbanist-semibold';
  color: #828282;
}

.about-card-grid .about-card .image-wrapper {
  padding: 18px;
  background: rgba(10, 126, 60, 0.14);
  border-radius: 4px;
}

.about-top-info {
  padding-bottom: 28px;
  border-bottom: 1px solid #EBEBEB;
}

.home-about-us .section-title-content {
  text-align: start;
}

.about-info-list .section-info {
  display: flex;
  gap: 20px;
}

.about-info-list .section-info:not(:last-child) {
  margin-bottom: 24px;
}

/* .about-info-list p::before {
  content: '';
  height: 30px;
  flex: 0 0 30px;
  display: block;
  background-image: url('../img/check-icon.png');
  background-size: cover;
} */

/* .home-about-us-info .more-about-us {
  margin-top: auto;
} */

@media only screen and (max-width: 1024px) {
  .home-about-us-info {
    gap: 20px;
  }

  .home-about-us .home-about-us-img,
  .home-about-us .home-about-us-info {
    flex: 0 0 100%;
  }

  .about-top-info {
    padding-bottom: 20px;
  }

  .about-info-list .section-info:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {

  .about-info-list .section-info:not(:last-child) {
    margin-bottom: 14px;
  }

  .about-info-list .section-info {
    gap: 14px;
  }

  .about-info-list p::before {
    height: 24px;
    flex: 0 0 24px;
  }
}

/*--------------------------------------------------------------
# home our services
--------------------------------------------------------------*/

.home-our-services {
  background-color: var(--primary-bg-color);
  overflow: hidden;
}

.home-our-services .section-title {
  margin-bottom: 12px;
}

.home-our-services .section-info {
  font-size: 24px;
  line-height: 31px;
}

@media screen and (max-width: 768px) {
  .home-our-services .section-info {
    font-size: 18px;
    line-height: 22px;
  }

}

.services-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

.services-card .item-card-number {
  background-color: #193E52;
  color: #ffffff;
  width: 59px;
  height: 59px;
  font-weight: 600;
}

.services-card .item-card-title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}

.services-card .image-container {
  height: 100%;
  padding-top: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.services-card .image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card .card-info-content {
  flex: 1;
  padding: 17px 0;
}

.services-card .card-info-content p {
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
  font-weight: 600;
}

.services-card .card-img {
  flex: 0 0 36.112%;
}

.services-card .card-title {
  margin-bottom: 16px;
}

.services-card .section-info {
  margin-bottom: 8px;
}

.home-our-services .home-our-services-slider.slick-slider {
  margin-bottom: 0px;
}

.card-more-link {
  background-color: #0A7E3C;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  padding: 0 13px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  display: flex;
  gap: 16px;
  border-radius: 5px;
  font-family: var(--urbanist-bold);
}

.card-more-link .bi-arrow-right-short {
  width: 30px;
  height: 30px;
}

.card-more-link .bi-arrow-right-short::before {
  font-size: 30px;
}

.card-more-link:hover {
  border: 2px solid #0A7E3C;
  background-color: #ffffff;
}

.services-slider-item {
  padding: 0px 10px;
}

.home-our-services-slider .slick-list {
  overflow: unset;
}

.home-our-services-slider .slick-dots {
  margin-top: 60px;
  padding: 25px 120px;
  display: flex;
  position: static;
  border-radius: 20px;
  overflow: hidden;
}

.home-our-services-slider .slick-dots {
  display: none !important;
}

.home-our-services-slider .slick-dots li {
  margin: 0px;
  flex: 1;
  background-color: #ffffff;
  height: auto;
}

.home-our-services-slider .slick-dots li:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.home-our-services-slider .slick-dots li:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.home-our-services-slider .slick-dots button {
  padding: 5px;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.home-our-services-slider .slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

.home-our-services-slider .slick-dots button::before {
  display: none;
}

.home-our-services-slider .slick-arrow {
  width: 61px;
  height: 61px;
  background-color: var(--primary-color) !important;
  z-index: 10;
  border-radius: 50%;
  top: 35%;
  transform: translateY(-50%);
  transition: 0.3s;
  border: 2px solid var(--primary-color);
  opacity: 0.6;
}

.home-our-services-slider .slick-arrow:hover {
  opacity: 0.8;
}

.home-our-services-slider .slick-arrow::before {
  content: "\f135";
  font-family: 'bootstrap-icons';
  font-size: 28px;
  color: #ffffff !important;
  transition: 0.3s;
  opacity: 1;
}

.home-our-services-slider .slick-arrow.slick-next {
  right: 0px;
}

.home-our-services-slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0px;
}

@media only screen and (max-width: 1024px) {
  .services-card .section-info {
    margin-bottom: 24px;
  }

  .home-our-services-slider .slick-arrow {
    height: 45px;
    width: 45px;
  }

  .home-our-services-slider .slick-arrow::before {
    font-size: 24px;
  }

  .home-our-services-slider .slick-dots {
    margin-top: 40px;
    padding: 18px 80px;
  }
}

@media only screen and (max-width: 768px) {
  .services-card {
    padding: 20px;
    flex-direction: column-reverse;
  }

  .services-slider-item {
    padding: 0px 5px;
  }

  .services-card .section-info {
    margin-bottom: 16px;
  }

  .home-our-services-slider .slick-arrow {
    height: 40px;
    width: 40px;
  }

  .home-our-services-slider .slick-arrow::before {
    font-size: 20px;
  }

  .home-our-services-slider .slick-dots button {
    padding: 3px;
  }

  .home-our-services-slider .slick-dots {
    padding: 17px 60px;
  }
}


/*--------------------------------------------------------------
# Why choose us
--------------------------------------------------------------*/


.why-choose-us-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.why-choose-us-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: #F4FBFF;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.why-card-icon {
  width: fit-content;
  padding: 12px;
  background-color: white;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgba(210, 239, 255, 1)
}

.why-card-icon img {
  width: 44px;
  height: 44px;
  margin: 0;
  object-fit: contain;
}

.why-card.full-width {
  grid-column: span 2;
}

.why-card-title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  margin-bottom: 14px;
  color: #111;
}

.why-card-text {
  font-size: 18px;
  line-height: 24px;
  color: #828282;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  margin-bottom: 0;
}

.highlight-card {
  background-color: #033342;
  color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.highlight-card .why-card-text {
  color: rgba(255, 255, 255, 0.73);

}

.highlight-card .why-card-title {
  color: #ffffff;
}


/* Responsive */
@media (max-width: 991px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-us-left {
    grid-template-columns: 1fr;
  }

  .why-card.full-width {
    grid-column: auto;
  }

  .highlight-card .why-card-text {
    color: rgba(255, 255, 255, 0.73);
    margin-bottom: 16px;
  }
}

@media (max-width:540px) {
  .why-card-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .why-card-text {
    font-size: 16px;
    line-height: 20px;
  }
}


/*--------------------------------------------------------------
# Working with us
--------------------------------------------------------------*/


.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-steps .process-step:nth-of-type(even) {
  flex-direction: row-reverse;
}

.process-steps .process-step:nth-of-type(odd) {
  flex-direction: row;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  padding-bottom: 22px;
}

.process-steps .process-step:last-child {
  padding-bottom: 0;
}

.process-image {
  width: 50%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  padding-top: 24.085%;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.process-content {
  width: 50%;
  background-color: #f1f9ff;
  border-radius: 20px;
  padding: 50px 24px;
}

.count-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.count-title span {
  font-family: var(--poppins-semibold);
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  background-color: #193E52;
  width: 59px;
  height: 59px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.process-title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  color: #111;
  margin-bottom: 0;
}

.process-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  color: #828282;
  margin-bottom: 0;
}

/* Connector dots (optional decorative element) */
.process-step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 7px solid #193E52;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.3);
  width: 30px;
  height: 30px;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #F4FBFF;
}


/* Responsive */

@media (max-width: 1280px) {
  .process-content {
    padding: 24px;
  }
}

@media (max-width: 992px) {
  .process-steps .process-step {
    gap: 20px;
  }

  .process-steps .process-step:nth-of-type(odd) {
    flex-direction: column;
    gap: 20px;
  }

  .process-steps .process-step::before,
  .process-steps .process-step::after {
    display: none;
  }

  .process-steps .process-step:nth-of-type(even) {
    flex-direction: column;
  }

  .process-steps .process-step .process-content {
    width: 100%;
  }

  .process-steps .process-step .process-image {
    width: 100%;
    padding-top: 50%;
  }
}

@media (max-width: 580px) {

  .working-with-us-wrapper .process-steps .process-step {
    gap: 10px;
  }

  .process-steps .process-step .process-image {
    padding-top: 60%;
  }

  .process-content {
    padding: 18px 14px;
  }

  .count-title span {
    font-size: 18px;
    line-height: 22px;
    width: 40px;
    height: 40px;
  }

  .process-title {
    font-size: 20px;
    line-height: 24px;
  }

  .process-text {
    font-size: 16px;
    line-height: 20px;
  }
}




/*--------------------------------------------------------------
# We are driven by values
--------------------------------------------------------------*/

.driven-values-container {
  padding: 24.508%;
  position: relative;
  background-image: url('../img/home/driven-values-image.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.driven-card {
  background-color: var(--primary-bg-color);
  box-shadow: 0px 4px 12px 0px #0000001A;
  padding: 10px 56px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  min-height: 173px;
  max-width: 250px;
  width: 100%;
}

.driven-card .section-subchildtitle {
  margin-bottom: 0px;
}

.driven-card img {
  max-width: 60px;
  width: 100%;
}

.driven-card.innovation {
  bottom: 0px;
  left: 4%;
}

.driven-card.efficacy {
  top: 30%;
  left: 12%;
  background-color: var(--green-light-color);
}

.driven-card.quality {
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}

.driven-card.safety {
  top: 30%;
  right: 12%;
  background-color: var(--green-light-color);
}

.driven-card.regulatory-compliance {
  bottom: 0px;
  right: 4%;
}

@media only screen and (max-width: 1199px) {
  .driven-card {
    padding: 10px;
    max-width: 190px;
    min-height: 150px;
  }
}

@media only screen and (max-width: 1024px) {
  .driven-card {
    padding: 10px;
    max-width: 150px;
    min-height: 130px;
  }

  .driven-card img {
    max-width: 40px;
  }

  .driven-card.safety {
    top: 18%;
    right: 13%;
  }

  .driven-card.efficacy {
    top: 18%;
    left: 13%;
  }
}

@media only screen and (max-width: 768px) {
  .driven-values-container {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .driven-card {
    position: static;
    max-width: unset;
    min-height: unset;
    flex: 0 0 calc(50% - 8px);
  }

  .driven-card.quality {
    transform: none;
  }

}

/*--------------------------------------------------------------
# Industries we serve
--------------------------------------------------------------*/

.industries-we-serve {
  background-color: #F4FBFF;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.2s ease;
  border: 1px solid #EEEEEE;
}

.industry-image {
  width: fit-content;
  padding: 20px;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-bottom: 28px;
}

.industry-image img {
  width: 40px;
  height: 40px;
}

.industry-card:hover {
  transform: translateY(-6px);
}

.industry-title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  margin-bottom: 10px;
  color: #000000;
}

.industry-description {
  font-size: 18px;
  line-height: 24px;
  color: #828282;
  font-family: 'urbanist-semibold';
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 72px;
}

.industries-we-serve .read-more-btn {
  display: flex;
  align-items: center;
  color: #0A7E3C;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  font-family: var(--urbanist-bold);
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-image {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 2rem;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .industry-title {
    font-size: 1.1rem;
  }

  .industry-description {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .industries-we-serve .read-more-btn {
    font-size: 14px;
    line-height: 17px;
  }

  .industries-we-serve .read-more-btn svg {
    width: 20px;
    height: 20px;
  }

}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


@media (max-width: 480px) {
  .industries-section {
    padding: 1rem;
  }

  .industries-grid {
    gap: 1rem;
  }

  .industry-card {
    padding: 1rem;
  }

  .industry-title {
    font-size: 1rem;
  }

  .industry-description {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Our Impact in Numbers
--------------------------------------------------------------*/
/* .impact-numbers {
  background-color: var(--primary-bg-color);
} */

section.impact-numbers {
  padding: 0;
  padding-bottom: 60px;
}

.impact-numbers-content {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.impact-numbers-item {
  flex: 1;
  padding: 0;
  text-align: center;
}

.impact-numbers-item-number {
  font-size: 56px;
  line-height: 39px;
  font-weight: 400;
  font-family: var(--poppins-regular);
  color: var(--primary-color);
  margin-bottom: 28px;
  display: flex;
}

.impact-numbers-item-number .plus-sign {
  color: #0A7E3C;
}

.impact-numbers .section-info {
  text-align: start;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding-top: 28px;
  border-top: 1px solid #EBEBEB;
}

.impact-numbers .section-info p {
  margin-bottom: 0;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
}

.impact-numbers .section-info h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 12px;
  color: #193E52;
  font-family: var(--urbanist-bold);
}

@media only screen and (max-width: 1199px) {

  .impact-numbers-item-number {
    font-size: 58px;
    line-height: 70px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .impact-numbers-content {
    flex-wrap: wrap;
    gap: 4px;
  }

  .impact-numbers-item {
    flex: 0 0 48%;
    padding: 0;
  }
}


@media only screen and (max-width: 768px) {
  .impact-numbers-item-number {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 8px;
  }

  .impact-numbers-item {
    flex: 0 0 100%;
    padding: 12px 8px;
  }

  .impact-numbers .section-info {
    padding-top: 8px;
  }

}


/*--------------------------------------------------------------
# easily develop banner
--------------------------------------------------------------*/

.easily-develop-banner {
  padding-top: 18.216%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.easily-develop-banner img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.easily-develop-banner::before {
  content: '';
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background: #00000040;
  z-index: 1;
}

.easily-develop-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;

}

.easily-develop-banner .section-title {
  color: #ffffff;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 13px;
}

.easily-develop-banner .easily-develop-banner .section-info {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
}

@media (max-width:768px) {
  .easily-develop-banner .easily-develop-banner .section-info {
    font-size: 24px;
    line-height: 31px;
  }
}


/*--------------------------------------------------------------
# book consultation
--------------------------------------------------------------*/

.book-consultation .section-title-content {
  margin-bottom: 5px !important;
}

.book-consultation {
  padding-bottom: 0px !important;
}

.formulation-consultation.book-consultation .section-title {
  margin-bottom: 12px;
}


/*--------------------------------------------------------------
# Working With Us Is Easy
--------------------------------------------------------------*/

.working-with-us {
  background-color: var(--primary-bg-color);
}

.working-us-items {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 144px 0px 85px;
  background-image: url('../img/home/working-us-bg-lines.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;

}

.working-us-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  flex: 0 0 calc((100% - 60px) / 4);
  position: relative;
  min-height: 330px;
}

.working-us-item.even {
  margin-top: 95px;
}

.working-us-item .item-card-title {
  margin-bottom: 13px;
}

.working-us-item .item-card-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1199px) {
  .working-us-items {
    padding: 100px 0px 55px;
  }
}

@media only screen and (max-width: 1024px) {
  .working-us-items {
    padding: 0px 0px 0px;
    background: none;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .working-us-items .working-us-item {
    margin-top: 24px;
    flex: 0 0 calc((100% - 20px) / 2);
    min-height: unset;
  }
}

@media only screen and (max-width: 640px) {
  .working-us-items .working-us-item {
    margin-top: 24px;
    flex: 0 0 100%;
    min-height: unset;
  }
}

/*--------------------------------------------------------------
# our clients
--------------------------------------------------------------*/

.our-clients-content {
  display: flex;
  gap: 20px;
  flex-direction: row-reverse;
}

.our-clients-review-content {
  flex: 1;
  background-color: var(--primary-bg-color);
  border-radius: 20px;
  padding: 28px;
  max-width: calc(67% - 20px);
}

.our-clients-slider {
  max-width: 100%;
}

.our-clients-slider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.our-clients-side-card {
  flex: 0 0 32.395%;
  border-radius: 20px;
  overflow: hidden;
  /* background-color: var(--primary-color); */
}

.our-clients-side-card .img-container {
  position: relative;
  padding-top: 66.525%;
  overflow: hidden;
  border-radius: 20px;
}

.our-clients-side-card .img-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-clients-side-card .item-card-title {
  color: #ffffff;
}

.our-clients-side-card-review {
  display: flex;
  gap: 9px;
  justify-content: center;
}

.our-clients-side-card-review .review-start {
  border-radius: 5px;
  background-color: #ffffff;
  padding: 7px;
  font-size: 16px;
  color: var(--primary-color);
  line-height: 1;
}

.our-clients-info {
  padding: 0px 30px 30px;
}

.our-clients-side-card .item-card-title {
  margin-bottom: 13px;
  color: #ffffff;
  text-align: center;
}

.our-clients-side-card .review-users {
  display: flex;
  justify-content: center;
  padding-left: 24px;
  margin-bottom: 28px;
  margin-top: -48px;
}

.our-clients-side-card .review-img {
  border: 3px solid #ffffff;
  border-radius: 50%;
  max-width: 95px;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  margin-left: -24px;
}

.our-clients-side-card .review-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-clients-review-text .section-info {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #EEEEEE;
}

.our-clients-details {
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-clients-image {
  max-width: 70px;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.our-clients-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-clients-review .item-card-title.name {
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 30px;
}

.our-clients-review .item-card-title.profession {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 30px;
}

.our-clients-slider .slick-dots {
  display: flex;
  justify-content: end;
  gap: 4px;
  max-width: 248px;
  width: 100%;
  bottom: 48px;
  right: 0;
}

.our-clients-slider .slick-dots li {
  flex: 1;
  margin: 0px;
  background-color: #F0F0F0;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  max-width: 59px;
}

.our-clients-slider .slick-dots button {
  padding: 3px;
  height: 100%;
  width: 100%;
}

.our-clients-slider .slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

.our-clients-slider .slick-dots button::before {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .our-clients-review-text .section-info {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .our-clients-review-content {
    padding: 32px;
  }

  .our-clients-details {
    gap: 10px;
  }

  .our-clients-image {
    max-width: 80px;
  }

  .our-clients-review .item-card-title.name {
    margin-bottom: 4px;
  }

  .our-clients-review .item-card-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  .our-clients-slider .slick-dots {
    max-width: 100px;
  }

  .our-clients-side-card .review-users {
    margin-bottom: 18px;
  }

  .our-clients-side-card .review-img {
    max-width: 70px;
    margin-left: -18px;
  }
}

@media only screen and (max-width: 992px) {
  .our-clients-content {
    flex-direction: column-reverse;
  }

  .our-clients-side-card .img-container {
    padding-top: 50%;
  }

  .our-clients-review-content {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {

  .our-clients-review .item-card-title.profession {
    font-size: 16px;
    line-height: 20px;
  }

  .our-clients-review .item-card-title.name {
    font-size: 20px;
    line-height: 24px;
  }

  .our-clients-review-content {
    max-width: 100%;
    padding: 20px;
  }

  .our-clients-review-text .section-info {
    font-size: 16px;
  }

  .our-clients-side-card .img-container {
    padding-top: 60%;
  }

  .our-clients-image {
    max-width: 60px;
  }

  .our-clients-review .item-card-title {
    font-size: 18px;
  }

  .our-clients-slider .slick-dots {
    position: static;
    padding: 30px 0 20px;
    max-width: 100%;
    justify-content: center;
  }

  .our-clients-slider .slick-dots li {
    max-width: 30px;
  }

  .our-clients-slider .slick-dots button {
    padding: 2px;
  }
}

/*--------------------------------------------------------------
# Info autoslider Section
--------------------------------------------------------------*/

.info-autoslider-section {
  overflow: hidden;
  background: var(--primary-color);
  padding: 22.5px 0;
}

.info-autoslider-mercury {
  display: flex;
  width: max-content;
  animation: scrollBrands 30s linear infinite;
}

.info-autoslider-item {
  flex: 0 0 auto;
  padding: 0 68px;
  display: flex;
  justify-content: center;
  position: relative;
}

.info-autoslider-item::after {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(50%, -50%);
  background-image: url('../img/smoothcorner-icon.png');
  background-size: 100%;
}

.info-autoslider-item .item-card-title {
  color: #ffffff;
  margin-bottom: 0px;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .info-autoslider-item::after {
    width: 28px;
    height: 28px;
  }

  .info-autoslider-item {
    padding: 0 40px;
  }
}

/*--------------------------------------------------------------
# insights lab
--------------------------------------------------------------*/

.insights-lab-content {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
}

.insights-lab-left-side {
  grid-row: span 2 / span 2;
}

.insights-lab-main-item {
  background-color: var(--primary-bg-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.insights-lab-main-item .image-container {
  padding-top: 62%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.insights-lab-main-item .image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-lab-item-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.insights-lab-item-content .section-info {
  margin-bottom: 24px;
}

.insights-lab-item-content .section-info span {
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--urbanist-bold);
}

.insights-lab-item-content .item-card-title {
  margin-bottom: 12px;
}

.insights-lab-item-content .read-more-btn {
  margin-top: auto;
}

.insights-lab-right-item {
  display: flex;
  background-color: var(--primary-bg-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.insights-lab-right-item-img {
  flex: 0 0 37.8%;
  width: 100%;
}

.insights-lab-right-item .image-container {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-top: 135%;
  min-height: 100%;

}

.insights-lab-right-item .image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-lab-right-item .insights-lab-item-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.insights-lab-right-item .insights-lab-item-content .section-info,
.insights-lab-right-item .insights-lab-item-content .item-card-title {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1199px) {
  .insights-lab-item-content {
    padding: 20px;

  }
}

@media only screen and (max-width: 1024px) {
  .insights-lab-content {
    grid-template-columns: auto;
  }
}

@media only screen and (max-width: 768px) {
  .insights-lab-right-item .insights-lab-item-content {
    gap: 8px;
  }

  .insights-lab-right-item-img {
    flex: 0 0 42%;
  }

  .insights-lab-item-content {
    padding: 16px;
  }

  .insights-lab-item-content .section-info {
    margin-bottom: 14px;
  }
}

@media only screen and (max-width: 540px) {
  .insights-lab-right-item .image-container {
    padding-top: 68%;
  }

  .insights-lab-right-item {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--primary-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #000000;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: #000000;
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--primary-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

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

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--primary-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
  background-color: var(--primary-bg-color);
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #000000;
}

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

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
/*
.service-page-content {
  margin-top: 60px;
} */

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}

.service-details .service-sidebar {
  padding: 20px;
  background-color: var(--primary-bg-color);
  border-radius: 16px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: #000000;
  transition: 0.3s;
  font-size: 18px;
  line-height: 22px;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--primary-color);
}

.service-details .services-list a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.service-details .services-img {
  /* margin-bottom: 20px; */
  border-radius: 16px;
}

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

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.5px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 20px;
}

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


@media (max-width: 1024px) {

  /* .service-page-content {
    margin-top: 40px;
  } */
  .service-details h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .service-details p {
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
  }

  .service-details ul li {
    font-size: 18px;
    line-height: 22px;
  }

  .service-details .services-list {
    padding: 8px 16px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--primary-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--primary-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  position: relative;
  background: var(--primary-bg-color);
  margin-top: 40px;
  /* margin-bottom: 30px; */
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: var(--primary-bg-color);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin-bottom: 15px;
  text-align: justify;
  padding: 0;
  width: 100%;
  letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--primary-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

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

.pricing h4 {
  color: var(--primary-color);
  font-size: 48px;
  font-family: var(--urbanist-bold);
  margin-bottom: 0;
}

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

.pricing h4 span {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}

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

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  /* font-family: var(--urbanist-medium); */
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

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

.pricing ul {
  padding: 0;
  list-style: none;
  color: #000000;
  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: #000000;
}

.pricing ul .na i {
  color: #000000;
}

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

.pricing .featured {
  position: relative;
}

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

.pricing .featured .cta-btn {
  background: var(--primary-color);
  color: var(--contrast-color);
  border-color: var(--primary-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;
  }
}

/*--------------------------------------------------------------
# blog-posts
--------------------------------------------------------------*/
.blog-posts .blog-post {
  padding: 0;
}

.blog-posts .blog-post {
  width: calc((100% - 60px) / 3);
}

.blog-post .post-title {
  font-size: 28px;
  line-height: 32px;
  height: 64px;
}

.blog-posts .post-date {
  margin: 8px 0;
  display: block;
}

.blog-posts .post-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px
}

.blog-posts .post-content {
  flex: 1;
}

.blog-post .meta {
  color: #000000;
}

.blog-posts .post-img {
  padding-top: 75%;
}

.blog-posts .post-img img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-posts .post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-posts .blog-summary {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



@media (max-width: 1024px) {
  .blog-post .post-title {
    font-size: 24px;
    line-height: 26px;
    height: 52px;
    gap: 24px;
  }

  .blog-posts .blog-post {
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .blog-post .post-title {
    font-size: 22px;
    line-height: 24px;
    height: 48px;
  }

  .blog-posts .blog-post {
    width: 100%;
  }

}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: #000000;
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px
}

.blog-pagination li {
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.blog-pagination li.active {
  background: var(--primary-color);

  a {
    color: var(--contrast-color);
  }
}

.blog-pagination li a {
  color: #000000;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .container {
  padding: 0;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  /* font-family: var(--urbanist-medium); */
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: #000000;
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: #000000;
}

.blog-details .meta-top a {
  color: #000000;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: #000000;
  display: inline;
}

.blog-details .meta-bottom a {
  color: #000000;
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--primary-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

@media screen and (max-width: 768px) {
  .blog-details .article {
    padding: 20px;
  }

  .blog-details .content blockquote {
    padding: 40px;
  }

  .blog-details .meta-top ul {
    justify-content: center;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--primary-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #000000;
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #000000;
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form .container {
  padding: 0;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--primary-color);
}

.comment-form form input::placeholder {
  color: #000000;
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--primary-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: #000000;
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--primary-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact.section {
  padding-top: 0;
  padding-bottom: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
}

.contact .info p {
  color: #000000;
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

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

.contact .php-email-form {
  width: 100%;
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.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(--primary-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #000000;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

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

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

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--primary-color) 90%, black 15%);
}

@media (max-width: 768px) {
  .contact .info {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: #000000;
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: #000000;
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--primary-color);
}

.blog-author-widget p {
  font-style: italic;
  color: #000000;
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--primary-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--primary-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--primary-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: #000000;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: #000000;
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: #000000;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Contact-Us From
--------------------------------------------------------------*/
.contactUsForm form .form-group {
  margin-top: 16px;
}

.contactUsForm form .form-group:first-of-type {
  margin-top: 0;
}

.contactUsForm form .form-group input,
.contactUsForm form .form-group select {
  border-radius: 5px;
  height: 40px;
  padding: 10px 15px;
  color: var(--default-color);
}

.contactUsForm form .form-group input:focus,
.contactUsForm form .form-group select:focus {
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

.contactUsForm form .form-group .control-label {
  margin-bottom: 7px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'urbanist-semibold';
}

.form-group.has-error .invalid-feedback {
  display: block !important;
}

.contactUsForm form .form-group button {
  /* margin: auto; */
  display: block;
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border: 0;
  border-radius: 4px;
  padding: 13px 50px;
}

.contactUsForm form .form-group button:hover {
  background: color-mix(in srgb, var(--primary-color) 90%, black 15%);
}

/* Main Page banner */

.page_main_banner {
  position: relative;
}

.page_main_banner .container:has(.breadcrumbs) {
  margin-top: 0;
}

.page_main_banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: rgba(25, 62, 82, 0.4);
}

.banner_image {
  position: relative;
  overflow: hidden;
  padding-top: 15%;
  min-height: 300px;
}

.banner_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_banner_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 2;
}

.page_main_banner .page_banner_title {
  font-family: var(--urbanist-bold);
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .page_main_banner .page_banner_title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .page_main_banner .page_banner_title {
    font-size: 32px;
  }

  .banner_image {
    min-height: 250px;
  }
}


/* breadcrumbs */

.page_main_banner .breadcrumbs ol {
  padding: 0px;
}

.page_main_banner .breadcrumbs a,
.page_main_banner .breadcrumbs li {
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
}

@media only screen and (max-width: 1199px) {

  .page_main_banner .breadcrumbs a,
  .page_main_banner .breadcrumbs li {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {

  .page_main_banner .breadcrumbs a,
  .page_main_banner .breadcrumbs li {
    font-size: 16px;
  }
}

/* Contact us page */


.contact_us_content {
  gap: 20px;
  padding: 40px 0 0;
}

.contact_us_content .get_touch,
.contact_us_content .talk_experts {
  padding: 24px;
  flex: 0 0 calc(50% - 10px);
}

.contact_us_content .section-title-content {
  text-align: start;
  margin-bottom: 0;
}

.contact_item {
  background-color: var(--primary-bg-color);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 24px;
  border-radius: 10px;
  max-width: 580px;
  width: 100%;
}

/* .contact_item:nth-child(even) {
  background-color: var(--green-light-color);
} */

.contact_item .item-card-title {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 31px;
  font-weight: 600;
  font-family: 'urbanist-semibold';
}

.contact_item .section-info {
  word-break: break-all;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  font-family: 'urbanist-medium';
}

.contact_item:hover .section-info {
  color: var(--primary-color);
}

.contactUsForm form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.contactUsForm form .form-group {
  margin: 0px;
  display: flex;
  flex-direction: column;
  width: calc((100% - 20px) / 2);
}

.contactUsForm form .form-group.form-submit-button {
  width: 100%;
}

.contactUsForm form .form-group input {
  border: 0;
  background-color: #79c0ff26;
  /* border: 1px solid #d0d0d0c9; */
  height: 54px;
}

.contactUsForm form .form-group select {
  border: 0;
  background-color: #79c0ff26;
  /* border: 1px solid #d0d0d0c9; */
  height: 54px;
}

.contactUsForm form .form-group textarea {
  border: 0;
  background-color: #79c0ff26;
  /* border: 1px solid #d0d0d0c9; */
}

.contactUsForm form .form-group:nth-of-type(5) {
  width: 100%;
}

.contactUsForm form .form-group.first-name,
.contactUsForm form .form-group.last-name {
  flex: 0 0 calc(50% - 10px);
}

.contactUsForm form .form-group label {
  color: #000000;
}

.contactUsForm .btn.btn-success {
  transition: all 0.3s;
  padding: 7px 14px;
  font-size: 18px;
  font-weight: 500;
  /* letter-spacing: 1px; */
  line-height: 24px;
  /* font-family: var(--urbanist-medium); */
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  background-color: var(--primary-color);
  color: var(--primary-bg-color);
  border: 1px solid var(--primary-color);
  /* margin-top: 20px; */
}

.contactUsForm .btn.btn-success:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.contactUsForm .btn.btn-success::after {
  content: "\f135";
  font-family: 'bootstrap-icons';
  font-size: 24px;
}

span.contact_item_icon {
  display: block;
  width: 40px;
  height: 40px;
}

.contact_item_icon img {
  width: 100%;
}

.form-group.country {
  position: relative;
}

.form-group.country::before {
  content: "\f282";
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 22px;
  top: 8px;
}

@media (max-width:992px) {
  .contact_us_content {
    flex-direction: column-reverse;
    padding-top: 30px;
  }

  .contact_us_content .get_touch,
  .contact_us_content .talk_experts {
    padding: 12px;
    flex: 0 0 calc(50% - 10px);
  }

  .contact_us_content .section-title {
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact_item {
    padding: 20px;
    gap: 20px;
    max-width: unset;
  }

  .contactUsForm .btn.btn-success {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 768px) {

  .contactUsForm form .form-group.first-name,
  .contactUsForm form .form-group.last-name {
    flex: 0 0 100%;
  }

  .contactUsForm form .form-group .control-label {
    font-size: 16px;
    line-height: 19px;
    font-family: var(--urbanist-semibold);
  }

  .contactUsForm form .form-group {
    width: 100%;
  }

  .contact_us_content .get_touch,
  .contact_us_content .talk_experts {
    padding: 0;
    flex: 0 0 calc(50% - 10px);
  }

  .contactUsForm form .form-group select,
  .contactUsForm form .form-group input {
    height: 40px;
  }

  .contactUsForm .btn.btn-success {
    margin-top: 20px;
  }

  .contact_item .item-card-title {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 22px;
  }

  .contact_item .section-info {
    font-size: 15px;
    line-height: 20px;
  }

  .contact_item {
    padding: 16px;
    gap: 10px;
  }

  .contact_item_icon img {
    width: 30px;
    height: 30px;
  }

  span.contact_item_icon {
    display: block;
    width: fit-content;
    height: unset;
  }

}

/* About Us Page */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-content {
  width: calc((100% - 40px) / 3);
  border-radius: 12px;
  ;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.testimonial-section {
  background-color: var(--primary-bg-color);
}

.testimonial-item {
  box-sizing: var(--primarybtnshadow);
  text-align: center;
}

.testimonial-item .stars {
  margin: 10px 0;
}

.testimonial-item img {
  margin: 0 auto 12px;
  width: -webkit-fill-available;
}

.testimonial-item h3 {
  /* font-family: var(--urbanist-medium); */
}

.about_us_page .section-info {
  /* font-family: var(--urbanist-medium); */
  color: #000000;
  font-size: 18px;
  line-height: 21px;
}

.about_us_page p {
  color: var(--black);
}

@media only screen and (max-width: 768px) {
  .testimonial-content {
    width: calc((100% - 20px) / 2);
  }

  .about_us_page .section-info {
    font-size: 16px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 640px) {
  .testimonial-content {
    width: 100%;
  }
}

/* Blog-details Page */
.container:has(.breadcrumbs) {
  margin-top: 140px;
}

.post-content p:has(img) {
  position: relative;
  padding-top: 60%;
}

.post-content img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .container:has(.breadcrumbs) {
    margin-top: 100px;
  }

}

/* Downlaod Booklet */
.whats_inside_container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.whats_inside_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc((100% - 40px) / 3);
  padding: 20px;
  box-shadow: 0px 4px 11px 0px #0000000D;

}

.whats_inside_container .image_container {
  padding-top: 70%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.whats_inside_container .image_container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whats_inside_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.whats_inside_content .select-booklet-btn {
  margin-top: auto !important;
  background-color: #ffffff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.whats_inside_content .select-booklet-btn.active {
  background-color: var(--primary-color);
  color: var(--primary-bg-color);
  border: 1px solid var(--primary-color);
}

.whats_inside_content .section-info {
  margin-bottom: 20px;
}

.download_booklete_section {
  background-color: var(--primary-bg-color);
}

.download_booklete_contact {
  gap: 20px;
}

.download_booklete_contact_content,
.download_booklete_contact_form {
  flex: 1;
}

.select-booklet-btn {
  padding: 10px 20px;
}

@media only screen and (max-width: 1023px) {
  .whats_inside_container {
    gap: 10px;
  }

  .whats_inside_card {
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .whats_inside_card {
    width: 100%;
  }

  .download_booklete_contact {
    flex-direction: column;
  }
}

#bookletDownloadForm {
  scroll-margin-top: 210px;
}

#bookConsultation {
  scroll-margin-top: 150px;
}

#faqSection {
  scroll-margin-top: 160px;
  margin: 0 -24px;
  background: white;
  padding: 24px 0;
}

#comments-content {
  scroll-margin-top: 150px;
}

@media screen and (max-width: 767px) {
  #bookletDownloadForm {
    scroll-margin-top: 40px;
  }

  #bookConsultation {
    scroll-margin-top: 110px;
  }

  #faqSection {
    scroll-margin-top: 120px;
  }

  #comments-content {
    scroll-margin-top: 110px;
  }
}


/* page_not_found */

.page_not_found {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Service page */

/* industry-right-inner */

.industry-right-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.multi-industry-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: calc((100% - 48px) / 4);
  letter-spacing: 0.8px;
  box-shadow: -1px 8px 19px 0 #0000001A;
  padding: 12px;
}

.multi-industry-box h4 {
  margin-bottom: 0;
}

.multi-industry-box svg {
  color: var(--primary-light-color);
}

@media (max-width: 1200px) {
  .multi-industry-box {
    width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 540px) {
  .multi-industry-box {
    width: calc((100% - 16px) / 2);
  }
}

/* service-details-section */
.service-details-section .service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.services-details-item {
  display: flex;
  width: calc((100% - 20px) / 2);
}

.service-details-section .services-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
}

@media (min-width: 769px) {
  .service-details-section .service-details .services-details-item:nth-child(2n+1) .services-card {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .services-details-item {
    width: 100%;
  }

  .service-details-section .services-card .image-container {
    padding-top: 260px;
  }
}


/* driven_values_container */

.driven_values_container,
.our_process_container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.driven_card,
.process_card {
  background-color: var(--primary-extralight-color);
  box-shadow: 0px 4px 12px 0px #0000001A;
  padding: 32px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 calc((100% - 40px) / 3);
  text-align: center;
}

.driven_card img,
.process_card img {
  max-width: 60px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.driven_card:nth-last-of-type(2n+2),
.process_card:nth-last-of-type(2n+2) {
  background-color: var(--green-light-color);
}

.driven_card::nth-last-of-type(2n+1),
.process_card::nth-last-of-type(2n+1) {
  background-color: var(--green-light-color);
}

.driven_card .item-card-title,
.process_card .item-card-title {
  margin-bottom: 0px;
}

@media only screen and (max-width:1025px) {

  .driven_card,
  .process_card {
    padding: 20px;
  }
}

@media only screen and (max-width:768px) {

  .driven_card,
  .process_card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .driven_card img,
  .process_card img {
    max-width: 40px;
    width: 100%;
  }
}

@media only screen and (max-width:640px) {

  .driven_card,
  .process_card {
    flex: 0 0 100%;
    gap: 10px;
  }
}

.service_main_info {
  margin-bottom: 32px;
}

/* why_choose_service_section */

.why_choose_service_section {
  background-color: var(--primary-bg-color);
}

.why_choose_service_info {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.why_choose_service_info_left {
  flex: 0 0 30%;
}

.why_choose_service_info_right {
  flex: 1;
}

.why_choose_service_info_img {
  padding-top: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.why_choose_service_info_img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why_choose_service_info_right .item-card-title {
  margin-bottom: 24px;
}

.why_choose_service_info_right .section-info {
  margin-bottom: 16px;
}

.why_choose_service_info_right .info_list {
  display: flex;
  gap: 8px;
  color: #000000;
}

.info_list::before {
  content: '';
  height: 24px;
  flex: 0 0 24px;
  display: block;
  background-image: url('../img/check-theme-icon.png');
  background-size: cover;
}


@media (max-width: 768px) {
  .why_choose_service_info {
    flex-direction: column;
  }

  .why_choose_service_info_img {
    padding-top: 300px;
  }
}

/* additional service */

.service-main-content {
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.service-main-content .services-img {
  order: 1;
  width: 66.66%;
}

.service-main-content .service-sidebar {
  order: 2;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  /* position: absolute; */
  right: 0;
  flex: 0 0 calc(33.33% - 16px);
}

.service-main-content .service-img-details {
  order: 3;
  width: 66.66%;
}

.service-details .bottom-content {
  gap: 16px;
  margin-top: 30px;
}

.bottom-content .service-img-details {
  flex: 0 0 66.66%;
}

@media (max-width: 1024px) {
  .service-main-content {
    flex-direction: column;
  }

  .service-main-content .service-details .service-main-content {
    width: 100%;
  }

  .service-main-content .service-details .service-sidebar {
    position: relative;
    width: 100%;
    order: 3;
  }

  .service-main-content .service-img-details {
    width: 100%;
    order: 2;
  }

  .service-details .bottom-content {
    flex-direction: column;
  }

  .service-main-content .services-img {
    width: 100%;
  }
}

/* additional service */

.service-main-content {
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.service-main-content .services-img {
  order: 1;
  width: 66.66%;
}

.service-main-content .service-sidebar {
  order: 2;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  /* position: absolute; */
  right: 0;
  flex: 0 0 calc(33.33% - 16px);
}

.service-main-content .service-img-details {
  order: 3;
  width: 66.66%;
}

.service-details .bottom-content {
  gap: 16px;
  margin-top: 30px;
}

.bottom-content .service-img-details {
  flex: 0 0 66.66%;
}

@media (max-width: 1024px) {
  .service-main-content {
    flex-direction: column;
  }

  .service-main-content .service-details .service-main-content {
    width: 100%;
  }

  .service-main-content .service-details .service-sidebar {
    position: relative;
    width: 100%;
    order: 3;
  }

  .service-main-content .service-img-details {
    width: 100%;
    order: 2;
  }

  .service-details .bottom-content {
    flex-direction: column;
  }

  .service-main-content .services-img {
    width: 100%;
  }
}

/* additional service */

.service-main-content {
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.service-main-content .services-img {
  order: 1;
  width: 66.66%;
}

.service-main-content .service-sidebar {
  order: 2;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  /* position: absolute; */
  right: 0;
  flex: 0 0 calc(33.33% - 16px);
}

.service-main-content .service-img-details {
  order: 3;
  width: 66.66%;
}

.service-details .bottom-content {
  gap: 16px;
  margin-top: 30px;
}

.bottom-content .service-img-details {
  flex: 0 0 66.66%;
}

@media (max-width: 1024px) {
  .service-main-content {
    flex-direction: column;
  }

  .service-main-content .service-details .service-main-content {
    width: 100%;
  }

  .service-main-content .service-details .service-sidebar {
    position: relative;
    width: 100%;
    order: 3;
  }

  .service-main-content .service-img-details {
    width: 100%;
    order: 2;
  }

  .service-details .bottom-content {
    flex-direction: column;
  }

  .service-main-content .services-img {
    width: 100%;
  }
}

/* error message */

.form-group.has-error .invalid-feedback {
  display: block !important;
  order: 1;
}

.form-control {
  line-height: 18px;
}

.form-control.error.is-invalid {
  border-color: #dc3545 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}

/* terms-services */

.privacy-policy,
.terms-services.section,
.terms-use.section {
  color: #000000;

  ul li {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: #000000;
  }
}

/* Enhanced Professional Popup Styles */
.fe-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.15)), rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fePopupFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fePopupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }

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


.fe-popup-content {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 40px 35px 35px;
  border-radius: 20px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 10px 25px -5px rgba(59, 130, 246, 0.1);
  animation: slideIn 0.4s ease-out 0.1s both;
  overflow: hidden;
}

/* Subtle background pattern */
.fe-popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  border-radius: 20px 20px 0 0;
}

/* Logo container */
.fe-popup-logo {
  width: 185px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px;
  /* box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1); */
  /* border: 1px solid rgba(226, 232, 240, 0.5); */
}

.fe-popup-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Fallback icon when no logo is provided */
.fe-popup-logo.no-logo {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.fe-popup-logo.no-logo::before {
  content: '🚀';
  font-size: 32px;
  filter: brightness(1.2);
}

.fe-popup-content h2 {
  margin-bottom: 15px;
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fe-popup-content .subtitle {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fe-popup-content p {
  margin-bottom: 30px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.fe-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.fe-popup-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fe-popup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.fe-popup-btn:hover::before {
  left: 100%;
}

.btn-primary-popup {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.4);
}

.btn-primary-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.5);
  color: white;
}

.btn-secondary-popup {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: #3b82f6;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
}

.btn-secondary-popup:hover {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  transform: translateY(-2px);
  border-color: #3b82f6;
  box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.2);
}

.fe-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  color: #94a3b8;
  background: rgba(241, 245, 249, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.fe-close-btn:hover {
  color: #ef4444;
  background: rgba(254, 226, 226, 0.9);
  border-color: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

/* Floating elements for visual interest */
.fe-popup-content::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 50%;
  pointer-events: none;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .fe-popup-content {
    padding: 35px 25px 30px;
    margin: 20px;
    max-width: none;
  }

  .fe-popup-content h2 {
    font-size: 24px;
  }

  .fe-popup-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .fe-popup-btn {
    min-width: auto;
    width: 100%;
    padding: 12px 24px;
  }

  .fe-popup-logo {
    width: 145px;
    height: 65px;
    margin-bottom: 20px;
  }

  .fe-popup-logo.no-logo {
    width: 60px;
    height: 60px;
  }
}

/* Additional professional touches */
.highlight-text {
  color: #3b82f6;
  font-weight: 600;
}

.trust-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: #64748b;
  font-size: 14px;
}

.trust-indicator::before {
  content: '🔒';
  font-size: 16px;
}


/* insights from the lab */

.insight-from-lab .section-info {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 18px;
  line-height: 22px;
  color: #828282;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 66px;
}

.insight-from-lab .slick-slide {
  padding: 24px;
  background-color: #F4FBFF;
  margin: 0 5px;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
}

.insight-from-lab .insight-lab-detail a {
  padding: 7px 13px;
}

.insight-from-lab .date-name span {
  font-family: var(--urbanist-semibold);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #0A7E3C;
}

.insight-from-lab .date-name {
  position: relative;
  padding-bottom: 5px;
}

.insight-from-lab .date-name:before {
  content: '';
  display: block;
  height: 1px;
  background-color: var(--primary-color);
  width: 55px;
  position: absolute;
  bottom: 0;
}

.insight-from-lab .our-clients-review-text {
  margin-top: 14px;
}

.insight-from-lab .our-clients-review-text h4 {
  font-family: var(--urbanist-semibold);
  font-weight: 600;
  font-size: 24px;
  line-height: 27.5px;
  color: var(--black);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 55px;
}

.insight-from-lab .image-container {
  position: relative;
  padding-top: 54.142%;
  min-height: 250px;
}

.insight-from-lab .image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  border-radius: 20px;
}

.insight-from-lab .slick-arrow {
  width: 40px;
  height: 40px;
  background-color: transparent;
  bottom: 0px;
  z-index: 10;
  border-radius: 50%;
  top: unset;
  transform: unset;
  transition: 0.3s;
  border: 1px solid #0A7E3C;
  border-radius: 5px;
}

.insight-from-lab .slick-arrow.slick-next {
  right: 0px;
}

.insight-from-lab .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0px;
}

.insight-from-lab .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  position: relative;
}

.insight-from-lab .slick-dots {
  margin-top: 30px;
  padding: 15px 60px;
  display: flex;
  position: static;
  border-radius: 20px;
  overflow: hidden;
}

.insight-from-lab .slick-dots li {
  margin: 0px;
  flex: 1;
  background-color: #F4FBFF;
  height: auto;
}

.insight-from-lab .slick-dots button {
  padding: 5px;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.insight-from-lab .slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

.insight-from-lab .slick-arrow::before {
  content: "\f135";
  font-family: 'bootstrap-icons';
  font-size: 28px;
  color: #0A7E3C !important;
  transition: 0.3s;
  opacity: 1;
}

.insight-from-lab .slick-arrow:hover {
  background-color: #0A7E3C;
}

.insight-from-lab .slick-arrow:hover:before {
  color: white !important;
}

.insight-from-lab .slick-dots li button:before {
  display: none;
}

.insight-from-lab .slick-dotted.slick-slider {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .insight-from-lab .our-clients-review-text h4 {
    font-size: 18px;
    line-height: 22px;
    height: 44px;
  }

  .insight-from-lab .section-info {
    font-size: 16px;
    line-height: 19px;
    height: 57px;
    margin-bottom: 10px;
  }

  .insight-from-lab .insight-lab-detail a {
    padding: 5px 12px;
  }

  .insight-from-lab .slick-arrow {
    width: 34px;
    height: 34px;
  }

  .insight-from-lab .slick-dots button {
    padding: 4px;
  }

  .insight-from-lab .slick-slide {
    padding: 16px;
  }

  .insight-from-lab .date-name span {
    font-size: 16px;
    line-height: 19px;
  }
}

/* copyright section */

.copyright-section {
  text-align: center;
  border-top: 1px solid white;
}

.copyright-section p {
  margin-bottom: 0;
  font-size: 16px;
  padding: 20px 0;
}

.copyright-section a {
  color: #ffffff;
  font-weight: 600;
  font-family: var(--urbanist-semibold);
}

.copyright-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #e7f2fa;
}