/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-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 {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #f6fbff; /* Background color for the entire website, including individual sections */
  --default-color: #1f3b59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b2f54; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1bc47d; /* 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. */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #4adf8b; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bc47d; /* 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. */

.light-background {
  --background-color: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0a2b4d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #113b63;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/* 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(--accent-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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.topbar {
  height: 36px;
  background: #081f39;
  color: #dbeafe;
  z-index: 998;
  font-size: 13px;
}

.topbar .container-fluid,
.topbar .container-xl {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .topbar-message {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.topbar .topbar-social a {
  color: #dbeafe;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar .topbar-social a:hover {
  color: #4adf8b;
  background: rgba(255, 255, 255, 0.08);
}

.topbar .topbar-right {
  display: inline-flex;
  align-items: center;
}

.topbar .topbar-search-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  border-radius: 999px;
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar .topbar-search-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.global-search-modal .modal-content {
  border: 1px solid #d9e7f2;
  border-radius: 14px;
}

.global-search-modal .search-input-wrap {
  position: relative;
}

.global-search-modal .search-input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6285a4;
}

.global-search-modal .search-input-wrap input {
  height: 44px;
  border-radius: 10px;
  padding-left: 36px;
  border: 1px solid #ccdeec;
}

.global-search-modal .search-input-wrap input:focus {
  border-color: #1aa87a;
  box-shadow: 0 0 0 3px rgba(26, 168, 122, 0.13);
}

.global-search-results {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 2px;
}

.global-search-results .search-empty {
  font-size: 14px;
  color: #6f8ca6;
  padding: 10px 2px;
}

.global-search-item {
  display: block;
  border: 1px solid #d9e7f2;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #ffffff;
}

.global-search-item .search-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #0f4c81;
  background: #edf5fc;
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 6px;
}

.global-search-item h6 {
  margin: 0 0 4px;
  color: #0f3658;
  font-size: 15px;
}

.global-search-item p {
  margin: 0;
  color: #4f6d86;
  font-size: 13px;
}

.global-search-item:hover {
  border-color: #9ec8e5;
  box-shadow: 0 8px 18px rgba(15, 54, 88, 0.12);
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  top: 36px;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0a2b4d;
  background: linear-gradient(90deg, #0a2b4d 0%, #0f4c81 60%, #0f6a5c 100%);
}

/* Use a solid header on non-home pages */
.inner-page .header {
  --background-color: #0a2b4d;
  background: linear-gradient(90deg, #0a2b4d 0%, #0f4c81 60%, #0f6a5c 100%);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo h1 {
  letter-spacing: 0.4px;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 10px 12px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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;
  }

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 52px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

@media (max-width: 1199px) {
  .topbar {
    display: none;
  }

  .header {
    top: 0;
  }
}

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

.footer.dark-background {
  background: linear-gradient(180deg, #0b2f54 0%, #0a2b4d 55%, #0b3b5d 100%);
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

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

.footer .social-links a:hover {
  color: #4adf8b;
  border-color: #4adf8b;
}

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

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

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

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

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #4adf8b;
}

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

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

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

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

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

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# 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(--accent-color) transparent var(--accent-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: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-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;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

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

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

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

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

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

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

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

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

.hero .hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero .hero-metrics span {
  background: color-mix(in srgb, #0f172a, transparent 25%);
  border: 1px solid color-mix(in srgb, #ffffff, transparent 80%);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: #e2e8f0;
}

.hero .hero-metrics i {
  margin-right: 6px;
  color: #38bdf8;
}

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

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

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

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.service_title{
  margin-top: 150px;
}
.about {
    padding-top: 0;
  padding-bottom: 47px;
}


.about .icon-box {
  position: relative;
  overflow: hidden;
  height: -webkit-fill-available;
  background-color: var(--surface-color);
  padding: 35px 29px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0px 12px 34px rgba(11, 47, 84, 0.09);
  border-radius: 14px;
  transition: all 0.35s ease;
}

.about .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(27, 196, 125, 0.1));
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.about .icon-box > i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  /* white-space: nowrap; */
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover > i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  box-shadow: 0 20px 40px rgba(11, 47, 84, 0.16);
}

.about .icon-box:hover::before {
  opacity: 1;
}

.service-advanced-card p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0f4c81;
  padding: 6px 10px;
  border-radius: 8px;
  background: color-mix(in srgb, #0f4c81, transparent 90%);
  width: fit-content;
}

.service-read-more i {
  transition: transform 0.3s ease;
}

.service-read-more:hover {
  color: #fff;
  background: #0f4c81;
}

.service-read-more:hover i {
  transform: translateX(4px);
}

.service-list-more-btn {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 8px;
}

.service-card-item .service-advanced-card,
.about .service-advanced-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-item .service-advanced-card > i,
.about .service-advanced-card > i {
  width: 62px;
  height: 62px;
  font-size: 24px;
  margin-bottom: 8px;
}

.service-card-item .service-advanced-card h3,
.about .service-advanced-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1.3;
}

/* Clean service layout reset: disable old zigzag card offsets */
.about .icon-boxes .col-md-6 .service-advanced-card {
  margin-top: 0 !important;
}

/* Keep service cards professional and less aggressive */
.service-advanced-card {
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(11, 47, 84, 0.08) !important;
}

.service-advanced-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px rgba(11, 47, 84, 0.12) !important;
}

.service-advanced-card::before {
  display: none !important;
}

.index-page .service-home {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.index-page .product-home {
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 191, 36, 0.12), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(20, 144, 103, 0.12), transparent 36%),
    linear-gradient(180deg, #fffaf1 0%, #f7fdf8 100%);
  border-top: 1px solid #efe0bf;
  border-bottom: 1px solid #dbeadf;
}

.product-home .product-card {
  background: #ffffff;
  border: 1px solid #e5d8bb;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(102, 84, 37, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-home .product-card-media {
  height: 190px;
  overflow: hidden;
  background: #f8f5ea;
}

.product-home .product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-home .product-card-body {
  padding: 16px;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
}

.product-list-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 10px;
  border: 1px solid #0f7e5f;
  background: linear-gradient(135deg, #149067, #0f4c81);
  color: #ffffff;
  transition: all 0.25s ease;
}

.product-list-more-btn i {
  transition: transform 0.25s ease;
}

.product-list-more-btn:hover {
  background: linear-gradient(135deg, #1aa87a, #125f99);
  border-color: #1aa87a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(17, 94, 127, 0.35);
}

.product-list-more-btn:hover i {
  transform: translateX(3px);
}

.product-home .product-card h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #123a5f;
}

.product-home .product-card p {
  margin: 0;
  font-size: 14px;
  color: #3b5167;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-home .product-card:hover {
  transform: translateY(-7px);
  border-color: #d7b56a;
  box-shadow: 0 16px 30px rgba(102, 84, 37, 0.18);
}

.product-home .product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.product-btn-detail {
  background: #edf4ff;
  color: #13426e;
  border: 1px solid #cfe0f4;
}

.product-btn-detail:hover {
  background: #13426e;
  border-color: #13426e;
  color: #ffffff;
}

.product-btn-wa {
  background: #e9fff3;
  color: #157347;
  border: 1px solid #bde8d0;
}

.product-btn-wa:hover {
  background: #157347;
  border-color: #157347;
  color: #ffffff;
}

.product-btn-call {
  background: #fff4de;
  color: #8b5e00;
  border: 1px solid #efd9a2;
}

.product-btn-call:hover {
  background: #d58e00;
  border-color: #d58e00;
  color: #ffffff;
}

.products-page .product-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-page .product-search-wrap {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #d3e2ef;
  background: #f7fbff;
  border-radius: 10px;
  padding: 6px 8px;
}

.products-page .product-search-wrap i {
  text-align: center;
  color: #6e8ba5;
}

.products-page .product-search-wrap input {
  border: 0;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.products-page .product-search-wrap button {
  border: 0;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #149067, #0f4c81);
  color: #ffffff;
}

.products-page .product-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #f1f6fb;
  color: #1c4b73;
  border: 1px solid #d3e2ef;
}

.products-page .product-filter-chip:hover,
.products-page .product-filter-chip.active {
  background: linear-gradient(135deg, #149067, #0f4c81);
  border-color: #0f7e5f;
  color: #ffffff;
}

.product-list-card {
  background: #ffffff;
  border: 1px solid #dbe7f1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(11, 47, 84, 0.08);
  transition: all 0.3s ease;
}

.product-list-media {
  height: 215px;
  overflow: hidden;
  background: #f3f8fd;
}

.product-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-list-body {
  padding: 16px;
}

.product-list-body h3 {
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-cat {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 10px;
  background: #ecf5ff;
  color: #0f4c81;
}

.product-desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  margin-bottom: 0;
}

.product-list-card:hover {
  transform: translateY(-6px);
  border-color: #a5c6e4;
  box-shadow: 0 14px 30px rgba(11, 47, 84, 0.14);
}

.product-list-card:hover .product-list-media img {
  transform: scale(1.05);
}

.product-details-page .product-details-card {
  background: #ffffff;
  border: 1px solid #dbe7f1;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(11, 47, 84, 0.1);
}

.product-details-page .product-details-media {
  border-radius: 14px;
  overflow: hidden;
  background: #f3f8fd;
  border: 1px solid #dbe7f1;
}

.product-details-page .product-details-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

.product-details-page .product-details-content {
  font-size: 15px;
  line-height: 1.85;
}

.video-home {
  background: linear-gradient(180deg, #f5fbff 0%, #edf7fb 100%);
  border-top: 1px solid #dbeaf4;
  border-bottom: 1px solid #dbeaf4;
}

.video-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
}

.video-list-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 10px;
  border: 1px solid #0f7e5f;
  background: linear-gradient(135deg, #149067, #0f4c81);
  color: #ffffff;
}

.video-list-more-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17, 94, 127, 0.3);
}

.video-card {
  background: #ffffff;
  border: 1px solid #d9e7f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(11, 47, 84, 0.08);
  transition: all 0.3s ease;
}

.video-card-thumb {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 35, 58, 0.72);
  color: #ffffff;
  font-size: 26px;
}

.video-card-body {
  padding: 14px 16px 16px;
}

.video-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #123a5f;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: #a9cde7;
  box-shadow: 0 14px 28px rgba(11, 47, 84, 0.13);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.05);
}

.video-details-page .video-details-card {
  background: #ffffff;
  border: 1px solid #d9e7f2;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(11, 47, 84, 0.1);
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #0b2236;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .product-title-row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 18px;
  }

  .video-title-row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 18px;
  }
}

.service-details-page .service-details-card {
  background: #fff;
  border: 1px solid #d9e7f5;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(11, 47, 84, 0.1);
}

.service-details-page .service-details-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-details-page .service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c81, #1bc47d);
}

.service-details-page .service-icon-wrap i {
  color: #fff;
  font-size: 30px;
}

.service-details-page .service-short {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details-page .service-details-content {
  font-size: 15px;
  line-height: 1.85;
}

.related-service-card {
  background: #fff;
  border: 1px solid #d9e7f5;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(11, 47, 84, 0.08);
  transition: all 0.3s ease;
}

.related-service-card i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  margin-bottom: 10px;
}

.related-service-card h5 {
  margin-bottom: 8px;
}

.related-service-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 35%);
}

.about .icon-boxes .col-md-6:nth-child(1) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box,
.about .icon-boxes .col-md-6:nth-child(7) .icon-box,
.about .icon-boxes .col-md-6:nth-child(10) .icon-box
 {
  margin-top: -150px;
}
.about .icon-boxes .col-md-6:nth-child(3) .icon-box,
.about .icon-boxes .col-md-6:nth-child(6) .icon-box ,
.about .icon-boxes .col-md-6:nth-child(9) .icon-box ,
.about .icon-boxes .col-md-6:nth-child(9) .icon-box
{
  margin-top: 150px;
}

/* Services listing page should use a normal grid, not the staggered home layout */
.services-page.about {
  padding-top: 60px;
}

.services-page .icon-boxes .col-md-6 .icon-box {
  margin-top: 0 !important;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: block;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.features .features-item i {
  font-size: 26px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0;
  line-height: 1.3;
  font-size: 18px;
}

.features .features-item p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.features .features-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.12);
}

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

/*--------------------------------------------------------------
# Excellence Section
--------------------------------------------------------------*/
.excellence {
  background:
    radial-gradient(circle at 8% 14%, rgba(45, 212, 191, 0.14), transparent 40%),
    radial-gradient(circle at 90% 86%, rgba(56, 189, 248, 0.12), transparent 42%),
    linear-gradient(180deg, #0b2135 0%, #0d2d45 100%);
  border-top: 1px solid #1f3f58;
  border-bottom: 1px solid #1f3f58;
}

.excellence-side {
  background: linear-gradient(145deg, #0e3f63, #0f8a78);
  border: 1px solid rgba(177, 234, 255, 0.35);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 22px 40px rgba(9, 45, 77, 0.22);
}

.ex-kicker {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d6fbe8;
  font-weight: 700;
}

.excellence-side h2 {
  font-size: 33px;
  line-height: 1.22;
  color: #ffffff;
}

.excellence-side p {
  color: rgba(241, 250, 255, 0.92);
  line-height: 1.85;
}

.ex-process {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ex-process::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, #27c5a8, #2ea6df);
}

.ex-step-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(240, 248, 255, 0.96);
  border: 1px solid #b7d4e6;
  border-radius: 14px;
  padding: 15px 16px;
  transition: all 0.28s ease;
  backdrop-filter: blur(2px);
}

.ex-step-item:hover {
  border-color: #6ec8d8;
  box-shadow: 0 16px 30px rgba(11, 61, 92, 0.24);
  transform: translateY(-4px);
}

.ex-step-no {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #1ca28c, #1f8ecd);
  z-index: 1;
  box-shadow: 0 8px 16px rgba(21, 128, 104, 0.35);
}

.ex-step-content h4 {
  margin: 2px 0 6px;
  font-size: 18px;
  color: #0b3457;
}

.ex-step-content p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  line-height: 1.75;
}

@media (max-width: 991px) {
  .excellence-side h2 {
    font-size: 28px;
  }

  .ex-process::before {
    display: none;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d7e7de;
  box-shadow: 0 8px 22px rgba(8, 57, 48, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery .gallery-link {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.gallery .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(8, 31, 57, 0.12), rgba(8, 31, 57, 0.78));
  color: #f7fffb;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
  padding: 14px;
}

.gallery .gallery-overlay i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.gallery .gallery-overlay strong {
  font-size: 14px;
  font-weight: 600;
  max-width: 88%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery .gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.gallery .gallery-item:hover {
  transform: translateY(-6px);
  border-color: #9fd2b5;
  box-shadow: 0 16px 34px rgba(8, 57, 48, 0.15);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 575px) {
  .gallery .gallery-link {
    aspect-ratio: 1 / 1;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 20px 0;
  position: relative;
  background: transparent;
}
.testimonials h1,
.testimonials h5,
.testimonials h4,
.testimonials h3,
.testimonials h2{
  color: black;
  text-align: left;
}

.testimonials .items{
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.testimonials .items .testimonial-item{

    display: flex;
    align-items: center;
    justify-content: flex-start;

  }
  .testimonials .items .testimonial-item .details_container{
    padding: 0 16px;
  }



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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}



.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;

}

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

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





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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  background:
    radial-gradient(circle at 12% 20%, rgba(27, 196, 125, 0.1), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(15, 76, 129, 0.1), transparent 36%),
    linear-gradient(180deg, #f7fbfd 0%, #edf5fa 100%);
  border-top: 1px solid #d9e6ef;
}

.clients .clients-title {
  padding-bottom: 34px;
}

.clients .clients-swiper {
  padding-bottom: 44px;
}

.clients .client-card {
  height: 94px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d7e6df;
  box-shadow: 0 10px 24px rgba(8, 57, 48, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.clients .client-card img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(0.94);
}

.clients .swiper-slide:hover .client-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(8, 57, 48, 0.14);
  border-color: #97cfb3;
}

.clients .swiper-slide:hover .client-card img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.clients .swiper-pagination {
  bottom: 4px !important;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.45;
  background: #7ca3bd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #129067, #0f4c81);
}

@media (max-width: 575px) {
  .clients .client-card {
    height: 84px;
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  background:
    radial-gradient(circle at 12% 15%, rgba(27, 196, 125, 0.1), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(15, 76, 129, 0.08), transparent 35%),
    linear-gradient(180deg, #f7fbfd 0%, #eef6f2 100%);
}

.team .team-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #d4e5da;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 57, 48, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team .team-card-media {
  position: relative;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf7f0, #e8f2fa);
}

.team .team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.team .team-card-body {
  padding: 16px 16px 18px;
}

.team .team-card-name {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.3;
  color: #0b2f54;
}

.team .team-card-role {
  font-size: 13px;
  font-weight: 600;
  color: #1c7a64;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.team .team-card-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #0f4c81;
  background: color-mix(in srgb, #0f4c81, transparent 91%);
  border-radius: 8px;
  padding: 7px 10px;
  max-width: 100%;
}

.team .team-card-email span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team .team-card:hover {
  transform: translateY(-7px);
  border-color: #91cfb0;
  box-shadow: 0 18px 34px rgba(8, 57, 48, 0.15);
}

.team .team-card:hover .team-card-media img {
  transform: scale(1.06);
}

.team .team-card:hover .team-card-email {
  background: #0f4c81;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background:
    radial-gradient(circle at 12% 14%, rgba(27, 196, 125, 0.09), transparent 35%),
    radial-gradient(circle at 88% 86%, rgba(15, 76, 129, 0.08), transparent 38%),
    linear-gradient(180deg, #f8fcff 0%, #f1f7fb 100%);
}

.faq .faq-shell {
  max-width: 980px;
  margin: 0 auto;
}

.faq .faq-container {
  margin-top: 6px;
}

.faq .faq-container .faq-item {
  background: #ffffff;
  border: 1px solid #d7e6f0;
  border-radius: 14px;
  position: relative;
  padding: 18px 56px 18px 58px;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(11, 47, 84, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

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

.faq .faq-container .faq-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #123a5f;
  cursor: pointer;
  transition: color 0.25s ease;
}

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

.faq .faq-container .faq-item .faq-content p {
  margin: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.8;
  font-size: 14px;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 20px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0f4c81;
  background: #eaf3fc;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0f4c81;
  background: #eef4fb;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-2px);
  border-color: #b9d5eb;
  box-shadow: 0 12px 24px rgba(11, 47, 84, 0.12);
}

.faq .faq-container .faq-item:hover h3 {
  color: #0f4c81;
}

.faq .faq-container .faq-active {
  border-color: #95c6b0;
  box-shadow: 0 14px 28px rgba(17, 79, 67, 0.13);
}

.faq .faq-container .faq-active h3 {
  color: #0d6a52;
}

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

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #1a8f6d, #0f4c81);
  color: #ffffff;
}

@media (max-width: 575px) {
  .faq .faq-container .faq-item {
    padding: 16px 46px 16px 50px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background:
    radial-gradient(circle at 10% 10%, rgba(27, 196, 125, 0.1), transparent 36%),
    radial-gradient(circle at 88% 88%, rgba(15, 76, 129, 0.1), transparent 35%),
    linear-gradient(180deg, #f8fcfe 0%, #eef5fa 100%);
}

.contact .info-wrap {
  background-color: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 57, 48, 0.12);
  border: 1px solid #d6e6df;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
}

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

.contact .info-item {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #dce9e3;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f6fbf9);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact .info-item i {
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1a8f6d, #0f4c81);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0b2f54;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 14%);
}

.contact .info-item:hover i {
  transform: scale(1.04);
}

.contact .info-item:hover {
  transform: translateY(-3px);
  border-color: #9bcfb6;
  box-shadow: 0 10px 20px rgba(8, 57, 48, 0.08);
}

.contact .info-wrap iframe {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid #d6e6df !important;
}

.contact .php-email-form {
  background-color: #ffffff;
  height: 100%;
  padding: 30px;
  border: 1px solid #d6e6df;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(8, 57, 48, 0.12);
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 11px 14px;
  box-shadow: none;
  border-radius: 10px;
  color: var(--default-color);
  background-color: #f8fbfe;
  border: 1px solid #cfdde8;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus {
  border-color: #2c9e76;
  box-shadow: 0 0 0 3px rgba(44, 158, 118, 0.14);
  background-color: #ffffff;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form label {
  font-size: 13px;
  font-weight: 600;
  color: #0b2f54;
  margin-bottom: 6px;
}

.contact .php-email-form button[type=submit] {
  color: #ffffff;
  background: linear-gradient(135deg, #1a8f6d, #0f4c81);
  border: 0;
  padding: 11px 28px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.4s;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(13, 88, 108, 0.24);
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(13, 88, 108, 0.3);
  background: linear-gradient(135deg, #1ea47c, #115a96);
}

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