/* ==========================================================================
   EMIRATECH MEP TRADING - Gold/Black/White Theme
   Author: Custom Design
   Description: Premium gold/black/white theme for Emiratech MEP Trading website
   ========================================================================== */

/* ===========================
   COLOR VARIABLES (Gold Theme)
   =========================== */
:root {
    /* Primary Gold Colors */
    --primary-gold: #C9A84C;          /* Main brand gold */
    --primary-gold-dark: #B8943E;     /* Darker gold for hover states */
    --primary-gold-light: #D4B85E;    /* Lighter gold for accents */

    /* Legacy aliases for compatibility */
    --primary-blue: #C9A84C;
    --primary-blue-dark: #B8943E;
    --primary-blue-light: #D4B85E;

    /* Secondary Colors */
    --secondary-dark: #1A1A1A;        /* Rich black for text */
    --secondary-gray: #333333;        /* Dark gray */
    --light-gray: #F8F9FA;            /* Light backgrounds */
    --border-gray: #E5E5E5;           /* Borders */
    --white: #FFFFFF;

    /* Accent Colors */
    --accent-gold: #C9A84C;           /* For highlights */
    --success-green: #28A745;         /* Success states */
}

/* ===========================
   GLOBAL OVERRIDES
   =========================== */

/* Primary color replacements */
.bg-primary,
.btn-primary,
.text-primary,
.badge-primary {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    border-color: var(--primary-blue) !important;
}

/* Links */
a {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

/* Buttons */
.ht-btn,
.btn-custom,
.btn {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ht-btn:hover,
.ht-btn:focus,
.btn-custom:hover,
.btn-custom:focus,
.btn:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.ht-btn--outline {
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ht-btn--outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.ht-btn--white {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.ht-btn--white:hover {
    background-color: var(--primary-gold-dark);
    color: var(--white);
    border-color: var(--primary-gold-dark);
}

/* ===========================
   HEADER CUSTOMIZATION (MEGAN STYLE)
   =========================== */

/* Ensure header is in normal document flow (not overlaying hero) */
.header-area {
    position: relative;
    z-index: 999;
    background-color: #000000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* When sticky is activated on scroll, header becomes fixed */
.header-area.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header Right Info (Phone + Social) */
.header-right-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: nowrap;
    overflow: visible;
}

/* Phone Info Section */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone__icon {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 30px;
    transition: all 0.3s ease;
}

.header-phone:hover .header-phone__icon {
    background-color: transparent;
    color: var(--primary-blue-dark);
}

.header-phone__content {
    display: flex;
    flex-direction: column;
}

.header-phone__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.header-phone__number {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-phone__number:hover {
    color: var(--primary-blue);
}

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: 5px;
}

.header-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.header-social a:hover {
    color: var(--primary-blue);
    background-color: rgba(201, 168, 76, 0.15);
}

.header-navigation a:hover,
.header-navigation a.active {
    color: var(--primary-blue);
}

.header-info-single-item__icon {
    color: var(--primary-blue);
}

/* ===========================
   MAIN NAVIGATION - HORIZONTAL MENU
   =========================== */
.header-navigation-wrapper {
    background: #000000;
    border-bottom: 1px solid #333333;
    padding: 0 !important;
    overflow: visible;
}

.header-navigation-wrapper .container-fluid {
    padding-right: 20px;
    padding-left: 15px;
}

/* Override Bootstrap grid with flexbox for the nav row */
.header-navigation-wrapper .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.header-navigation-wrapper .row > [class*="col-"] {
    flex: none;
    width: auto;
    max-width: none;
}

.header-navigation-wrapper .row > [class*="col-"]:nth-child(2) {
    flex: 1;
}

.header-navigation-wrapper .row > [class*="col-"]:last-child {
    flex-shrink: 0;
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-navigation nav {
    display: block;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
    margin: 0 5px;
}

.main-menu > li > a {
    display: block;
    padding: 25px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #C9A84C;
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: #C9A84C;
}

.main-menu > li > a:hover::after,
.main-menu > li.active > a::after {
    width: 100%;
}

/* Logo styling in navigation */
.header-navigation-wrapper .logo {
    padding: 5px 0;
}

.header-navigation-wrapper .logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-navigation-wrapper .logo .logo-icon {
    height: 75px;
    width: auto;
    margin-right: 25px;
}

.header-navigation-wrapper .logo .logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .header-navigation-wrapper .logo .logo-text,
    .header-navigation-wrapper .logo span.logo-text {
        display: none;
    }
}

.header-navigation-wrapper .logo .logo-link:hover .logo-text {
    color: var(--primary-blue);
}

/* RTL (Arabic) logo adjustment */
[dir="rtl"] .header-navigation-wrapper .logo {
    transform: translateX(-60px);
}

/* Get A Quote Button in Header */
.header-navigation-wrapper .ht-btn {
    padding: 14px 28px !important;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Menu */
.mobile-menu-content {
    padding-right: 15px;
}

.mobile-navigation-icon span {
    background-color: var(--primary-blue);
}

/* Hamburger icon bars — white so they're visible on dark mobile header */
.mobile-navigation-icon i,
.mobile-navigation-icon i:before,
.mobile-navigation-icon i:after {
    background-color: #ffffff !important;
}
.mobile-navigation-icon:hover i,
.mobile-navigation-icon:hover i:before,
.mobile-navigation-icon:hover i:after {
    background-color: var(--primary-gold) !important;
}

.mobile-menu-overlay {
    background-color: rgba(26, 26, 26, 0.95);
}

/* ===========================
   OFFCANVAS MOBILE MENU FIX
   =========================== */
.offcanvas-mobile-menu {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #222;
    transform: translateX(-120%);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow-y: auto;
}

.offcanvas-mobile-menu.active {
    transform: translateX(0);
}

.offcanvas-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.offcanvas-wrapper {
    padding: 30px;
}

.offcanvas-mobile-logo {
    margin-bottom: 30px;
}

.offcanvas-mobile-logo img {
    max-width: 150px;
}

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

.offcanvas-navigation ul li {
    border-bottom: 1px solid #333;
}

.offcanvas-navigation ul li a {
    display: block;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.offcanvas-navigation ul li a:hover {
    color: #fff;
}

.offcanvas-widget-area {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

/* ===========================
   PRELOADER (disabled for instant page transitions)
   =========================== */
.preloader-activate {
    display: none !important;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-area {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content__subtitle {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-content__buttons .ht-btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

/* ===========================
   SECTIONS
   =========================== */

/* Section titles with blue underline */
.section-title {
    margin-bottom: 50px;
}

.section-title__subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-title__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-blue);
}

.section-title__title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.3;
}

/* Background sections */
.bg-gray {
    background-color: var(--light-gray);
}

.dark-bg {
    background-color: #000000;
}

/* Section spacing */
.section-space--ptb_100 {
    padding: 100px 0;
}

.section-space--ptb_80 {
    padding: 80px 0;
}

.section-space--pt_100 {
    padding-top: 100px;
}

.section-space--pb_100 {
    padding-bottom: 100px;
}

/* ===========================
   IMAGE-CONTENT HEIGHT ALIGNMENT (Global)
   =========================== */

/* Apply to all sections with image + content layout */
.about-area .row.align-items-center,
.about-overview-area .row,
.about-goal-area .row,
.about-mission-area .row {
    align-items: stretch !important;
}

.about-area .col-lg-6,
.about-overview-area .col-lg-6,
.about-goal-area .col-lg-6,
.about-mission-area .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.about-image {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive - stack on mobile */
@media (max-width: 991px) {
    .about-image {
        min-height: 300px;
        margin-bottom: 30px;
    }
}

/* ===========================
   ABOUT SECTION - HOMEPAGE
   =========================== */
.about-area {
    margin-bottom: 120px !important;
}

/* ===========================
   ABOUT SECTION - TEMPLATE STYLE
   =========================== */
.about-area-template {
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 80px;
}

.about-image-fullbleed {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content-template {
    padding: 80px 60px;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-template__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-feature-box {
    margin-bottom: 20px;
}

.about-feature-box__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.about-feature-box__text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .about-image-fullbleed {
        min-height: 350px;
    }

    .about-content-template {
        padding: 50px 30px;
        min-height: auto;
    }

    .about-content-template__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-content-template__title {
        font-size: 26px;
    }

    .about-feature-box__title {
        font-size: 18px;
    }
}

/* ===========================
   STATS / COUNTER SECTION
   =========================== */
.counter-area {
    background-color: #000000;
    padding: 20px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
}

.counter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000, #1A1A1A);
    border-radius: 0;
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 5px 0;
}

.counter-item__icon {
    display: block;
    font-size: 24px;
    color: #C9A84C;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-item__icon i {
    font-size: 28px;
}

.counter-item__count {
    font-size: 28px;
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 3px;
}

.counter-item__title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0;
}

/* ===========================
   PRODUCT CATEGORIES
   =========================== */
.product-category-card {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.product-category-card:hover {
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.product-category-card__icon {
    font-size: 60px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.product-category-card:hover .product-category-card__icon {
    color: var(--primary-blue-dark);
    transform: scale(1.1);
}

/* Product Category Card Image */
.product-category-card__image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.product-category-card:hover .product-category-card__image img {
    transform: scale(1.08);
}

.product-category-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.product-category-card__title a {
    color: var(--secondary-dark);
    transition: color 0.3s ease;
}

.product-category-card__title a:hover {
    color: var(--primary-blue);
}

.product-category-card__link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
}

.product-category-card__link:hover {
    color: var(--primary-blue-dark);
}

.product-category-card__link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.product-category-card:hover .product-category-card__link i {
    margin-left: 10px;
}

/* ===========================
   PRODUCT CATEGORY CARDS - Blue Gradient Style
   =========================== */
.product-cat-card {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.product-cat-card:hover {
    transform: translateY(-8px);
    border-color: #C9A84C;
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.25), 0 0 20px rgba(201, 168, 76, 0.1);
    text-decoration: none;
}

.product-cat-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-cat-card:hover .product-cat-card__img img {
    transform: scale(1.08);
}

.product-cat-card__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.85) 50%, transparent 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.product-cat-card:hover .product-cat-card__gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(26, 26, 26, 0.92) 60%, rgba(26, 26, 26, 0.3) 100%);
    padding-bottom: 28px;
}

.product-cat-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-cat-card__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-cat-card__link {
    font-size: 13px;
    font-weight: 600;
    color: #C9A84C;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.product-cat-card__link i {
    transition: transform 0.3s ease;
}

.product-cat-card:hover .product-cat-card__link {
    color: #D4B85E;
}

.product-cat-card:hover .product-cat-card__link i {
    transform: translateX(4px);
}

/* Glow ring on hover */
.product-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(201, 168, 76, 0.6);
    z-index: 3;
}

.product-cat-card:hover::after {
    opacity: 1;
}

@media (max-width: 767px) {
    .product-cat-card {
        min-height: 280px;
        border-radius: 10px;
    }

    .product-cat-card__title {
        font-size: 18px;
    }

    .product-cat-card__gradient {
        padding: 24px 18px 18px;
    }

    .product-cat-card::after {
        border-radius: 10px;
    }
}

/* ===========================
   INDUSTRY CARDS
   =========================== */
.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.industry-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.95));
    padding: 30px;
    color: var(--white);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-card__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1));
}

.industry-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.industry-card__text {
    color: var(--white);
    opacity: 0.95;
}

/* ===========================
   FEATURES / WHY CHOOSE US
   =========================== */
.feature-item {
    background: linear-gradient(to top, rgba(201, 168, 76, 0.08) 0%, var(--white) 40%);
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold), var(--primary-gold-dark));
    opacity: 0.6;
    transition: all 0.3s ease;
    border-radius: 0 0 8px 8px;
}

.feature-item:hover::after {
    height: 5px;
    opacity: 1;
}

.feature-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
    transform: translateY(-5px);
    background: linear-gradient(to top, rgba(201, 168, 76, 0.15) 0%, var(--white) 50%);
}

.feature-item__icon {
    font-size: 56px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
}

.feature-item:hover .feature-item__icon {
    transform: rotateY(360deg);
}

.feature-item__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-item__text {
    color: #666;
    line-height: 1.7;
}

/* ===========================
   DARK CARD VARIANT (Services-style)
   =========================== */
.feature-item.dark-card {
    background: linear-gradient(to bottom, #1A1A1A 50%, rgba(201, 168, 76, 0.12) 100%);
    background-color: #1A1A1A;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 3px solid #C9A84C;
}

.feature-item.dark-card::after {
    display: none;
}

.feature-item.dark-card:hover {
    border-color: #C9A84C;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
    transform: translateY(-5px);
    background: linear-gradient(to bottom, #1A1A1A 30%, rgba(201, 168, 76, 0.2) 100%);
}

.feature-item.dark-card .feature-item__icon {
    color: #C9A84C;
}

.feature-item.dark-card .feature-item__title {
    color: #FFFFFF;
}

.feature-item.dark-card .feature-item__text {
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-item {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-item__quote {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-item__author {
    display: flex;
    align-items: center;
}

.testimonial-item__author-name {
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 5px;
}

.testimonial-item__author-title {
    color: var(--primary-blue);
    font-size: 14px;
}

/* ===========================
   CALL TO ACTION (CTA)
   =========================== */
.cta-area {
    background-color: #1A1A1A;
    color: var(--white);
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.cta-content__text {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 35px;
}

/* CTA Buttons Container - Center Alignment */
.cta-content .mt-40 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* CTA Section Buttons - Text Centered */
.cta-content .ht-btn,
.cta-content .ht-btn--outline,
.cta-area .ht-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 180px;
}

/* All Buttons Text Centering Fix */
a.ht-btn,
button.ht-btn,
.ht-btn--solid {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Icon spacing inside buttons */
.ht-btn i,
.ht-btn--outline i,
.ht-btn--white i,
.ht-btn--solid i {
    margin-right: 8px;
}

/* ===========================
   FOOTER
   =========================== */
.footer-area {
    background-color: #000000;
    color: var(--white);
    padding-top: 0;
}

.footer-area .footer-top {
    padding: 40px 0 15px 0;
}

.footer-widget__logo img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0px;
}

/* Footer Company Name (Megan template style) */
.footer-widget__company-name {
    margin-bottom: 10px;
}

.footer-widget__company-name .company-name {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
    margin-top: 0;
    letter-spacing: 1px;
}

.footer-widget__company-name .company-tagline {
    color: var(--primary-gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.footer-widget__title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-widget__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-widget__list li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-widget__list a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget__list a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-widget__list i {
    margin-right: 25px;
    color: var(--primary-blue);
}

.footer-widget__social {
    margin-top: 20px;
}

.footer-widget__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 25px;
    transition: all 0.3s ease;
}

.footer-widget__social a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #000000;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-bottom__text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-bottom .company-highlight {
    color: var(--primary-gold);
}

.footer-bottom a {
    color: var(--primary-blue);
}

.footer-bottom a:hover {
    color: var(--primary-blue-light);
}

.footer-bottom__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom__links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom__links li a:hover {
    color: var(--primary-gold);
}

@media (max-width: 767px) {
    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom__links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom__text {
        text-align: center;
    }
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb-area {
    background-color: #1A1A1A;
    padding: 100px 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.85));
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-area h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.breadcrumb-area p {
    color: var(--white);
    font-size: 18px;
    opacity: 0.95;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: inline-flex;
}

.breadcrumb-list li {
    color: var(--white);
    margin: 0 10px;
}

.breadcrumb-list li a {
    color: var(--white);
}

.breadcrumb-list li a:hover {
    color: var(--primary-blue-light);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 991px) {
    .hero-content__title {
        font-size: 40px;
    }

    .section-title__title {
        font-size: 22px;
    }
}

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

    .hero-content__subtitle {
        font-size: 18px;
    }

    .section-title__title {
        font-size: 20px;
    }

    .cta-content__title {
        font-size: 32px;
    }

    .breadcrumb-area h1 {
        font-size: 36px;
    }

    .product-category-card,
    .feature-item,
    .industry-card {
        margin-bottom: 30px;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-blue,
.text-gold {
    color: var(--primary-blue) !important;
}

.bg-blue,
.bg-gold {
    background-color: var(--primary-blue) !important;
}

.border-blue,
.border-gold {
    border-color: var(--primary-blue) !important;
}

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* ===========================
   TOP BAR SPECIFIC STYLES (Megan Template Style)
   =========================== */
.topbar-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.topbar-info ul li {
    margin-right: 25px;
    color: #666666;
    font-size: 13px;
    white-space: nowrap;
}

.topbar-info ul li i {
    margin-right: 8px;
}

/* Different colors for each icon like Megan template */
.topbar-info ul li i.ion-ios-telephone {
    color: #C9A84C; /* Blue for phone */
}

.topbar-info ul li i.ion-android-mail {
    color: #C9A84C; /* Gold for email */
}

.topbar-info ul li i.ion-ios-clock-outline {
    color: #C9A84C; /* Gold for clock */
}

.topbar-social a {
    color: #666666;
    margin-left: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.topbar-social a:hover {
    color: var(--primary-blue);
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.top-bar-right a {
    color: #666666;
    margin-left: 15px;
    font-size: 13px;
}

.top-bar-right a:hover {
    color: var(--primary-blue);
}

.topbar-social {
    display: inline-flex !important;
    align-items: center;
    margin-left: 15px !important;
}

.topbar-social a {
    margin-left: 10px !important;
}

/* ===========================
   HERO SLIDER SECTION
   =========================== */

/* --- Video Hero --- */
.hero-video-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 230px);
    max-height: calc(100vh - 230px);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-video-wrapper {
        min-height: calc(100vh - 220px);
        max-height: calc(100vh - 220px);
    }
}

@media (max-width: 767px) {
    .hero-video-wrapper {
        min-height: 70vh;
        max-height: none;
    }

    .hero-video-content {
        align-items: flex-start;
        padding-top: 25px;
    }
}

@media (max-width: 480px) {
    .hero-video-wrapper {
        min-height: 75vh;
        max-height: none;
    }
}

/* --- Original slider (kept for reference) --- */
.hero-slider-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider-container {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 230px); /* Account for header + counter bar */
    max-height: calc(100vh - 230px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Responsive hero height adjustments */
@media (max-width: 991px) {
    .hero-slide {
        min-height: calc(100vh - 220px);
        max-height: calc(100vh - 220px);
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 55vh;
        max-height: 55vh;
    }
}

.hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

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

.hero-content {
    padding: 0 100px;
}

.hero-content__tagline {
    color: #C9A84C;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-content__title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-content__subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
}

.hero-content__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Hero Navigation Arrows */
.hero-slider-container .ht-swiper-button-prev-hero,
.hero-slider-container .ht-swiper-button-next-hero {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 2px solid rgba(201, 168, 76, 0.3);
}

.hero-slider-container .ht-swiper-button-prev-hero:hover,
.hero-slider-container .ht-swiper-button-next-hero:hover {
    background-color: rgba(201, 168, 76, 0.8);
    border-color: #C9A84C;
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-container .ht-swiper-button-prev-hero {
    left: 15px;
}

.hero-slider-container .ht-swiper-button-next-hero {
    right: 15px;
}

/* Hero Pagination Dots */
.swiper-pagination-hero {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 10;
}

.swiper-pagination-hero .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
    border-color: var(--white);
    width: 40px;
    border-radius: 7px;
}

/* Responsive Hero Slider */
@media (max-width: 1199px) {
    .hero-slide {
        min-height: 100vh;
    }

    .hero-content__title {
        font-size: 48px;
    }

    .hero-content__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: 100vh;
    }

    .hero-content {
        padding: 100px 0;
    }

    .hero-content__title {
        font-size: 40px;
    }

    .hero-slider-container .ht-swiper-button-prev-hero,
    .hero-slider-container .ht-swiper-button-next-hero {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hero-slider-container .ht-swiper-button-prev-hero {
        left: 15px;
    }

    .hero-slider-container .ht-swiper-button-next-hero {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 100vh;
    }

    .hero-content {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content__tagline {
        font-size: 14px;
    }

    .hero-content__title {
        font-size: 32px;
    }

    .hero-content__subtitle {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content__buttons {
        justify-content: center;
    }

    .hero-slider-container .ht-swiper-button-prev-hero,
    .hero-slider-container .ht-swiper-button-next-hero {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero-slider-container .ht-swiper-button-prev-hero {
        left: 10px;
    }

    .hero-slider-container .ht-swiper-button-next-hero {
        right: 10px;
    }

    .swiper-pagination-hero .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }

    .swiper-pagination-hero .swiper-pagination-bullet-active {
        width: 30px;
    }
}

@media (max-width: 575px) {
    .hero-slide {
        min-height: 100vh;
    }

    .hero-content__title {
        font-size: 28px;
    }

    .hero-content__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content__buttons .ht-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===========================
   SECTION WATERMARK DECORATIONS
   =========================== */
.section-watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above watermark */
.industries-area .container,
.testimonials-area .container {
    position: relative;
    z-index: 1;
}

/* Industries section watermark - positioned on right side */
.industries-area .section-watermark {
    opacity: 0.06;
    width: 350px;
    background-position: right top;
}

/* Testimonials section watermark - subtle text effect */
.testimonials-area .section-watermark {
    opacity: 0.04;
    width: 600px;
    background-position: center center;
    background-size: 80%;
}

/* Responsive watermarks */
@media (max-width: 991px) {
    .section-watermark {
        width: 250px;
        opacity: 0.05;
    }

    .testimonials-area .section-watermark {
        width: 400px;
    }
}

@media (max-width: 767px) {
    .section-watermark {
        display: none;
    }
}

/* ===========================
   HERO SLIDER FULL-WIDTH CONTENT
   =========================== */
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
    z-index: 10;
}

.hero-content-wrapper .hero-content {
    max-width: 900px;
}

.hero-content-wrapper .hero-content h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper .hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
}

/* Responsive adjustments for hero content */
@media (max-width: 1199px) {
    .hero-content-wrapper {
        padding: 0 60px;
    }

    .hero-content-wrapper .hero-content h2 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-content-wrapper {
        padding: 0 40px;
    }

    .hero-content-wrapper .hero-content h2 {
        font-size: 40px;
    }

    .hero-content-wrapper .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-content-wrapper {
        padding: 0 20px;
        align-items: center;
    }

    .hero-content-wrapper .hero-content {
        text-align: center;
    }

    .hero-content-wrapper .hero-content h2 {
        font-size: 32px;
    }

    .hero-content-wrapper .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-content-wrapper .hero-content .hero-btn-wrap {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-content-wrapper .hero-content h2 {
        font-size: 28px;
    }

    .hero-content-wrapper .hero-content p {
        font-size: 15px;
    }
}

/* ===========================
   HEADER ANIMATIONS (Scroll-Triggered)
   =========================== */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUnderline {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}

/* Initial state - hidden until scroll triggers */
.animate-on-scroll .section-title__subtitle,
.animate-on-scroll .section-title__title,
.animate-on-scroll .section-title__description,
.animate-on-scroll .section-title p,
.animate-on-scroll .cta-content__title,
.animate-on-scroll .cta-content__text,
.animate-on-scroll h1,
.animate-on-scroll > p {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll .section-title__subtitle::before {
    width: 0;
}

/* Animated state - triggered by Intersection Observer */
.animate-on-scroll.animated .section-title__subtitle {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.animated .section-title__subtitle::before {
    animation: slideInUnderline 0.5s ease-out 0.3s forwards;
}

.animate-on-scroll.animated .section-title__title {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.animate-on-scroll.animated .section-title__description,
.animate-on-scroll.animated .section-title p {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.animate-on-scroll.animated .cta-content__title {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.animated .cta-content__text {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

/* Breadcrumb area headings animation */
.animate-on-scroll.animated h1 {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.animated > p {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

/* Hero Content Animations - Always animate on load */
.hero-content__tagline {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.hero-content__title {
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
}

.hero-content__subtitle {
    animation: fadeInUp 0.7s ease-out 0.4s forwards;
}

.hero-content__buttons {
    animation: fadeInUp 0.7s ease-out 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll .section-title__subtitle,
    .animate-on-scroll .section-title__title,
    .animate-on-scroll .section-title__description,
    .animate-on-scroll .section-title p,
    .animate-on-scroll .cta-content__title,
    .animate-on-scroll .cta-content__text,
    .hero-content__tagline,
    .hero-content__title,
    .hero-content__subtitle,
    .hero-content__buttons {
        opacity: 1;
        transform: none;
    }

    .animate-on-scroll.animated .section-title__subtitle,
    .animate-on-scroll.animated .section-title__title,
    .animate-on-scroll.animated .section-title__description,
    .animate-on-scroll.animated .section-title p,
    .animate-on-scroll.animated .cta-content__title,
    .animate-on-scroll.animated .cta-content__text,
    .hero-content__tagline,
    .hero-content__title,
    .hero-content__subtitle,
    .hero-content__buttons {
        animation: none;
    }

    .animate-on-scroll .section-title__subtitle::before,
    .animate-on-scroll.animated .section-title__subtitle::before {
        animation: none;
        width: 50px;
    }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

/* Base hidden states */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Revealed states */
.scroll-fade-up.is-revealed,
.scroll-fade-left.is-revealed,
.scroll-fade-right.is-revealed {
    opacity: 1;
    transform: translate(0, 0);
}

.scroll-zoom-in.is-revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.scroll-delay-1 { transition-delay: 0.1s; }
.scroll-delay-2 { transition-delay: 0.2s; }
.scroll-delay-3 { transition-delay: 0.3s; }
.scroll-delay-4 { transition-delay: 0.4s; }
.scroll-delay-5 { transition-delay: 0.5s; }
.scroll-delay-6 { transition-delay: 0.6s; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-fade-up,
    .scroll-fade-left,
    .scroll-fade-right,
    .scroll-zoom-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===========================
   CONTACT PAGE - Reduced Map Spacing
   =========================== */
.contact-area.section-space--ptb_100 {
    padding-bottom: 50px;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h3.mb-40 {
    margin-bottom: 25px !important;
}

/* ===========================
   CORE VALUES - Icon Centering
   =========================== */
.core-values-area .feature-item__icon {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 25px auto;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ========================================================================== */

/* --- Prevent horizontal overflow globally --- */
html, body {
    overflow-x: hidden;
}

/* --- Eliminate white space gaps across entire site --- */
html {
    background-color: #111;
}

body {
    background-color: #111;
}

/* --- Ensure all content sections have explicit backgrounds (no white gaps) --- */
.why-choose-us-area,
.about-overview-area,
.core-values-area,
.why-partner-area,
.services-area,
.industries-area,
.contact-area,
.faq-section,
.policy-area,
.showcase-hero,
.products-showcase {
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   TABLET (768px - 1024px)
   =========================== */
@media (max-width: 1024px) {
    .section-space--ptb_100 {
        padding: 70px 0;
    }

    .section-space--ptb_80 {
        padding: 60px 0;
    }

    .section-title__title {
        font-size: 24px;
    }

    .cta-content__title {
        font-size: 34px;
    }

    .breadcrumb-area {
        padding: 70px 0;
    }

    .breadcrumb-area h1 {
        font-size: 38px;
    }

    .hero-content-wrapper {
        padding: 0 40px;
    }

    .hero-content {
        padding: 40px 40px;
    }

    .hero-content__title {
        font-size: 44px;
    }

    .hero-content__subtitle {
        font-size: 18px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-item__icon {
        font-size: 46px;
        margin-bottom: 20px;
    }

    .feature-item__title {
        font-size: 18px;
    }

    .counter-item__count {
        font-size: 24px;
    }

    .counter-item__title {
        font-size: 12px;
    }

    .counter-item__icon i {
        font-size: 22px;
    }

    .footer-widget__title {
        font-size: 16px;
    }
}

/* ===========================
   SMALL TABLET / LARGE PHONE (576px - 767px)
   =========================== */
@media (max-width: 767px) {
    .section-space--ptb_100 {
        padding: 50px 0;
    }

    .section-space--ptb_80 {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title__subtitle {
        font-size: 20px;
    }

    .section-title__title {
        font-size: 18px;
    }

    .breadcrumb-area {
        padding: 50px 0;
    }

    .breadcrumb-area h1 {
        font-size: 28px;
    }

    .breadcrumb-area p {
        font-size: 15px;
    }

    /* Hero */
    .hero-content-wrapper {
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 15px;
        text-align: center;
    }

    .hero-content__tagline {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .hero-content__title {
        font-size: 30px;
    }

    .hero-content__subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-content__buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-content__buttons .ht-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* Counter */
    .counter-area {
        padding: 15px 0;
    }

    .counter-item {
        padding: 8px 0;
    }

    .counter-item__icon i {
        font-size: 20px;
    }

    .counter-item__count {
        font-size: 22px;
    }

    .counter-item__title {
        font-size: 11px;
    }

    /* CTA */
    .cta-area {
        padding: 60px 0;
    }

    .cta-content__title {
        font-size: 26px;
    }

    .cta-content__text {
        font-size: 15px;
    }

    .cta-content .mt-40 {
        flex-direction: column;
        align-items: center;
    }

    .cta-content .ht-btn,
    .cta-area .ht-btn {
        width: 100%;
        max-width: 280px;
    }

    /* Feature Items */
    .feature-item {
        padding: 25px 20px;
    }

    .feature-item__icon {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .feature-item__title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .feature-item__text {
        font-size: 14px;
    }

    /* Industry Cards */
    .industry-card {
        height: 280px;
    }

    .industry-card__title {
        font-size: 20px;
    }

    .industry-card__overlay {
        padding: 20px;
    }

    /* Testimonials */
    .testimonial-item {
        padding: 25px;
    }

    .testimonial-item__quote {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Footer */
    .footer-area .footer-top {
        padding: 30px 0 10px 0;
    }

    .footer-widget__company-name .company-name {
        font-size: 18px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom__text {
        font-size: 12px;
        text-align: center;
    }

    .footer-bottom__links {
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .footer-bottom__links li a {
        font-size: 12px;
    }

    /* Buttons */
    .ht-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Header phone */
    .header-phone__number {
        font-size: 15px;
    }

    /* Product Category Cards */
    .product-cat-card {
        min-height: 260px;
    }

    .product-cat-card__title {
        font-size: 18px;
    }

    .product-cat-card__desc {
        font-size: 12px;
    }

    .product-cat-card__gradient {
        padding: 24px 18px 18px;
    }
}

/* ===========================
   MOBILE PHONE (max-width: 480px)
   =========================== */
@media (max-width: 480px) {
    .section-space--ptb_100 {
        padding: 40px 0;
    }

    .section-space--ptb_80 {
        padding: 35px 0;
    }

    .section-title__title {
        font-size: 16px;
        line-height: 1.3;
    }

    .section-title__subtitle {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .breadcrumb-area {
        padding: 40px 0;
    }

    .breadcrumb-area h1 {
        font-size: 24px;
    }

    .breadcrumb-area p {
        font-size: 13px;
    }

    /* Hero */
    .hero-slide {
        min-height: 50vh;
        max-height: 70vh;
    }

    .hero-content__title {
        font-size: 24px;
    }

    .hero-content__subtitle {
        font-size: 14px;
    }

    .hero-content__tagline {
        font-size: 11px;
    }

    .hero-content__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content__buttons .ht-btn {
        width: 100%;
        max-width: 250px;
        padding: 11px 20px;
        font-size: 13px;
    }

    /* Navigation arrows */
    .hero-slider-container .ht-swiper-button-prev-hero,
    .hero-slider-container .ht-swiper-button-next-hero {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hero-slider-container .ht-swiper-button-prev-hero {
        left: 8px;
    }

    .hero-slider-container .ht-swiper-button-next-hero {
        right: 8px;
    }

    /* Counter */
    .counter-area .row {
        display: flex;
        flex-wrap: wrap;
    }

    .counter-area .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .counter-item__count {
        font-size: 20px;
    }

    .counter-item__title {
        font-size: 13px;
    }

    /* CTA */
    .cta-area {
        padding: 40px 0;
    }

    .cta-content__title {
        font-size: 22px;
    }

    .cta-content__text {
        font-size: 14px;
    }

    /* Features / Why Choose Us */
    .feature-item {
        padding: 20px 15px;
    }

    .feature-item__icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .feature-item__title {
        font-size: 16px;
    }

    .feature-item__text {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Industry Cards */
    .industry-card {
        height: 220px;
        border-radius: 6px;
    }

    .industry-card__title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .industry-card__text {
        font-size: 13px;
    }

    .industry-card__overlay {
        padding: 15px;
    }

    /* Testimonials */
    .testimonial-item {
        padding: 20px 15px;
    }

    .testimonial-item__quote {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-item__author-name {
        font-size: 14px;
    }

    .testimonial-item__author-title {
        font-size: 12px;
    }

    /* Product Category Cards */
    .product-cat-card {
        min-height: 220px;
        border-radius: 8px;
    }

    .product-cat-card__title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .product-cat-card__desc {
        font-size: 13px;
        margin-bottom: 8px;
        -webkit-line-clamp: 1;
    }

    .product-cat-card__link {
        font-size: 12px;
    }

    .product-cat-card__gradient {
        padding: 20px 14px 14px;
    }

    .product-cat-card::after {
        border-radius: 8px;
    }

    /* Footer */
    .footer-area .footer-top {
        padding: 25px 0 5px 0;
    }

    .footer-widget__title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-widget__text {
        font-size: 13px;
    }

    .footer-widget__list li {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .footer-widget__social a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        margin-right: 8px;
    }

    .footer-bottom__links {
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Buttons global — min 44px touch target */
    .ht-btn {
        padding: 13px 20px;
        font-size: 13px;
        min-height: 44px;
    }

    /* Header Navigation Wrapper */
    .header-navigation-wrapper .logo .logo-text {
        font-size: 20px;
    }
}

/* ===========================
   VERY SMALL PHONES (max-width: 360px)
   =========================== */
@media (max-width: 360px) {
    .section-title__title {
        font-size: 14px;
    }

    .breadcrumb-area h1 {
        font-size: 22px;
    }

    .hero-content__title {
        font-size: 22px;
    }

    .hero-content__subtitle {
        font-size: 13px;
    }

    .cta-content__title {
        font-size: 20px;
    }

    .counter-item__count {
        font-size: 18px;
    }

    .product-cat-card {
        min-height: 200px;
    }

    .product-cat-card__title {
        font-size: 15px;
    }
}

/* ===========================
   STANDARD MOBILE (375px — iPhone SE/X/standard)
   =========================== */
@media (max-width: 375px) {
    .hero-content__title {
        font-size: 24px;
    }

    .hero-content__subtitle {
        font-size: 13px;
    }

    .section-title__title {
        font-size: 22px;
    }

    .ht-btn {
        padding: 13px 16px;
        font-size: 12px;
    }

    .counter-item__count {
        font-size: 20px;
    }

    .counter-item__title {
        font-size: 12px;
    }

    .footer-widget__title {
        font-size: 16px;
    }
}

/* ===========================
   DESKTOP HEADER - RESPONSIVE NAV ADJUSTMENTS
   =========================== */

/* Medium-large screens (992px - 1199px): tighten spacing */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-menu > li {
        margin: 0 1px;
    }

    .main-menu > li > a {
        padding: 20px 8px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }

    .header-phone {
        gap: 6px;
    }

    .header-phone__icon {
        font-size: 22px;
    }

    .header-phone__label {
        display: none;
    }

    .header-phone__number {
        font-size: 13px;
    }

    .header-social a {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .lang-toggle {
        margin-left: 6px;
    }

    .lang-toggle button {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Medium screens (768px - 991px): hide phone & social, compact nav */
@media (min-width: 768px) and (max-width: 991px) {
    .main-menu > li {
        margin: 0 1px;
    }

    .main-menu > li > a {
        padding: 18px 8px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }

    .header-phone {
        display: none;
    }

    .header-social {
        display: none;
    }

    .lang-toggle {
        margin-left: 0;
    }

    .lang-toggle button {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* ===========================
   DESKTOP HEADER - HIDE ON MOBILE
   =========================== */
@media (max-width: 767px) {
    .header-area__desktop {
        display: none;
    }

    .header-area__mobile {
        display: block;
    }

}

@media (min-width: 768px) {
    .header-area__mobile {
        display: none;
    }
}

/* ===========================
   PIP GRID (PICTURE IN PICTURE)
   =========================== */
.pip-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex: 1;
}

.pip-grid__main {
    width: 100%;
    flex: 2;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.3);
}

.pip-grid__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pip-grid__secondary {
    display: flex;
    gap: 12px;
    flex: 1;
    min-height: 140px;
}

.pip-grid__small {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.3);
}

.pip-grid__small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .pip-grid__main { min-height: 180px; }
    .pip-grid__secondary { min-height: 120px; }
}

/* ===========================
   IMAGE TILES REVEAL
   =========================== */
.image-tiles {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 580px;
    margin: 0 auto;
    user-select: none;
}

.image-tiles__card {
    position: absolute;
    width: 245px;
    height: 245px;
    background: transparent;
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.24);
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transform: rotate(0deg) translate(0, 0);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.5s ease,
                box-shadow 0.3s ease;
    will-change: transform, opacity;
}

.image-tiles__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    pointer-events: none;
    display: block;
}

/* Stagger delay */
.image-tiles__card--left   { transition-delay: 0.1s; }
.image-tiles__card--middle { transition-delay: 0.3s; }
.image-tiles__card--right  { transition-delay: 0.5s; }

/* Animated state — triggered on scroll */
.image-tiles.is-visible .image-tiles__card {
    opacity: 1;
}

/* Fan-out: spread to fill column height */
.image-tiles.is-visible .image-tiles__card--left {
    transform: rotate(-9deg) translate(-135px, -120px);
    z-index: 30;
}
.image-tiles.is-visible .image-tiles__card--middle {
    transform: rotate(8deg) translate(135px, -120px);
    z-index: 20;
}
.image-tiles.is-visible .image-tiles__card--right {
    transform: rotate(-3deg) translate(0px, 145px);
    z-index: 10;
}

/* Hover: flatten rotation, lift card with gold glow */
.image-tiles.is-visible .image-tiles__card--left:hover {
    transform: rotate(-3deg) translate(-135px, -124px) scale(1.04);
    box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7);
    z-index: 40;
}
.image-tiles.is-visible .image-tiles__card--middle:hover {
    transform: rotate(3deg) translate(135px, -124px) scale(1.04);
    box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7);
    z-index: 40;
}
.image-tiles.is-visible .image-tiles__card--right:hover {
    transform: rotate(0deg) translate(0px, 140px) scale(1.04);
    box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7);
    z-index: 40;
}

@media (max-width: 991px) {
    .image-tiles {
        height: 500px;
        margin-bottom: 40px;
    }
    .image-tiles__card {
        width: 205px;
        height: 205px;
    }
    .image-tiles.is-visible .image-tiles__card--left   { transform: rotate(-9deg) translate(-115px, -104px); }
    .image-tiles.is-visible .image-tiles__card--middle { transform: rotate(8deg)  translate(115px,  -104px); }
    .image-tiles.is-visible .image-tiles__card--right  { transform: rotate(-3deg) translate(0px,    122px);  }
    .image-tiles.is-visible .image-tiles__card--left:hover   { transform: rotate(-3deg) translate(-115px, -108px) scale(1.04); box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7); z-index: 40; }
    .image-tiles.is-visible .image-tiles__card--middle:hover { transform: rotate(3deg)  translate(115px,  -108px) scale(1.04); box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7); z-index: 40; }
    .image-tiles.is-visible .image-tiles__card--right:hover  { transform: rotate(0deg)  translate(0px,    116px)  scale(1.04); box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7); z-index: 40; }
}

@media (max-width: 575px) {
    .image-tiles {
        height: 400px;
    }
    .image-tiles__card {
        width: 160px;
        height: 160px;
    }
    .image-tiles.is-visible .image-tiles__card--left   { transform: rotate(-9deg) translate(-88px, -80px); }
    .image-tiles.is-visible .image-tiles__card--middle { transform: rotate(8deg)  translate(88px,  -80px); }
    .image-tiles.is-visible .image-tiles__card--right  { transform: rotate(-3deg) translate(0px,    94px); }
    .image-tiles.is-visible .image-tiles__card--left:hover   { transform: rotate(-3deg) translate(-88px, -84px) scale(1.04); box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7); z-index: 40; }
    .image-tiles.is-visible .image-tiles__card--middle:hover { transform: rotate(3deg)  translate(88px,  -84px) scale(1.04); box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7); z-index: 40; }
    .image-tiles.is-visible .image-tiles__card--right:hover  { transform: rotate(0deg)  translate(0px,    88px) scale(1.04); box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 0 3px rgba(201,168,76,0.7); z-index: 40; }
}

/* ===========================
   MOBILE FIXES
   =========================== */

/* Hero overlay — uniform dark on mobile (text is centred, gradient would leave right side too light) */
@media (max-width: 767px) {
    .hero-video__overlay {
        background: rgba(0, 0, 0, 0.72);
    }
}

@media (max-width: 480px) {
    .hero-video__overlay {
        background: rgba(0, 0, 0, 0.75);
    }
}

/* Back-to-top button — white border, remove SVG ring gold appearance */
#btt-btn {
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
}
#btt-btn svg circle {
    stroke: transparent !important;
}

/* ===========================
   NAV DOWNLOAD BUTTON
   =========================== */
.nav-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto;
    height: 38px;
    padding: 0 14px;
    background: #C9A84C;
    color: #000 !important;
    border: 2px solid #C9A84C;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.nav-download-btn span {
    color: #000;
}

.nav-download-btn i {
    font-size: 20px;
    color: #000;
}

.nav-download-btn:hover {
    background: #000;
    color: #C9A84C !important;
    border-color: #C9A84C;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.nav-download-btn:hover span {
    color: #C9A84C !important;
}

.nav-download-btn:hover i {
    color: #C9A84C !important;
}


/* Mobile offcanvas version — full width */
.nav-download-btn--mobile {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
    margin-top: 15px;
    border-radius: 6px;
    display: flex;
}

/* Back-to-top button — reduce right offset on very small screens */
@media (max-width: 480px) {
    #btt-btn {
        right: 14px !important;
        width: 46px !important;
        height: 46px !important;
    }
}
