/* ------------------------------------------------
  Project:   Induztry - Factory & Industry HTML5 Template
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Pre Loader
  4. Scroll to Top
  5. Header
  6. Footer
  7. Page Title

 
/* ------------------------
    General
------------------------*/
a,
a:focus {
    text-decoration: none !important;
}

a,
a:visited {
    text-decoration: none;
    color: var(--themeht-text-color);
}

a:focus,
a:hover {
    color: var(--themeht-primary-color);
    text-decoration: none !important;
}

a,
button,
input {
    outline: medium none !important;
}

*::-moz-selection {
    background: var(--themeht-text-color);
    color: var(--themeht-white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--themeht-text-color);
    color: var(--themeht-white-color);
    text-shadow: none;
}

::selection {
    background: var(--themeht-text-color);
    color: var(--themeht-white-color);
    text-shadow: none;
}


/* ------------------------
    Transition
------------------------*/
a,
.btn,
button,
img,
span,
input,
.social-icons li:hover a,
.themeht-btn,
.service-item,
.featured-item,
.featured-icon,
.portfolio-item,
.price-table,
.service-menu li a:before,
.team-social-icon,
.swiper-button-next,
.swiper-button-prev,
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after,
.site-main .comment-navigation .nav-links a i,
.site-main .posts-navigation .nav-links a i,
.site-main .post-navigation .nav-links a i {
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

/* ------------------------
    Box Shadow
------------------------*/
.box-shadow,
#header-wrap.fixed-header,
.scroll-top,
.service-item.style-1,
.service-item.style-1 .service-icon,
.main-timeline .timeline-icon,
.post-card.post-classic,
.comment-respond,
.portfolio-meta-info,
.featured-item.style-1,
.counter-icon,
.price-table,
.tab .nav-tabs .nav-link {
    -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}



/* ------------------------
    Pre Loader
------------------------*/
#ht-preloader {
    background: var(--themeht-bg-dark-color);
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden !important;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 99999;
}

/* Hide preloader after load (optional) */
#ht-preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rubik-loader img {
    width: 80px;
    height: 80px;
    animation: rotateRubik 1.5s linear infinite;
}

@keyframes rotateRubik {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clear-loader {
    z-index: 999;
    box-sizing: border-box;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    text-align: center;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: var(--themeht-bg-light-color);
}

.scroll-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top::after {
    position: absolute;
    font-family: 'bootstrap-icons';
    content: '\F145';
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: var(--themeht-text-color);
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top:hover::after {
    opacity: 0;
}

.scroll-top::before {
    position: absolute;
    font-family: 'bootstrap-icons';
    content: '\F145';
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--themeht-text-color), var(--themeht-text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top:hover::before {
    opacity: 1;
}

.scroll-top svg path {
    fill: none;
}

.scroll-top svg.scroll-circle path {
    stroke: var(--themeht-text-color);
    stroke-width: 2;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


/* ------------------------
    Subscribe Form
------------------------*/
.subscribe-form {
    margin: 0;
    padding: 0;
    position: relative;
}

.mc-form {
    width: 100%;
}

.mc-form input[type="email"] {
    width: 100%;
    border: 1px solid #383148;
    background: transparent;
    color: var(--themeht-text-color);
    font-size: 14px;
    padding: 0 20px;
    height: 60px;
}

.mc-form input[type="email"]:focus {
    border-color: 1px solid #383148;
}

.footer .mc-form input[type="email"]::-webkit-input-placeholder,
.dark-bg .mc-form input[type="email"]::-webkit-input-placeholder {
    color: var(--themeht-white-color);
}

.footer .mc-form input[type="email"]::-moz-placeholder,
.dark-bg .mc-form input[type="email"]::-moz-placeholder {
    color: var(--themeht-white-color);
}

.footer .mc-form input[type="email"]:-ms-input-placeholder,
.dark-bg .mc-form input[type="email"]:-ms-input-placeholder {
    color: var(--themeht-white-color);
}

.footer .mc-form input[type="email"].placeholder,
.dark-bg .mc-form input[type="email"].placeholder {
    color: var(--themeht-white-color) !important;
}

.footer-subscribe p {
    font-size: 15px;
    font-weight: 500;
    color: var(--themeht-white-color);
}

.footer-subscribe .mc-form input[type="email"],
.dark-bg .mc-form input[type="email"] {
    color: var(--themeht-white-color);
}

.subscribe-form {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.subscribe-form button {
    border: inherit;
    color: var(--themeht-white-color);
    line-height: inherit;
    position: absolute;
    right: 10px;
    top: auto;
    padding: 0;
    font-size: 18px;
    background: var(--themeht-primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form button:hover {
    background: var(--themeht-secondary-color);
}

.subscribe-form button.text-btn {
    width: auto;
    height: auto;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}


/* ------------------------
    Header
------------------------*/
/*--Header top--*/
.topbar-link a,
.topbar-link {
    color: var(--themeht-white-color);
    font-weight: 600;
}

.topbar-link i {
    margin-right: 5px;
    color: var(--themeht-primary-color);
    font-size: 20px;
    vertical-align: middle;
}

.topbar-link a:hover {
    color: var(--themeht-primary-color)
}

.header-top {
    position: relative;
    background: var(--triple-gradient);
}

.header-top ul {
    margin: 0;
}

.header-top .topbar-link li {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-size: 13px;
}

.header-top .topbar-link li:first-child {
    padding-left: 0;
}

.header-top .topbar-link li:last-child {
    padding-right: 0;
}

.header .social-icons li {
    margin: 0;
}

.header .social-icons li a {
    color: var(--themeht-white-color);
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: inherit;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header .social-icons li a:hover {
    color: var(--themeht-primary-color);
    background: inherit;
    border-color: rgba(255, 255, 255, 0.1);
}

.header-number {
    display: flex;
    align-items: center;
}

.header-number span {
    display: block;
    font-size: 12px;
    line-height: 1em;
    font-weight: 400;
    color: #868686;
    margin-bottom: 2px;
}

.header-number i {
    font-size: 40px;
    color: var(--themeht-secondary-color);
    display: inline-block;
    line-height: 1;
    margin-right: 10px;
}

.header-number a {
    font-weight: 600;
}

.header-number a:hover {
    color: var(--themeht-secondary-color);
    text-decoration: underline !important;
}

.header-number i {
    line-height: 48px;
    height: 48px;
    width: 48px;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    background-color: var(--themeht-primary-color);
    position: relative;
    margin-right: 20px;
}

.header-number i:after {
    position: absolute;
    top: -7px;
    right: -7px;
    bottom: -7px;
    left: -7px;
    background-color: var(--themeht-primary-color);
    opacity: 0.1;
    border-radius: 50%;
    content: "";
}


#header-wrap.fixed-header .logo img {
    height: 55px;
}

.header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1200;
}

#header-wrap {
    position: relative;
    padding: 10px 0
}

#header-wrap.fixed-header {
    animation: smoothScroll 1s forwards;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    background: var(--themeht-white-color) !important;
}

.navbar-brand {
    margin-right: 50px;
    padding: 0;
}

.logo img {
    max-height: 70px;
}

.navbar {
    padding: 0;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    padding: 20px;
    background: var(--themeht-white-color);
    top: 100%;
    border: none;
    border-radius: 0;
    border-top: 2px solid var(--themeht-secondary-color);
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    margin-top: 0;
    left: 0;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
    background: var(--themeht-white-color);
    left: 100%;
    margin: 0;
    right: auto;
    top: 0;
}

.navbar-nav .dropdown-submenu {
    display: block;
    position: relative;
}

.navbar-nav .nav-link {
    font-family: var(--themeht-typography-secondary-font-family);
    color: var(--themeht-text-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    padding: 0 !important;
    border-radius: 0;
    /* text-transform: uppercase; */
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--themeht-secondary-color);
}

.nav-item.dropdown .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.nav-item.dropdown .dropdown-menu a {
    font-family: var(--themeht-typography-secondary-font-family);
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    background: none;
    color: var(--themeht-text-color);
    font-size: 14px;
    font-weight: 500;
}

.nav-item.dropdown .dropdown-menu a:hover {
    color: var(--themeht-primary-color);
    padding-left: 10px;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-toggle.show,
.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-toggle:focus {
    color: var(--themeht-primary-color);
    padding-left: 10px;
}

.nav-link.dropdown-toggle::after,
.navbar-nav .dropdown-submenu .dropdown-toggle::after {
    border: none;
    content: '\F282';
    font-family: bootstrap-icons !important;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1;
    width: 10px;
    font-weight: 700;
}

.navbar-nav .dropdown-submenu .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 14px;
    content: '\F285';
    font-size: 10px;
}

@media (min-width:992px) {
    .navbar-nav .dropdown-menu {
        min-width: 14em !important;
        max-width: 20em !important;
    }

    .navbar-nav .dropdown>.dropdown-menu {
        opacity: 0;
        position: absolute;
        display: block;
        pointer-events: none;
        background: var(--themeht-white-color);
    }

    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }

    .navbar-nav .dropdown-submenu:hover .dropdown-menu {
        top: 0;
    }

    .navbar-nav.ms-auto .nav-item.dropdown .dropdown-menu {
        right: 0;
    }

    .navbar-nav.ms-auto .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: auto;
        right: 100%;
    }
}

@media (max-width:991.98px) {
    .navbar-nav .dropdown-submenu .dropdown-menu {
        padding: 0;
        top: 0;
    }
}



/* ------------------------
    Footer
------------------------*/
.footer {
    background: var(--triple-gradient);
    overflow: hidden;
    position: relative;
    z-index: 9;
    clear: both;
}

.footer-bg {
    background-repeat: no-repeat;
    background-position: left -100px center;
    background-size: cover;
}

.footer .widget-title {
    margin-bottom: 30px;
}

.footer-widget {
    margin-bottom: 0;
}

.footer-widget.widget ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-widget.widget ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

.primary-footer {
    position: relative;
    z-index: 99;
    padding: 100px 0;
}

.secondary-footer {
    position: relative;
    color: var(--themeht-white-color);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
    padding: 30px 0;
    position: relative;
}

.copyright a {
    text-decoration: underline !important;
    color: var(--themeht-primary-color);
}

.footer h5 {
    position: relative;
    color: var(--themeht-white-color);
}

.footer-menu li {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--themeht-white-color)
}

.footer-menu li a:hover {
    color: var(--themeht-primary-color)
}

.footer-menu .list-inline li {
    display: inline-block;
    margin: 0 10px;
}

.media-icon.list-inline li {
    display: inline-block;
}

.media-icon li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--themeht-white-color);
    position: relative;
    padding-left: 40px;
    border-bottom: dashed 1px #374148;
}

.media-icon li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.media-icon li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 24px;
    color: var(--themeht-primary-color);
}

.media-icon li a {
    color: var(--themeht-white-color);
}

.media-icon li a:hover {
    color: var(--themeht-primary-color);
}

.social-icons.footer-social {
    display: inline-block;
    margin-top: 35px;
}

.social-icons.footer-social li {
    margin: 0 20px 0 0;
}

.social-icons.footer-social li a {
    height: auto;
    width: auto;
    line-height: 1;
    font-size: 20px;
    color: var(--themeht-white-color);
    background-color: inherit;
    border: none;
}

.social-icons.footer-social li a:hover {
    background-color: inherit;
    color: var(--themeht-primary-color);
}

.subscribe-form {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.subscribe-form button {
    height: auto;
    background: var(--themeht-primary-color);
    border: inherit;
    color: var(--themeht-white-color);
    line-height: inherit;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0;
    width: 50px;
    height: 50px;
}

.subscribe-form input[type="email"] {
    background: var(--themeht-bg-dark-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 60px;
    color: var(--themeht-white-color) !important;
}

.subscribe-form input[type="email"]::placeholder {
    color: var(--themeht-white-color) !important;
}

.subscribe-form input[type="email"]:focus {
    background: var(--themeht-bg-dark-color);
    border: 1px solid var(--themeht-primary-color) !important;
}

.subscribe-form button:hover {
    color: var(--themeht-secondary-color);
    background: var(--themeht-white-color);
}

.footer-number-inner {
    position: relative;
    display: block;
    background-color: #181515;
    padding: 12px 21px 15px;
}

.footer-number {
    position: relative;
    display: block;
    border: dashed 1px rgba(255, 255, 255, 0.12);
    padding: 6px;
    margin-top: 40px;
    margin-right: 25px;
}

.footer-number span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--themeht-white-color);
    display: block;
}

.footer-number a {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 3px;
    font-weight: 600;
    display: inline-block;
    color: var(--themeht-white-color);
    font-family: var(--themeht-typography-secondary-font-family);
}

.footer-number a:hover {
    color: var(--themeht-primary-color);
}

.footer-number i {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) skewX(-17deg);
    height: 58px;
    width: 60px;
    font-size: 30px;
    color: var(--themeht-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--themeht-primary-color);
}

@media (min-width: 992px) {
    .footer-menu1 {
        padding-left: 30px !important;
    }
}

/* ------------------------
    Page Title
------------------------*/
.page-title {
    background: var(--themeht-bg-dark-color);
    position: relative;
    overflow: hidden;
    display: block;
    padding: 150px 0;
    z-index: 1;
}

.page-title h1 {
    font-size: 50px;
    color: var(--themeht-white-color);
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    padding: 6px 10px;
    background: var(--themeht-white-color);
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--themeht-text-color);
    font-weight: 600;
    z-index: 9;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb-item a {
    color: var(--themeht-text-color)
}

.breadcrumb-item.active,
.breadcrumb-item a:hover {
    color: var(--themeht-primary-color);
}

.breadcrumb-item i {
    background: var(--themeht-primary-color);
    padding: 2px 5px;
    color: var(--themeht-white-color);
}

.page-title::before {
    opacity: 0.9;
    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 42%, #00000080 50%, rgb(255 255 255 / 0%) 60%);
    opacity: 0.7;
    z-index: -1;
}

.search-icon a {
    font-size: 18px;
    color: var(--themeht-white-color);
    line-height: 1;
}

.search-input {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
    background: var(--themeht-white-color);
    border-bottom: 1px solid var(--themeht-primary-color);
    z-index: 9999;
    top: 0;
    display: none;
    padding: 80px 0;
}

.search-inner {
    padding: 15px 0;
    position: relative;
}

.search-input label {
    width: 100%;
}

.search-input .search-field {
    width: 100%;
    padding-right: 60px;
}

.search-input .search-form button[type="submit"] {
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
    font-size: 20px;
    right: 50px;
    color: var(--themeht-text-color);
    position: absolute;
    top: 25px;
}

.search-input .search-submit:hover {
    color: var(--themeht-primary-color);
}

.close-search {
    position: absolute;
    bottom: -40px;
    right: 0;
    cursor: pointer;
    font-size: 30px;
    color: var(--themeht-body-color);
}

.close-search:hover {
    color: var(--themeht-primary-color);
}

.main-abt-image img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ourmission h4 {
    margin-top: -65px;
}

.company-name {
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    background: var(--triple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for modern browsers */
    color: transparent;
    font-family: var(--themeht-typography-secondary-font-family);
    /* fallback */
}

.service-img img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    margin-top: 10px;
}

/* .service-title{
   border: 1px solid var(--themeht-primary-color);
    padding: 10px;
    color: #fff;
    border-radius: 10px;
} */
.service-title h4 {

    /* color: #fff; */
}

.process-involved {
    color: var(--themeht-secondary-color);
}

.service-desc {
    border-top: 1px solid var(--themeht-border-light-color);
    margin-top: 5px;
}


.process-number {
    width: 60px;
    height: 60px;
    background-color: #000;
    /* or your theme color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.process-number span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.client-logo-section {
    padding: 60px 0;
    background-color: #e6f0fa;
    text-align: center;
}

.client-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

/* .client-logo{
    width: 150px;
} */
@media (max-width:1024px) {

    .client-logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    }
}

@media (max-width:768px) {

    .client-logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

    }
}

@media (max-width:425px) {

    .client-logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    }
}

.client-logo img {
    max-width: 100%;
    height: 120px;
    object-fit: cover;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.client-logo img:hover {
    filter: grayscale(0%);
}

.email-link:hover,
.phone-link:hover {
    color: var(--themeht-primary-color) !important;
    text-decoration: underline;
    /* Optional: add underline on hover */
    transition: color 0.3s ease;
}

/* Style quick links text color */
.footer .quick-links li a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect */
.footer .quick-links li a:hover {
    color: var(--themeht-primary-color) !important;
    /* or your preferred hover color */
}

.custom-video-height {
    height: 435px;
    /* adjust as needed: 200px, 250px, etc. */
    object-fit: cover;
    border-radius: 8px;
    /* optional for rounded corners */
}

.ourvision {
    color: var(--themeht-primary-color);
    /* border-bottom: 1px solid var(--themeht-bg-dark-color); */

}

.home-form {
    border: 1px solid #ddd;
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
        margin-left: 48px;
    }
}

@media (max-width:768px) {
    .header-right {
        display: none !important;
    }

}

@media (max-width:425px) {
    .company-name {

        font-size: 1rem;

    }

}

@media (max-width:375px) {
    .company-name {

        display: none;

    }


}

@media (max-width:320px) {
    .company-name {

        font-size: 0.6rem;

    }


}

.about-section {
    position: relative;

    display: flex;
    align-items: center;

    background: #f8fafc;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%); */
    pointer-events: none;
}


.about-page-col {
    perspective: 1000px;
}

.about-page-card-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;

}

/* First card: left and bottom border */
.about-page-col:nth-child(1) .about-page-card-wrapper {
    border-left: 3px solid #B4218C;
    border-bottom: 3px solid #B4218C;
}

.about-page-col:nth-child(2) .about-page-card-wrapper {
    border-top: 3px solid #B4218C;

}

/* Third card: right and bottom border */
.about-page-col:nth-child(3) .about-page-card-wrapper {
    border-right: 3px solid #B4218C;
    border-bottom: 3px solid #B4218C;
}

.about-page-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--primary-gradient-color2); */
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-page-card-wrapper:hover {
    transform: translateY(-10px) rotateX(5deg);


}

.about-page-card-wrapper:hover::before {
    opacity: 1;
}

.about-page-card-wrapper:hover .card-glow {
    opacity: 0.6;
    transform: scale(1.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

/* .glow-1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

.glow-2 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
}

.glow-3 {
    background: radial-gradient(circle, rgba(245, 101, 101, 0.3) 0%, transparent 70%);
} */

.about-page-icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-background {

    background: var(--primary-gradient-color1);
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--themeht-white-color);
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* 
.icon-bg-1 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.icon-bg-2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-bg-3 {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
} */

.about-page-card-wrapper:hover .icon-background {
    transform: scale(1.1) rotate(5deg);

}

.about-page-icon {

    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.about-page-card-wrapper:hover .about-page-icon {
    transform: scale(1.1);
}

.about-page-box {
    text-align: center;
}

.about-page-box-title {
    font-size: 1.5rem;
    /* font-weight: 600; */
    color: var(--themeht-text-color);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.about-page-card-wrapper:hover .about-page-box-title {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-page-box-text {
    font-size: 1rem;
    font-weight: 400;
    /* color: rgba(255, 255, 255, 0.9); */
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.about-page-card-wrapper:hover .about-page-box-text {
    /* color: rgba(255, 255, 255, 1); */
    transform: translateY(-1px);
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-page-col:nth-child(1) .about-page-card-wrapper {
    animation: float 6s ease-in-out infinite;
}

.about-page-col:nth-child(2) .about-page-card-wrapper {
    animation: float 6s ease-in-out infinite 2s;
}

.about-page-col:nth-child(3) .about-page-card-wrapper {
    animation: float 6s ease-in-out infinite 4s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-page-card-wrapper {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .about-page-box-title {
        font-size: 1.4rem;
    }

    .about-page-box-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-page-card-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .icon-background {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .about-page-icon {
        width: 40px;
        height: 40px;
    }

    .about-page-box-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .about-page-box-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-page-card-wrapper:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .about-page-card-wrapper {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .about-page-icon-wrapper {
        margin-bottom: 25px;
    }

    .about-page-box-title {
        font-size: 1.2rem;
    }

    .about-page-box-text {
        font-size: 0.85rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .about-page-card-wrapper,
    .icon-background,
    .about-page-icon,
    .about-page-box-title,
    .about-page-box-text,
    .card-glow {
        transition: none;
    }

    .about-page-col .about-page-card-wrapper {
        animation: none;
    }
}

.about-page-certificate-section {
    background: #f8fafc;
}

/* Focus states for accessibility */
.about-page-card-wrapper:focus-within {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

.about-page-icon {
    font-size: 32px;
    color: #6c5ce7;
}

.about-page-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.about-page-cert-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.about-page-cert-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border: 1px solid #ddd;
}

.about-page-cert-text {
    flex-direction: column;
    padding: 20px;
    text-align: left;
}

.about-page-cert-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-page-cert-description {
    font-size: 1rem;
    color: #555;
    text-align: justify;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .about-page-cert-grid {
        grid-template-columns: 1fr;
    }
}

.about-page-cert-label {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.about-page-customers-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.about-page-customer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.about-page-customer-logo-box {
    width: 219px;
    height: 110px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.about-page-customer-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive tweak */
@media (max-width: 576px) {
    .about-page-cert-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    /* .about-page-customer-logo-box {
        width: 90px;
        height: 90px;
    } */
}

.product-container {
    padding: 0 50px;
}

@media (max-width:425px) {
    .product-container {
        padding: 0 10px;
    }
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6f3991;
    /* or var(--primary-color) */
    color: #fff;
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.product-card:hover {

    border: 1px solid #185EA8;

}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 6px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-caption {
    margin-top: 15px;
}

.product-caption h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
    background: var(--primary-gradient-color2);
}

.product-category-title {
    max-width: fit-content;
    /* Only as wide as needed */
    text-align: left;

}

.product-category {

    /* background: var(--primary-gradient-color2); */
    padding: 10px 20px;
    margin-bottom: 20px;
}

.product-category2 {
    margin-top: 15px;
    /* background: var(--primary-gradient-color1); */

}

.product-caption2 h5 {

    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
    background: var(--primary-gradient-color1);
}


.product-category i {
    color: #2d2a43;
}

.product-category-title h5 {

    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #2d2a43;
}

.cta-content {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 5px 15px;
    color: #2d2a43;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid #2d2a43;
}

.cta-content span {
    /* color: #64748b; */
    font-weight: 500;
}

.arrow-icon {
    font-size: 18px;
    color: #2d2a43;
    transition: transform 0.3s ease;
}

.material-section {
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 159, 0.2) 0%, rgba(0, 82, 159, 0.1) 100%);
}

.metirial-subtitle {
    line-height: 1;
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--themeht-primary-color);
    z-index: 9;
}

.metirial-title {

    margin-bottom: 0;
    overflow: hidden;
    color: #2d2a43;
    font-family: 'Commissioner', sans-serif;
    text-transform: capitalize;
}

.divider {
    width: 60px;
    height: 3px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.material-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8fafc;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.material-item:hover {
    background-color: #eef2f7;
    border-left: 3px solid #00529f;
    transform: translateX(5px);
}

.material-badge {
    width: 8px;
    height: 8px;
    background-color: #00529f;
    border-radius: 50%;
    margin-right: 12px;
}

.material-item span {
    font-weight: 500;
    color: #2c3e50;
}

.full-width {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .material-section {
        padding: 2rem 0;
    }

    .row {
        flex-direction: column;
    }

    .material-image {
        height: 300px !important;
    }
}

.img-full-height {
    height: 100%;
    object-fit: cover;
}

#contact-section {
    scroll-margin-top: 200px;
}

.maxwell-jobs {
    position: relative;
    height: 500px;
    /* adjust as needed */
    overflow: hidden;
}

.maxwell-jobs .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about//maxjobsback.jpg') no-repeat center center/cover;
    z-index: 0;
}

.maxwell-jobs .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* dark layer */
    z-index: 1;
}

.maxwell-jobs .foreground-image {
    position: relative;
    z-index: 2;
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    transform: scale(1.1)
}
.employee{
    height: 500px;
}
.infrastructure-gallery .img-fluid {
    transition: transform 0.3s;
}

.infrastructure-gallery .img-fluid:hover {
    transform: scale(1.05);
}
.contact-secound-iamge{
    height: 310px;
}