/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --first-color: #f09e0f;
    --second-color: #f1f5f9;
    --third-color: #ffffff;
    --text-color: #1e293b;
    --button-color: #f09e0f;
    --button-text: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme='dark'] {
    --first-color: #f09e0f;
    --second-color: #1e293b;
    --third-color: #374151;
    --text-color: #ffffff;
    --button-color: #f09e0f;
    --button-text: #1e293b;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--third-color);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.container-header {
    width: 100%;
}

.container-content {
    width: 100%;
    padding: 30px 0;
}

.container-footer {
    width: 100%;
    padding: 15px;
}

.btn {
    display: inline-block;
    background: var(--button-color);
    color: var(--button-text);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid var(--button-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: var(--button-color);
}

.btn-catalog {
    display: inline-block;
    background: var(--button-color);
    color: var(--button-text);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--button-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-catalog:hover {
    background: transparent;
    color: var(--button-color);
}

.product-card-btn {
    margin-top: auto;
    display: inline-block;
    width: fit-content;
}

.btn-submit {
    width: 100%;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    display: block;
}

.btn-wrap {
    margin-top: auto;
}

/* ========================================
   HEADER STYLES
   ======================================== */
/* Header Right Content Wrapper */
/* Header Right Content Wrapper */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

/* Header Top Info (Was Top Bar) */
.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    opacity: 0.9;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    transition: var(--transition);
}

/* Individual Brand Colors */
.top-bar-social a[aria-label="Facebook"],
.mobile-social-container a[aria-label="Facebook"] {
    color: #1877F2;
}

.top-bar-social a[aria-label="Instagram"],
.mobile-social-container a[aria-label="Instagram"] {
    color: #E4405F;
}

.top-bar-social a[aria-label="YouTube"],
.mobile-social-container a[aria-label="YouTube"] {
    color: #CD201F;
}

.top-bar-social a[aria-label="LinkedIn"],
.mobile-social-container a[aria-label="LinkedIn"] {
    color: #0077B5;
}

.top-bar-social a:hover,
.mobile-social-container a:hover {
    opacity: 0.8;
}

.top-bar-text {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
    text-transform: uppercase;
}

.top-bar-divider {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
}

.top-bar-theme {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.top-bar-theme:hover {
    color: var(--first-color);
}

.top-bar-theme i {
    font-size: 14px;
}

#theme-label {
    font-weight: 700;
    min-width: 40px;
}

/* Header / Navigation */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    border-bottom: 1px solid var(--second-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

header.header-scrolled {
    padding: 8px 0;
    background: rgba(241, 245, 249, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme='dark'] header.header-scrolled {
    background: rgba(30, 41, 59, 0.30);
}

[data-theme='dark'] header {
    background: rgba(0, 0, 0, 0.30);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styles */
.header-logo img {
    height: 80px;
    width: auto;
}

.header-logo .header-logo-dark {
    display: none;
}

[data-theme='dark'] .header-logo .header-logo-light {
    display: none;
}

[data-theme='dark'] .header-logo .header-logo-dark {
    display: block;
}

/* Main Navigation */
.menu-nav ul {
    display: flex;
    align-items: center;
}

.menu-nav li {
    margin-left: 20px;
}

.menu-nav a {
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
}

.menu-nav a:hover,
.menu-nav a.active {
    color: var(--first-color);
    border-bottom-color: var(--first-color);
    text-decoration: none;
}

/* Dropdown Menu Styles */
.menu-nav li.menu-submenu {
    position: relative;
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--third-color);
    border: 1px solid var(--first-color);
    border-radius: 12px;
    min-width: 250px;
    padding: 10px;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: block;
    flex-direction: column;
}

.menu-dropdown::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
}

.menu-dropdown li {
    display: block;
    width: 100%;
}

.menu-submenu:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown a {
    display: block;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: none;
    border-bottom: none;
    transition: var(--transition);
    text-align: left;
    white-space: nowrap;
}

.menu-dropdown a:hover {
    background: var(--third-color);
    color: var(--first-color);
    padding-left: 0;
}

/* Dropdown Header Styling */
.dropdown-header {
    margin-top: 15px;
    margin-bottom: 5px;
}

.dropdown-header:first-child {
    margin-top: 0;
}

.dropdown-header a {
    font-weight: 700 !important;
    color: var(--first-color) !important;
    border-bottom: 2px solid var(--first-color) !important;
    padding-bottom: 5px !important;
    margin-bottom: 5px !important;
    margin-right: 20px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    pointer-events: auto;
}

/* Nested Dropdown for Desktop */
@media (min-width: 769px) {
    .menu-dropdown .menu-submenu {
        position: relative;
    }

    .menu-dropdown .menu-submenu>.menu-dropdown {
        top: 0;
        left: 100%;
        margin-top: -10px;
        display: none;
        /* Hide default */
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
    }

    .menu-dropdown .menu-submenu:hover>.menu-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Arrow for nested submenu parent */
    .menu-dropdown .menu-submenu>a::after {
        content: '\f105';
        /* fa-angle-right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* ========================================
   MIDDLE / MAIN CONTENT STYLES
   ======================================== */
/* Hero Slider */
.slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: var(--light-grey);
    margin-top: -10px;
    padding-top: 10px;
    margin-bottom: 50px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.slider-partleft {
    width: 30%;
    padding-right: 10px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    transform: translateX(-120vw);
    opacity: 0;
    transition: 0.84s cubic-bezier(.25, .8, .25, 1);
}

.slider-partleft h1 {
    font-size: 35px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.slider-partleft h2 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--first-color);
}

.slider-partright {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transform: translateX(120vw);
    opacity: 0;
    transition: 0.96s cubic-bezier(.25, .8, .25, 1);
}

.slider-partright img {
    max-height: 92%;
    max-width: 100%;
    object-fit: contain;
}

.slide.show-image .slider-partright {
    transform: translateX(0);
    opacity: 1;
}

.slide.show-text .slider-partleft {
    transform: translateX(0);
    opacity: 1;
}

.slide.hide-all .slider-partright,
.slide.hide-all .slider-partleft {
    opacity: 0;
    transition: 0.48s ease;
}

/* Page Title Section */
.page-info {
    padding: 20px;
    background: var(--third-color);
    text-align: center;
}

.page-info h1,
.page-info .page-title {
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    text-align: left;
}

.page-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

.effective-date {
    text-decoration: underline;
    font-weight: 700;
}

.title {
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

.title h1 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.page-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    text-align: left;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Section Info */
.section-info {
    background: var(--third-color);
    margin: 20px 15px;
}

/* Section Titles */
.section-title {
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Product Section Offset for Sticky Header */
.product-section {
    scroll-margin-top: 130px;
}

.product-info {
    font-size: 1.5rem;
    margin: 25px 15px;
    color: var(--first-color);
    text-transform: uppercase;
    border-bottom: 2px solid var(--first-color);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Features Section */
.feature {
    padding: 20px;
    background: var(--white);
}

/* Add margin when features section follows products section */
.product-preview+.feature {
    margin-top: 30px;
}

.feature h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Stack Text Styles */
.mobile-stack-text span {
    display: inline-block;
}

/* Add separator for desktop */
@media (min-width: 769px) {
    .mobile-stack-text span:not(:last-child)::after {
        content: " – ";
        margin: 0 10px;
        color: var(--text-color);
    }
}

@media (max-width: 768px) {
    .mobile-stack-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 1.8rem;
        /* Slightly smaller on mobile */
    }

    .mobile-stack-text span {
        display: block;
    }
}

/* Feature Grids - Common Properties */
.feature-grid {
    display: grid;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 15px 0;
    gap: 30px;
}

@media (min-width: 992px) {

    /* If exactly 4 items */
    .feature-grid:has(> :nth-child(4):last-child) {
        grid-template-columns: repeat(4, 1fr);
    }

    /* If exactly 5 items */
    .feature-grid:has(> :nth-child(5):last-child) {
        grid-template-columns: repeat(5, 1fr);
    }

    /* If exactly 8 items */
    .feature-grid:has(> :nth-child(8):last-child) {
        grid-template-columns: repeat(4, 1fr);
        /* 2 rows of 4 */
    }
}

/* Feature Items */
.feature-item {
    padding: 30px 20px;
    border-radius: 20px;
    background: var(--second-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: var(--first-color);
}

.feature-item i {
    font-size: 3rem;
    color: var(--first-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    width: 1em;
    height: 1em;
}

.feature-item:hover i {
    color: var(--second-color);
    transform: scale(1.1);
}

.feature-item h3 {
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--second-color);
}

.feature-item p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-item:hover p {
    color: var(--second-color);
    opacity: 1;
}

/* Products Preview */
.product-preview {
    background: var(--light-grey);
    padding: 50px 0;
    text-align: center;
    margin-top: 30px;
}

.products-preview h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Product Grid & Cards (Flexible Column Layout) */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px;
}

.product-card {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--second-color);
    display: flex;
    flex-direction: column;
    /* Vertical column */
    transition: var(--transition);
    height: auto;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    color: var(--first-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    text-align: left;
}

.product-desc {
    padding: 0;
    color: var(--text-color);
    font-size: 1rem;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.6;
}

/* Mobile Menu Series Divider */
@media (max-width: 768px) {
    .menu-dropdown .menu-submenu>a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Stack header elements vertically */
    header .container {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
    }

    /* Center the logo */
    .header-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header-logo img {
        height: 60px;
        /* Slightly smaller on mobile */
    }

    /* Mobile Client Header Layout */
    .header-container {
        flex-direction: column;
        align-items: center;
        /* Center everything */
        gap: 15px;
        width: 100%;
    }

    .header-info {
        display: none;
    }

    /* Mobile Header Icons Group */
    .header-mobile-group {
        display: flex !important;
        flex-direction: column;
        /* Stack Make In India and Social Row */
        align-items: center;
        gap: 10px;
        order: 1;
        /* Ensure before menu toggle if needed */
        margin-top: 0;
    }

    .mobile-make-india {
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--text-color);
        text-transform: uppercase;
        font-size: 14px;
        text-align: center;
    }

    .mobile-social-container {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .header-mobile-group a,
    .header-mobile-group button {
        font-size: 1.2rem;
        transition: var(--transition);
    }

    /* Reset button styles for theme toggle and ensure it behaves like an icon */
    .header-mobile-group button {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: var(--text-color);
        /* Default theme icon color */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-mobile-group button:hover {
        color: var(--first-color);
        /* Hover color for theme icon */
    }

    /* Ensure toggle is below or positioned correctly */
    .header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
        /* Center the toggle button at the bottom */
    }
}


/* Responsive Product Cards */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
    }

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

    .product-card:hover {
        transform: translateY(-5px);
    }
}

/* Sidebar Navigation Styles */
.product-sidebar {
    width: 200px;
    background: var(--third-color);
    border: 1px solid var(--first-color);
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 100px;
    transition: var(--transition);
    height: fit-content;
}

.sidebar-category {
    margin-bottom: 10px;
}

.sidebar-category:last-child {
    margin-bottom: 0;
}

.sidebar-category h3 {
    font-size: 18px;
    color: var(--first-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--first-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.sidebar-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-category a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.sidebar-category a:hover {
    color: var(--first-color);
    border-bottom-color: var(--first-color);
    transform: translateX(5px);
}

.sidebar-category a.active {
    color: var(--first-color);
    font-weight: 700;
    border-bottom-color: var(--first-color);
}

.content-with-sidebar {
    display: block;
    width: 100%;
}

.product-main-content {
    flex: 1;
}

/* Contact Page Styles */
.contact-header {
    margin-bottom: 10px;
}

.contact-header .section-title {
    margin-bottom: 10px;
    text-align: left;
}

.contact-header p {
    font-size: 16px;
    opacity: 0.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin: 15px;
}

.contact-containermap {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--third-color);
    text-align: left;
}

ul.contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

ul.contact-info li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
}

ul.contact-info strong {
    color: var(--first-color);
}

ul.contact-info a {
    color: var(--text-color);
    transition: var(--transition);
}

ul.contact-info a:hover {
    color: var(--first-color);
    text-decoration: none;
}

.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--second-color);
    margin-top: 20px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Contact Form Styles */
.contact-containerform {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--third-color);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-tip {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
    font-style: italic;
}

.contact-required {
    margin-bottom: 10px;
}

.contact-required label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.contact-required label::after {
    content: " *";
    color: #ff4d4d;
}

.contact-name,
.contact-mail,
.contact-tel,
.contact-message {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--second-color);
    background: var(--second-color);
    color: var(--text-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-name:focus,
.contact-mail:focus,
.contact-tel:focus,
.contact-message:focus {
    outline: none;
}

.contact-message {
    min-height: 150px;
    resize: vertical;
}

/* Utility Classes for Product Pages */
.section-padding {
    padding: 60px 0;
}

.row-align-start {
    align-items: flex-start;
    margin-top: 0;
}


.product-overview-title {
    color: var(--first-color);
    margin-bottom: 20px;
}

.product-desc {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
footer {
    background: var(--second-color);
    color: var(--text-color);
    padding: 30px 0;
    font-size: 14px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section: Apps Stacked */
.footer-apps-stacked {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-app-item {
    display: flex;
    flex-direction: column;
}

.footer-app-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-app-meta i {
    font-size: 20px;
}

.footer-app-btn-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.footer-app-btn-img:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Right Section: Info & Navigation */
.footer-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 1;
}

.footer-nav-horizontal {
    margin-bottom: 30px;
}

.footer-nav-horizontal ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-nav-horizontal a {
    font-weight: 700;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    padding-bottom: 4px;
    border-bottom: 3px solid transparent;
}

.footer-nav-horizontal a:hover {
    color: var(--first-color);
    border-bottom-color: var(--first-color);
    text-decoration: none;
}

.footer-company-details h3 {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-company-details p {
    margin-bottom: 5px;
    opacity: 0.9;
    line-height: 1.4;
}

.footer-company-details a:hover {
    color: var(--first-color);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: flex-start;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--first-color);
    color: var(--button-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--text-color);
    color: var(--first-color);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: right;
    padding-top: 10px;
    opacity: 0.5;
    font-size: 14px;
    width: 100%;
}

/* ========================================
   SALES OFFICE CARDS
   ======================================== */
.sales-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 15px 0;
}

.sales-card {
    background: var(--second-color);
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sales-card:hover {
    transform: translateY(-5px);
}

.sales-region {
    color: var(--first-color);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--first-color);
    text-align: center;
    letter-spacing: 1px;
}

.sales-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sales-location {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sales-location strong {
    color: var(--text-color);
}

.sales-details p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sales-details i {
    color: var(--white-color);
    font-size: 14px;
    margin-top: 3px;
    min-width: 16px;
}

.sales-person strong {
    color: var(--text-color);
    font-weight: 600;
}

.sales-email,
.sales-mobile {
    word-break: break-all;
}

.sales-mobile a:hover {
    color: var(--first-color);
}

.sales-address {
    margin-top: 5px;
    line-height: 1.5;
}

/* ========================================
   INFORMATIONAL PAGE STYLES
   ======================================== */
.section-intro {
    margin-bottom: 60px;
}

.section-intro h2 {
    color: var(--first-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-article blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--first-color);
    padding-left: 20px;
    margin: 30px 0;
    color: var(--text-color);
    opacity: 0.9;
}

.feature-item i+p {
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    margin-bottom: 0;
}

.feature-item:hover i+p {
    color: var(--second-color);
    opacity: 1;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ========================================
   HISTORY PAGE STYLES (Simple List)
   ======================================== */
.history-year {
    color: var(--first-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
    border-bottom: 3px solid var(--first-color);
    width: fit-content;
}

/* ========================================
   VIDEO PAGE STYLES
   ======================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 15px;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-card {
    background: var(--second-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--first-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.video-info p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.video-action {
    text-align: center;
}

.video-action .btn-youtube {
    background: #FF0000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-action .btn-youtube:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.video-action .btn-youtube i {
    font-size: 1.2em;
}

.video-action p {
    margin: 8px 0 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 992px) {
    .content-with-sidebar {
        flex-direction: column;
    }

    .product-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px) {

    /* Header Structure Changes */
    header .container {
        flex-direction: column;
        align-items: center;
        padding-bottom: 10px;
    }

    .header-logo {
        margin-bottom: 10px;
        order: 1;
        text-align: center;
    }

    .header-logo img {
        height: 60px;
        margin: 0 auto;
    }

    .header-container {
        width: 100%;
        align-items: center;
        order: 2;
    }

    .header-info {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
        font-size: 12px;
        align-items: center;
        width: 100%;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-social {
        margin-top: 5px;
        gap: 20px;
    }

    .top-bar-social a {
        font-size: 16px;
    }

    .top-bar-theme {
        margin-top: 5px;
        justify-content: center;
    }

    /* Hamburger Menu Position (Left) */
    .header-actions {
        position: static;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 25px;
        /* Aligned with logo area */
        font-size: 24px;
        color: var(--text-color);
        z-index: 1001;
        cursor: pointer;
    }

    /* Side Drawer Menu */
    .menu-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--third-color);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1002;
        padding-top: 60px;
        overflow-y: auto;
        flex-direction: column;
    }

    .menu-nav.active {
        left: 0;
    }

    .menu-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        width: 100%;
        background: transparent;
    }

    .menu-nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--second-color);
        text-align: left;
    }

    .menu-nav a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
        border-bottom: none;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-nav a.active {
        background: var(--second-color);
        color: var(--first-color);
        padding-left: 25px;
    }

    .menu-nav a:hover {
        background: transparent;
        color: var(--text-color);
        padding-left: 20px;
    }

    /* Remove Dropdown Menu Hover Effect */
    .menu-dropdown a:hover {
        background: transparent;
        color: var(--text-color);
        padding-left: 40px;
    }

    /* Nested Menu Indentation for Mobile */
    .menu-dropdown .menu-dropdown a {
        padding-left: 60px;
        /* 40px + 20px */
    }

    .menu-dropdown .menu-dropdown a:hover {
        padding-left: 60px;
    }

    /* Submenus in Drawer */
    .menu-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px;
        display: none;
        /* Let JS or CSS toggle, but default hidden to avoid clutter */
        min-width: unset;
        width: 100%;
        background: var(--second-color);
        margin-top: 0;
    }

    /* Dropdown Toggle Logic */
    .menu-dropdown {
        display: none !important;
        /* Hide by default */
    }

    .menu-submenu.open .menu-dropdown {
        display: block !important;
    }

    /* Remove hover/focus effects opening menus on mobile */
    .menu-submenu:hover .menu-dropdown,
    .menu-submenu:focus-within .menu-dropdown {
        display: none;
    }

    .menu-submenu.open:hover .menu-dropdown {
        display: block !important;
    }

    /* Add arrow */
    .menu-submenu>a::after {
        content: '\f107';
        /* fa-angle-down */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        float: right;
        transition: transform 0.3s ease;
    }

    .menu-submenu.open>a::after {
        transform: rotate(180deg);
    }

    .menu-dropdown a {
        padding-left: 40px;
        font-size: 13px;
    }

    /* Fix for hover state on mobile menu items */



    /* Hide Slider on Mobile */
    .slider {
        display: none;
    }

    /* Products Preview adjustments after slider removal */
    .product-preview {
        margin-top: 20px;
        padding-top: 30px;
    }

    /* Footer Changes */
    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .footer-nav-horizontal {
        display: none;
    }

    .footer-apps-stacked {
        order: 1;
        align-items: center;
        margin-bottom: 25px;
        width: 100%;
    }

    .footer-app-item {
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
        width: 100%;
    }

    .footer-info-block {
        order: 2;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-company-details {
        margin-bottom: 10px;
    }

    .footer-company-details h3 {
        font-size: 18px;
    }

    .footer-company-details p {
        font-size: 13px;
    }

    .footer-copyright {
        order: 3;
        text-align: center;
        width: 100%;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Adjustments for specific elements */
    .product-grid {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .sales-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr !important;
    }

    .effective-date {
        display: block;
        margin-top: 10px;
    }

    .page-info .text-left,
    .page-title,
    .page-desc,
    .page-info p {
        text-align: center !important;
        width: 100%;
    }

    .video-header-flex {
        justify-content: center !important;
        text-align: center;
        width: 100%;
    }

    .video-action {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   PRODUCT DETAIL HERO & TABS
   ======================================== */

.product-detail-img {
    flex: 1.2;
    background: var(--second-color);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-img img {
    width: 80%;
    height: auto;
    object-fit: contain;
}



.product-hero-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-tag {
    background: var(--first-color);
    color: var(--button-text);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.product-brief h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.2;
}

.product-brief p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.product-key-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--second-color);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}



.spec-highlight i {
    font-size: 1.5rem;
    color: var(--first-color);
    width: 40px;
    text-align: center;
}

.spec-highlight div {
    display: flex;
    flex-direction: column;
}

.spec-highlight span {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.spec-highlight strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.product-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 992px) {

    .product-grid {
        flex-direction: column;
    }

    .product-detail-img {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .product-hero-info {
        width: 100%;
        order: 2;
    }
}

@media (max-width: 480px) {
    .product-key-specs {
        grid-template-columns: 1fr;
    }

    .product-cta {
        flex-direction: column;
    }
}

/* Product Page Tabs */
.product-tabs-container {
    margin: 15px;
}

.product-tab-header {
    display: flex;
    position: relative;
    border-bottom: 2px solid var(--second-color);
    margin-bottom: 20px;
}

.product-tab-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 1rem;
    outline: none;
}

.product-tab-btn:hover {
    color: var(--first-color);
}

.product-tab-btn.active {
    color: var(--first-color);
}

.product-tab-slider {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 4px;
    background: var(--first-color);
    width: 25%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

@media (max-width: 768px) {
    .product-tab-header {
        flex-direction: column;
        border-bottom: none;
    }

    .product-tab-btn {
        width: 100%;
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid var(--second-color);
    }

    /* Hide the horizontal slider on mobile */
    .product-tab-slider {
        display: none;
    }

    /* Active state for vertical tabs */
    .product-tab-btn.active {
        background: var(--second-color);
        color: var(--first-color);
        border-left: 4px solid var(--first-color);
        border-bottom: 1px solid var(--second-color);
    }
}

/* Tab Content */
.product-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.product-tab-content.active {
    display: block;
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-heading {
    color: var(--first-color);
    border-bottom: 2px solid var(--first-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ========================================
   COMPARISON TABLE STYLES
   ======================================== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid var(--second-color);
    padding: 12px;
    text-align: center;
}

.comparison-table th {
    background-color: var(--first-color);
    color: var(--button-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--second-color);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    font-weight: 600;
    text-align: left;
}

.comparison-table th:nth-child(2):last-child,
.comparison-table td:nth-child(2):last-child {
    text-align: right;
}

.bandsaw-comparison th:nth-child(2),
.bandsaw-comparison td:nth-child(2) {
    text-align: left;
}

.bandsaw-comparison th:last-child,
.bandsaw-comparison td:last-child {
    text-align: right;
    font-weight: 600;
}

/* ========================================
   MAINTAINANCE PAGE STYLES
   ======================================== */
.maintanance-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.maintanance-container {
    text-align: center;
    padding: 60px;
    background: var(--second-color);
    border-radius: 20px;
}

.maintanance-icon {
    font-size: 80px;
    color: var(--first-color);
    margin-bottom: 20px;
}

.maintanance-title {
    color: var(--first-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.maintanance-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
}

.maintanance-note {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* ========================================
   REVISED PRODUCT HERO (REV03)
   ======================================== */
.product-hero-block {
    background: var(--second-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-main-title {
    font-size: 2.8rem;
    color: var(--first-color);
    margin-bottom: 10px;
}

.product-main-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}


@media (max-width: 768px) {}

/* ========================================
   SALES TEAM MODAL STYLES
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--third-color);
    margin: 5% auto;
    padding: 30px 40px;
    border: 1px solid var(--first-color);
    width: 95%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    color: var(--text-color);
    transition: max-width 0.3s ease;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.modal-content h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.modal-content.wide {
    max-width: 900px;
}

.close-modal {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--first-color);
    text-decoration: none;
    cursor: pointer;
}

#access-section {
    text-align: center;
}

.input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

#access-code {
    padding: 10px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 8px;
    width: 200px;
    text-align: center;
}

.error-msg {
    color: #e74c3c;
    font-weight: 600;
    display: none;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    grid-column: 1;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--second-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--first-color);
}

.form-group input[type="date"] {
    color: var(--text-color);
    color-scheme: light dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    /* Dark icon for light mode (matches root text color) */
}

[data-theme='dark'] input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0);
    /* White icon for dark mode (matches dark text color) */
}

[data-theme='dark'] input[type="date"] {
    color-scheme: dark;
}

.form-group input[readonly] {
    background-color: var(--second-color);
    cursor: not-allowed;
    border-color: #ddd;
}

@media (max-width: 600px) {
    .form-grid {
        gap: 10px;
    }
}

/* Machine Selection Grid */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--second-color);
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.radio-label:hover {
    border-color: var(--first-color);
}

.radio-label input[type="radio"] {
    accent-color: var(--first-color);
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--first-color);
    box-shadow: 0 0 0 1px var(--first-color);
}

/* Sales Access Button Wrapper */
.sales-access-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 999;
}

#sales-access-btn {
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sales-access-wrapper {
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .btn-sales-access {
        width: 100%;
        text-align: center;
    }
}

/* Master Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-top: 10px;
}

.master-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--second-color);
    border-radius: 10px;
    overflow: hidden;
    color: var(--text-color);
}

.master-table th,
.master-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.master-table th {
    background-color: var(--first-color);
    color: white;
    font-weight: 700;
}

.master-table tr:last-child td {
    border-bottom: none;
}

.master-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Master Table Input Styles */
.master-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.master-input:focus {
    border-color: var(--first-color);
    background: rgba(0, 0, 0, 0.4);
}

/* ========================================
   LOCAL ICON MAPPING (REPLACES FONT AWESOME)
   ======================================== */
.fas,
.fab,
.fa {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    vertical-align: middle;
}


/* Brands */
.fa-facebook-f {
    -webkit-mask-image: url('../images-icon/fab fa-facebook-f.svg');
    mask-image: url('../images-icon/fab fa-facebook-f.svg');
}

.fa-instagram {
    -webkit-mask-image: url('../images-icon/fab fa-instagram.svg');
    mask-image: url('../images-icon/fab fa-instagram.svg');
}

.fa-linkedin-in {
    -webkit-mask-image: url('../images-icon/fab fa-linkedin-in.svg');
    mask-image: url('../images-icon/fab fa-linkedin-in.svg');
}

.fa-youtube {
    -webkit-mask-image: url('../images-icon/fab fa-youtube.svg');
    mask-image: url('../images-icon/fab fa-youtube.svg');
}

/* Solid Icons */
.fa-angle-down {
    -webkit-mask-image: url('../images-icon/fas fa-angle-down.svg');
    mask-image: url('../images-icon/fas fa-angle-down.svg');
}

.fa-angle-right {
    -webkit-mask-image: url('../images-icon/fas fa-angle-right.svg');
    mask-image: url('../images-icon/fas fa-angle-right.svg');
}

.fa-bars {
    -webkit-mask-image: url('../images-icon/fas fa-bars.svg');
    mask-image: url('../images-icon/fas fa-bars.svg');
}

.fa-bolt {
    -webkit-mask-image: url('../images-icon/fas fa-bolt.svg');
    mask-image: url('../images-icon/fas fa-bolt.svg');
}

.fa-bullseye {
    -webkit-mask-image: url('../images-icon/fas fa-bullseye.svg');
    mask-image: url('../images-icon/fas fa-bullseye.svg');
}

.fa-certificate {
    -webkit-mask-image: url('../images-icon/fas fa-certificate.svg');
    mask-image: url('../images-icon/fas fa-certificate.svg');
}

.fa-check-circle {
    -webkit-mask-image: url('../images-icon/fas fa-check-circle.svg');
    mask-image: url('../images-icon/fas fa-check-circle.svg');
}

.fa-check-double {
    -webkit-mask-image: url('../images-icon/fas fa-check-double.svg');
    mask-image: url('../images-icon/fas fa-check-double.svg');
}

.fa-circle {
    -webkit-mask-image: url('../images-icon/fas fa-circle.svg');
    mask-image: url('../images-icon/fas fa-circle.svg');
}

.fa-circle-exclamation {
    -webkit-mask-image: url('../images-icon/fas fa-circle-exclamation.svg');
    mask-image: url('../images-icon/fas fa-circle-exclamation.svg');
}

.fa-clipboard-check {
    -webkit-mask-image: url('../images-icon/fas fa-clipboard-check.svg');
    mask-image: url('../images-icon/fas fa-clipboard-check.svg');
}

.fa-clock {
    -webkit-mask-image: url('../images-icon/fas fa-clock.svg');
    mask-image: url('../images-icon/fas fa-clock.svg');
}

.fa-cog {
    -webkit-mask-image: url('../images-icon/fas fa-cog.svg');
    mask-image: url('../images-icon/fas fa-cog.svg');
}

.fa-cogs {
    -webkit-mask-image: url('../images-icon/fas fa-cogs.svg');
    mask-image: url('../images-icon/fas fa-cogs.svg');
}

.fa-compact-disc {
    -webkit-mask-image: url('../images-icon/fas fa-compact-disc.svg');
    mask-image: url('../images-icon/fas fa-compact-disc.svg');
}

.fa-compass {
    -webkit-mask-image: url('../images-icon/fas fa-compass.svg');
    mask-image: url('../images-icon/fas fa-compass.svg');
}

.fa-crosshairs {
    -webkit-mask-image: url('../images-icon/fas fa-crosshairs.svg');
    mask-image: url('../images-icon/fas fa-crosshairs.svg');
}

.fa-desktop {
    -webkit-mask-image: url('../images-icon/fas fa-desktop.svg');
    mask-image: url('../images-icon/fas fa-desktop.svg');
}

.fa-download {
    -webkit-mask-image: url('../images-icon/fas fa-download.svg');
    mask-image: url('../images-icon/fas fa-download.svg');
}

.fa-drafting-compass {
    -webkit-mask-image: url('../images-icon/fas fa-drafting-compass.svg');
    mask-image: url('../images-icon/fas fa-drafting-compass.svg');
}

.fa-dumbbell {
    -webkit-mask-image: url('../images-icon/fas fa-dumbbell.svg');
    mask-image: url('../images-icon/fas fa-dumbbell.svg');
}

.fa-envelope {
    -webkit-mask-image: url('../images-icon/fas fa-envelope.svg');
    mask-image: url('../images-icon/fas fa-envelope.svg');
}

.fa-fast-forward {
    -webkit-mask-image: url('../images-icon/fas fa-fast-forward.svg');
    mask-image: url('../images-icon/fas fa-fast-forward.svg');
}

.fa-grip-lines {
    -webkit-mask-image: url('../images-icon/fas fa-grip-lines.svg');
    mask-image: url('../images-icon/fas fa-grip-lines.svg');
}

.fa-hammer {
    -webkit-mask-image: url('../images-icon/fas fa-hammer.svg');
    mask-image: url('../images-icon/fas fa-hammer.svg');
}

.fa-handshake {
    -webkit-mask-image: url('../images-icon/fas fa-handshake.svg');
    mask-image: url('../images-icon/fas fa-handshake.svg');
}

.fa-headset {
    -webkit-mask-image: url('../images-icon/fas fa-headset.svg');
    mask-image: url('../images-icon/fas fa-headset.svg');
}

.fa-industry {
    -webkit-mask-image: url('../images-icon/fas fa-industry.svg');
    mask-image: url('../images-icon/fas fa-industry.svg');
}

.fa-key {
    -webkit-mask-image: url('../images-icon/fas fa-key.svg');
    mask-image: url('../images-icon/fas fa-key.svg');
}

.fa-layer-group {
    -webkit-mask-image: url('../images-icon/fas fa-layer-group.svg');
    mask-image: url('../images-icon/fas fa-layer-group.svg');
}

.fa-leaf {
    -webkit-mask-image: url('../images-icon/fas fa-leaf.svg');
    mask-image: url('../images-icon/fas fa-leaf.svg');
}

.fa-location-dot,
.fa-map-marker-alt {
    -webkit-mask-image: url('../images-icon/fas fa-location-dot.svg');
    mask-image: url('../images-icon/fas fa-location-dot.svg');
}

.fa-microchip {
    -webkit-mask-image: url('../images-icon/fas fa-microchip.svg');
    mask-image: url('../images-icon/fas fa-microchip.svg');
}

.fa-moon {
    -webkit-mask-image: url('../images-icon/fas fa-moon.svg');
    mask-image: url('../images-icon/fas fa-moon.svg');
}

.fa-phone {
    -webkit-mask-image: url('../images-icon/fas fa-phone.svg');
    mask-image: url('../images-icon/fas fa-phone.svg');
}

.fa-power-off {
    -webkit-mask-image: url('../images-icon/fas fa-power-off.svg');
    mask-image: url('../images-icon/fas fa-power-off.svg');
}

.fa-save {
    -webkit-mask-image: url('../images-icon/fas fa-save.svg');
    mask-image: url('../images-icon/fas fa-save.svg');
}

.fa-shield-halved {
    -webkit-mask-image: url('../images-icon/fas fa-shield-halved.svg');
    mask-image: url('../images-icon/fas fa-shield-halved.svg');
}

.fa-spray-can {
    -webkit-mask-image: url('../images-icon/fas fa-spray-can.svg');
    mask-image: url('../images-icon/fas fa-spray-can.svg');
}

.fa-square {
    -webkit-mask-image: url('../images-icon/fas fa-square.svg');
    mask-image: url('../images-icon/fas fa-square.svg');
}

.fa-step-forward {
    -webkit-mask-image: url('../images-icon/fas fa-step-forward.svg');
    mask-image: url('../images-icon/fas fa-step-forward.svg');
}

.fa-sun {
    -webkit-mask-image: url('../images-icon/fas fa-sun.svg');
    mask-image: url('../images-icon/fas fa-sun.svg');
}

.fa-sync-alt {
    -webkit-mask-image: url('../images-icon/fas fa-sync-alt.svg');
    mask-image: url('../images-icon/fas fa-sync-alt.svg');
}

.fa-tachometer-alt {
    -webkit-mask-image: url('../images-icon/fas fa-tachometer-alt.svg');
    mask-image: url('../images-icon/fas fa-tachometer-alt.svg');
}

.fa-tools {
    -webkit-mask-image: url('../images-icon/fas fa-tools.svg');
    mask-image: url('../images-icon/fas fa-tools.svg');
}

.fa-undo {
    -webkit-mask-image: url('../images-icon/fas fa-undo.svg');
    mask-image: url('../images-icon/fas fa-undo.svg');
}

.fa-user-shield {
    -webkit-mask-image: url('../images-icon/fas fa-user-shield.svg');
    mask-image: url('../images-icon/fas fa-user-shield.svg');
}

.fa-user {
    -webkit-mask-image: url('../images-icon/fas fa-user.svg');
    mask-image: url('../images-icon/fas fa-user.svg');
}

.fa-wrench {
    -webkit-mask-image: url('../images-icon/fas fa-wrench.svg');
    mask-image: url('../images-icon/fas fa-wrench.svg');
}

.fa-home {
    -webkit-mask-image: url('../images-icon/fas fa-location-dot.svg');
    mask-image: url('../images-icon/fas fa-location-dot.svg');
}