
@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables

--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Neris Light";
    --heading-font: "Neris Black";
    --nav-font: "Neris Light";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    /*#14529d*/
    --background-color: #f9fafb;
    /* Background color for the entire website, including individual sections */
    --default-color: #333333;
    /* Default color used for the majority of the text content across the entire website */
    /*102a49*/
    --heading-color: #63695D;
    /* Color for headings, subheadings and title throughout the website */
    /*63695D*/
    --accent-color: #F6A60E;
    /* 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: #000000;
    /* The default color of the main navmenu links */
    /*#14529d*/

    --nav-hover-color: #F6A60E;
    /* 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: #333333;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    /*14529d*/
    --nav-dropdown-hover-color: #F6A60E;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

:root {
        --primary-navy: #002347;
            --accent-gold: #ffc107;
            --soft-bg: #f0f2f5;
            --ld-color: #28a745; 
            --md-color: #17a2b8; 
            --hd-color: #fd7e14; 
            --ehd-color: #dc3545; 
            --sehd-color: #343a40; 
}

/*@font-face {
    font-family: 'Neris Thin';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Thin'), url('Neris-Thin.woff') format('woff');
}*/


/*@font-face {
    font-family: 'Neris Thin Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Thin Italic'), url('Neris-ThinItalic.woff') format('woff');
}*/


@font-face {
    font-family: 'Neris Light';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Light'), url('Neris-Light.woff') format('woff');
}


@font-face {
    font-family: 'Neris Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Light Italic'), url('Neris-LightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Neris SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('Neris SemiBold'), url('Neris-SemiBold.woff') format('woff');
}


/*@font-face {
    font-family: 'Neris SemiBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Neris SemiBold Italic'), url('Neris-SemiBoldItalic.woff') format('woff');
}*/


@font-face {
    font-family: 'Neris Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Bold Italic'), url('Neris-BoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Neris Black';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Black'), url('Neris-Black.woff') format('woff');
}

/*
@font-face {
    font-family: 'Neris Black Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Neris Black Italic'), url('Neris-BlackItalic.woff') format('woff');
}*/

/* 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: #eff1f3;
    --surface-color: #ffffff;
}

.dark-background {
    /*14529d*/
    --background-color: #ffffff;
    --default-color: #333333;
    --heading-color: #000000;
    --accent-color: #F6A60E;
    --surface-color: #252525;
    /*ffffff*/
    --contrast-color: #000000;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@media screen and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
    border-bottom: 2px solid #F6A60E;
    box-shadow: 0 0 10px #455a64;
}

.header .topbar {
    background-color: var(--accent-color);
    height: 40px;
    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 .branding {
    min-height: 40px;
    padding: 0;
}

.header .logo {
    line-height: 1;
    padding: 10px 0;
}

.header .logo img {

    margin-right: 8px;
    width: 130px;
}

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

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

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

/*--------------------------------------------------------------
# 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,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

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

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

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

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

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

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

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

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

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

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

/* Navmenu - 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 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--contrast-color);
    background-color: var(--background-color);
    font-size: 14px;
    /*border-top: 2px solid #F6A60E;*/
    position: relative;
}

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

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

.footer .footer-about .logo img {
    width: 160px;
    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-contact a {
    color: var(--default-color);
}

.footer-contact a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
    font-weight: 500;
}

.iconcolor {
    color: var(--accent-color);
    font-size: 16px;
}

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

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

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

.footer h4 {
    /*font-size: 16px;*/
    /*font-weight: bold;*/
    font-family: var(--default-font);
    position: relative;
    padding-bottom: 12px;
}

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

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

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

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

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

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

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

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

.footer .copyright {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--accent-color);
}

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

.footer .copyright a {
    color: var(--contrast-color);
    font-weight: 500;
}

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

.footer .credits a:hover {
    color: #ffffff;
    font-size: 14px;
}

.sitename:hover {
    color: #ffffff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

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

.section-title p {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin: 5px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home {
    padding: 0;
    width: 100%;
    height: 85vh;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat
}

.homebox::before {
    content: "";
    position: absolute;
    /*background: linear-gradient(360deg, rgba(0,140,204,0.95) 35%, rgba(0,140,204,0));*/
    background: linear-gradient(360deg, rgb(0 0 0 /35%) 50%, rgba(0, 140, 204, 0));
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;

}

.homebox2::before {
    content: "";
    position: absolute;
    /*background: linear-gradient(360deg, rgba(0,140,204,0.95) 35%, rgba(0,140,204,0));*/
    background: linear-gradient(360deg, rgb(0 0 0 /25%) 85%, rgba(0, 140, 204, 0));
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;

}

.homebox {
    display: flex;
    position: relative;
    margin: 0 auto;
    height: 100%
}

.hometext {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0px;
    right: 0px;
    color: #ffffff;
    font-size: 42px;
    width: fit-content;
    height: 70px;
    margin: auto;
    font-family: 'Neris SemiBold';
}

.homeimg {
    width: 100%;
    flex: none;
    position: absolute;
    bottom: -40px;
    right: 0;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, .2)
}

.one {
    background-image: url('../img/carousel1.jpg');
    background-position: center
}

.two {
    background-image: url('../img/carousel2.jpg');
    background-position: center 70%;
}

.twotext {
    /*  left: auto;
  right: 0;
  height: 335px*/
    height: 400px
}

.captiontext {
    font-family: 'Neris Bold Italic';
    /*color: var(--accent-color);*/
    font-size: 50px;

}

.onetext {
    color: #ffffff;
    top: 0;
    left: 170px;
    bottom: 0;
    right: initial;
    text-align: left;
    line-height: 65px;
    height: 150px
}




.hero {
    position: relative;
    padding: 120px 0;
    background-color: var(--background-color);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/construction/showcase-5.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

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

.hero .hero-content {
    margin-bottom: 30px;
}

.hero .hero-content .subtitle {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 25px;
}

.hero .hero-content .subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateY(-50%);
}

.hero .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 32px;
    }
}

.hero .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .hero .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.hero .hero-buttons .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-color: var(--default-color);
    transform: translateY(-3px);
}

.hero .trust-badges {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero .trust-badges {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.hero .trust-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero .trust-badges .badge-item i {
    font-size: 32px;
    color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
    display: flex;
    flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
    transform: scale(1.05);
}

.hero .hero-image .image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.hero .hero-image .image-badge p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }

    .hero .hero-content {
        margin-bottom: 50px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.section-title h1 {
    position: absolute;
    z-index: 1;
    font-size: 80px;
    line-height: 1;
    opacity: 0.09;
    top: -30px;
    left: 0;
    margin-bottom: 0;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    text-transform: capitalize;
    right: 0;
}

.section-title-icon h1 {
    left: 45px;
    top: -29px;
}

.section-title>span {
    color: #F6A60E;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 30px;
    margin-top: 24px;
    line-height: 1.2;
}

.about {
    position: relative;
}

.aboutbanner {
    background-image: url(../img/aboutusbannerre.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.aboutbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}

.solbanner {
    background-image: url(../img/solutions.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.solbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}

.dwcbanner {
    background-image: url(../img/dwcbannerre.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.dwcbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}

.frpbanner {
    background-image: url(../img/frpbanner.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.frpbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}

.precastbanner {
    background-image: url(../img/precastbanner.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.precastbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}

.gswbanner {
    background-image: url(../img/gswbanner.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.gswbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}

.alliedbanner {
    background-image: url(../img/alliedbanner.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.alliedbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.35);
}

.areabanner {
    background-image: url(../img/areabanner.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.areabanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}
.partnerbanner {
    background-image: url(../img/partnerbanner.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.partnerbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    background-color: rgba(0, 0, 0, 0.15);
}
.about .about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.about .about-content h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.about .about-content .lead {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
}

.about .about-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about .achievement-boxes .achievement-box {
    background-color: var(--surface-color);
    border-left: 4px solid var(--accent-color);
    padding: 1.2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about .achievement-boxes .achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about .achievement-boxes .achievement-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.about .achievement-boxes .achievement-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.about .certifications h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about .certifications img {
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.about .certifications img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.about .cta-container .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about .cta-container .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image {
    position: relative;
}

.about .about-image .main-image {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about .about-image .image-overlay2 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100s;
    z-index: 9;
    background-color: red;
}

.about .about-image .image-overlay {
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 50%;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about .about-image .image-overlay img {
    border: 5px solid var(--background-color);
}

.about .about-image .experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about .about-image .experience-badge p {
    font-size: 0.8rem;
    margin-bottom: 0;
    margin-top: 0.3rem;
}

@media (max-width: 991.98px) {
    .about .about-image {
        margin-top: 3rem;
    }

    .about .about-image .image-overlay {
        bottom: -40px;
        right: -20px;
    }

    .about .about-image .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
        left: -20px;
    }

    .about .about-image .experience-badge span {
        font-size: 1.5rem;
    }

    .about .about-image .experience-badge p {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .about .achievement-boxes .achievement-box {
        padding: 1rem;
    }

    .about .achievement-boxes .achievement-box h3 {
        font-size: 1.8rem;
    }

    .about .achievement-boxes .achievement-box p {
        font-size: 0.8rem;
    }

    .about .about-image .image-overlay {
        bottom: -30px;
        right: 0;
        width: 40%;
    }
}

::-webkit-scrollbar {
    width: 13px; // to adjust width
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
    -webkit-box-shadow: inset 1px 1px 2px #E0E0E0;
    border: 1px solid #D8D8D8;
    /*//color of the track of scroll bar*/
}

::-webkit-scrollbar-thumb {
    background: #646464;
    -webkit-box-shadow: inset 1px 1px 2px rgba(155, 155, 155, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: #aaaaaa;
}

::-webkit-scrollbar-thumb:active {
    background: #888;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.manufactsection {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    height: 100vh;
    overflow: hidden;
    color: #FFFFFF;
}

.manufactsection h2 {
    color: #FFF;
}

.manufactsection .cover {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.manufactsection .cover img {
    position: absolute;
    display: block;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.manufactsection .content {
    position: absolute;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 2;
}
.manufactsection .w-70 {
    width: 70%;
}

.centralize {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateZ(0px) translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .manufactsection .text {
        width: 90%;
    }
}

/* === HEADING STYLE #1 === */
.major h2 {
    /*text-align: center;*/
    /*text-transform: uppercase;*/
    padding-bottom: 5px;
    position: relative;
}

.major h2:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -14px;
    background-color: #F6A60F;
}

.major h2:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -50px;
    background-color: #F6A60F;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
    height: 350px;
    width: 100%;
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
    object-fit: cover;
    height: 100%;
}

.hover-content {
    position: relative;
    z-index: 99;
}

/* DEMO 4 ============================== */
.hover-4 img {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hover-4 .hover-overlay {
    /*background: rgba(0, 0, 0, 0.45);*/
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.25) 20%, transparent);
    ;
    z-index: 90;
}

.hover-4-title {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 3rem 1rem;
    z-index: 99;
    font-weight: 600;
    color: #F6A60E !important;
}

.primarycolor {
    color: #63695D;
}

.hover-4-description {
    position: absolute;
    top: 2rem;
    left: 2rem;
    text-align: right;
    border-right: 3px solid #F6A60E;
    padding: 0 1rem;
    z-index: 99;
    transform: translateX(-1.5rem);
    opacity: 0;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .hover-4-description {
        width: 90%;
    }
}

.hover-4:hover img {
    width: 100%;
}

.hover-4:hover::after {
    opacity: 1;
    transform: none;
}

.hover-4:hover .hover-4-description {
    opacity: 1;
    transform: none;
}

.hover-4:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: #F6A60F;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    color: #ffffff;
}

.owl-nav button span {
    font-size: 30px;
    height: 100%;
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav {
    margin: 0;
}


.services {
    position: relative;
}

.services .service-card {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-card.featured {
    border: 2px solid var(--accent-color);
}

.services .service-card.featured .service-icon {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-card .service-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 0 0 0 8px;
}

.services .service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
    transition: all 0.3s ease;
}

.services .service-card .service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.services .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services .service-card p {
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.services .service-card .service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.services .service-card .service-features span i {
    color: var(--accent-color);
}

.services .service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.services .service-card .service-link:hover {
    gap: 0.75rem;
}

.services .service-image-block {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services .service-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .service-list-block {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.services .service-list-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services .service-list-block p {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services .service-list-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.services .service-list-item .service-list-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-list-item .service-list-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.services .service-list-item .service-list-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.services .service-list-item .service-list-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container {
    margin-top: 5rem;
    padding: 3rem;
    background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
    border-radius: 10px;
}

.services .cta-container h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.services .cta-container p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container .btn-cta {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services .cta-container .btn-cta:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .services .service-list-block {
        margin-top: 2rem;
    }

    .services .service-card {
        padding: 2rem;
    }

    .services .cta-container {
        padding: 2rem;
    }

    .services .cta-container h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services .service-list-item {
        flex-direction: column;
        gap: 1rem;
    }

    .services .service-list-item .service-list-icon {
        margin-bottom: 0.5rem;
    }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/

.product-grid {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.product-grid .product-image {
    overflow: hidden;
    position: relative;
}

.product-grid .product-image a.image {
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
}

.product-grid .product-image .pic-1 {
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-1 {
    transform: translateX(100%);
}

.product-grid .product-image .pic-2 {
    width: 100%;
    height: 100%;
    transform: translateX(-101%);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-2 {
    transform: translateX(0);
}

.product-grid .product-sale-label {
    color: #fff;
    background: var(--bs-hover);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-grid .product-like-icon {
    color: #696969;
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-grid .product-like-icon:hover {
    color: var(--bs-hover);
}

.product-grid .product-like-icon:before,
.product-grid .product-like-icon:after {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    line-height: 18px;
    padding: 7px 7px 5px;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 15px;
    transition: all 0.3s ease 0s;
}

.product-grid .product-like-icon:after {
    content: '';
    height: 15px;
    width: 15px;
    padding: 0;
    transform: translateX(-50%) rotate(45deg);
    right: auto;
    left: 50%;
    top: 15px;
    z-index: -1;
}

.product-grid .product-like-icon:hover:before,
.product-grid .product-like-icon:hover:after {
    visibility: visible;
    top: 30px;
}

.product-grid .product-links {
    width: 170px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links {
    bottom: 40px;
    opacity: 1;
}

.product-grid .product-links li {
    display: inline-block;
    margin: 0 2px;
}

.product-grid .product-links li a {
    color: #fff;
    background: #192a56;
    font-size: 16px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links li a:hover {
    background: #333;
}

.product-grid .product-content {
    text-align: left;
    padding: 15px 0 0;
}

.product-grid .title {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.product-grid .title a {
    color: #333;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.product-grid .title a:hover {
    color: var(--bs-hover);
}

.product-grid .price {
    color: var(--bs-hover);
    font-size: 16px;
    font-weight: 500;
}

.product-grid .price span {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin: 0 5px 0 0;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin: 0 0 30px;
    }
}

.project-section {
    background-image: linear-gradient(rgb(46 50 45), #72716736), url(../img/productbg5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*background-color: #dee1db;*/

}

.project-section .section-title-icon h1 {
    color: #ffffff;
    opacity: 0.22;
}

.project-section .section-title p {
    color: #ffffff;
}

.productcontainer {
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    grid-auto-flow: dense;
    grid-gap: 30px;
    align-items: center;
    justify-content: center;

}

.productcard {
    position: sticky;
    height: 350px;
    box-shadow: 0 2px 3px 0 rgba(255, 255, 255, 0.2), 0 3px 10px 0 rgba(255, 255, 255, 0.19);
    border-radius: 15px;
    overflow: hidden;
}

.productcard .card-media {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.productcard .card-media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 0.3s;
}

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

.productcard .card-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 95%;
    height: 95%;
    /*background-color: rgba(22, 22, 22, 0.3);*/
    transition: all 0.3s;
    z-index: 1;
    border-radius: 15px;
}

.productcard:hover .card-media::before {
    /*background-color: #161616;*/
    /*background-color: #181818f7;*/
    background-color: #000000d9;
}

.productcard .card-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    opacity: 0;
    transition: all 0.3s;
}

.productcard:hover .card-content {
    opacity: 1;
}

.productcard .card-content .card-header {
    margin-bottom: 30px;
}

.productcard .card-content .card-header h3 {
    /*font-size: 32px;*/
    font-weight: 500;
    line-height: 43px;
}

.productcard .card-content .card-header h3 a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.productcard .card-content .card-header h3 a:hover {
    /*color: #cf000f;*/
    transform: scale(1.1);
}

.productcard .card-content .card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 27px;
}

.productcard .card-border span {
    display: inline-block;
    position: absolute;
    background-color: rgba(246, 166, 13, 0.4);
    transition: all 0.3s linear;
    z-index: 2;

}

.productcard .card-border span.top {
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.productcard .card-border span.right {
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: top;
}

.productcard .card-border span.bottom {
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.productcard .card-border span.left {
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

.productcard:hover .card-border span.top {
    transform: scaleX(1);
}

.productcard:hover .card-border span.right {
    transform: scaleY(1);
    transition-delay: 0.3s;
}

.productcard:hover .card-border span.bottom {
    transform: scaleX(1);
    transition-delay: 0.6s;
}

.productcard:hover .card-border span.left {
    transform: scaleY(1);
    transition-delay: 0.9s;
}

.card-desc .btn-secondary, .custombtn {
    background-color: var(--accent-color);
}

.card-desc .btn-secondary:hover i {
    font-size: larger;
}

/* Let's write the media query */
@media (max-width: 1024px) {
    .productcontainer {
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    }

    .productcard {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

@media (max-width: 992px) {
    .projects .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .projects .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.projects .project-item {
    display: flex;
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s ease;
    min-height: 280px;
}

.projects .project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-item:hover .project-visual img {
    transform: scale(1.08);
}

.projects .project-item:hover .project-link {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.projects .project-item:hover .project-link i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .projects .project-item {
        flex-direction: column;
        min-height: auto;
    }
}

.projects .project-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .projects .project-content {
        padding: 25px;
    }
}

.projects .project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.projects .project-category {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.projects .project-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projects .project-status.completed {
    background: #22c55e;
    color: #ffffff;
}

.projects .project-status.in-progress {
    background: var(--accent-color);
    color: #ffffff;
}

.projects .project-status.planning {
    background: #f59e0b;
    color: #ffffff;
}

.projects .project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .projects .project-title {
        font-size: 20px;
    }
}

.projects .project-details {
    margin-bottom: 25px;
}

.projects .project-info {
    margin-bottom: 20px;
}

.projects .project-info p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.projects .project-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .projects .project-specs {
        flex-direction: column;
        gap: 8px;
    }
}

.projects .spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.projects .spec-item i {
    color: var(--accent-color);
    font-size: 14px;
}

.projects .project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects .project-location i {
    color: var(--accent-color);
    font-size: 14px;
}

.projects .project-location span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.projects .project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.projects .project-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.projects .project-visual {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .projects .project-visual {
        flex: none;
        height: 200px;
    }
}

.projects .project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.projects .project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.projects .project-badge i {
    color: var(--accent-color);
    font-size: 16px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

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

.testimonials .testimonial-slide {
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    min-height: 400px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-top: 4px solid var(--accent-color);
}

.testimonials .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonials .stars-rating {
    display: flex;
    gap: 0.5rem;
}

.testimonials .stars-rating i {
    color: #ffc107;
    font-size: 1.25rem;
}

.testimonials .quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .quote-icon i {
    color: var(--contrast-color);
    font-size: 1.5rem;
}

.testimonials .testimonial-body {
    margin: 2.5rem 0;
}

.testimonials .testimonial-body p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--heading-color);
    margin: 0;
    position: relative;
}

.testimonials .testimonial-footer {
    margin-top: 2.5rem;
}

.testimonials .author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonials .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .author-details {
    text-align: left;
}

.testimonials .author-details h4 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.testimonials .author-details .role {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonials .author-details .company {
    display: block;
    font-size: 0.9375rem;
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.testimonials .swiper-navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials .swiper-pagination {
    position: static !important;
    margin: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static !important;
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
    font-size: 1.25rem;
    color: var(--contrast-color);
    font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .testimonials .testimonial-slide {
        padding: 2.5rem 2rem;
        min-height: 350px;
    }

    .testimonials .testimonial-body p {
        font-size: 1.125rem;
    }

    .testimonials .author-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonials .author-details h4 {
        font-size: 1.25rem;
    }

    .testimonials .quote-icon {
        width: 50px;
        height: 50px;
    }

    .testimonials .quote-icon i {
        font-size: 1.25rem;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .testimonials .swiper-button-prev:after,
    .testimonials .swiper-button-next:after {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials .testimonial-slide {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }

    .testimonials .testimonial-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .testimonials .testimonial-body {
        margin: 2rem 0;
    }

    .testimonials .testimonial-body p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonials .author-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .testimonials .author-details {
        text-align: center;
    }

    .testimonials .author-details h4 {
        font-size: 1.125rem;
    }

    .testimonials .author-details .role {
        font-size: 0.9375rem;
    }

    .testimonials .author-details .company {
        font-size: 0.875rem;
    }

    .testimonials .swiper-navigation-wrapper {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .testimonials .swiper-button-prev:after,
    .testimonials .swiper-button-next:after {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications {
    /*padding: 100px 0;*/
    padding: 0px 0 50px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.certifications .content h2 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    line-height: 1.2;
}

.certifications .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

.certifications .badge-highlight {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.certifications .badge-highlight img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.certifications .badge-highlight .badge-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.certifications .badge-highlight .badge-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.certifications .certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.certifications .certification-grid .cert-card {
    background: #ffffffe6;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    /*display: flex;*/
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.certifications .certification-grid .cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.certifications .certification-grid .cert-card:hover::before {
    transform: scaleY(1);
}

.certifications .certification-grid .cert-card:hover .cert-icon img {
    transform: scale(1.2);
}

.certifications .certification-grid .cert-card .cert-icon {
    width: 100px;
    height: 100px;
    /*background: color-mix(in srgb, var(--accent-color), transparent 90%);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /*padding: 0.8rem;*/
    margin: auto;
}

.certifications .certification-grid .cert-card .cert-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card .cert-details {
    margin-top: 15px;
    flex: 1;
}

.certifications .certification-grid .cert-card .cert-details h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.certifications .certification-grid .cert-card .cert-details .cert-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.certifications .certification-grid .cert-card .cert-details p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    margin-bottom: 0;
}

.certifications .achievements-banner {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    margin-top: 3rem;
}

.certifications .achievements-banner .achievement-item {
    padding: 1rem;
}

.certifications .achievements-banner .achievement-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.certifications .achievements-banner .achievement-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.certifications .achievements-banner .achievement-item p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .certifications .certification-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certifications .certification-grid .cert-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .certifications .certification-grid .cert-card .cert-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .certifications {
        padding: 80px 0;
    }

    .certifications h2 {
        font-size: 2.2rem;
    }

    .certifications .badge-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .certifications .badge-highlight img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .certifications .cert-card {
        flex-direction: column;
        text-align: center;
    }

    .certifications .cert-card .cert-icon {
        margin: 0 auto;
    }

    .certifications .achievements-banner {
        padding: 2rem 1rem;
    }

    .certifications .achievements-banner .achievement-item {
        margin-bottom: 2rem;
    }

    .certifications .achievements-banner .achievement-item:last-child {
        margin-bottom: 0;
    }

    .certifications .achievements-banner .achievement-item h3 {
        font-size: 2.2rem;
    }
}

.leadtext {
    letter-spacing: 1px;
}

.industrial-scale-section {
    /* Background showing industrial warehouse with yellow accents */
    background: linear-gradient(rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.9)),
        url('../img/frpoutdoor.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.text-light-50 {
    color: rgba(255, 255, 255, 0.65);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.aboutteam .headtext {
    display: block !important;
    justify-content: center !important;
    margin:auto;
    text-align: center;
}
.aboutteam .headtext::after {
        right: 0;
    margin: auto;
    width: 25%;
}

.team .team-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.team .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.team .team-card.featured .team-header {
    display: flex;
    padding: 30px;
    gap: 25px;
    align-items: flex-start;
}

.team .team-card.featured .team-header .team-image {
    position: relative;
    flex-shrink: 0;
}

.team .team-card.featured .team-header .team-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.team .team-card.featured .team-header .team-image .experience-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--heading-color);
    color: var(--contrast-color);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.team .team-card.featured .team-header .team-info {
    flex: 1;
}

.team .team-card.featured .team-header .team-info h4 {
    color: var(--heading-color)
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.team .team-card.featured .team-header .team-info .position {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team .team-card.featured .team-header .team-info .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team .team-card.featured .team-header .team-info .contact-info a {
    color: var(--default-color);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.team .team-card.featured .team-header .team-info .contact-info a i {
    color: var(--accent-color);
    font-size: 16px;
}

.team .team-card.featured .team-header .team-info .contact-info a:hover {
    color: var(--accent-color);
}

.team .team-card.featured .team-details {
    padding: 0 30px 30px 30px;
}

.team .team-card.featured .team-details p {
    color: var(--default-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team .team-card.featured .team-details .credentials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.team .team-card.featured .team-details .credentials .cred-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.team .team-card.featured .team-details .credentials .cred-item i {
    color: var(--accent-color);
    font-size: 14px;
}

.team .team-card.featured .team-details .credentials .cred-item span {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
}

.team .team-card.featured .team-info .social-links {
    display: flex;
    gap: 12px;
}

.team .team-card.featured .team-info .social-links a {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.team .team-card.featured .team-info .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.team .team-card.compact .member-photo {
    position: relative;
    overflow: hidden;
}

.team .team-card.compact .member-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, color-mix(in srgb, var(--heading-color), transparent 20%) 100%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content {
    text-align: center;
    color: var(--contrast-color);
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--contrast-color);
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content span {
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a {
    background: var(--contrast-color);
    color: var(--accent-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a:hover {
    transform: scale(1.1);
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.team .team-card.compact .member-photo:hover .hover-overlay {
    opacity: 1;
}

.team .team-card.compact .member-photo:hover .hover-overlay .overlay-content {
    transform: translateY(0);
}

.team .team-card.compact .member-photo:hover img {
    transform: scale(1.05);
}

.team .team-card.compact .member-summary {
    padding: 20px;
    text-align: center;
}

.team .team-card.compact .member-summary h5 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.team .team-card.compact .member-summary span {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.team .team-card.compact .member-summary .skills {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.team .team-card.compact .member-summary .skills .skill-tag {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 992px) {
    .team .team-card.featured .team-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .team .team-card.featured .team-header .team-image {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .team .team-card.featured .team-header {
        padding: 25px 20px;
    }

    .team .team-card.featured .team-header .team-image img {
        width: 100px;
        height: 100px;
    }

    .team .team-card.featured .team-header .team-info h4 {
        font-size: 20px;
    }

    .team .team-card.featured .team-header .team-info .contact-info a {
        font-size: 13px;
    }

    .team .team-card.featured .team-details {
        padding: 0 20px 25px 20px;
    }

    .team .team-card.featured .team-details .credentials {
        justify-content: center;
    }

    .team .team-card.featured .team-details .credentials .cred-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .team .team-card.featured .team-info .social-links {
        justify-content: center;
    }

    .team .team-card.featured .team-info .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .team .team-card.compact .member-photo img {
        height: 200px;
    }

    .team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
        font-size: 18px;
    }

    .team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .team .team-card.compact .member-summary {
        padding: 15px;
    }

    .team .team-card.compact .member-summary h5 {
        font-size: 16px;
    }

    .team .team-card.compact .member-summary .skills .skill-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    position: relative;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, color-mix(in srgb, var(--heading-color), transparent 97%) 100%);
    z-index: 1;
}

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

.call-to-action .cta-hero-content .badge-wrapper {
    margin-bottom: 2rem;
}

.call-to-action .cta-hero-content .badge-wrapper .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.call-to-action .cta-hero-content .badge-wrapper .cta-badge i {
    font-size: 1rem;
}

.call-to-action .cta-hero-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .call-to-action .cta-hero-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .call-to-action .cta-hero-content h2 {
        font-size: 2.2rem;
    }
}

.call-to-action .cta-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2.5rem;
}

.call-to-action .cta-hero-content .feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item span {
    font-size: 1rem;
    color: var(--default-color);
    font-weight: 500;
}

.call-to-action .cta-form-section .form-container {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
    .call-to-action .cta-form-section .form-container {
        padding: 30px 25px;
    }
}

.call-to-action .cta-form-section .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.call-to-action .cta-form-section .form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.call-to-action .cta-form-section .form-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1rem;
    margin: 0;
}

.call-to-action .cta-form-section .form-group {
    margin-bottom: 1rem;
}

.call-to-action .cta-form-section .form-group input,
.call-to-action .cta-form-section .form-group select,
.call-to-action .cta-form-section .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--default-color);
    background-color: var(--surface-color);
}

.call-to-action .cta-form-section .form-group input:focus,
.call-to-action .cta-form-section .form-group select:focus,
.call-to-action .cta-form-section .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .cta-form-section .form-group input::placeholder,
.call-to-action .cta-form-section .form-group select::placeholder,
.call-to-action .cta-form-section .form-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.call-to-action .cta-form-section .form-group select {
    cursor: pointer;
}

.call-to-action .cta-form-section .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.call-to-action .cta-form-section .form-actions {
    margin-top: 2rem;
    text-align: center;
}

.call-to-action .cta-form-section .form-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.call-to-action .cta-form-section .form-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-form-section .form-actions .btn-primary i {
    font-size: 1.2rem;
}

.call-to-action .cta-form-section .form-actions .contact-alternative {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.call-to-action .cta-form-section .form-actions .contact-alternative span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .cta-form-section .form-actions .contact-alternative .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-to-action .cta-form-section .form-actions .contact-alternative .phone-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
}

.call-to-action .cta-form-section .form-actions .contact-alternative .phone-link i {
    font-size: 1rem;
}

.call-to-action .cta-form-section .trust-indicators {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .cta-form-section .trust-indicators .trust-item {
    text-align: center;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-icon {
    margin-bottom: 10px;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content .trust-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content .trust-label {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

@media (max-width: 992px) {
    .call-to-action .cta-hero-content {
        margin-bottom: 3rem;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-sidebar {
    position: sticky;
    top: 120px;
}

.service-details .service-sidebar .service-overview-card,
.service-details .service-sidebar .quick-info-card,
.service-details .service-sidebar .contact-action-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details .service-sidebar .service-overview-card {
    text-align: center;
}

.service-details .service-sidebar .service-overview-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-details .service-sidebar .service-overview-card .service-icon i {
    font-size: 2rem;
    color: var(--contrast-color);
}

.service-details .service-sidebar .service-overview-card h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-details .service-sidebar .service-overview-card p {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-details .service-sidebar .service-overview-card .service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-details .service-sidebar .service-overview-card .service-stats .stat-item {
    text-align: center;
}

.service-details .service-sidebar .service-overview-card .service-stats .stat-item .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.service-details .service-sidebar .service-overview-card .service-stats .stat-item .stat-label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.5rem;
}

.service-details .service-sidebar .quick-info-card h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row:last-child {
    border-bottom: none;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row .label {
    color: var(--default-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row .value {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-details .service-sidebar .contact-action-card h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-details .service-sidebar .contact-action-card .contact-text {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn span {
    color: var(--default-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover i,
.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover span {
    color: var(--contrast-color);
}

.service-details .service-sidebar .contact-action-card .btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-action-card .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.service-details .service-main-content .hero-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.service-details .service-main-content .hero-section img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-details .service-main-content .hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.service-details .service-main-content .hero-section .hero-overlay .hero-badge {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.service-details .service-main-content .hero-section .hero-overlay .hero-badge i {
    font-size: 1.1rem;
}

.service-details .service-main-content .content-section {
    margin-bottom: 3rem;
}

.service-details .service-main-content .content-section h1 {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.service-details .service-main-content .content-section .content-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--default-color);
    margin-bottom: 1.5rem;
}

.service-details .service-main-content .content-section .content-intro p:last-child {
    margin-bottom: 0;
}

.service-details .service-main-content .capabilities-grid {
    margin-bottom: 4rem;
}

.service-details .service-main-content .capabilities-grid h2 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-details .service-main-content .capabilities-grid .capability-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
    transition: all 0.3s ease;
}

.service-details .service-main-content .capabilities-grid .capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-details .service-main-content .capabilities-grid .capability-card .capability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-details .service-main-content .capabilities-grid .capability-card .capability-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.service-details .service-main-content .capabilities-grid .capability-card h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-details .service-main-content .capabilities-grid .capability-card p {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.service-details .service-main-content .methodology-section h2 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.service-details .service-main-content .methodology-section .methodology-timeline {
    position: relative;
}

.service-details .service-main-content .methodology-section .methodology-timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
    color: var(--contrast-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content h4 {
    color: var(--heading-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content p {
    color: var(--default-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features li {
    color: var(--default-color);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.service-details .portfolio-showcase .showcase-header {
    margin-bottom: 2rem;
}

.service-details .portfolio-showcase .showcase-header h2 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-details .portfolio-showcase .showcase-header p {
    color: var(--default-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-details .portfolio-showcase .project-showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.service-details .portfolio-showcase .project-showcase-item .project-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

.service-details .portfolio-showcase .project-showcase-item .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info {
    text-align: center;
    color: var(--contrast-color);
    padding: 1.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn i {
    font-size: 1.2rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 20%);
    transform: scale(1.1);
}

.service-details .portfolio-showcase .project-showcase-item:hover .project-image img {
    transform: scale(1.05);
}

.service-details .portfolio-showcase .project-showcase-item:hover .project-image .project-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .service-details .service-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .service-details .service-main-content .content-section h1 {
        font-size: 2rem;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline::before {
        left: 30px;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
        padding-left: 100px;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .service-details .service-sidebar .contact-action-card .contact-methods {
        grid-template-columns: 1fr;
    }

    .service-details .service-main-content .hero-section img {
        height: 250px;
    }

    .service-details .service-main-content .hero-section .hero-overlay {
        padding: 1.5rem;
    }

    .service-details .service-main-content .capabilities-grid .row {
        --bs-gutter-y: 2rem;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline::before {
        display: none;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
        padding-left: 0;
        text-align: center;
    }

    .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
        position: relative;
        margin: 0 auto 1.5rem;
    }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .project-header {
    margin-bottom: 60px;
}

.project-details .project-header .project-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .project-header .project-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.project-details .project-header .project-banner .banner-badge {
    position: absolute;
    top: 25px;
    left: 25px;
}

.project-details .project-header .project-banner .banner-badge .status-indicator {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1e40af 30%));
    color: var(--contrast-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .project-header .project-summary {
    padding-left: 50px;
}

.project-details .project-header .project-summary .project-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.project-details .project-header .project-summary .project-tags .tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-details .project-header .project-summary .main-title {
    font-size: 2.8rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.project-details .project-header .project-summary .summary-text {
    font-size: 17px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 45px;
}

.project-details .project-header .project-summary .key-metrics .metric-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.project-details .project-header .project-summary .key-metrics .metric-row:last-child {
    margin-bottom: 0;
}

.project-details .project-header .project-summary .key-metrics .metric {
    flex: 1;
    padding: 20px;
    background: var(--surface-color);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.project-details .project-header .project-summary .key-metrics .metric .metric-title {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.project-details .project-header .project-summary .key-metrics .metric .metric-data {
    display: block;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .project-details .project-header .project-summary {
        padding-left: 0;
        margin-top: 40px;
    }

    .project-details .project-header .project-banner img {
        height: 350px;
    }

    .project-details .project-header .main-title {
        font-size: 2.2rem;
    }

    .project-details .project-header .key-metrics .metric-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .project-details .project-header .project-tags {
        flex-wrap: wrap;
    }
}

.project-details .visual-showcase {
    margin-bottom: 80px;
}

.project-details .visual-showcase .showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .visual-showcase .showcase-grid .showcase-item.large {
    grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item.tall {
    grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    padding: 30px 20px 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay .overlay-label {
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .project-details .visual-showcase .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }

    .project-details .visual-showcase .showcase-grid .showcase-item.large,
    .project-details .visual-showcase .showcase-grid .showcase-item.tall {
        grid-row: span 1;
    }
}

.project-details .detailed-breakdown {
    margin-bottom: 80px;
}

.project-details .detailed-breakdown .breakdown-content h3 {
    font-size: 1.9rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content p {
    font-size: 16px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list {
    margin-top: 40px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point:last-child {
    margin-bottom: 0;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-marker {
    width: 45px;
    height: 45px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-marker i {
    color: var(--accent-color);
    font-size: 18px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-details h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-details p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .detailed-breakdown .specifications-panel h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.project-details .detailed-breakdown .specifications-panel .spec-table {
    margin-bottom: 40px;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row:last-child {
    border-bottom: none;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row .spec-name {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
    font-size: 14px;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row .spec-detail {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 14px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header .progress-label {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header .progress-percentage {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-bar-container {
    height: 8px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 4px;
    overflow: hidden;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-bar-container .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #10b981 40%));
    border-radius: 4px;
    transition: width 0.8s ease;
}

@media (max-width: 992px) {
    .project-details .detailed-breakdown .specifications-panel {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .project-details .detailed-breakdown .specifications-panel {
        padding: 30px 25px;
    }
}

.project-details .technical-gallery .gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-details .technical-gallery .gallery-header h3 {
    font-size: 1.9rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.project-details .technical-gallery .gallery-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.project-details .technical-gallery .tech-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-details .technical-gallery .tech-item:hover {
    transform: translateY(-8px);
}

.project-details .technical-gallery .tech-item:hover .tech-caption {
    background: var(--accent-color);
}

.project-details .technical-gallery .tech-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-details .technical-gallery .tech-item .tech-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--default-color), transparent 15%);
    color: var(--contrast-color);
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .project-details .technical-gallery .tech-item {
        margin-bottom: 20px;
    }

    .project-details .technical-gallery .tech-item img {
        height: 180px;
    }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-form-container {
    background: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.quote .quote-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
    padding: 60px 40px;
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    min-height: 100%;
}

@media (max-width: 992px) {
    .quote .quote-info {
        padding: 40px 30px;
    }
}

.quote .quote-info .quote-content {
    width: 100%;
}

.quote .quote-info h3 {
    color: var(--contrast-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.quote .quote-info>p {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote .contact-items {
    margin-bottom: 30px;
}

.quote .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quote .contact-item:last-child {
    margin-bottom: 0;
}

.quote .contact-item .contact-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.quote .contact-item .contact-icon i {
    font-size: 20px;
    color: var(--contrast-color);
}

.quote .contact-item .contact-details h4 {
    color: var(--contrast-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.quote .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quote .trust-badges .trust-badge {
    display: flex;
    align-items: center;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    padding: 10px 15px;
    border-radius: 25px;
}

.quote .trust-badges .trust-badge i {
    color: var(--contrast-color);
    font-size: 16px;
    margin-right: 8px;
}

.quote .trust-badges .trust-badge span {
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 600;
}

.quote .quote-form-wrapper {
    padding: 60px 40px;
}

@media (max-width: 992px) {
    .quote .quote-form-wrapper {
        padding: 40px 30px;
    }
}

.quote .form-header {
    margin-bottom: 30px;
}

.quote .form-header h4 {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote .form-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin: 0;
}

.quote .php-email-form .form-group {
    margin-bottom: 20px;
}

.quote .php-email-form input[type=text],
.quote .php-email-form input[type=email],
.quote .php-email-form input[type=tel],
.quote .php-email-form select,
.quote .php-email-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--default-color);
    background-color: var(--surface-color);
}

.quote .php-email-form input[type=text]:focus,
.quote .php-email-form input[type=email]:focus,
.quote .php-email-form input[type=tel]:focus,
.quote .php-email-form select:focus,
.quote .php-email-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.quote .php-email-form select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
    appearance: none;
}

.quote .php-email-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quote .php-email-form button[type=submit] {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
    .quote .quote-info {
        text-align: center;
    }

    .quote .quote-info .contact-items {
        max-width: 400px;
        margin: 30px auto;
    }

    .quote .quote-info .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .quote .quote-form-container {
        border-radius: 10px;
    }

    .quote .quote-info {
        padding: 30px 20px;
    }

    .quote .quote-info h3 {
        font-size: 24px;
    }

    .quote .quote-form-wrapper {
        padding: 30px 20px;
    }

    .quote .form-header h4 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.page-title {
    transform: translate3d(0px, 0px, 0px);
    height: 400px;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
}

.contactbanner {
    background-image: url(../img/contactbanner.jpeg);
    background-size: 100%;
    background-position: center;
    /*background-position-y: 100%;*/

}

.contactbanner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*linear-gradient(to bottom, rgba(246, 166, 14, 0.4), rgba(, 0.3)),*/
    /*background-color: rgba(99, 105, 92, 0.5);*/
}

.page-title .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.page-title .breadcrumb {
    background-color: transparent;
    padding: 0;
    display: table-cell;
}

.page-title h1 {
    font-weight: 800;
    margin: 0em 0px 0px;
    color: rgb(255, 255, 255);
    background-color: #8dc63f;
    text-transform: uppercase;
    padding: 10px;
    line-height: 75px;
    font-size: 80px;
    position: relative;
    z-index: 999;
}

.contactbanner h1,
.aboutbanner h1,
.solbanner h1,
.dwcbanner h1,
.frpbanner h1,
.precastbanner h1,
.gswbanner h1,
.alliedbanner h1,
.areabanner h1,
.partnerbanner h1 {
    background-color: transparent;
    font-size: 48px;
    text-align: center;
    text-transform: capitalize;
}

.ftco-section {
    /* padding: 7em 0; */
    padding: 75px 0;
    position: relative;
}

.heading-section .subheading {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-section {
    background-image: url(../img/bg6.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.contact-section .contact-form {
    width: 100%;
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact-section .contact-form .form-control {
    /* height: 36px; */
    background: #eceff1 !important;
    color: rgb(0, 0, 0);
    font-size: 14px;
    border-radius: 5px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    padding: 10px 20px;
}

.contact-form .form-select {
    display: block;
    width: 100%;
    padding: 0.55rem 2.25rem 0.55rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #eceff1;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: none;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dbox .icon {
    width: 50px;
    height: 50px;
    /*background: rgba(0, 0, 0, 0.05);*/
    background: var(--accent-color);
    margin: 0 auto;
    margin-bottom: 20px;
}

.dbox .icon span {
    font-size: 20px;
    /*color: #fc5e28;*/
    color: var(--background-color);
}

.dbox a {
    color: var(--default-color);
}

.dbox .text {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.dbox a:hover {
    color: var(--accent-color);
    font-size: large;

}

.contact-section .primarycolor,
.primarycolor1 {
    color: #3B57A6;
}

.dbox .text span {
    display: block;
    line-height: 1.2;
    color: var(--accent-color);
}

.dbox p span {
    font-weight: 500;
    color: #000000;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    padding: 5px;
    background-color: #ffffff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

#map:hover {
    /* Hover state: Elevation 3 + Slight upward shift */
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
    /* Moves map up slightly */
}

#map iframe {
    border-radius: 15px;
}

.boxed-layout iframe,
.boxed-layout object,
.boxed-layout embed {
    display: block;
    max-width: 100%;
}


.contact .container {
    max-width: 1280px;
}

.contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact .contact-wrapper {
        grid-template-columns: 38% 62%;
        gap: 30px;
    }
}

.contact .contact-info-panel {
    background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
    color: var(--contrast-color);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
    margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

.contact .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
    .contact .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact .info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contact .info-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact .info-card .icon-container {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .info-card .icon-container i {
    font-size: 20px;
    color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--contrast-color);
}

.contact .info-card .card-content p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

.contact .social-links-panel {
    margin-top: 35px;
}

.contact .social-links-panel h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
    display: flex;
    gap: 12px;
}

.contact .social-links-panel .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--contrast-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.contact .contact-form-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .map-container {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contact .form-container p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 25px;
}

.form-container .form-floating {
    margin-bottom: 20px;
}

.form-container .form-floating .form-control {
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 24px 20px 8px 20px;
    height: calc(3.5rem + 3px);
    background-color: var(--surface-color);
    color: var(--default-color);
    transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
    background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
    color: transparent;
}

.contact .form-container .form-floating label {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
    background-color: transparent;
}

.btn-submit {
    background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #63695D 20%));
    color: var(--contrast-color);
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.input-container {
    position: relative;
}

.input-container .icon {
    position: absolute;
    /* Position the icon relative to the container */
    /* Adjust as needed */
    top: 50%;
    /* Center the icon vertically */
    transform: translateY(-50%);
    /* Adjust for vertical centering */
    pointer-events: none;
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact .contact-info-panel {
        padding: 30px 25px;
    }

    .contact .form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .contact .social-links-panel .social-icons {
        flex-wrap: wrap;
    }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
    margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
    display: inline-block;
    padding: 8px 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.terms-of-service .tos-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
    color: #dc3545;
    font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-contact {
    margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }

    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

.privacy .privacy-header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.privacy .privacy-content {
    margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
    margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 30px 0 20px;
    font-weight: 500;
}

.privacy .privacy-content .content-section p {
    margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.privacy .privacy-contact {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-contact p {
    margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
    margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
    color: var(--heading-color);
    font-weight: 600;
}

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }

    .privacy .privacy-header {
        text-align: left;
        border-bottom: 1pt solid #000;
        padding-bottom: 20pt;
        margin-bottom: 30pt;
    }

    .privacy h1 {
        font-size: 24pt;
    }

    .privacy h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }

    .privacy h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }

    .privacy p,
    .privacy ul {
        page-break-inside: avoid;
    }

    .privacy .contact-details {
        border: 1pt solid #000;
        padding: 15pt;
    }
}

@media (max-width: 767px) {
    .privacy .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .privacy .privacy-header .header-content h1 {
        font-size: 2.2rem;
    }

    .privacy .privacy-header .header-content .intro-text {
        font-size: 1.1rem;
    }

    .privacy .privacy-content .content-section {
        margin-bottom: 40px;
    }

    .privacy .privacy-content .content-section h2 {
        font-size: 1.6rem;
    }

    .privacy .privacy-content .content-section h3 {
        font-size: 1.3rem;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .error-404 .search-box {
        margin: 0 20px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.videosection {
    background-image: url(../img/bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.video-container {
    width: 80%;
    height: 400px;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.video-container .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

.popup-border {
    background: #302a2a;
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    font-size: 43px;
    right: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgb(21 21 21 / 30%);
}

.playicon {
    margin-left: 7px;
    font-size: 40px;
}

.popup-border:hover {
    color: var(--accent-color);
}

.pagebox {
    padding: 60px;
}

.aboutpage.nav-pills .nav-link.active {
    color: #fff !important;
}

.aboutpage.nav-pills .nav-link i {
    color: var(--accent-color);
}

.boximg {
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    border: 5px solid #fff;
}

.abouttext {
    margin: 30px auto;
    text-align: justify;
}

.aboutpage .nav-link {
    color: var(--default-color);
}

.aboutpage.nav-pills .nav-link.active {
    background-color: var(--heading-color);
}

.spantext {
    font-size: 80%;
    font-family: 'Neris semibold';
}

.main-card {
    background: linear-gradient(to bottom, #63695dd9, #4b5045);
    color: #fff;
    border-radius: 40px;
    padding: 40px;
    /*max-width: 600px;*/
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.section-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.section-container:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.9);
}

.side-bar {
    width: 80px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.side-bar i {
    font-size: 2.5rem;
    color: #fff;
}

.bg-orange {
    background-color: #f39200;
}

.bg-blue {
    background-color: #00aeef;
}

.bg-green {
    background-color: #39b54a;
}

.content h3 {
    font-size: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--background-color);
}

.content h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.content p,
.content li {
    font-size: 0.9rem;
    line-height: 1.4;
    /*color: #e0e0e0;*/
}

.manufactsection .content p {
    letter-spacing: 1px;
    font-family: 'Neris Light Italic';
    font-size: inherit;
}
.values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.values-list li {
    margin-bottom: 5px;
}

#chartdiv {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    padding: 15px 10px;
}

.innermain .container {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.innermain .card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333333;
    border-radius: 2px;
    height: 300px;
}

.innermain .card-image {
    background: #ffffff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.innermain .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
    pointer-events: none;
}

.card-image:hover .overlay {
    display: block;
    background: rgba(0, 0, 0, .8);
}

.cardbutton {
    position: absolute;
    font-size: 24px;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    margin: auto;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;

    /*background-color: #ffffff;*/
    color: var(--background-color);
}

.card-image:hover .cardbutton {
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    .innermain .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

.secondarycolor {
    color: var(--accent-color);
}

.titleline {
    font-weight: 300;
    color: var(--accent-color);
    margin-top: 10px;
    position: relative;
    
}

.titleline:after {
content: '';
    /* Required for pseudo-elements */
    position: absolute;
    width: 10%;
    /* Adjust the width as desired (e.g., in px, %, or em) */
    height: 4px;
    /* Adjust the thickness */
    background-color: var(--heading-color);
    /* Adjust the color */
    bottom: -20px;
    /* Adjust the distance from the text */
    left: 0;
    right: 0;
    margin: auto;

}

.subproduct {
    transition: transform .2s;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
}

.subproduct:hover img {
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    z-index: 99999
}

.boxtitleli {
    font-weight: 300;
    font-size: 24px;
       /*border-left: 5px solid var(--accent-color);
    padding-left: 15px;*/
}

.productoverview {
    line-height: 30px;
}

.boxsubtitle {
    font-weight: 300;
    font-size: 20px;
    color: var(--accent-color);
}


.productoverview ul li {
    margin-top: 1rem;
}

/* Custom Owl Nav Arrows */
.owl-nav button {
    position: absolute;
    top: 40%;
    font-size: 3rem !important;
    color: #333 !important;
    background: none !important;
}

.owl-nav .owl-prev {
    left: -50px;
}

.owl-nav .owl-next {
    right: -50px;
}

/* Mobile-first approach */
/* Smooth scrolling if user doesn't have a preference due to motion sensitivities */
/*@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }*/
}

.section-gallery {
    padding: 16px 20px;
    text-align: center;
}

.gallery-heading {
    color: #00d6c8;
    font: 1.8em "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.15;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .5rem;
    padding-top: 1rem;
}

.gallery-heading::after {
    content: "";
    background-color: currentColor;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 100px;
}

.gallery-grid {
    /*   background: #283048; */
    /*   background: linear-gradient(to right, #355460, #283048); */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    grid-auto-rows: minmax(200px, -webkit-max-content);
    grid-auto-rows: minmax(200px, max-content);
    grid-auto-flow: dense;
    gap: 10px;
    margin-top: 40px;
}

/* 2020-09-20 - Staggered intro animation adapted from https://youtu.be/705XCEruZFs?t=460 */
@-webkit-keyframes gallery-items-animation {
    from {
        opacity: 0;
        transform: scale(0.3);
        -webkit-filter: hue-rotate(180deg);
        filter: hue-rotate(180deg);
    }

    to {
        opacity: 1;
        transform: scale(1);
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }
}

@keyframes gallery-items-animation {
    from {
        opacity: 0;
        transform: scale(0.3);
        -webkit-filter: hue-rotate(180deg);
        filter: hue-rotate(180deg);
    }

    to {
        opacity: 1;
        transform: scale(1);
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }
}

/* 2020-09-20 */
.gallery-item {
    -webkit-animation: gallery-items-animation 800ms ease-out;
    animation: gallery-items-animation 800ms ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* --staggered-delay will be incremented for each item by JS on DOMContentLoaded */
    --staggered-delay: 100ms;
    -webkit-animation-delay: var(--staggered-delay);
    animation-delay: var(--staggered-delay);
    height: 300px;
}
.frpitem {
    height: 320px;
}
.gallery-item img {
    border: 0;
    display: block;
    /* collapse top and bottom margins */
    cursor: pointer;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.frpitem img {
    object-fit: contain;
}
.objcov {
    object-fit: cover !important;
}
.gallery-item-text {
    display: none;
}

.pim {
    height: 100%;
}

/* The pointer CSS media feature tests whether the user has an accurate pointing device (such as a mouse, a stylus pen on touch screen, etc.). It's also possible to use "any-pointer: fine" for touch devices having a mouse connected. */
@media screen and (pointer: fine) {
    .gallery-item img {
        transition: all 0.3s linear;
    }

    /*.gallery-item img:hover*/
    .gallery-item img:focus {
        filter: brightness(0.75);
        transform: scale(0.98);
    }
}

/*******************************
       .lightbox styles
*******************************/
.lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: 10;
}

/* .preload will be removed by JS code during DOMContentLoaded event. This is done to avoid lightbox transition appearing on page load. */
.lightbox.preload {
    transition: none !important;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox .lb-content {
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1em;
    max-height: 90%;
    padding: 1rem;
    position: relative;
}

.lightbox .lb-img {
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    width: 50%;
    height: 350px;
    margin: auto;
}

.lightbox .lb-caption {
    color: #333;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    max-width: 400px;
    overflow-y: auto;
    /* may occur in smartphones */
    opacity: 0;
    transition: opacity 0.3s;
    line-height: 30px;
    margin: auto;
}

.gswpipesection .lightbox .lb-caption {
    max-width: 500px;
}

.lightbox.open .lb-caption {
    opacity: 1;
}

.lightbox .lb-url {
    color: #005fa9;
    text-decoration: underline;
    text-underline-position: under;
    padding-top: 8px;
    padding-bottom: 14px;
}

.lightbox .close {
    background-color: lightgray;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    display: inline-block;
    font-size: clamp(1.4em, 4vw, 2em);
    line-height: 1em;
    text-align: center;
    position: absolute;
    top: -0.4em;
    right: -0.4em;
    width: 1em;
    height: 1em;
    border-radius: 50%;
}

/* Lightbox overlay */
.lightbox .close::before {
    background-color: rgba(0, 0, 0, 0.9);
    content: "";
    cursor: default;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/**********************************
          Media queries
 **********************************/

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) {
    .lightbox .lb-caption {
        font-size: 1rem;
    }
}

/* Large devices (laptops/desktops, 1024px and up) */
@media screen and (min-width: 1024px) {
    .lightbox .lb-content {
        flex-direction: row;
    }

    .lightbox .lb-img {
        margin-bottom: 0;
    }

    .lightbox .lb-caption {
        padding: 0 1.5em;
    }

    .lightbox .lb-url {
        padding-top: 0;
    }
}

/*.pim::before {
    position: absolute;
    content: "";
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 0;
    bottom: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background-color: transparent;
    background-image: linear-gradient(164deg, #0870ab 0%, rgba(2, 59, 74, 0) 100%);
    background-image: linear-gradient(164deg, #f6a60e 0%, rgba(246, 166, 14, 0.25) 100%);
    background-image: linear-gradient(164deg, #63695d 0%, rgba(99, 105, 93, 0) 100%);
    background-image: linear-gradient(164deg, #f6a60e 0%, #f6a60e 50%, #63695d 100%);
    background-image: radial-gradient(circle, #f6a60e 0%, rgba(99, 105, 93, 0) 100%);
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}*/

.pim:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    height: 100%;
}

.main-section {
    background-image: url('../img/bg6.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}



.main-section h3 {
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: #fff;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: var(--heading-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

/* Specific Column Styles */
.dwc-header {
    color: var(--accent-color) !important;
}

.upvc-header {
    color: #fdfe30 !important;
}

.feature-col {
    font-weight: bold;
    background-color: #f9f9f9;
    width: 200px;
}
.w-350 {
    width: 350px;
}

/* Status Tags */
.status {
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
}

.status-exc {
    background: #d4edda;
    color: #155724;
}

.status-mod {
    background: #fff3cd;
    color: #856404;
}

.status-poor {
    background: #f8d7da;
    color: #721c24;
}

tr:nth-child(even) {
    background-color: #fcfcfc;
}

tr:hover {
    background-color: #f1f4f6;
}

.headtext1 {
    position: relative;

}

.headtext1::after {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    width: 5%;
    /* Adjust the width as desired (e.g., in px, %, or em) */
    height: 4px;
    /* Adjust the thickness */
    background-color: var(--accent-color);
    /* Adjust the color */
    bottom: -20px;
    /* Adjust the distance from the text */
    left: 0;
    right: 0;
    margin: auto
    /* Align to the left (or 50% with transform: translateX(-50%) for center alignment) */
}
.headtext {
    position: relative;
    /* Required for absolute positioning of the pseudo-element */
    display: inline-block;
}

.headtext::after {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    width: 30%;
    /* Adjust the width as desired (e.g., in px, %, or em) */
    height: 4px;
    /* Adjust the thickness */
    background-color: var(--accent-color);
    /* Adjust the color */
    bottom: -20px;
    /* Adjust the distance from the text */
    left: 0;
    /* Align to the left (or 50% with transform: translateX(-50%) for center alignment) */
}

.headtext2 {
    position: relative;

}

.headtext2::after {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    width: 45%;
    /* Adjust the width as desired (e.g., in px, %, or em) */
    height: 4px;
    /* Adjust the thickness */
    background-color: var(--accent-color);
    /* Adjust the color */
    bottom: -20px;
    /* Adjust the distance from the text */
    left: 0;
    right: 0;
    margin: auto
    /* Align to the left (or 50% with transform: translateX(-50%) for center alignment) */
}

.product-showcase .owl-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 5px rgba(0,0,0,0.1), 0 4px 4px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
/*  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
  box-shadow: 0 0 5px rgba(0,0,0,0.1), 0 0 20px rgba(0,0,0,0.05);*/
  margin-bottom: 30px;
}
.frp-showcase .owl-item {
    background-color: #ffffff;
}
.productshowcasesec {
  background-image: url('../img/bg5.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.poverlay {

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0; /* Hidden by default */
  transition: .5s ease; /* Smooth transition */
  background-color: rgba(0, 0, 0, 0.7); /* Add a background color overlay */
  color: white;
  display: flex; /* Helps center content */
  flex-direction: column; /* Stacks icon and text vertically */
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  text-align: center;
      -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;

}
.pim:hover .poverlay {
  opacity: 1; /* Visible on hover */
}

.poverlay .text {
  font-size: 22px;
  font-family: 'Neris SemiBold';
}
.poverlay i {
  font-size: 40px;
  color: var(--accent-color);
}
.poverlay i:hover {
transform: scale(1.3);
}
b {
  font-family: 'Neris Black';
}


 /* Card Styling */

        
  


       .applications-section  .section-title {
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1px;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 0px;
            position: relative;
        }
               .applications-section  .section-title:after {
   content: '';
    /* Required for pseudo-elements */
    position: absolute;
    width: 5%;
    /* Adjust the width as desired (e.g., in px, %, or em) */
    height: 4px;
    /* Adjust the thickness */
    background-color: var(--accent-color);
    /* Adjust the color */
    bottom: -20px;
    /* Adjust the distance from the text */
    left: 0;
    right: 0;
    margin: auto
               }

        .applications-section .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 50px;
    
        }

        /* Card Styling */
        .app-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
        }

        .app-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .card-img-wrapper {
            position: relative;
            height: 200px;
            /*overflow: hidden;*/
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Floating Icon */
        .icon-badge {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 55px;
            height: 55px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            font-size: 1.5rem;
            color: #1a2a40;
            border: 2px solid #f8f9fa;
        }

        .applications-section .card-body {
            padding: 40px 20px 25px;
            text-align: center;
        }

        .applications-section .card-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #1a2a40;
            text-transform: uppercase;
        }

        .applications-section .card-text {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

.mapdiv {
  height: 600px;
  width: 100%;
  text-align: center;
}



        /* Section Styling */
        .table-section { 
            background: white; 
            border-radius: 15px; 
            padding: 30px; 
            box-shadow: 0 8px 24px rgba(0,0,0,0.08); 
            margin-bottom: 3rem; 
            border-top: 4px solid var(--primary-navy);
        }
     /* Image Styling */
        .product-card {
            background: #fff;
            border: 2px solid #eee;
            border-radius: 12px;
            padding: 10px;
            transition: 0.3s;
        }
        .product-card:hover { border-color: var(--accent-gold); transform: translateY(-5px); }
        .product-img { border-radius: 8px; filter: grayscale(20%); transition: 0.3s; height:200px }
        .product-img:hover { filter: grayscale(0%); }

        /* Grade Labels */
        .grade-ld { color: var(--ld-color); font-weight: bold; }
        .grade-md { color: var(--md-color); font-weight: bold; }
        .grade-hd { color: var(--hd-color); font-weight: bold; }
        .grade-ehd { color: var(--ehd-color); font-weight: bold; }
        .grade-sehd { color: var(--sehd-color); font-weight: bold; }

        /* Table Design */
        .table thead { background-color: var(--primary-navy); color: white; }
        .table-hover tbody tr:hover { background-color: rgba(255, 193, 7, 0.05); }

        .step-box {
            border: none;
            background: #ffffff;
            border-left: 4px solid var(--accent-gold);
            transition: 0.3s;
        }
        .step-box:hover { background: var(--primary-navy); color: white; }

        .custombtn {
            font-size: 14px;
            letter-spacing: 1px;
        }
        .customtable {
            min-width: 100%;
        }
        .customtable .feature-col {
            width: 300px;
        }

        /*precast*/
        .spec-card { border-left: 5px solid #0d6efd; margin-bottom: 2rem; transition: transform 0.2s; }
        .spec-card:hover { transform: translateY(-5px); }
        .table-responsive { border-radius: 8px; overflow: hidden; }

        /*group of company*/
/*.grad-blue-vibrant   { background: linear-gradient(135deg, #0900ff  0%, #60efff 100%); }
.grad-dark-vibrant   { background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%); }
.grad-green-vibrant  { background: linear-gradient(135deg, #0bab64 0%, #3bb78f 100%); }
.grad-orange-vibrant { background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%); }
.grad-purple-vibrant { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.grad-red-vibrant    { background: linear-gradient(135deg, #e52d27 0%, #b31217 100%); }*/
.grad-blue-vibrant {
    background: linear-gradient(182deg, #100e41 0%, #3acede 100%);
}
.grad-dark-vibrant {
    background: linear-gradient(183deg, #1f2a34 0%, #4ca1af 100%);
}
.grad-green-vibrant {
    background: linear-gradient(180deg, #0f5335 0%, #3bb78f 100%);
}
.grad-orange-vibrant {
    background: linear-gradient(180deg, #413d3b 0%, #090808 100%);
}
.grad-purple-vibrant {
    background: linear-gradient(180deg, #491a7c 0%, #769cdd 100%);
}
.grad-red-vibrant {
    background: linear-gradient(180deg, #0e214e 0%, #243a5e 100%);
}

.company-card {
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect: Scale & Lift */
.company-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

/* Icon Micro-Animation */
.icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  transition: transform 0.5s ease;
}

.company-card:hover .icon-circle {
  transform: rotate(360deg); /* Icon spins once on hover */
}

.btn-light {
  transition: background 0.3s, color 0.3s;
}

.company-card:hover .btn-light {
  background-color: #000;
  color: #fff !important;
}

/*Manufacture*/
.gradient-text {
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Number styling */
.num-index {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #dee2e6;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

/* Minimalist hover effect (line expansion) */
.about-ssv {
  background-color: #ffffff;
}

.manu .product-row {
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}

.manu .product-row:hover .num-index {
  color: var(--accent-color);
}

.manu .product-row::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  height: 0%;
  width: 3px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.manu .product-row:hover::before {
  height: 60%;
}

/* 2. THE BENTO CARD */
        .bento-card {
            background: white;
            border: 1px solid #d4d558;
            border-radius: 24px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        /* Subtle Glow Effect on Hover */
        .bento-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 40px -15px rgba(247, 167, 14, 0.45);
        }

        /* 3. FLOATING ICON CONTAINER */
        .floating-icon {
            width: 70px;
            height: 70px;
            background: var(--heading-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.5s ease;
        }

        .bento-card:hover .floating-icon {
            background: var(--brand-blue);
            transform: rotate(-10deg) scale(1.1);
        }

        /* Color tint for images inside the floating box */
        .img-tint {
            height: 35px;
            filter: invert(48%) sepia(93%) saturate(1518%) hue-rotate(174deg) brightness(96%) contrast(94%);
            transition: all 0.5s ease;
        }

        .bento-card:hover .img-tint {
            filter: brightness(0) invert(1); /* Turns icon white on hover */
        }

        /* 4. TYPOGRAPHY */
        .product-title {
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            letter-spacing: -0.025em;
        }

        .product-desc {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }