/* Fonts */
:root {
 --default-font: 'Manrope', 'Open Sans', 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: 'Manrope', 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-accent: #ff0000; /* Background color for the entire website, including individual sections */
 --background-light: #ffffff; /* Background color for the entire website, including individual sections */
 --background-gray: #fafafa; /* Background color for the entire website, including individual sections */
 --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
 --heading-color: #444444; /* Color for headings, subheadings and title throughout the website */
 --accent-color: #ff0000; /* 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: #ff0000; /* The default color of the main navmenu links */
 --nav-hover-color: #47b2e4; /* 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: #47b2e4; /* 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-accent: #ff0000;
 --surface-color: #ffffff;
}

.dark-background {
 --background-accent: #ff0000;
 --default-color: #ffffff;
 --heading-color: #ffffff;
 --surface-color: #4668a2;
 --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
 font-family: var(--default-font);
 max-width: 100%;
}

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

header,
footer {
 max-width: 100%;
 overflow: hidden;
}

/* 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
--------------------------------------------------------------*/
.header {
 color: var(--accent-color);
 background-color: var(--background-light);
 padding: 15px 0;
 transition: all 0.5s;
 z-index: 997;
 border-bottom: 1px solid
  color-mix(in srgb, var(--contrast-color), transparent 15%);
}

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

.header .search {
 border: 1px solid var(--accent-color);
 border-radius: 32px;
 position: relative;
 height: 35px;
 width: 250px;
}

.header .search input {
 background: transparent;
 border-radius: 32px;
 border: none;
 padding: 6px 10px 6px 42px;
 color: var(--accent-color);
}

.header .search input:focus {
 outline: none;
}

.header .search i {
 position: absolute;
 top: 50%;
 left: 13px;
 transform: translateY(-50%);
 color: var(--accent-color);
 font-size: 20px;
}

@media (min-width: 1241px) {
 /* .header .logo {
  order: 1;
 }

 .header .navmenu {
  order: 3;
 } */

 .header .search {
  height: 44px;
  width: 340px;
 }

 .header .search input {
  padding: 9px 15px 9px 50px;
 }

 .header .search i {
  font-size: 24px;
 }
}

/* Index Page Header
------------------------------*/
.index-page .header {
 --background-accent: #ff0000;
 --heading-color: #ffffff;
 --nav-color: #ff0000;
}

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

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

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

 .navmenu li {
  position: relative;
 }

 .navmenu a,
 .navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 18px;
  font-family: var(--nav-font);
  font-weight: 300;
  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;
  transition: 0.3s;
 }

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

 .navmenu li:hover > a,
 .navmenu .active,
 .navmenu .active:focus {
  font-weight: 600;
 }

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

 .navmenu .megamenu {
  position: static;
 }

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

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

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

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

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

 .navmenu .dd-box-shadow {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
 }
}

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

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

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

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

 .navmenu a i,
 .navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: 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);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  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;
 }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
 color: var(--surface-color);
 background-color: #333;

 font-size: 14px;
 position: relative;
}

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

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

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

.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;
 display: flex;
 gap: 3rem;
}

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

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

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

.footer .footer-about img {
 height: 86px;
}

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

.footer .copyright {
 background: #292828;
 padding: 25px 0;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
 position: fixed;
 inset: 0;
 z-index: 999999;
 overflow: hidden;
 background: var(--background-accent);
 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: 44px;
 height: 44px;
 border-radius: 50px;
 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;
 bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
 --background-accent: color-mix(in srgb, var(--default-color), transparent 96%);
 color: var(--default-color);
 background-color: var(--background-accent);
 padding: 20px 0;
 position: relative;
}

.page-title h1 {
 font-size: 28px;
 font-weight: 700;
 margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {
 section,
 .section {
  scroll-margin-top: 66px;
 }
}

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

.section-title h2 {
 font-size: 48px;
 font-weight: 500;
 margin-bottom: 10px;
 text-transform: capitalize;
 position: relative;
}

.section-title h2 span {
 color: var(--accent-color);
}

/* .section-title h2:before {
 content: '';
 position: absolute;
 display: block;
 width: 160px;
 height: 1px;
 background: color-mix(in srgb, var(--default-color), transparent 60%);
 left: 0;
 right: 0;
 bottom: 1px;
 margin: auto;
}

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

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

@media screen and (max-width: 767px) {
 .section-title {
  padding-bottom: 20px;
 }

 .section-title h2 {
  font-size: 32px;
  line-height: 1.2;
 }

 .section-title h2 span {
  font-size: 22px;
 }
}

/*--------------------------------------------------------------
# Global Background
--------------------------------------------------------------*/
.bg-accent {
 color: var(--default-color);
 background-color: var(--accent-color);
}

.bg-white {
 background-color: var(--contrast-color);
}

.bg-light {
 background-color: #f9f9f9;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
 /* min-height: 80vh; */
 /* height: 95vh; */
 width: 100%;
 position: relative;
 padding: 150px 0 80px 0;
 display: flex;
 align-items: center;
 background-color: var(--background-accent);
}

.hero h1 {
 margin: 0;
 font-size: 44px;
 font-weight: 800;
 line-height: 56px;
 text-transform: uppercase;
 font-family: var(--heading-font);
}

.hero p {
 color: var(--default-color);
 margin: 28px 0 82px 0;
 font-size: 20px;
 line-height: 1.3;
 font-weight: 500;
}

.hero .btn-get-started {
 color: var(--background-accent);
 background: var(--contrast-color);
 font-family: var(--heading-font);
 font-weight: 700;
 font-size: 22px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 10px 28px;
 border-radius: 50px;
 transition: 0.5s;
 text-transform: uppercase;
}

.hero .btn-get-started:hover {
 color: var(--contrast-color);
 background: 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 {
  font-size: 13px;
 }
}

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
 padding: 80px 0;
 background: #fafafa;
}

.clients h2 {
 text-align: center;
 font-size: 30px;
 font-weight: 500;
 margin-bottom: 20px;
 color: var(--default-color);
}

.clients h2 span {
 font-weight: 600;
 color: var(--accent-color);
}

.clients .swiper {
 padding: 10px 0;
}

.clients .swiper-wrapper {
 height: auto;
}
/* 
.clients .swiper-slide {
 height: 75px !important;
 width: 75px !important;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 5px;
 border-radius: 5px;
 border: 1px solid #e4e4e4;
} */

.clients .swiper-slide img {
 height: 75px !important;
 width: 75px !important;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 10px;
 border-radius: 5px;
 border: 1px solid #e4e4e4;
 object-fit: contain;
 aspect-ratio: 1/1 !important;

 transition: 0.3s;
}

/* .clients .swiper-slide img:hover {
 transform: scale(1.1);
} */

@media screen and (max-width: 1280px) {
 .clients .swiper-slide img {
  height: 68px !important;
  width: 68px !important;
  padding: 10px;
 }
}

@media screen and (max-width: 600px) {
 .clients .swiper-slide img {
  height: 48px !important;
  width: 48px !important;
  padding: 6px;
 }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about p {
 font-size: 15px;
 font-weight: 300;
 line-height: 22px;
 color: var(--default-color);
 text-align: justify;
}

.about .read-more {
 background: var(--accent-color);
 color: var(--contrast-color);
 font-family: var(--heading-font);
 font-weight: 400;
 font-size: 20px;
 letter-spacing: 1px;
 padding: 26px 30px;
 border-radius: 50px;
 transition: 0.3s;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 2px solid var(--accent-color);
 margin-top: 2rem;
}

.about .read-more:hover {
 background: var(--contrast-color);
 color: var(--accent-color);
}

.about h3 {
 font-weight: 300;
 font-size: 1.8rem;
}

@media screen and (max-width: 600px) {
 .about h3 {
  font-size: 1.3rem;
  /* font-weight: 400; */
 }

 .about .read-more {
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 1rem;
 }
}

/*--------------------------------------------------------------
# Specific Solutions Section
--------------------------------------------------------------*/
.specific_solutions {
 padding: 60px 0 !important;
 background: #ffff00;
 position: relative;
 background: #fff;
 background-image: url('./../img/specific-solutions.svg');
 background-size:  auto 85%;
 background-position: center right;
 background-repeat: no-repeat;
}

/* .specific_solutions::after {
 content: '';
 position: absolute;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
 z-index: 00;
 background: transparent;
 background-image: url('./../img/specific-solutions.svg');
 background-size: contain;
 background-position: center right;
 background-repeat: no-repeat;
} */

.specific_solutions .content {
 z-index: 1;
 padding: 60px 0 !important;
}

.specific_solutions .content h2 {
 font-weight: 500;
 font-size: 48px;
 color: var(--default-color);
 text-transform: capitalize;
 margin-bottom: 1.8rem;
}

.specific_solutions .content h2 span {
 color: var(--accent-color);
}

.specific_solutions .content p {
 color: color-mix(in srgb, var(--default-color), transparent 30%);
 display: block;
 padding-bottom: 2rem;
 text-align: justify;
}

.specific_solutions .content a {
 border: 1px solid var(--accent-color);
 border-radius: 2rem;
 padding: 1rem 2.5rem;
 color: var(--accent-color);
 font-weight: 500;
 transition: 0.3s;
 margin-top: 1rem;
}

.specific_solutions .specific_solutions-img {
 display: flex;
 align-items: center;
 justify-content: center;
}

.specific_solutions .specific_solutions-img img {
 max-height: 70%;
}

@media screen and (max-width: 600px) {
 .specific_solutions {
  background: #fff;
 }
 .specific_solutions .content {
  padding: 0rem;
 }

 .specific_solutions .content h2 {
  font-size: 36px;
 }
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.service {
 padding: 2rem 0 !important;
 position: relative;
}

.service .left {
 padding-right: 2rem;
}

.service .left ul {
 max-width: 400px;
}

.service h2 {
 font-size: 44px;
 font-weight: 500;
 color: var(--accent-color);
 display: flex;
 flex-direction: column;
 line-height: 56px;
 margin-bottom: 2rem;
}

.service h2 span {
 font-weight: 500;
 color: var(--default-color);
}

.service ul {
 list-style: none;
 margin: 0;
 padding: 0;
 width: 100%;
}

.service ul .nav-link {
 padding: 5px 25px;
 width: 100% !important;
 display: block !important;
 font-size: 20px;
 font-weight: 300;
 text-align: left;
 border: 1px solid var(--contrast-color);
 border-radius: 0.75rem;
}

.service ul .nav-link.active {
 border: 1px solid var(--accent-color);
}

.service .tab-content {
 background: var(--accent-color);
 color: var(--contrast-color);
 padding: 4rem;
 border-radius: 1rem 0 0 1rem;
 position: relative;
 z-index: 2;
}

.service .tab-content::before {
 content: '';
 background: var(--accent-color);
 color: var(--contrast-color);
 padding: 4rem;
 position: absolute;
 right: -90%;
 top: 0;
 width: 100%;
 height: 100%;
 z-index: -1;
}

.service .tab-content .tab-pane {
 max-width: 584px;
 text-align: justify;
}

.service .tab-content h6 {
 font-size: 26px;
 font-weight: 500;
 color: var(--contrast-color);
}

.service .tab-content p {
 font-size: 16px;
 font-weight: 300;
}

.service .tab-content a {
 font-weight: 800;
 color: var(--contrast-color);
}

.service .tab-content .bg-cube {
 position: absolute;
 z-index: 1;
 bottom: 2rem;
 right: -3rem;
 animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media screen and (max-width: 600px) {
 .service .left {
  padding: 4rem 1rem;
 }

 .service ul .nav-link {
  padding: 8px 25px;
  font-size: 14px;
  text-align: center;
 }

 .service h2 {
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
 }

 .service h2 span {
  font-size: 22px;
 }

 .service .tab-content {
  padding: 1rem;
  border-radius: 0;
  /* width: 100%; */
 }

 .service .tab-content::before {
  display: none;
 }

 .service .tab-content .bg-cube {
  display: none;
 }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
 padding: 120px 0;
 position: relative;
 clip-path: inset(0);
}

.call-to-action img {
 position: fixed;
 top: 0;
 left: 0;
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
}

.call-to-action:before {
 content: '';
 background: color-mix(in srgb, var(--background-accent), transparent 35%);
 position: absolute;
 inset: 0;
 z-index: 2;
}

.call-to-action .container {
 position: relative;
 z-index: 3;
}

.call-to-action h3 {
 color: var(--default-color);
 font-size: 28px;
 font-weight: 700;
}

.call-to-action p {
 color: var(--default-color);
}

.call-to-action .cta-btn {
 font-family: var(--heading-font);
 font-weight: 500;
 font-size: 16px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 12px 40px;
 border-radius: 50px;
 transition: 0.5s;
 margin: 10px;
 border: 2px solid var(--contrast-color);
 color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
 background: var(--accent-color);
 border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
 background-color: var(--surface-color);
 box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
 position: relative;
 border-radius: 5px;
 transition: 0.5s;
 padding: 30px;
 height: 100%;
}

@media (max-width: 468px) {
 .team .team-member {
  flex-direction: column;
  justify-content: center !important;
  align-items: center !important;
 }
}

.team .team-member .pic {
 overflow: hidden;
 width: 150px;
 border-radius: 50%;
 flex-shrink: 0;
}

.team .team-member .pic img {
 transition: ease-in-out 0.3s;
}

.team .team-member:hover {
 transform: translateY(-10px);
}

.team .team-member .member-info {
 padding-left: 30px;
}

@media (max-width: 468px) {
 .team .team-member .member-info {
  padding: 30px 0 0 0;
  text-align: center;
 }
}

.team .team-member h4 {
 font-weight: 700;
 margin-bottom: 5px;
 font-size: 20px;
}

.team .team-member span {
 display: block;
 font-size: 15px;
 padding-bottom: 10px;
 position: relative;
 font-weight: 500;
}

.team .team-member span::after {
 content: '';
 position: absolute;
 display: block;
 width: 50px;
 height: 1px;
 background: color-mix(in srgb, var(--default-color), transparent 85%);
 bottom: 0;
 left: 0;
}

@media (max-width: 468px) {
 .team .team-member span::after {
  left: calc(50% - 25px);
 }
}

.team .team-member p {
 margin: 10px 0 0 0;
 font-size: 14px;
}

.team .team-member .social {
 margin-top: 12px;
 display: flex;
 align-items: center;
 justify-content: start;
 width: 100%;
}

@media (max-width: 468px) {
 .team .team-member .social {
  justify-content: center;
 }
}

.team .team-member .social a {
 background: color-mix(in srgb, var(--default-color), transparent 94%);
 transition: ease-in-out 0.3s;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50px;
 width: 36px;
 height: 36px;
}

.team .team-member .social a i {
 color: color-mix(in srgb, var(--default-color), transparent 20%);
 font-size: 16px;
 margin: 0 2px;
}

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

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

.team .team-member .social a + a {
 margin-left: 8px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-item .blog_card {
 background-color: var(--surface-color);
 box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
 padding: 1rem;
 height: 100%;
 border-radius: 12px;
}

.testimonials-item .blog_card .blog-img img {
 border-radius: 1rem !important;
 width: 100%;
}

.testimonials-item .blog_card .blog-content {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 gap: 0.3rem;
}

.testimonials h3 {
 font-weight: 400;
 font-size: 22px;
 color: var(--default-color);
}

.testimonials .blog-content p {
 font-weight: 300;
 font-size: 16px;
 height: 150px;
 overflow: hidden;
 text-align: justify;
}

.testimonials .blog-content img {
 max-width: 100%;
}

/* Swipper */
.swiper-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 1.5rem;
 width: 100%;
 margin-top: 2rem;
}

.swiper-btn span {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 border: 1px solid var(--accent-color);
 color: var(--accent-color);
 font-size: 20px;
 cursor: pointer;
 font-size: 24px;
}

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

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

 .testimonials .testimonials-item .blog_card {
  padding: 0.5rem;
 }

 .testimonials h3 {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
 }

 .testimonials .blog-content p {
  font-weight: 300;
  font-size: 14px;
  height: auto;
  text-align: center;
  line-clamp: 3 !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
 }
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-wrap {
 padding-right: 50px;
}
.contact .info-item {
 margin-bottom: 40px;
}

.contact .info-item i {
 font-size: 20px;
 color: var(--accent-color);
 background: color-mix(in srgb, var(--accent-color), transparent 92%);
 width: 44px;
 height: 44px;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 50px;
 transition: all 0.3s ease-in-out;
 margin-right: 15px;
}

.contact .info-item h2 {
 padding: 0;
 font-size: 44px;
 font-weight: 500;
 margin-bottom: 25px;
}

.contact .info-item h3 {
 padding: 0;
 font-size: 26px;
 font-weight: 500;
 margin-bottom: 5px;
}

.contact .info-item p {
 padding: 0;
 margin-bottom: 0;
 font-size: 16px;
 font-weight: 300;
 text-align: justify;
}

.contact .info-item a {
 padding: 0;
 margin-bottom: 0;
 font-size: 16px;
 font-weight: 300;
 color: var(--contrast-color);
}

.contact .info-item:hover i {
 background: var(--accent-color);
 color: var(--contrast-color);
}

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

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form textarea {
 font-size: 14px;
 padding: 18px 25px;
 box-shadow: none;
 border-radius: 10px;
 color: #444;
 background-color: var(--default-color);
 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(--accent-color);
}

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

.contact .php-email-form button[type='submit'] {
 color: var(--accent-color);
 background: var(--contrast-color);
 border: 0;
 padding: 10px 40px;
 transition: 0.4s;
 border-radius: 5px;
 text-transform: uppercase;
 font-weight: 500;
}

.contact .php-email-form button[type='submit']:hover {
 background: color-mix(in srgb, var(--contrast-color), transparent 25%);
}

@media screen and (max-width: 767px) {
 .contact .info-wrap {
  padding-right: 0px;
 }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
 background-color: var(--surface-color);
 box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
 padding: 50px 30px;
 transition: all ease-in-out 0.4s;
 height: 100%;
}

.services .service-item .icon {
 margin-bottom: 10px;
}

.services .service-item .icon i {
 color: var(--accent-color);
 font-size: 36px;
 transition: 0.3s;
}

.services .service-item h4 {
 font-weight: 700;
 margin-bottom: 15px;
 font-size: 20px;
}

.services .service-item h4 a {
 color: var(--heading-color);
 transition: ease-in-out 0.3s;
}

.services .service-item p {
 line-height: 24px;
 font-size: 14px;
 margin-bottom: 0;
}

.services .service-item:hover {
 transform: translateY(-10px);
}

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.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;
}

.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: color-mix(in srgb, var(--default-color), transparent 20%);
 transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Innovation Section
--------------------------------------------------------------*/
.innovation img {
 height: 40px;
}

.innovation h5 {
 color: #9aa4b2;
 font-size: 18px;
 font-weight: 400;
}

@media screen and (max-width: 600px) {
 .innovation img {
  height: 32px;
 }
}

/*--------------------------------------------------------------
# Business Management Section
--------------------------------------------------------------*/
#solutions {
 position: relative;
 overflow-y: visible;
}

#solutions .content {
 background: var(--accent-color);
 color: var(--contrast-color);
 padding: 5rem;
 border-radius: 0 1rem 1rem 0;
 height: 100%;
 text-align: justify;
 position: relative;
 z-index: 2;
}

.solutions .content::before {
 content: '';
 background: var(--accent-color);
 color: var(--contrast-color);
 padding: 4rem;
 position: absolute;
 left: -90%;
 top: 0;
 width: 100%;
 height: 100%;
 z-index: -1;
}

#solutions .content h1 {
 font-size: 60px;
 font-weight: 800;
 color: var(--contrast-color);
}

#solutions .solutions_items {
 padding-left: 1rem;
}

#solutions .list {
 display: flex;
 align-items: center;
 gap: 1rem;
 border-radius: 10px;
 border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 padding: 1rem;
 margin-bottom: 0.7rem;
}

.solutions .list:hover {
 border: 1px solid var(--accent-color) !important;
 background: var(--background-gray);
 /* box-shadow: 3px 5px 30px rgba(0, 0, 0, 0.1); */
}

.solutions .list .icon {
 width: 50px;
 height: 50px;
 background-color: var(--accent-color);
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 10px;
 /* margin-right: 15px; */
}

.solutions .list h4 {
 margin: 0;
 color: var(--default-color);
 font-weight: 200;
}

.solutions .bg-cube {
 position: absolute;
 z-index: 1;
 bottom: -6rem;
 left: 0;
 /* animation: up-down 2s ease-in-out infinite alternate-reverse both; */
}

@media screen and (max-width: 600px) {
 #solutions .content::before {
  display: none;
 }

 #solutions .solutions_items {
  padding: 1.5rem 0 !important;
 }

 .solutions .list {
  padding: 0.5rem !important;
 }

 .solutions .list h4 {
  font-size: 14px;
  font-weight: 400;
 }

 .solutions .list .icon {
  width: 26px;
  height: 26px;
 }

 .solutions .list .icon img {
  width: 16px;
  height: 16px;
 }

 #solutions .content {
  padding: 1rem;
  border-radius: 0;
 }

 #solutions .content h1 {
  font-size: 36px;
 }

 #solutions .solutions {
  padding: 0 0.5rem;
 }

 .solutions .bg-cube {
  display: none;
 }
}
