/**
* Template Name: Instor
* Template URL: https://impeccablesoftwares.com/green-free-one-page-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: impeccablesoftwares.com
* License: https://impeccablesoftwares.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://impeccablesoftwares.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    /*--default-font: "MONTSERRAT",  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";*/
    --default-font: "Montserrat", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #F15A22; /* 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: #555555; /* The default color of the main navmenu links */
    --nav-hover-color: #191919; /* 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: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #191919; /* 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: #f9fcf9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #1E2448;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #80c792;
}

/* 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);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 200px;
    height: 200px;
    top: 50px;
}

.pulsating-play-btn {
    background: radial-gradient(#0459a3 50%, color-mix(in srgb, #96bed5, transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #0459a3, transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 55px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid #ffffff;
    transform: scale(25);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*/////////////////*/
.pulsating-play-btn-testi {
    width: 100px;
    height: 100px;
    bottom: 110px;
    left: 10px;
}

.pulsating-play-btn-testi {
    background: radial-gradient(#0459a3 50%, color-mix(in srgb, #96bed5, transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn-testi:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #0459a3, transparent 30%);
    top: -10%;
    left: -10%;
    background: rgba(198, 16, 0, 0);
}

.testimonial-1 {
    border-radius: 24px;
    height: 350px;
    box-shadow: 20px 20px 25px 15px #ffffff91;
}

.pulsating-play-btn-testi:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn-testi:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn-testi:hover:after {
    border-left: 15px solid #ffffff;
    transform: scale(25);
}

@keyframes pulsate-play-btn-testi {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* 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: #ffffff;
    transition: all 0.5s;
    z-index: 997;
    background-color: #4c4c4c87;
}

.header .topbar {
    background-color: var(--background-color);
    height: 34px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.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: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header {
    background-color: #ffffff;
    box-shadow: 0px 0 5px rgba(0, 0, 0, 0.5);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    /*max-height: 135px;*/
    max-height: 120px;
    /*margin-right: 8px;*/
    padding: 20px;
    position: absolute;
    background: #fff;
    top: -10px;
    border-bottom-right-radius: 20px;
    box-shadow: 7px 8px 10px -10px #191919;
    border-bottom-left-radius: 20px;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.scrolled .header {
    background: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 {
        border-bottom: 2px solid transparent;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #191919;
        padding: 5px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .scrolled .navmenu a,
    .navmenu a:focus {
        color: #000000;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        /*padding-right: 0;*/
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #07539d;
        border-bottom: 2px solid #f15a22;
    }

    .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%;*/
        left: 101%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .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 0px;
        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(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    /*padding-bottom: 50px;*/
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0;
}

.footer .footer-top {
    padding: 30px 50px 0;
}

.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 {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    color: #1e2448;
    margin-right: 5px;
    /*padding: 5px 11px;*/
    padding: 0px 06px;
    transition: 0.3s;
    line-height: 26px;
    text-align: center;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: var(--heading-color);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright p {
    font-weight: bold;
    font-size: 17px;
}

.footer .copyright {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #00529C;
    color: #ffffff;
}

.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;
    transition: all 0.6s ease-out;
}

#preloader.slide-up {
    transform: translateY(-100%);
}

#preloader.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

/*

#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: 30px 0px 0px 0px;
    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 95%);
    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: 120px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 100px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 105vh;
    padding: 0;
    margin: 0;
    background-color: #1E2448;
    position: relative;
    margin-top: -120px;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero .carousel-item:before {
    content: "";
    background: rgb(25 25 25 / 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.popupSideImage:before {
    /*content: "";*/
    /*background: rgba(30,36,72, 0.3);*/
    /*position: absolute;*/
    /*inset: 0;*/
    /*z-index: 2;*/
}

.hero .carousel-container h2 img{
    position: relative;
    height: 70px;
    width: auto;
    margin-bottom: 30px;
}
.hero .carousel-container {
    position: absolute;
    /*inset: 90px 64px 64px 64px;*/
    inset: 130px 64px 64px 64px;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    flex-direction: column;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 15px !important;
    border-radius: 50%;
    height: 15px !important;
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    animation: fadeInDown 1s both;
    line-height: 1.5;
    /*text-transform: uppercase;*/
    /*text-align: center;*/
    text-shadow: 2px 2px #000000;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

    .hero h2,
    .hero p {
        max-width: 50%;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    width: 300px;
    text-align: center;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
    padding: 30px 0;
}

.featured-services .service-item {
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}

.featured-services .service-item .icon {
    margin-bottom: 10px;
}

.featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.3s;
}

.featured-services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.featured-services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.featured-services .service-item:hover {
    transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services-second .card {
    background-color: var(--background-color);
    color: var(--default-color);
    border: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /*min-height: 550px;*/
    min-height: 390px;
}

.featured-services-second .card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, #1e2448b8 75%);
    z-index: 2;
}

.featured-services-second .card img {
    top: -155px !important;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    z-index: 1;
}

.featured-services-second .card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 30px;
}

.featured-services-second .card .card-body h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0px;
    /*padding-left: 10px;*/
    /*border-left: 3px solid var(--accent-color);*/
}

.featured-services-second .card .card-body h3 a {
    color: var(--contrast-color);
}

.featured-services-second .card .card-body .card-content {
    display: grid;
    transition: 0.5s ease-in-out;
    /*grid-template-rows: 0fr;*/
    /*visibility: hidden;*/
    /*opacity: 0;*/
}

.featured-services-second .card .card-body .card-content p {
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
    color: var(--contrast-color);
}

.featured-services-second .card:hover .card-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about .content ul i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    line-height: 1.2;
    font-size: 1.25rem;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(40% - 47px);
    /*top: calc(50% - 47px);*/
    top: 80px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 40px;
    margin: -1px;
    border-radius: 0;
}

.why-us .card span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: var(--accent-color);
}

.why-us .card h4 {
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
}

.why-us .card p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 15px;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

.popupBoxShadow {
    box-shadow: 1px 1px 30px 0px rgb(0 0 0);
    border-radius: 10px !important;
}

.services .service-item .icon {
    font-size: 32px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
}

.services .service-item h3 a {
    color: color-mix(in srgb, var(--heading-color), transparent 25%);
    font-weight: 700;
    font-size: 22px;
    transition: 0.3s;
}

.services .service-item p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.services .service-item.item-cyan .icon {
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
    color: #20c997;
    background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
    color: #df1529;
    background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
    color: #6610f2;
    background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
    color: #f3268c;
    background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
    transform: scale(1.06);
}

.services .service-item:hover h3 a {
    color: var(--heading-color);
}

.services .service-item:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 30px 0;
    position: relative;
    clip-path: inset(0);
}

.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);
}

.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);
}

.cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #ffffff;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.portfolio .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    text-align: center;
    margin-bottom: 20px;
}

.team .member img {
    margin: -1px -1px 30px -1px;
}

.team .member .member-content {
    padding: 0 20px 30px 20px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
}

.team .member .social a:hover {
    color: var(--accent-color);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.map-class {
    margin-bottom: -5px;
}

.contact-bg {
    background: linear-gradient(rgb(25 25 25 / 4%), rgb(25 25 25 / 4%)), url(/assets/img/footer-bg.png) no-repeat center center;
    background-size: 100%;
    /* height: 100vh; */
    padding: 200px 0;
    color: #fff;
    position: relative;
}

.contactbg {
    background: linear-gradient(rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url(/assets/img/contactbg.png) no-repeat center center;
    background-size: 100%;
    background-position-y: top;
    /* height: 100vh; */
    padding: 200px 0;
    color: #fff;
    position: relative;
}

.contact .info-item .spanclass {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    padding: 4px;
}

.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 h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@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 textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-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, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: #00519c;
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: var(--accent-color);
}

.service-details .help-box {
    background-color: #00519c;
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

.headerRightBtn a {
    color: #000;
}

.headerRightBtn {
    color: #000;
    background: #ffffff !important;
}

.scrolled .headerRightBtn a {
    color: #ffffff;
}

.scrolled .headerRightBtn {
    color: #ffffff;
    background: #1e2448 !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-second {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-second-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    /*height: 100%;*/
    padding-top: 35px;
    /*object-fit: cover;*/
    z-index: 1;
}

.hero-second:before {
    /*content: "";*/
    /*background: color-mix(in srgb, var(--background-color), transparent 30%);*/
    /*position: absolute;*/
    /*inset: 0;*/
    /*z-index: 2;*/
}

.bg-navi {
    background-color: #1E2448;
}

.hero-second .container {
    position: relative;
    z-index: 3;
}

.hero-second h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.hero-second p {
    margin: 10px 0 0 0;
    color: #191919;
}

.hero-second .icon1Bg {
    background: url("/assets/img/display-racks-Instor-zenith-why-01.jpg");
    background-size: 100%;
}

.hero-second .icon2Bg {
    background: url("/assets/img/display-racks-Instor-zenith-why-02.jpg");
    background-size: 100%;
}

.hero-second .icon3Bg {
    background: url("/assets/img/display-racks-Instor-zenith-why-03.jpg");
    background-size: 100%;
}

.hero-second .icon4Bg:before {
    content: "";
    position: absolute;
    z-index: 6;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    transition: all 650ms;
}

.hero-second .icon4Bg.hover:before {
    left: 100%;
}

.hero-second .icon4Bg {
    background: url("/assets/img/display-racks-Instor-zenith-why-logo.jpg");
    background-size: 100%;
}

.hero-second .icon5Bg {
    background: url("/assets/img/display-racks-Instor-zenith-why-04.jpg");
    background-size: 100%;
}

.hero-second .icon-box {
    height: 250px !important;
    /*width: 250px!important;*/
}

.default-btn:hover {
    background: #00519c !important;
}

.default-btn {
    background: #ffffff;
}

.default-btn-frm:hover {
    background: #00519c !important;
    color: #ffffff;
}

.default-btn-frm {
    background: #dd0e18 !important;
    color: #ffffff;
}

.hero-second .middle-circle .icon-box {
    border-radius: 50% !important;
    height: 170px !important;
    width: 170px;
    top: 260px;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-second .icon-box {
    padding: 60px 80px;
    /*padding: 0px 50px;*/
    /*padding: 0px 35px;*/
    transition: ease-in-out 0.3s;
    width: 100%;
    border: 3px solid #dedede;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*box-shadow: inset 0px 0px 50px 3px rgb(0 0 0 / 50%);*/
}

.hero-second .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: var(--accent-color);
}

.hero-second .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
}

.hero-second .icon-box h3 a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: ease-in-out 0.3s;
}

.hero-second .icon-box:hover {
    /*border-color: var(--accent-color);*/
}

.hero-second .icon-box:hover h3 a {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-second h2 {
        font-size: 32px;
    }

    .hero-second p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
    /*padding: 120px 0;*/
}

.stats img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 3;
}

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 32px;
    /*display: block;*/
    color: var(--default-color);
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
    background-color: #ffffff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
}

.recent-posts .post-item .post-img {
    margin: 15px;
}

.recent-posts .post-item .post-img img {
    transition: 0.5s;
    position: relative;
    z-index: 5;
}

.recent-posts .post-item .card-icon {
    text-align: center;
    margin-top: -32px;
    margin-bottom: 12px;
}

.recent-posts .post-item .card-icon i {
    font-size: 32px;
    position: relative;
    color: #fff;
    width: 64px;
    height: 64px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    padding-top: 5px;
    text-align: center;
    background-color: #f27e00;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    transition: 0.3s;
    display: inline-block;
}

.recent-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #008ad2;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-posts .post-item .post-content p {
    text-align: center;
    font-size: 14px;
}

.recent-posts .post-item .post-content {
    /*padding: 10px 10px 20px 10px;*/
    padding: 10px 10px 10px 10px;
}

.recent-posts .post-item .post-title i {
    color: #008ad2;
}

.recent-posts .post-item .post-title {
    color: #464646;
    font-size: 20px;
    text-align: left;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 0px;
    margin-top: 10px;
    padding: 0 10px;
}

.recent-posts .post-item {
    border: 1px solid #cbcbcb;
    border-top-right-radius: 50px;
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgb(221 221 221 / 90%) 75%);*/
}

.recent-posts .post-item .meta i {
    font-size: 16px;
    color: #008ad2;
}

.recent-posts .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, #444444, transparent 50%);
}

.recent-posts .post-item hr {
    color: color-mix(in srgb, #444444, transparent 80%);
    margin: 20px 0;
}

.recent-posts .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, #444444, transparent 40%);
}

.recent-posts .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
    /*color: #008ad2;*/
}

.recent-posts .post-item:hover .post-img img {
    transform: scale(1.1);
}

.btn-cta:hover {
    background: #ffffff;
    color: #008ad2;
}

.btn-cta {
    background: #f27e00;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
}

.testimonials .testimonial-masonry {
    /*display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonials .testimonial-masonry::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
    opacity: 0.5;
    z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
    margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
    margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
    color: var(--accent-color);
}

.testimonials .testimonial-content {
    /*background-color: var(--surface-color);*/
    /*border-radius: 20px;*/
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);*/
}

.testimonials .testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonials .testimonial-content p {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.7;
    margin: 1.5rem 0;
    position: relative;
}

.testimonials .quote-pattern {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .client-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials .testimonial-item:nth-child(3n-1),
    .testimonials .testimonial-item:nth-child(3n) {
        margin-top: 0;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 0;
    }

    .testimonials .testimonial-content {
        padding: 1.5rem;
    }

    .testimonials .testimonial-content p {
        font-size: 0.9375rem;
        margin: 1.25rem 0;
    }

    .testimonials .quote-pattern {
        width: 2.25rem;
        height: 2.25rem;
        top: -1.125rem;
    }

    .testimonials .quote-pattern i {
        font-size: 1.125rem;
    }

    .testimonials .client-info {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .testimonials .client-image {
        width: 45px;
        height: 45px;
    }

    .testimonials .client-details h3 {
        font-size: 1rem;
    }

    .testimonials .client-details .position {
        font-size: 0.8125rem;
    }
}

/*animation start*/
/*
.btn {
  text-decoration: none;
  border: 1px solid rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  !*box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);*!
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
          120deg,
          transparent,
          rgba(146, 148, 248, 0.4),
          transparent
  );
  transition: all 650ms;
}

.btn:hover:before {
  left: 100%;
}*/
/**/
.shine-auto {
    text-decoration: none;
    /*border: 1px solid rgb(146, 148, 248);*/
    position: relative;
    overflow: hidden;
}

.shine-auto:hover {
    /*box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);*/
}

.shine-auto:before {
    content: "";
    position: absolute;
    z-index: 6;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    transition: all 650ms;
}

.shine-auto:hover:before {
    left: 100%;
}

.text-dark {
    color: #1e2448 !important;
}

.text-logo-zen {
    color: #1e2448 !important;
}

/*animation end*/
.cta-bg {
    background: url("/assets/img/concept-communication.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 120px;
    background-color: color-mix(in srgb, #071822, #091b27 85%);
}

.cta-bg-1 {
    background: linear-gradient(45deg, rgb(30 36 72), rgb(0 0 0 / 51%)), url(/assets/img/cta-bg-1.jpg);
    padding: 220px 0;
    background-size: cover;
    background-attachment: fixed;
}

.cta-bg-4 {
    background: linear-gradient(45deg, rgb(30 36 72), rgb(0 0 0 / 51%)), url(/assets/img/cta-bg-1.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.product-bg {
    background: url(/assets/img/display-racks-Instor-zenith.jpg);
    background-size: 50%, cover;
    background-attachment: fixed;
    height: 600px;
    background-repeat: no-repeat;
}

.movement-bg {
    background: url(/assets/img/checkout-counters-Instor-zenith.jpg);
    background-size: 50%, cover;
    background-attachment: fixed;
    height: 600px;
    background-repeat: no-repeat;
}

.storage-bg {
    background: url(/assets/img/storage-racks-Instor-zenith.jpg);
    background-size: 50%, cover;
    background-attachment: fixed;
    height: 600px;
    /*background-repeat: no-repeat;*/
}

.carousel-indicators [data-bs-target].active {
    background-color: #f15a22;
}

.specifyColor {
    accent-color: #f15a22;
}

.textAnime {
    background: #ffffff;
}

/*--------------------------------------------------------------
# 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;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
        /*max-width: 1320px;*/
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-product {
    padding-top: 100px;
}

.about-product .content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    padding: 10px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
    border-radius: 7px;
    display: inline-block;
}

.about-product .content h2 {
    font-weight: 700;
}

.about-product .content p:last-child {
    margin-bottom: 0;
}

.about-product .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-product .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about-product .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about-product .content .read-more:hover i {
    margin-left: 10px;
}

.about-product .icon-box {
    background-color: var(--surface-color);
    padding: 4px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
}

.about-product .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-product .why-circles .icon-box i{
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 5px;
}
.about-product .why-circles .icon-box {
    background: none;
    box-shadow: none;
    padding-right: 10px;
}
.about-product .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.about-product .icon-box p {
    margin-bottom: 0;
}

.about-product .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.about-product .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about-product .icon-boxes .col-md-6:nth-child(4) .icon-box {
    /*margin-top: -40px;*/
}

@media (max-width: 768px) {

    .about-product .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .about-product .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }
}

.about-product ul {
    list-style: none;
    padding: 0;
}

.about-product ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

/*Loader start*/
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #191919 url("/assets/img/bfghtr.png") no-repeat;
    background-size: 109% auto;
    background-position: 90% bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px; /* ensures spacing on very small screens */
    box-sizing: border-box;
}

.loader-logo {
    max-width: 200px;
    width: 60%;
    margin-bottom: 40px;
}

.dots-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dots-loader div {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out alternate;
}

.dots-loader div:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-loader div:nth-child(3) {
    animation-delay: 0.4s;
}

.dots-loader div:nth-child(4) {
    animation-delay: 0.6s;
}

.dots-loader div:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-15px);
    }
}

#preloader.slide-up::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, black 0%, #00529C 50%, black 100%); /* Or match your page background */
    border-top-left-radius: 100% 60px;
    border-top-right-radius: 100% 60px;
    z-index: 2;
    pointer-events: none;
}

#preloader.slide-up {
    transform: translateY(-100%);
}

/* Zoom image wrapper (hidden initially) */
#zoom-image-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #191919;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

#zoom-image-wrapper.show {
    opacity: 1;
    pointer-events: auto;
}

.zoom-image {
    width: 60%;
    transition: transform 1s ease;
    transform: scale(0.8);
}

.zoom-image.zoom-in {
    transform: scale(1.5);
}

.zoom-image.zoom-out {
    transform: scale(0.2);
}

/* Hide main content until finished */
body:not(.loaded) #main-content {
    display: none;
}

/*Loader end*/

/*2nd section */
.display-storage-movment-section {
    background: url(/assets/img/dsm.jpg) no-repeat center center;
    background-size: 100%;
    height: 100vh;
    padding: 200px 0;
    color: #fff;
    position: relative;
}

/*2nd section */
.display-section {
    background: url(/assets/img/contact-bg.jpg) no-repeat center center;
    /*background: url(/assets/img/bfd.jpg) no-repeat center center;*/
    background-size: cover;
    /*height: 100vh;*/
    padding: 200px 0;
    color: #fff;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.display-content {
    position: relative;
    z-index: 2;
}

.circle-highlight {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #000000a1;
    backdrop-filter: blur(10px);
    color: white;
    border: 5px solid #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 38px;
    /*margin: auto;*/
}

.desc-box h3, h5 {
    /*margin-left: 4%;*/
    line-height: 1.5;
}

.desc-box {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.big-border {
    height: 10px;
    background: linear-gradient(to right, black 0%, #00529C 50%, black 100%);
}

.big-border-luxe {
    height: 10px;
    background: linear-gradient(to right, black 0%, #FFC107 50%, black 100%);
}

/*2nd section end*/

.why-circles:hover .icon-box i{
    /*background-color: color-mix(in srgb, var(--accent-color), transparent 95%);*/
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.why-circles:hover {
    transform: translateY(-5px);
}
.why-circles {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    height: 100%;
    border-radius: 5px;
    padding: 5px;
    /*text-align: center;*/
    /*width: 150px;*/
    font-size: 14px;
    /*border-radius: 50%;*/
    background-color: #ffffff;
    color: #000000;
    /*margin-left: 10px;*/
    transition: all 0.3s ease;
}

/*retail*/
.retail-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.retail-card:hover {
    transform: translateY(-10px);
}

.carousel-inner img {
    border-radius: 15px;
    height: 250px;
    object-fit: cover;
}

.carousel-indicators li::marker {
    content: "";
}

.carousel-indicators li {
    background-color: #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.carousel-indicators .active {
    background-color: #00529C !important;
}

.cvv-bg {
    background: url('/assets/img/CVCV-bg.jpg') center/cover no-repeat;
    /*background: linear-gradient(45deg, #191919, rgb(0 0 0 / 51%)), url('/assets/img/CVCV-bg.jpg') center/cover no-repeat;*/
}

.retail-section .carousel-indicators {
    margin-bottom: -3rem;
}

/*retail end*/

/*automotive*/
.cvv-bg-2 {
    background: url('/assets/img/automotive-sec-bg.jpg') center/cover no-repeat;
    /*background: linear-gradient(45deg, #191919, rgb(0 0 0 / 51%)), url('/assets/img/CVCV-bg.jpg') center/cover no-repeat;*/
}

.bg-dark-blur {
    background: rgb(247 247 247 / 36%);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/*automotive end*/
.purecounter, .purecounter1 {
    color: #F15A22;
    font-size: 46px;
    font-weight: bold;
}

.hash1-sec {
    background: url('/assets/img/website.jpg') center/cover no-repeat;
}

.swiper {
    height: 100vh; /* Full screen height */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /*font-size: 24px;*/
    /*background: #00529C;*/
    /*color: white;*/
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.pl-bg {
    background: url('/assets/img/hbdfgdg.jpg') center/cover no-repeat;
}

.about-2 .small-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.about-2 .about-title {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .about-2 .about-title {
        font-size: 1.6rem;
    }
}

.about-2 .about-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1.125rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .about-2 .description-wrapper {
        border-left: 1px solid var(--accent-color);
        padding-left: 30px;
    }
}

.about-2 .content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-2 .content-card .card-image {
    /*margin-bottom: 1.5rem;*/
    overflow: hidden;
    /*border-radius: 12px;*/
    height: 300px;
    border-bottom: 1px solid #dedede;
}

.about-2 .content-card .card-image img {
    transition: transform 0.5s ease;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.about-2 .content-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 30px 20px;
}

.about-2 .content-card .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.about-2 .content-card .card-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 1.5rem;
    flex: 1;
}

.about-2 .content-card .card-content .read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    bottom: 30px;
}

.about-2 .content-card .card-content .read-more:hover {
    gap: 0.75rem;
}

.about-2 .content-card .card-content .read-more:hover i {
    transform: translateX(5px);
}

.about-2 .content-card .card-content .read-more i {
    transition: transform 0.3s ease;
}

.about-2 .content-card:hover .card-image img {
    transform: scale(1.05);
}

.border-card {
    border: 1px solid #dedede;
}

.glob-ul img {
    height: 20px;
    margin-top: -2px;
    margin-right: 5px;
}

.glob-ul {
    list-style: none;
}

.glob-ul li {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}

.video-bg {
    padding: 26%;
    border: 4px solid #ffffff;
    border-radius: 24px;
    left: -35px;
    top: -45px;
}

.cta-bg-5 {
    background: linear-gradient(rgb(25 25 25 / 70%), rgb(25 25 25 / 70%)), url(/assets/img/bg-5.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.cta-bg-6 {
    background: url(/assets/img/bg-6.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.cta-bg-7 {
    background: url(/assets/img/bg-7.jpg);
    background-size: 100%;
}

.cta-bg-8 {
    background: url(/assets/img/website.jpg);
    background-size: 100%;
    background-color: #ffffff;
    background-position-y: -10px;
}
.disp-stor-move {
    background: url(/assets/img/dis-stor-move.jpg) no-repeat;
    height: 100vh;
    background-size: 100%;
    background-position-y: -10px;
}

.footer-bg {
    background: linear-gradient(rgb(25 25 25 / 90%), rgb(25 25 25 / 90%)), url(/assets/img/footer-bg.png);
    background-size: 100%;
    background-position: center bottom -100px;
}

.cta-bg-10 {
    background: linear-gradient(rgb(25 25 25 / 70%), rgb(25 25 25 / 70%)), url(/assets/img/woman-power.jpg);
    background-size: 130%;
    background-position: center bottom -140px;
    margin-top: -50px;
    background-attachment: fixed;
}

.woman-div {
    padding: 125px 0;
}

.cta-bg-9 {
    background: url(/assets/img/nfg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #191919;
    background-position: bottom center;
    padding-top: 120px;
    padding-bottom: 240px;
}

.stats-div {
    padding: 120px 0px;
}

.stats-div h5 {
    font-size: 18px;
}

.stats-div h3 {
    font-size: 24px;
}

.stats-div-next {
    padding: 120px 0px;
}

.stats-div-next h5 {
    font-size: 18px;
}

.stats-div-next h3 {
    font-size: 24px;
    color: #F15A22;
}

.we-are {
    background: #191919;
}

.we-are h5 {
    font-size: 28px;
}

.we-are h3 {
    font-size: 28px;
    color: #F15A22;
}

.we-are-border {
    border-right: 2px solid #dedede;
    border-left: 2px solid #dedede;
}

.stats-div-midd {
    padding: 160px 0;
}

.woman img {
    height: 155px;
}

.woman {
    background-color: #00529C;
    border-radius: 50%;
    padding: 25px;
    width: 210px;
    border: 3px solid #ffffff;
}

.custom-form input,
.custom-form textarea,
.custom-form select {
    border-radius: 30px;
    padding: 15px 20px;
    border: none;
    width: 100%;
}

.custom-form textarea {
    border-radius: 20px;
    /*height: 150px;*/
    resize: none;
}

.custom-form .form-group {
    margin-bottom: 1.2rem;
}

.custom-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 12px;
}

.form-section {
    background: linear-gradient(to right, #012C45, #012C45, #014060); /* dark gradient */
    padding: 50px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-wrapper select {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #666;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.custom-select-wrapper .line {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 60px;
    height: 1px;
    background: #ccc;
}

.custom-select-wrapper .select-arrow {
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select-wrapper .select-arrow i {
    font-size: 14px;
    color: #666;
}

/*/custom nav footer/*/
.custom-nav {
    padding: 15px 0;
    position: relative;
}

.custom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-nav li {
    margin: 0 10px;
    color: white;
    font-weight: 700;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.custom-nav li:not(:last-child)::after {
    content: "|";
    color: #fff;
    margin-left: 10px;
}

.custom-nav li a:hover {
    color: #77a3c7; /* Blue active link */
}

.custom-nav li a {
    color: white;
    text-decoration: none;
}

.custom-nav li.active a {
    color: #77a3c7; /* Blue active link */
}

.custom-nav-border {
    height: 3px;
    background: white;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/**!*/

/*luxe page start*/
.luxe-hero {
    background: url(/assets/img/instor-luxe-slider-05.jpg) no-repeat center center;
    background-size: 100%;
    height: 100vh;
    padding: 200px 0;
    background-position: center top -83px;
    color: #fff;
    position: relative;
}

.gold-gradient-text {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(90deg, #f8c46a, #d6a539, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-btn-luxe {
    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);
}

.cta-btn-luxe:hover {
    background: #b8860b;
    border: 2px solid #f8c469;
    color: #ffffff;
}

.about-luxe {
    background: #191919;
}

.about-luxe ul i {
    color: #b8860b;
}

.about-luxe .icon-box img:hover {
    transform: scale(1.02);
}

.about-luxe .icon-box img {
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.about-luxe .icon-box {
    background-color: transparent !important;
    padding: 0 !important;
    box-shadow: -5px 10px 9px rgb(249 189 7) !important;
}

/*luxe page end*/

/*video hero start*/
.hero-video {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-video .hero-container {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    /*padding: 180px 0 80px 0;*/
    padding: 80px 0 80px 0;
}

.hero-video .hero-container .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video .hero-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
    z-index: 2;
}

.hero-video .hero-container .container {
    z-index: 3;
}

.hero-video .hero-container .hero-content {
    padding-right: 30px;
    text-shadow: 2px 3px black;
}

.hero-video .hero-container .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-video .hero-container .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
}

.hero-video .hero-container .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

.hero-video .hero-container .hero-content .cta-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-video .hero-container .hero-content .cta-buttons a {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content .cta-buttons a {
        width: 100%;
        max-width: 240px;
    }
}

.hero-video .hero-container .hero-content .cta-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.hero-video .hero-container .hero-content .cta-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-video .hero-container .hero-content .cta-buttons .btn-secondary {
    background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
    color: var(--default-color);
    border: 2px solid var(--surface-color);
}

.hero-video .hero-container .hero-content .cta-buttons .btn-secondary:hover {
    background-color: var(--surface-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-video .hero-container .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.hero-video .hero-container .stats-card {
    background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-video .hero-container .stats-card .stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-video .hero-container .stats-card .stats-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-video .hero-container .stats-card .stats-header .decoration-line {
    height: 3px;
    width: 70px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.hero-video .hero-container .stats-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item {
    display: flex;
    align-items: center;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item .stat-icon {
    font-size: 1.8rem;
    height: 55px;
    width: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background-color: var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item .stat-content p {
    opacity: 0.8;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .hero-video .hero-container .stats-card .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-video .hero-container {
        text-align: center;
    }
}

.hero-video .event-ticker {
    background-color: var(--accent-color);
    padding: 25px 0;
    color: var(--contrast-color);
}

.hero-video .event-ticker .ticker-item {
    display: flex;
    align-items: center;
}

.hero-video .event-ticker .ticker-item .date {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.hero-video .event-ticker .ticker-item .title {
    margin-right: 15px;
    font-size: 0.95rem;
}

.hero-video .event-ticker .ticker-item .btn-register {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-video .event-ticker .ticker-item .btn-register:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

/*video hero end*/

/*time line about us start*/
.timeline {
    position: relative;
    margin: 0 auto;
    /*padding: 0 0 40px 0;*/
    width: 100%;
    max-width: 1140px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 85%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-block {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-block.left {
    flex-direction: row;
}

.timeline-block.right {
    flex-direction: row-reverse;
}

.timeline-content ul li img{
    width: 24px;
    margin-right: 5px;
    margin-left: -30px;
}
.timeline-content ul li{
    margin-bottom: 14px;

}
.timeline-block .timeline-content {
    width: 45%;
    /*padding: 0 30px;*/
    font-size: 16px;
    font-weight: 500;
}

.timeline-block.left .timeline-content {
    /*text-align: right;*/
    padding-right: 100px;
}

.timeline-block.right .timeline-content {
    text-align: left;
    padding-left: 120px;
}

.circle-container {
    width: 160px;
    height: 120px;
    z-index: 2;
    left: calc(50% - 80px) !important;
    position: absolute !important;
}

.circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 20px #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: #000;
    margin: 0 auto;
    border: 10px solid;
}

.mini-circle {
    position: absolute;
    top: 45%;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 10px #ccc;
    border: 4px solid;
    transform: translateY(-50%);
    z-index: 1;
}

/* Color Themes */
.orange .circle {
    border-color: #ff7300;
}

.orange .mini-circle {
    border-color: #ff7300;
    left: -50px;
}

.beige .circle {
    border-color: #ffb950;
}

.beige .mini-circle {
    border-color: #ffb950;
    right: -50px;
}

.teal .circle {
    border-color: #00d0c5;
}

.teal .mini-circle {
    border-color: #00d0c5;
    left: -50px;
}

.final .teal .mini-circle {
    border-color: #00d0c5;
    bottom: -50px;
    left: calc(50% - 20px) !important;
    top: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-block.left .timeline-content,
    .timeline-block.right .timeline-content {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    .timeline-block.left .circle-container,
    .timeline-block.right .circle-container {
        margin: 20px 0 10px 0;
    }

    .mini-circle {
        display: none;
    }
}

.timeline-content ul {
    /*list-style: disc;*/
}

.timeline-block.final {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 100px;
}

.timeline-block.final .circle-container {
    margin-bottom: 20px;
}

.rounded-box {
    background-color: #7a7a7a; /* or use #2b2b2b to match your design */
    border-radius: 200px;
    border: 4px solid #d4d4d4;
    color: white;
    width: 90% !important;
    margin-top: 60px;
    padding: 55px;
    max-width: 960px;

    font-size: 14px !important;
    line-height: 2;
    font-weight: normal !important;
}

.rounded-box ul {
    /*list-style: disc;*/
    padding-left: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
}

.rounded-box .col-md-6 {
    padding: 0 50px;
}

.text-blue {
    color: #00529C !important;
}

/*time line about us end*/
.profile-image-container {
    /*background-color: #2d2d2d; !* Dark section background *!*/
    /*padding: 40px 0;*/
}

.profile-image {
    width: 100%;
    /*height: 320px;*/
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    background-color: white;
}

.bg-blue {
    background-color: #00529C;
}

/***** automotive page ***/
.automotive-content {

}

.automotive-section {
    background: url(/assets/img/bfd.jpg) no-repeat center center;
    background-size: cover;
    height: 100vh;
    padding: 0;
    color: #fff;
    position: relative;
}

.automotive-section .desc-box {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    padding: 20px;
    border-radius: 10px;
    color: white;
    height: 100vh;
}

.automotive-section .desc-box1 {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    padding: 20px;
    border-radius: 10px;
    color: white;
    height: 100vh;
}

.automotive-section .headbox {
    border-left: 4px solid #fff;
    padding-left: 35px;
    margin-top: 0;
}

.automotive-section .headbox .headings {
    color: #fff;
    font-weight: bold;
    font-size: 32px;
}

.automotive-section .headbox .descs {
    color: #fff;
    font-size: 22px;
}

.automotive-section .descs .cnt {
    color: #f15a22;
}

.tags-onediv {
    margin-top: -20px;
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    transform: translateX(-50px);
}

.tags-onediv .tags-one {
    background: #fff;
    color: #000;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 20px;
    position: absolute;
    display: inline-block;
    width: auto;
    transform: translateX(-50px);
    font-weight: bold;
}

.automotive-product .titlenote {
    padding-bottom: 10px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    width: 100%;
}

.automotive-product .titlenotedesc {
    padding-bottom: 10px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    width: 100%;
}

.automotive-product .titlenotedesc1 {
    padding-bottom: 5px;
    padding-top: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    width: 100%;
}

.automotive-product .titlenotedesc2 {
    padding-bottom: 20px;
    color: #fff;
    font-size: 22px;
    width: 100%;
}

.automotive-product .contenttitle {
    color: #f15a22;
    font-size: 22px;
}

.automotive-product ul li {
    color: #fff;
    font-size: 20px;
}

.pulsating-play-btn-testi1 {
    width: 100px;
    height: 100px;
    bottom: 220px;
    left: calc(50% - 50px);
}

.pulsating-play-btn-testi1 {
    background: radial-gradient(#0459a3 50%, color-mix(in srgb, #96bed5, transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn-testi1:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #0459a3, transparent 30%);
    top: -10%;
    left: -10%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn-testi1:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn-testi1:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn-testi1:hover:after {
    border-left: 15px solid #ffffff;
    transform: scale(25);
}

.videodivs {
    margin-bottom: -200px;
    margin-top: -100px;
}

.automotive-man img {
    height: 600px;
}

.automotive-man {
    text-align: right;
    margin-top: -500px;
    z-index: 1111;
    position: absolute;
    right: 8%;
}
.HowWeWork{
    padding: 10px;
    font-size: 40px;
    text-shadow: 4px 4px 3px #000;
    font-weight: 700;
    padding-left: 200px;
}
.automotiveHowWeWork {
    padding: 10px;
    color: #fff;
    border: 2px solid #fff;
    text-shadow: 4px 4px 3px #000;
    font-size: 60px;
    font-weight: 700;
    border-radius: 70px;
    padding-left: 200px;
    /*margin-left: -10px;*/
    /*margin-top: 155px;*/
}

.automotiveHowWeWorkclick {
    padding-left: 200px;
    font-size: 22px;
    margin-top: 20px;
    /*padding-bottom: 200px;*/
}

.extrapaddleft {
    padding-left: 6%;
}

.desc-box1 {
    background: linear-gradient(90deg, #ffffff00 5%, #fff 10%, #fff 90%, #ffffff00 95%);
    padding: 0;
    color: #000;
}

.circle-highlight1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ec4421, #feb932);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 48px;
    cursor: pointer;
}

.display-section1 {
    background: url(/assets/img/bfd.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.automotive-product ul li {
    position: relative;
    list-style-type: none;
}

.automotive-product ul li:before {
    content: "";
    position: absolute;
    top: 3px;
    left: -30px;
    width: 24px;
    height: 24px;
    background-image: url(/assets/img/angle-circle-arrow-right-icon.svg);
    background-repeat: no-repeat;
    background-color: #1b8de3;
    border-radius: 5px;
    background-position: center;
}

.howwework-page-maindiv {
    /*background: url(/assets/img/background-image.jpg) repeat center center;*/
    /*background-size: cover;*/
    padding: 0;
    /*color: #fff;*/
    position: relative;
}

.howwework-page-maindiv .overlay1 h1 span:after{
    display: block;
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 2px;
    opacity: 0.4;
    background-color: currentColor;
}
.howwework-page-maindiv .overlay1 h1 i{
    /*position: absolute;*/
    opacity: 0.4;
    margin-left: 21px;
    margin-top: -10px;
    font-size: 50px;
}
.howwework-page-maindiv .overlay1 h1{
    position: relative;
    margin-bottom: 30px;
}
.howwework-page-maindiv .overlay1 h2{
    font-size: 32px;
    font-weight: bold;
}
.howwework-page-maindiv .overlay1 {
    /*background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);*/
    padding: 30px 0;
    /*color: white;*/
}

.automotive-product {
    /*background: url(/assets/img/bfd.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;*/
}

.bgclass1 {
    background: url(/assets/img/background-image.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;
    min-height: 500px;
}

.bgclass2 {
    background: url(/assets/img/background-image1.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;
    min-height: 500px;
}

.bgclass3 {
    background: url(/assets/img/background-image2.jpg) no-repeat center top;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;
}

.bgclass4 {
    background: url(/assets/img/background-image3.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;
    min-height: 500px;
}

.how-we-work-bg {
    background: url(/assets/img/automotive-components/how-we-work.png) no-repeat center center;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;
}

.customer-stores {
    background: url(/assets/img/automotive-components/customer-store.png) no-repeat center center;
    background-size: cover;
    padding: 0;
    color: #fff;
    position: relative;
}

.tagsalldivbg1 {
    background: url(/assets/img/industrial-solutions/factory-workshop-interior-machines-glass-production-background.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.tagsalldivbg2 {
    background: url(/assets/img/industrial-solutions/reliable-material-bg.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.tagsalldivbg3 {
    background: url(/assets/img/industrial-solutions/advanced-material-storage-products.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.tagsalldivbg4 {
    background: url(/assets/img/industrial-solutions/engineered-industrial-products.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.tagsalldivbg5 {
    background: url(/assets/img/industrial-solutions/advanced-hospital-products.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.tagsalldivbg6 {
    background: url(/assets/img/industrial-solutions/wire-products-for-industrial-efficiency.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.tagsalldiv-bg-1 {
    background: url(/assets/img/industrial-solutions/vsdd.jpg);
    background-size: 100%;
}

.bgclrclass1 {
    background: #1d1d1d;
}

.bgclass2 .overlay1,
.bgclass1 .overlay1,
.bgclass3 .overlay1,
.bgclass4 .overlay1 {
    background: linear-gradient(180deg, #451b23 5%, transparent 20%);
}

.automotive-product .overlay1 {
    padding: 60px 0;
    color: white;
}

.overlay1 .col-xl-12 {
    padding-bottom: 40px;
}

.customer-stores .overlay1,
.how-we-work-bg .overlay1 {
    background: rgb(9 77 144 / 75%);
    /*backdrop-filter: blur(2px); */
}

.automotive-product .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

/***** ***/

/*20-05-2025*/
.evo-nari {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/assets/img/womens-day.jpg), no-repeat center center;
    color: #fff;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}
.retail-display-section {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgb(0 0 0 / 51%)), url(/assets/img/retail-fixtures-bg.jpg), no-repeat center center;
    background-size: 100%;
    height: 100vh;
    /*padding: 200px 0;*/
    color: #fff;
    position: relative;
}

.featured-services-second .card:before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, #000000e3 75%);*/
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 36%, #000000e3 70%);
    z-index: 2;
}

.featured-services-second .card img {
    position: static;
}

.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #22222282;
    padding: 8px 0;
    display: none;
    z-index: 1000;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0 5px #fff;
}

.sticky-nav nav {
    display: flex;
    justify-content: center;
}

.sticky-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    /*gap: 20px;*/

    margin: 0 auto;
    flex-wrap: wrap; /* Enables wrapping to next line */
    justify-content: center;
    max-width: 100%; /* Ensures it doesn’t overflow */
    text-align: center;
}

.sticky-nav li {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent shrinking */
}

.sticky-nav li a {
    color: white;
    text-decoration: none;
    /*font-weight: bold;*/
    padding: 2px 5px;
    font-size: 12px;
}

.sticky-nav li.divider {
    width: 1px;
    height: 20px;
    background-color: white;
}

.sticky-nav li a:hover {
    color: #F15A22;
}

/*20-05-2025 end*/

/*responsive start hit*/
/*common for all width mobile and its compatible*/
.hero-cer {
    margin-left: -12%;
}

@media (max-width: 1199px) {
    .custom-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap; /* Enables wrapping */
        justify-content: center;
        align-items: center;
    }

    .mobile-center {
        text-align: center !important;
    }
    .disp-stor-move{
        height: auto;
        padding: 25px 0 !important;
    }
    .hero .carousel-container{
        text-align: center;
        inset: 130px 64px 64px 0px;
    }
    .hero .carousel-container h2 img{
        margin: 0 auto;
    }
    .hero .btn-get-started{
        width: auto;
    }
    .HowWeWork{
        padding-left: 10px;
    }
    .automotiveHowWeWork{
        font-size: 48px;
        margin-left: auto;
        width: auto;
        padding-left: initial;
    }
    .mobile-d-block {
        display: block !important;
    }

    .mobile-d-none {
        display: none !important;
    }

    .hero h2 {
        font-size: 24px;
    }

    .header .logo img {
        max-height: 90px;
    }

    #preloader, #zoom-image-wrapper {
        position: absolute;
    }

    .loader-wrapper {
        /*display: block;*/
    }

    .hero .carousel {
        margin-top: -10px;
    }

    .hero .btn-get-started {
        text-align: center;
    }

    .stats-div h3, .stats-div-next h3 {
        font-size: 28px;
    }

    .stats-div h5, .stats-div-next h5 {
        font-size: 18px;
    }

    .woman {
        margin: 0 auto;
    }

    .cta-bg-10 {
        margin-top: 20px;
    }

    .testimonial-1 {
        object-fit: cover;
    }

    .about .pulsating-play-btn {
        position: relative;
        width: 200px;
        height: 200px;
        top: 30px !important;
        left: calc(35% - 47px);
    }

    .purecounter, .purecounter1 {
        font-size: 22px;
    }

    .video-bg {
        padding: 26% 46%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .sticky-nav {
        display: none !important;
    }

    .hero-cer {
        margin-left: auto;
    }

    .featured-services-second .card .card-body {
        text-align: center;
    }

    .bi-check-circle-fill::before {
        display: none;
    }

    .why-circles {
        margin-bottom: 15px;
    }

    /*24-05-2025*/
    .rounded-box .col-md-6 {
        padding: 0 25px;
    }

    .rounded-box {
        border-radius: 100px;
        padding: 35px;
    }

    .our-v p {
        padding: 0px !important;
    }

    .our-v img {
        width: 100px !important;
        padding-top: 15px;
    }

    /* amit*/
    .extrapaddleft {
        padding-left: 10px !important
    }

    .desc-box1 .p-5 {
        padding: 10px !important;
    }
}

@media (min-width: 1200px) {

}

@media (max-width: 768px) {
    .hero-second .icon-box {
        padding: 60px 10px;
    }

    .middle-circle {
        position: initial !important;
    }

    .hero-second .middle-circle .icon-box {
        top: 80px;
    }
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .navmenu a, .navmenu a:focus {
        padding: 5px 10px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        /*max-width: 100%;*/
        /*max-width: 1240px;*/
    }
    .navmenu a, .navmenu a:focus{
        font-size: 14px;
        padding: 5px 10px;
    }
}

@media (min-width: 1360px) and (max-width: 1380px) {
    .extrapaddleft {
        padding-left: 10px !important
    }
}

@media (min-width: 890px) and (max-width: 900px) {
    .about .pulsating-play-btn {
        left: calc(35% - 0px);
    }

    .testimonial-1 {
        height: auto;
    }
}

/*about us start*/
.our-v img {
    width: 180px;
}

@media (max-width: 767px) {
    .circle-container {
        left: 0 !important;
        height: auto;
        width: auto;
    }

    .circle {
        margin-left: 0;
        width: 50px;
        height: 50px;
        font-size: 11px;
        border: 5px solid;
        left: 0 !important;
    }

    .timeline-content {
        text-align: left !important;
        margin-left: 50px;
        margin-top: 25px;
        font-size: 14px !important;
        padding: 10px 20px !important;
    }

    .timeline-block {
        margin-bottom: 20px;
    }

    .timeline::before {
        left: 25px;
    }

    #our-story .section-title {
        padding-bottom: 0;
    }

    .rounded-box {
        border-radius: 10px;
    }

    .rounded-box .col-md-6 {
        padding: 0px 10px;
    }

    .final .circle-container {
        position: absolute !important;
        top: 40%;
    }
}

/*about us end*/

/*responsive start end */

/* new css */
@media (min-width: 800px) and (max-width: 1200px) {
    .automotiveHowWeWork {
        width: 50%;
    }
}

@media (min-width: 580px) {
    .desktophide {
        display: block;
    }

    .mobhide {
        display: none;
    }
}

@media (max-width: 580px) {
    .desktophide {
        display: none;
    }

    .mobhide {
        display: block;
    }
}

@media (min-width: 360px) and (max-width: 575px) {

    .automotive-product ul li {
        min-height: 30px;
        line-height: 2;
    }
}

@media (max-width: 800px) {
    .automotive-section .headbox .descs {
        font-size: 12px;
    }

    .automotive-section .headbox .headings {
        font-size: 18px;
    }

    .tags-onediv {
        margin-top: -15px;
    }

    .tags-onediv .tags-one {
        padding: 10px;
        transform: translateX(-10px);
        font-size: 10px;
        margin: 0;
    }

    .automotive-product .titlenotedesc2,
    .automotive-product .titlenote {
        font-size: 16px;
        line-height: 1.2;
    }

    .automotive-product .titlenotedesc1 {
        font-size: 18px;
        line-height: 1.2;
        padding-top: 0;
    }

    .automotive-product .content {
        padding-top: 10px !important;
    }

    .automotive-product .contenttitle {
        font-size: 16px;
        padding-top: 0px;
    }

    .automotive-product ul li {
        font-size: 14px;
    }

    .automotive-product .overlay1 {
        padding: 20px 0 0;
        color: white;
    }

    .automotive-section .headbox {
        padding-left: 15px;
    }

    .automotive-product .overlay1 .p-b-5 {
        padding-bottom: 5px !important;
    }

    .automotive-man {
        margin-top: -106px !important;
        right: 8px !important;
    }


    .automotiveHowWeWorkclick {
        padding-left: 0;
        /*font-size: 10px;*/
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .extrapaddleft.pb-5, .automotive-product .container-fluid .pb-5 {
        padding-bottom: 0 !important;
    }

    .automotive-man img {
        height: 100px;
    }

    .desc-box,
    .display-section .p-5,
    .desc-box.p-5 {
        padding: 10px !important
    }

    .display-section .desc-box h3 {
        margin: 0;
        font-size: 16px;
    }

    .display-section {
        padding: 0px 0 10px;
    }

    .col-sm-6:empty {
        display: none;
    }

    .display-content .p-5:empty {
        padding: 0;
    }

    .display-content .mb-5.mt-5 {
        margin: 0 !important;
    }

    .circle-highlight {
        width: 100px;
        height: 100px;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 15px;
    }

    .divleftmarminus {
        margin: 0 !important;
    }

    .howwework-page-maindiv .content {
        margin-top: 5px;
    }

    .circle-highlight1 {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .desc-box1 .justify-content-end.align-items-end,
    .desc-box1 .justify-content-left.align-items-left {
        align-items: center !important;
    }

    .desc-box1 .col-md-2 {
        width: 15%;
    }

    .desc-box1 .col-md-8 {
        width: 70%;
    }

    .overlay1 .pt-5 {
        padding-top: 5px !important;
    }
}

.divleftmarminus {
    margin-left: -12%;
}

.automotive-product .icon-box img {
    /*height: 100%;*/
    object-fit: cover;
    height: 350px;
    border-radius: 5px;
}

.slide-in {
    z-index: 10; /* to position it in front of the other content */
}

.slide-in.from-left {
    left: 0;
}

.slide-in.from-right {
    right: 0;
}

.slide-in-content {
    background: #eee;
    transition: transform 1s ease;
}

.slide-in.from-left .allsdiv {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.slide-in.from-right .allsdiv {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.slide-in.show .allsdiv {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.text-logo-color {
    color: #F15A22;
}

.highlighted-text {
    color: #F15A22; /* Highlight color */
    font-weight: bold;
    font-size: 1.3em;
    animation: pulseHighlight 1.5s infinite;
}

.about-product .icon-box img {
    height: 275px;
    object-fit: cover;
}
.about-luxe .icon-box img {
    height: auto;
}

/*------------*/
.industrial-section-testi {
    /*background: linear-gradient(90deg, rgba(0, 29, 117, 0.50), rgb(0, 0, 0, 0.50)),*/
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5)), url(/assets/img/dsm.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}
/*------------*/
.industrial-section {
    /*background: linear-gradient(90deg, rgba(0, 29, 117, 0.50), rgb(0, 0, 0, 0.50)),*/
    background: url(/assets/img/industrial-bg.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}
.industrial-section h2{
    font-size: 32px;
    font-weight: bold;
}

.automotive-section {
    /*background: linear-gradient(90deg, rgba(0, 29, 117, 0.50), rgb(0, 0, 0, 0.50)),*/
    background: url(/assets/img/automotive-bg.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}
.automotive-section h2{
    font-size: 32px;
    font-weight: bold;
}
.border-line {
    border-left: 5px solid #ffffff;
    padding-left: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.text-highlight {
    color: #f15a22; /* Instor India yellow */
    font-weight: bold;
}

.circle-image-wrapper {
    /*margin-left: 8%;*/
    position: relative;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    /*overflow: hidden;*/
    padding: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: url('/assets/img/industrial-hero3.jpg') no-repeat center center;
    z-index: 1;
    background-size: 100%;
}

.circle-image-wrapper::before {
    /*content: "";*/
    /*position: absolute;*/
    /*inset: 0;*/
    /*backdrop-filter: blur(1px);*/
    /*-webkit-backdrop-filter: blur(1px);*/
    /*z-index: 1;*/
    /*border-radius: 50%;*/
}

.circle-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    left: -80px;
    top: 160px;
    z-index: 5;
}

.automot {
    background: url('/assets/img/Aeromall_Eka_Shuttle_Bus.jpg') no-repeat bottom right;
    background-size: 100%;

}
.automot img {
    left: -175px;
    top: 260px;
}

/*--------------------------------------------------------------
# Faculty  Staff Section
--------------------------------------------------------------*/

.faculty--staff .departments-nav {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faculty--staff .departments-nav .departments-title {
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 18px;
}

.faculty--staff .departments-nav .nav-tabs {
    border: none;
}

.faculty--staff .departments-nav .nav-tabs .nav-item {
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.faculty--staff .departments-nav .nav-tabs .nav-link {
    border: none;
    padding: 10px 15px;
    color: var(--default-color);
    border-radius: 5px;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 14px;
}

.faculty--staff .departments-nav .nav-tabs .nav-link:hover {
    background-color: rgb(16 98 171);
    color: #ffffff;
}

.faculty--staff .departments-nav .nav-tabs .nav-link.active {
    background-color: color-mix(in srgb, var(--accent-color), #191919 5%);
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 992px) {
    .faculty--staff .departments-nav {
        margin-bottom: 30px;
    }

    .faculty--staff .departments-nav .nav-tabs {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faculty--staff .departments-nav .nav-tabs .nav-item {
        width: auto;
        margin-right: 5px;
    }
}

.faculty--staff .department-info {
    background-color: #e65722;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faculty--staff .department-info h3 {
    color: #ffffff;
    margin-bottom: 0px;
    font-size: 14px;
}

.faculty--staff .department-info p {
    color: var(--default-color);
    margin-bottom: 0;
}

.faculty--staff .faculty-card {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 15px;
}

.faculty--staff .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faculty--staff .faculty-card .faculty-image {
    overflow: hidden;
    height: 200px;
}

.faculty--staff .faculty-card .faculty-image img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faculty--staff .faculty-card:hover .faculty-image img {
    transform: scale(1.05);
}

.faculty--staff .faculty-card .faculty-info {
    padding: 20px;
}

.faculty--staff .faculty-card .faculty-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.faculty--staff .faculty-card .faculty-info .faculty-title {
    /*color: color-mix(in srgb, var(--default-color), transparent 35%);*/
    color: #191919;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.faculty--staff .faculty-card .faculty-info .faculty-specialties {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 5px;
}

.faculty--staff .faculty-card .faculty-info .faculty-specialties span {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
}

.faculty--staff .faculty-card .faculty-info .faculty-contact {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 15px;
}

.faculty--staff .faculty-card .faculty-info .faculty-contact a {
    font-size: 0.85rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.faculty--staff .faculty-card .faculty-info .faculty-contact a i {
    margin-right: 5px;
}

.faculty--staff .faculty-card .faculty-info .faculty-contact a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.faculty--staff .tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-shadow {
    text-shadow: 3px 3px #000000;
}
@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 1.5rem;
    }
    .h3, h3 {
        font-size: 1.15rem;
    }
}
.borderError{
    background: #ffd2d2;
}
#group-synergy img{
    filter:drop-shadow(2px 4px 6px black);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-slide .swiper{
    height: auto;
}

.testimonials-slide .testimonial-item {
    background-color: #191919;
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    min-height: 320px;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials-slide .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials-slide .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials-slide .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials-slide .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials-slide .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials-slide .testimonial-item p {
    /*font-style: italic;*/
    color: #ffffff;
    margin: 0 auto 15px auto;
    font-size: 14px;
    line-height: 1.8;
}

.testimonials-slide .swiper-wrapper {
    height: auto;
}

.testimonials-slide .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials-slide .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, #ffffff, transparent 15%);
    opacity: 1;
}

.testimonials-slide .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials-slide .swiper-slide {
    opacity: 0.5;
}

@media (max-width: 1199px) {
    .testimonials-slide .swiper-slide-active {
        opacity: 1;
    }

    .testimonials-slide .swiper-pagination {
        margin-top: 0;
    }

    .testimonials-slide .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .testimonials-slide .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}
/* smooth scrolling */
html {
    scroll-behavior: smooth;
}
.tools-mach li{
    margin-bottom: 5px;
}