/* 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: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  /* 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: #cc5500;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1977cc;
  /* 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 */
:root {
  --nav-color: #2c4964;
  /* The default color of the main navmenu links */
  --nav-hover-color: #1977cc;
  /* 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: #2c4964;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1977cc;
  /* 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 {
  --surface-color: #ffffff;
  --background-color: #f1f7fc;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-size: large;
  line-height: 1.8;
  font-style: normal;
  color: var(--default-color);
  font-family: var(--default-font);
  background-color: var(--background-color);
}

.bi-phone,
.bi-envelope,
.social-links .bi {
  font-size: large;
}

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

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

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

/*! Base colors */
.mbr-white {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  transition: all 0.5s;
  color: var(--default-color);
  background-color: var(--background-color);
}

.header .topbar {
  padding: 0;
  height: 45px;
  transition: all 0.5s;
  background-color: var(--accent-color);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 0.8rem;
  }
}

@media (max-width: 344px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 0.77rem;
  }
}


.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  text-decoration: underline;
  color: var(--contrast-color);
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  padding: 10px 0;
  min-height: 60px;
}

.header .logo {
  line-height: 1;
  border-top: 1px solid var(--heading-color);
  border-bottom: 1px solid var(--accent-color);
}

.header .logo img {
  max-height: 2.6rem;
}

.header .logo h1 {
  color: var(--heading-color);
  font-family: "Sofia", sans-serif;
  text-shadow: 3px 3px 3px #ababab;
}

@media (max-width: 344px) {
  .header .logo h1 {
    font-size: x-large;
  }
}

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

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

  .header .navmenu {
    order: 3;
  }

}

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

.scrolled .header .topbar {
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

/*--------------------------------------------------------------
# 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 {
    padding: 15px 12px;
    white-space: nowrap;
  }

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

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    padding: 0 2px;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    align-items: center;
    white-space: nowrap;
    color: var(--nav-color);
    font-family: var(--nav-font);
    justify-content: space-between;
  }

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

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

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

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

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

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

  .navmenu .dropdown ul a {
    font-size: 15px;
    padding: 10px 20px;
    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 {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

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

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

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

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

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

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

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

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

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

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

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

  .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 {
    top: 15px;
    right: 15px;
    z-index: 9999;
    color: #fff;
    font-size: 32px;
    margin-right: 0;
    position: absolute;
  }

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

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

/*--------------------------------------------------------------
# Global Head-Banner
--------------------------------------------------------------*/
.head-banner {
  z-index: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  align-items: center;
  align-content: center;
}

.head-banner .img-wrapper {
  padding: 0;
  display: flex;
  overflow: hidden;
  position: relative;
}

@media Screen and (max-width: 768px) {
  .head-banner .img-wrapper {
    height: 20vh;
  }
}

.head-banner .img-fluid {
  margin: 0;
  height: auto;
  padding: 0 0 7px 0;
}

.head-banner .content-block {
  top: -50%;
  z-index: 1;
  position: relative;
  padding: 0.75rem 1rem;
  transform: translateY(50%);
}

.head-banner svg {
  left: 50%;
  z-index: 0;
  bottom: -1rem;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%) scale(1.9, 1.6);
}

.head-banner #e2_shape {
  fill: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-section {
  background: radial-gradient(var(--accent-color) 90%, color-mix(in srgb, var(--heading-color), transparent 75%) 52%);
}

.footer {
  font-size: 1rem;
  position: relative;
  color: var(--default-color);
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.footer .footer-top {
  padding-top: 50px;
  box-shadow: 0px 2px 5px var(--heading-color);
}

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

.footer .footer-top .footer-about .sitename {
  font-family: "Sofia", sans-serif;
}

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

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

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

.footer .social-links {
  padding-bottom: 10px;
}

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

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

.footer h4 {
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

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

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

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

.footer .footer-contact p {
  margin-bottom: 5px;
  color: var(--accent-color);
}

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

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

.footer .designer {
  margin-top: 8px;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Chat-option on Pages
--------------------------------------------------------------*/
.whatsapp-btn-container {
  right: 0;
  opacity: 0;
  padding: 15px;
  bottom: -50px;
  z-index: 99999;
  position: fixed;
  margin-bottom: 40px;
  animation-delay: 1000ms;
  animation: fade-up 1000ms forwards;
}

@keyframes fade-up {
  100% {
    opacity: 1;
    bottom: 20px;
  }
}

.whatsapp-btn-container .whatsapp-btn {
  font-size: 3rem;
  color: #25d366;
  display: inline-block;
  transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover {
  transform: scale(1.2);
}

.whatsapp-btn-container span {
  position: absolute;
  top: 0;
  left: 4px;
  opacity: 0;
  font-weight: bold;
  transition: all 400ms;
  color: var(--accent-color);
  transform: rotateZ(20deg) translateX(10px);
}

.whatsapp-btn-container .whatsapp-btn:hover+span {
  opacity: 1;
  transform: rotateZ(0deg) translateX(0px);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title,
.service-title,
.qhse-title {
  padding: 10px;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Write-ups Without Pictures Besides
--------------------------------------------------------------*/
.plain-write-ups {
  border-color: 10px solid var(--accent-color);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
.home {
  padding: 0;
  border-bottom: 10px solid var(--accent-color);
}

.home .carousel {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  min-height: calc(91vh - 75px);
}

@media (max-height: 500px),
(max-width: 1200px) {
  .home .carousel {
    min-height: calc(95vh - 70px);
  }
}

.home .carousel-item {
  inset: 0;
  display: flex;
  position: absolute;
  align-items: flex-end;
  background-size: cover;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
}

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

.home .container {
  z-index: 3;
  width: auto;
  padding-top: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-top: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
}

@media (max-width: 1200px) {
  .home .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.home h4 {
  margin-bottom: 20px;
}

.home .btn-get-started {
  margin: 10px;
  transition: 0.5s;
  padding: 8px 32px;
  border-radius: 4px;
  letter-spacing: 2px;
  display: inline-block;
  color: var(--contrast-color);
  font-family: "Sofia", sans-serif;
  border: 2px solid var(--accent-color);
}

.home .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.home .section-title .container {
  z-index: 3;
  width: 30%;
  border: none;
  margin: -10px auto auto;
  position: relative;
}

@media (max-width: 768px) {
  .home .section-title .container {
    width: 60%;
  }
}

@media (max-width: 560px) {
  .home .section-title .container {
    width: 100%;
  }
}

.home .carousel .tag-line {
  padding-top: 15px;
  text-align: center;
  padding-bottom: 15px;
  color: var(--contrast-color);
  border-left: 1px solid #cc5500;
  border-right: 1px solid #cc5500;
}

.home .carousel .tag-line h5 {
  color: var(--contrast-color);
  font-family: "Sofia", sans-serif;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  margin-top: 0;
  padding-top: 0;
}

.about .section-title {
  margin-top: 0;
  padding-top: 0;
}

.about-top .content .icon-box {
  width: 100%;
  margin: auto 50px;
  padding: 40px 30px;
  text-align: center;
  align-items: center;
  align-content: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px var(--heading-color);
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
}

.about-top .content .icon-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.about-top .content .icon-box h4 {
  font-size: 1.3rem;
  margin: 10px 0 20px 0;
}

.about-top .content .icon-box p {
  font-size: 1rem;
  text-align: justify;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-top .content .icon-box ul {
  padding: 0;
  font-size: 1rem;
  list-style: none;
}

.about-top .content .icon-box ul li {
  display: flex;
  padding: 5px 0;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-top .content .icon-box ul i {
  line-height: 1.2;
  font-size: 1.25rem;
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.about-down .container {
  margin-top: 40px;
}

.about-down .img-fluid,
.services .img-fluid,
.qhse .img-fluid {
  height: auto;
  border-radius: 45px 0 45px 0;
  border: 1px solid var(--heading-color);
  box-shadow: 0px 4px 7px var(--heading-color);
}

.about-down .container h4 {
  text-align: center;
}

.about-down .container .content {
  box-shadow: 0 4px 5px var(--accent-color);
}

.about-down .content h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

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

.about-down .content ul li {
  display: flex;
  align-items: flex-start;
}

.about-down .content ul i {
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-right: 0.8rem;
  color: var(--accent-color);
}

.about-down .text-center {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Strength Section
--------------------------------------------------------------*/
.strength .strength-title {
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 25px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.strength .strength-title h4 {
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  overflow: hidden;
}

.services .section-title {
  border-bottom: 1px solid var(--accent-color);
}

.services .service-title {
  border-bottom: 1px solid var(--heading-color);
}

.services .container ul {
  margin: 0;
}

.services .container .content,
.qhse .container .content {
  box-shadow: 0 4px 5px var(--accent-color);
}

.services .container .last ul {
  display: flex;
  overflow: auto;
  flex-wrap: wrap;
}

.services .container .last ul li {
  margin-right: 2em;
}

/*--------------------------------------------------------------
# Industries Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .container .row {
  margin-top: 35px;
  margin-bottom: 35px;
}

.products .info {
  margin-bottom: 7px;
}

.products .info h4 {
  text-align: center;
}

.products .info ul i {
  font-size: 1.25rem;
}

.products .swiper {
  padding: 2px 44px 0 16px;
  background-color: var(--surface-color);
  box-shadow: 0 4px 5px var(--accent-color);
}

.products .swiper-slide {
  margin: auto 55px 15px 15px;
}

.products .swiper-pagination {
  margin-top: 5px;
  position: relative;
}

.products .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  border: none;
  margin-top: 5px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

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

@media (max-width: 767px) {
  .products .product-item {
    margin: 10px;
  }
}

.products .img-fluid {
  height: auto;
  border-radius: 45px 0 45px 0;
  border: 1px solid var(--heading-color);
  box-shadow: 0px 4px 7px var(--heading-color);
}

/*--------------------------------------------------------------
# QHSE Section
--------------------------------------------------------------*/
.qhse {
  overflow: hidden;
}

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

.qhse .content .tick ul li {
  display: flex;
  font-size: 1.1rem;
  align-items: flex-start;
}

.qhse .content .tick ul i {
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-right: 0.8rem;
  color: var(--accent-color);
}

.qhse .content .tick ul p {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  transition: 0.5s;
  position: relative;
  border-radius: 5px;
  background-color: var(--surface-color);
  box-shadow: 0px 2px 3px var(--heading-color);
}

.team .team-member .member-img {
  overflow: hidden;
  padding: 2px 35px;
  position: relative;
  transition: ease-in-out 0.3s;
}

.team .team-member .member-info {
  padding: 2px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  color: var(--heading-color);
}

.team .team-member .body-info {
  margin: 0;
  padding: 0;
}

.team .team-member .body-info p {
  font-size: 1rem;
  padding: 0 10px;
  margin: 5px auto;
}

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

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

.contact .info-item {
  margin-top: 40px;
}

.contact img {
  border-radius: 25px;
}

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

.contact .info-item h3 {
  padding: 0;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

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

.contact .chat {
  padding: 0;
  list-style: none;
}

.contact .chat li {
  display: inline-block;
}

.contact .chat .whatsapp-tag {
  margin: auto;
  font-size: larger;
  color: var(--accent-color);
  font-family: "Sofia", sans-serif;
}

.contact .for-message,
.mail-again {
  margin-top: 15px;
}

.contact .contact-form {
  height: 100%;
  text-align: center;
}

.contact .contact-form .mail-us {
  width: 22%;
  font-size: 1.2rem;
  position: relative;
  color: var(--heading-color);
  border-top: 2px solid var(--heading-color);
}

@media (max-width: 1024px) {
  .contact .contact-form .mail-us {
    width: 26%;
  }
}

@media (max-width: 767px) {
  .contact .contact-form .mail-us {
    width: 43%;
  }
}

@media (max-width: 540px) {
  .contact .contact-form .mail-us {
    width: 31%;
  }
}

@media (max-width: 430px) {
  .contact .contact-form .mail-us {
    width: 40%;
  }
}

@media (max-width: 390px) {
  .contact .contact-form .mail-us {
    width: 49%;
  }
}

.contact .container .mail-us-redirect {
  border-bottom: 2px solid var(--heading-color);
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form textarea {
  font-size: 1rem;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 15px;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);

}

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

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

.contact .contact-form button[type=submit] {
  border: 0;
  transition: 0.4s;
  padding: 5px 20px;
  border-radius: 50px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0.5px solid var(--heading-color);
}

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

.contact .mail-aside {
  padding: 1.2rem;
  margin-top: -26px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px var(--heading-color);
}

.contact .mail-aside h3 {
  margin-top: 1.1rem;
}

@media (max-width: 912px) {
  .contact .mail-aside {
    display: ;
  }
}

.contact .map {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 0;
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 65vh;
}