:root {
    /* --primary-color: #D7DF22; */
    --primary-color: #c7042f;
    --primary-color-light: #fff1f2;
    --primary-hover: #be123c;
    --secondary-color: #0f172a;
    --secondary-dark: #060606;
    --text-color: #2B2D42;
    --text-light: #8D99AE;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;

    --gi-export-yellow: var(--primary-color);
    --gi-export-dark: #131626;
    --gi-export-light-gray: #F7F7F7;
    --gi-export-text: #666;
    --gi-export-teal: var(--primary-color);

    --container-width: 1240px;
    --header-height: 80px;
    --top-bar-height: 44px;
    --transition: all 0.3s ease;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    color: var(--secondary-color);
    line-height: 1.2;
}

.overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(66 229 122 / 76%) 0%, rgb(188 233 139 / 70%) 100%);
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%); */
}

.container {
    max-width: 1368px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Header & Nav Redesign */
.site-header {
    width: 100%;
    background-color: #121212;
    position: relative;
    z-index: 1000;
}

.top-info-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.top-info-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-info-left .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.top-info-left .info-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.top-info-left .info-item .label {
    font-weight: 600;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.top-info-left .info-item a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.top-info-left .info-item a:hover {
    color: var(--primary-color);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

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

.nav-container-wide {
    display: flex;
    padding: 0px 40px;
    align-items: center;
}

.nav-inner-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 100px;
    display: block;
}

.menu-container-centered {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu-centered {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-menu-centered li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.primary-menu-centered li a {
    font-size: 16px;
    font-weight: 200;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 10px;
}

.primary-menu-centered li.current-menu-item a,
.primary-menu-centered li:first-child a {
    color: var(--primary-color);
    font-weight: 500;
}

.header-right-tools {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.phone-texts {
    display: flex;
    flex-direction: column;
}

.phone-texts .label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 3px;
}

.phone-texts .number {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.btn-quote-round {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-block {
    width: 80px;
    height: 90px;
    /* Adjust to match header height */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.search-trigger {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--top-bar-height));
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(1, 22, 39, 0.8) 0%, rgba(1, 22, 39, 0.4) 50%, rgba(1, 22, 39, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 600px; */
}

.hero-content p {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 80px 0 0;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.sub-title {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.footer-social {
    gap: 10px;
}

.footer-social a {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* About Section Refined */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-area {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.vertical-red-line {
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background-color: var(--primary-color);
}

.about-image-frame {
    position: relative;
    width: 80%;
    /* "Little small" as requested */
}

.about-img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 2px;
}

.offset-frame-red {
    position: absolute;
    top: 25px;
    right: -25px;
    bottom: -25px;
    left: 25px;
    border: 2px solid var(--primary-color);
    z-index: 1;
    border-radius: 2px;
}

.about-text-area {
    flex: 1.2;
}

.about-text-area h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-text-area p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.about-checklist {
    margin-bottom: 40px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.about-checklist i {
    color: var(--primary-color);
    font-size: 14px;
}

.btn-more-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 3px;
    transition: var(--transition);
}

.btn-more-info:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Management Section */
.management-section {
    background-color: var(--white);
}

.management-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: #4DBBB7;
    /* Teal from screenshot */
    margin: 0 auto 50px;
}

.management-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.management-row.reverse {
    flex-direction: row-reverse;
}

.management-content {
    flex: 1.2;
}

.management-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.management-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.management-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame-teal {
    position: relative;
    padding: 10px;
    background-color: var(--white);
}

.image-frame-teal::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    bottom: -15px;
    left: 20px;
    background-color: #4DBBB7;
    /* Teal frame from screenshot */
    z-index: -1;
    border-radius: 2px;
}

.image-frame-teal img {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {

    .management-row,
    .management-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

/* Services Grid Redesign */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card-new {
    background-color: #f5f5f7;
    /* Slight off-white as per ref */
    padding: 35px 30px;
    border-radius: 5px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
}

.service-card-new:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.service-card-new:hover h3,
.service-card-new:hover p {
    color: var(--white);
}

.service-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 5px;
}

.service-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-card-new:hover .service-image img {
    transform: scale(1.1);
}

.read-more-alt {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.service-card-new .arrow-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}

.service-card-new:hover .read-more-alt {
    color: var(--white);
}

.service-card-new:hover .arrow-circle {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Countries Grid Modern */
.countries-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.country-card-modern {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow from ref */
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.country-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.country-flag-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.country-flag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.country-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.country-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

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

@media (max-width: 768px) {
    .countries-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Contact/Map */
.contact-map-wrapper {
    display: flex;
}

.contact-form-box {
    flex: 1;
    background-color: var(--white);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin-right: -100px;
    margin-bottom: -50px;
}

.map-box {
    flex: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-family: inherit;
}

.callback-form textarea {
    height: 150px;
    margin-bottom: 20px;
}

.w-full {
    width: 100%;
}

@media (max-width: 992px) {
    .welcome-wrapper {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-map-wrapper {
        flex-direction: column;
    }

    .contact-form-box {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a:hover,
.contact-col p a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col p {
    margin-bottom: 15px;
}

.contact-col p i {
    margin-right: 5px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 15px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}



/* Shop Layout Grid Refined */
.shop-layout-grid-refined {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.bg-light {
    background-color: #f4f7f6;
}

/* Sidebar Refined */
.shop-sidebar-refined {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shop-sidebar-refined .widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.shop-sidebar-refined .widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary-color);
    border-bottom: none;
    padding: 0;
}

/* Shop Top Bar */
.shop-top-bar-refined {
    background: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.shop-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggles {
    display: flex;
    gap: 5px;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 8px;
}

.btn-view {
    border: none;
    background: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view.active {
    background: var(--primary-color);
    color: #fff;
}

.gie-woocommerce-content .page-title,
.gie-woocommerce-content .woocommerce-result-count,
.gie-woocommerce-content .woocommerce-ordering {
    display: none;
}

/* Product Card Refined */
.woocommerce ul.products li.product {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    margin: 0 !important;
    border-radius: 0;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-card-meta {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 800;
    text-align: left;
    /* Keep left or center? User said center */
    text-align: center;
}

/* Shop Top Bar Modern */
.shop-top-bar-modern {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.shop-actions-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-toggles-modern {
    display: flex;
    gap: 5px;
    background: #f1f3f5;
    padding: 4px;
    border-radius: 6px;
}

.btn-view-mode {
    border: none;
    background: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 14px;
}

.btn-view-mode.active {
    background: #219398;
    color: #fff;
}

/* Product Cards */
.woocommerce ul.products li.product {
    padding: 20px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-view-details {
    background-color: #219398;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-view-details:hover {
    background-color: #1a7a7e;
}

/* Remove sale and price styles */
.woocommerce span.onsale {
    display: none !important;
}

/* Single Product Page Refined */
.single-product-layout-refined {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.02);
}

.single-product-cat-label {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 10px;
    display: block;
}

.single-product-header-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.single-product-header-wrap .product_title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
}

.stock-status-badge {
    background: #d4edda;
    color: #28a745;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: capitalize;
}

/* Custom Rating */
.custom-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.custom-product-rating .star-rating {
    font-size: 14px;
    color: #ffb74d;
}

.rating-info {
    font-size: 13px;
    color: #888;
}

.single-product-layout-refined .price {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-product-layout-refined .price ins {
    text-decoration: none;
}

.single-product-layout-refined .price del {
    font-size: 16px;
    color: #bbb;
    font-weight: 400;
}

/* Variation Buttons Refined */
.woocommerce div.product form.cart {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce div.product form.cart .quantity {
    margin: 0 !important;
}

.woocommerce div.product form.cart .quantity input {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    width: 60px;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button,
.enquire-now-button {
    background-color: #2e4d3a !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    flex: 0 0 auto !important;
    min-width: unset !important;
    text-decoration: none;
    display: inline-block;
}

.enquire-now-button:hover {
    background-color: var(--primary-color) !important;
}

/* Gallery Thumbnails with Borders */
.woocommerce div.product div.images .flex-control-thumbs li {
    padding: 5px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    opacity: 1;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    border-color: #333;
}

/* Breadcrumb Styling */
.woocommerce-breadcrumb-refined {
    font-size: 14px;
    color: #999;
}

.woocommerce-breadcrumb-refined a {
    color: #666;
    text-decoration: none;
}

.woocommerce-breadcrumb-refined a:hover {
    color: var(--primary-color);
}

.wishlist-icon-btn {
    background: none;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
}

/* Social Share */
.product-share-wrap {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-share-wrap span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.product-share-wrap a {
    color: #2e4d3a;
    font-size: 16px;
    transition: color 0.3s ease;
}

.product-share-wrap a:hover {
    color: var(--primary-color);
}

/* Tabs Table Redesign */
.woocommerce-Tabs-panel--additional_information th {
    background: #ffb74d !important;
}

/* Related Products Refined */
.related.products>h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.related.products>h2:before {
    content: '- Related Products -';
    display: block;
    font-size: 12px;
    color: #ffb74d;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Tabs Redesign */
.woocommerce-tabs {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.woocommerce-tabs ul.tabs {
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    background: none !important;
}

.woocommerce-tabs ul.tabs:before {
    display: none;
}

.woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.woocommerce-tabs ul.tabs li:after,
.woocommerce-tabs ul.tabs li:before {
    display: none !important;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 18px;
    font-weight: 700;
    color: #aaa;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #004d3d;
}

.woocommerce-tabs ul.tabs li.active a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #004d3d;
}

.woocommerce-Tabs-panel--additional_information table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.woocommerce-Tabs-panel--additional_information th {
    background: #ffb74d;
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
}

.woocommerce-Tabs-panel--additional_information td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    background: #fff;
}

.woocommerce-Tabs-panel--additional_information tr:nth-child(even) td {
    background: #f9f9f9;
}

/* Trust Badges */
.product-trust-badges-container {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 50px;
    margin-bottom: 50px;
}

.product-trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: #fff8e1;
    color: #ffb74d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-info strong {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
}

.trust-info span {
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .product-trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

.woocommerce ul.products li.product .price {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 16px;
}

.woocommerce ul.products li.product .price del {
    color: #ccc !important;
}

.discount-tag {
    background: #ffecec;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.product-card-footer-modern {
    padding: 0 20px 20px;
    margin-top: auto;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: #fff !important;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-to-cart:hover {
    background-color: var(--secondary-color);
}

/* On-Sale Badge */
.woocommerce span.onsale {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    top: 15px;
    left: 15px;
    right: auto;
    min-height: auto;
    min-width: auto;
    line-height: 1;
}

@media (max-width: 1200px) {
    .shop-layout-grid-refined {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */

/* Spacing - Padding & Margin (0-5 scale) */
.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Margin Specifics */
.mt-1 {
    margin-top: 0.25rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Padding Specifics */
.pt-1 {
    padding-top: 0.25rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Typography */
.fs-1 {
    font-size: 2.5rem !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fs-small {
    font-size: 0.875rem !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

.fw-black {
    font-weight: 900 !important;
}

/* Radius */
.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-md {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.rounded-2xl {
    border-radius: var(--radius-2xl) !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

/* Borders */
.border {
    border: 1px solid #ddd !important;
}

.border-top {
    border-top: 1px solid #ddd !important;
}

.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.border-left {
    border-left: 1px solid #ddd !important;
}

.border-right {
    border-right: 1px solid #ddd !important;
}

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

/* Flex */
.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}


/* gi-export Hero Section */
.hero-gi-export {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 180px 0;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-gi-export::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 22, 38, 0.7);
    z-index: -1;
}

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

/* Optional dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-badge-f {
    display: inline-block;
    background: var(--primary-color-light);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-gi-export h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-gi-export h1 span {
    color: var(--primary-color-light);
}

.hero-gi-export p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-gi-export {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--gi-export-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gi-export i {
    background: var(--gi-export-dark);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 12px;
}

/* Hero Bottom Ribbon */
.hero-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 2;
}

.ribbon-title {
    background: var(--gi-export-yellow);
    color: var(--gi-export-white);
    padding: 20px 40px;
    font-weight: 800;
    font-size: 16px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    width: 280px;
    display: flex;
    align-items: center;
}

.ribbon-features {
    flex: 1;
    background: var(--secondary-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
}

.r-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.r-feature i {
    color: var(--gi-export-yellow);
    font-size: 20px;
}

/* Smart Energy Section */
.smart-energy-sec {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.smart-energy-sec .icon-top {
    background: var(--gi-export-dark);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.smart-energy-sec h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gi-export-dark);
    max-width: 900px;
    margin: 0 auto 40px;
    text-transform: uppercase;
}

.smart-energy-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.smart-energy-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.smart-text-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    text-align: left;
}

.smart-text-block p {
    font-size: 14px;
    color: var(--gi-export-text);
}

.btn-dark-f {
    background: var(--gi-export-dark);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-dark-f i {
    color: var(--gi-export-yellow);
}

/* Solar Solutions Sec */
.solar-solutions-sec {
    background: var(--secondary-dark);
    padding: 80px 0;
}

.solar-solutions-sec h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.ss-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ss-card {
    background: #fff;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
}

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

.ss-icon {
    width: 60px;
    height: 60px;
    background: var(--gi-export-dark);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ss-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 15px;
}

.ss-card p {
    font-size: 14px;
    color: var(--gi-export-text);
    margin-bottom: 20px;
}

.btn-outline-f {
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--gi-export-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

.btn-outline-f:hover {
    background: var(--gi-export-yellow);
    border-color: var(--gi-export-yellow);
}

/* Panels Inverters */
.panels-inverters-sec {
    padding: 80px 0;
    background: #fff;
}

.panels-inverters-sec h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--gi-export-dark);
    margin-bottom: 50px;
}

.pi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pi-feature-box {
    display: flex;
    flex-direction: column;
}

.pi-f-icon {
    width: 40px;
    height: 40px;
    background: var(--gi-export-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.pi-feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 10px;
}

.pi-feature-box p {
    font-size: 14px;
    color: var(--gi-export-text);
}

/* Clean Environment Sec */
.clean-env-sec {
    padding: 80px 0;
    background: var(--gi-export-light-gray);
}

.ce-header {
    text-align: right;
    margin-bottom: 30px;
}

.ce-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gi-export-dark);
}

.ce-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.ce-info {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ce-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 15px;
}

.ce-info p {
    font-size: 14px;
    color: var(--gi-export-text);
    margin-bottom: 25px;
}

.ce-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Best Offer Sec */
.best-offer-sec {
    padding: 80px 0;
    background: #fff;
}

.bo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.bo-main-box {
    background: #4A6E99;
    color: #fff;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.bo-main-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.bo-main-box img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    z-index: 1;
}

.bo-card {
    border: 1px solid #eee;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bo-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 15px;
}

.bo-card p {
    font-size: 14px;
    color: var(--gi-export-text);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-sec {
    background: var(--secondary-dark);
    padding: 100px 0 80px;
    position: relative;
    /* margin-top: 60px; */
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--gi-export-yellow);
    /* Creates the angled yellow bar seen in the design */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 95% 100%, 90% 30%, 30% 30%, 25% 100%, 0 100%);
    z-index: 1;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-wrapper h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 200;
    line-height: 1.4;

    margin: 0;
    text-transform: uppercase;
}

.cta-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-phone {
    padding-left: 25px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gi-export-dark);
}

.cta-phone-btn {
    background: var(--gi-export-dark);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 18px;
}

.cta-phone-btn:hover {
    background: var(--gi-export-teal);
    color: #fff;
}

/* ----- UPDATED SOLAR SOLUTIONS SECTION ----- */
.solar-solutions-sec {
    /* very dark blue */
    padding: 80px 0;
    position: relative;
}

.ss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ss-header h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 200;
    margin: 0;
}

.ss-nav {
    display: flex;
}

.ss-nav-btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ss-nav-btn.next {
    background: var(--gi-export-yellow);
    border-color: var(--gi-export-yellow);
    color: var(--gi-export-dark);
}

.ss-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.ss-cards::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.ss-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s;

    /* Flex styles for carousel */
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    min-width: 250px;
}

@media (max-width: 991px) {
    .ss-card {
        flex: 0 0 calc(33.333% - 13.33px);
    }
}

@media (max-width: 767px) {
    .ss-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .ss-card {
        flex: 0 0 100%;
    }
}

.ss-card-content {
    padding: 20px;
}

.ss-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 25px; */
    position: relative;
}

.ss-icon {
    width: 50px;
    height: 50px;
    background: #111424;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.ss-img-mask {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.ss-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111424;
    margin-bottom: 15px;
}

.ss-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ss-card .btn-outline-f {
    border: 1px solid #ddd;
    padding: 8px 25px;
    border-radius: 30px;
    color: #111424;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

/* ----- UPDATED PANELS INVERTERS SECTION ----- */
.panels-inverters-sec {
    padding: 80px 0;
    background: #1d1d1d;
    /* light cream */
    position: relative;
    overflow: hidden;
}

.pi-yellow-corner-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 50px;
    background: var(--gi-export-yellow);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.pi-yellow-corner-bottom {
    /* position: absolute;
    bottom: -20px;
    right: 0;
    width: 300px;
    height: 100px;
    background: var(--gi-export-yellow);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(15deg); */
}

.panels-inverters-sec h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 200;
    color: var(--white);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pi-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

.pi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pi-feature-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.pi-feature-box.active-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.pi-f-icon {
    width: 40px;
    height: 40px;
    background: #111424;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.pi-feature-box.active-card .pi-f-icon {
    background: var(--gi-export-yellow);
    color: var(--white);
}

.pi-feature-box h4 {
    font-size: 16px;
    font-weight: 800;
    color: #111424;
    margin-bottom: 10px;
}

.pi-feature-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ----- MANAGEMENT SECTION UPDATE ----- */

.about-section {
    background: #fff;
    padding: 80px 0;
}

.management-title-new {
    font-size: 28px;
    font-weight: 800;
    color: var(--gi-export-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-wrapper-new.reverse-layout {
    /* The layout is already defined by HTML source order, but just in case */
}

.about-image-area-new {
    position: relative;
    padding-left: 20px;
    /* space for the line */
    padding-bottom: 20px;
    /* space for the frame */
}

.vertical-theme-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 80%;
    background: var(--gi-export-teal);
    z-index: 2;
}

.about-image-frame-new {
    position: relative;
    z-index: 1;
}

.about-img-new {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.offset-frame-theme {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gi-export-teal);
    z-index: 1;
}

.about-text-area-new .sub-title-gray {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-text-area-new h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gi-export-dark);
    margin-bottom: 25px;
}

.about-text-area-new p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-footer-new {
    margin-top: 30px;
}

.btn-theme-solid {
    background: var(--gi-export-teal);
    color: var(--secondary-color);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-theme-solid i {
    margin-left: 10px;
    font-size: 14px;
}

.btn-theme-solid:hover {
    background: var(--gi-export-dark);
    color: #fff;
}

/* ----- WHY CHOOSE US SECTION ----- */
.why-choose-us-sec {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../images/hero-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Inter', sans-serif;
}

.wcu-header {
    margin-bottom: 50px;
}

.wcu-header h2 {
    font-size: 42px;
    font-weight: 200;
    color: var(--white);
    margin-bottom: 15px;
}

.wcu-header p {
    font-size: 26px;
    color: var(--white);
    line-height: 1.6;
}

.wcu-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
}

.wcu-left-grid {
    grid-column: span 6;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

.wcu-card {
    border-radius: 20px;
    background-color: #9d4d4d56;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
    border: 3px solid var(--gi-export-teal);
}

.wcu-icon {
    font-size: 24px;
    background-color: var(--gi-export-teal);
    padding: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.wcu-card.span-3 {
    grid-column: span 3;
}

.wcu-card.span-2 {
    grid-column: span 2;
}

.wcu-card.span-6 {
    grid-column: span 6;
}

.wcu-card-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wcu-stat {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -1px;
}

.wcu-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}

.bg-blue {
    background: #4255D4;
    color: #fff;
}

.bg-blue .wcu-card-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-light {
    background: #F4F6FB;
    color: #111;
}

.bg-green {
    background: #C1FA8E;
    color: #111;
}

.text-blue {
    color: #4255D4;
}

.wcu-card.text-card .wcu-card-main h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.wcu-card.text-card .wcu-card-main p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
}

.fw-bold {
    font-weight: 700;
}

.wcu-right-img {
    grid-column: span 3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 100%;
    border: 3px solid var(--gi-export-teal);
}

.wcu-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 40% 0%;
}

.wcu-img-decor {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.wcu-img-decor::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .wcu-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .wcu-left-grid {
        grid-column: span 1;
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-card.span-2 {
        grid-column: span 1;
    }

    .wcu-card.span-6 {
        grid-column: span 2;
    }

    .wcu-right-img {
        grid-column: span 1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .wcu-left-grid {
        grid-template-columns: 1fr;
    }

    .wcu-card.span-3,
    .wcu-card.span-2,
    .wcu-card.span-6 {
        grid-column: span 1;
    }

    .wcu-header h2 {
        font-size: 32px;
    }
}

/* Custom Contact Form 7 Layout */
.custom-contact-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-panel {
    background: var(--secondary-color, #011627);
    color: #fff;
    padding: 50px;
    width: 45%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.contact-info-panel .badge-solid {
    display: inline-block;
    background: var(--primary-color, #D7DF22);
    color: var(--secondary-color, #011627);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info-panel h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info-panel p {
    color: #a1a1aa;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: calc(50% - 10px);
}

.contact-item.w-100 {
    width: 100%;
}

.contact-icon {
    color: var(--primary-color, #D7DF22);
    font-size: 20px;
    margin-top: 3px;
}

.contact-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text span {
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.5;
    display: block;
}

.contact-form-panel {
    padding: 50px;
    width: 55%;
    background: #fff;
}

.contact-form-panel .badge-outline {
    display: inline-block;
    border: 1px solid #e4e4e7;
    color: #52525b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form-panel h2 {
    color: var(--secondary-color, #011627);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form-panel p {
    color: #71717a;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: #fafafa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color, #D7DF22);
    background: #fff;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color, #D7DF22) !important;
    color: var(--secondary-color, #011627) !important;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-submit:hover {
    background: var(--primary-hover, #B00320) !important;
    color: #fff !important;
}

@media (max-width: 992px) {
    .custom-contact-wrapper {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
        border-radius: 0;
    }

    .contact-info-panel {
        border-radius: 16px 16px 0 0;
    }

    .contact-form-panel {
        border-radius: 0 0 16px 16px;
    }
}

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

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

    .contact-item {
        width: 100%;
    }
}

/* --- Premium Animation System --- */

/* Scroll Reveal Base */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
}

/* Animation Directions */
.fade-up {
    transform: translateY(40px);
}

.fade-up.active {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-left.active {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(40px);
}

.fade-right.active {
    transform: translateX(0);
}

.zoom-in {
    transform: scale(0.95);
}

.zoom-in.active {
    transform: scale(1);
}

/* Staggered Delays (for grids) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* --- Enhanced Hover Effects --- */

/* Image Hover Zoom */
.hover-zoom {
    overflow: hidden;
    display: block;
}

.hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-zoom:hover img {
    transform: scale(1.08);
}

/* Unified Card Hover Enhancement */
.wcu-card,
.service-card-new,
.ss-card,
.country-card-modern,
.pi-feature-box,
.custom-contact-wrapper {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wcu-card:hover,
.service-card-new:hover,
.ss-card:hover,
.country-card-modern:hover,
.pi-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 22, 39, 0.12);
}

/* Button & Icon Micro-interactions */
.btn-gi-export,
.btn-theme-solid,
.btn-outline-f,
.btn-submit {
    transition: all 0.3s ease;
}

.btn-gi-export:hover i,
.btn-theme-solid:hover i {
    transform: translateX(5px);
}

/* Pulse effect for badges */
@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 45, 32, 0.9);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(233, 45, 32, 0.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 45, 32, 0);
    }
}

.hero-badge-f,
.badge-solid {
    animation: pulse-primary 3s infinite;
}

/* Sticky Header on scroll effect (if header has id) */
.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(20, 20, 20, .8);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ==========================================================================
   PREMIUM BUTTON COMPONENT OVERRIDES
   Pill-shaped solid buttons with a double offset border design (per mockup)
   ========================================================================== */

/* 1. Base Button UI Style */
.btn,
.btn-primary,
.btn-more-info,
.btn-gi-export,
.btn-theme-solid,
.btn-outline-f,
.btn-submit,
.btn-add-to-cart,
.btn-dark-f,
.btn-view-details,
.enquire-now-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #content input.button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page #content input.button,
.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce .cart-collaterals .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order,
.woocommerce-page #place_order {
    position: relative !important;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 100px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 14px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    overflow: visible !important;
    /* Required to show the outer offset ring */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: none !important;
    height: auto !important;
    cursor: pointer !important;
}

/* Clean up icons inside premium buttons */
.btn i,
.btn-primary i,
.btn-more-info i,
.btn-gi-export i,
.btn-theme-solid i,
.btn-outline-f i,
.btn-submit i,
.btn-add-to-cart i,
.btn-dark-f i,
.btn-view-details i,
.enquire-now-button i,
.woocommerce a.button i,
.woocommerce button.button i,
.woocommerce div.product form.cart .button.single_add_to_cart_button i {
    color: var(--white) !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 0 0 6px !important;
    font-size: inherit !important;
    display: inline-flex !important;
}

/* 2. Outer Offset Ring (Pseudo-element Double Border) */
.btn::after,
.btn-primary::after,
.btn-more-info::after,
.btn-gi-export::after,
.btn-theme-solid::after,
.btn-outline-f::after,
.btn-submit::after,
.btn-add-to-cart::after,
.btn-dark-f::after,
.btn-view-details::after,
.enquire-now-button::after,
.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce input.button::after,
.woocommerce #respond input#submit::after,
.woocommerce #content input.button::after,
.woocommerce-page a.button::after,
.woocommerce-page button.button::after,
.woocommerce-page input.button::after,
.woocommerce-page #respond input#submit::after,
.woocommerce-page #content input.button::after,
.woocommerce div.product form.cart .button.single_add_to_cart_button::after,
.woocommerce .cart-collaterals .checkout-button::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after,
.woocommerce #place_order::after,
.woocommerce-page #place_order::after {
    content: '' !important;
    position: absolute !important;
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    border: 1.5px solid var(--primary-color) !important;
    border-radius: 100px !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 2 !important;
}

/* 3. Hover Interactions */
.btn:hover,
.btn-primary:hover,
.btn-more-info:hover,
.btn-gi-export:hover,
.btn-theme-solid:hover,
.btn-outline-f:hover,
.btn-submit:hover,
.btn-add-to-cart:hover,
.btn-dark-f:hover,
.btn-view-details:hover,
.enquire-now-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #content input.button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page #content input.button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce .cart-collaterals .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #place_order:hover,
.woocommerce-page #place_order:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
}

/* Outer offset ring expands slightly on hover and changes color */
.btn:hover::after,
.btn-primary:hover::after,
.btn-more-info:hover::after,
.btn-gi-export:hover::after,
.btn-theme-solid:hover::after,
.btn-outline-f:hover::after,
.btn-submit:hover::after,
.btn-add-to-cart:hover::after,
.btn-dark-f:hover::after,
.btn-view-details:hover::after,
.enquire-now-button:hover::after,
.woocommerce a.button:hover::after,
.woocommerce button.button:hover::after,
.woocommerce input.button:hover::after,
.woocommerce #respond input#submit:hover::after,
.woocommerce #content input.button:hover::after,
.woocommerce-page a.button:hover::after,
.woocommerce-page button.button:hover::after,
.woocommerce-page input.button:hover::after,
.woocommerce-page #respond input#submit:hover::after,
.woocommerce-page #content input.button:hover::after,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover::after,
.woocommerce .cart-collaterals .checkout-button:hover::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after,
.woocommerce #place_order:hover::after,
.woocommerce-page #place_order:hover::after {
    border-color: var(--primary-hover) !important;
    top: -7px !important;
    left: -7px !important;
    right: -7px !important;
    bottom: -7px !important;
}

/* Responsiveness */
@media (max-width: 1300px) {

    .header-phone,
    .btn-quote-round {
        display: none;
    }

    .header-right-tools {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .menu-container-centered {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #121212;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    .menu-container-centered.active {
        display: block;
    }

    .primary-menu-centered {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }

    .primary-menu-centered li {
        width: 100%;
        display: flex;
    }

    .primary-menu-centered li a {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-toggle-btn {
        display: block;
    }

    .nav-container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-inner-wrapper {
        padding: 15px 0;
    }

    .header-search-block {
        height: 70px;
    }

    .wcu-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .wcu-left-grid {
        grid-column: span 1;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .wcu-card.span-2 {
        grid-column: span 1;
    }

    .wcu-card.span-6 {
        grid-column: span 2;
    }

    .wcu-right-img {
        grid-column: span 1;
        height: 400px;
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .hero-gi-export {
        padding: 120px 0 40px;
    }

    .hero-gi-export h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-gi-export p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-ribbon {
        position: relative;
        flex-direction: column;
        margin-top: 40px;
    }

    .ribbon-title {
        width: 100%;
        clip-path: none;
        justify-content: center;
        padding: 15px;
    }

    .ribbon-features {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        clip-path: none;
        align-items: center;
    }

    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-area-new {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-text-area-new {
        text-align: center;
    }

    .about-text-area-new h2 {
        font-size: 28px;
    }

    .ss-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pi-grid img {
        margin: 0 auto;
        display: block;
        max-width: 300px;
    }

    .pi-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-info-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-info-left {
        flex-direction: column;
        gap: 6px;
    }

    .top-social {
        justify-content: center;
    }

    .logo img {
        height: 70px;
    }

    .hero-gi-export h1 {
        font-size: 32px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .wcu-left-grid {
        grid-template-columns: 1fr;
    }

    .wcu-card.span-6 {
        grid-column: span 1;
    }

    .pi-features {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-contact-box {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .ss-cards {
        grid-template-columns: 1fr;
    }

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

    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .cta-contact-box {
        width: 100%;
        max-width: 320px;
    }

    .cta-phone {
        font-size: 16px;
    }
}

/* ==========================================
   NEW PRODUCT CARD UI (CBD Reference Style)
   ========================================== */
.woocommerce ul.products li.product.gie-modern-product-card {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gie-modern-product-card .product-card-image-wrap {
    position: relative;
    background-color: #FDF0ED !important;
    /* light pinkish peach */
    border-radius: 20px !important;
    /* padding: 30px !important; */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gie-modern-product-card:hover .product-card-image-wrap {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gie-modern-product-card .product-card-image-wrap img {
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gie-modern-product-card:hover .product-card-image-wrap img {
    transform: scale(1.05);
}

/* Wishlist Icon Button */
.gie-modern-product-card .product-card-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D99AE !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
}

.gie-modern-product-card .product-card-wishlist-btn:hover {
    transform: scale(1.1);
    color: #ed441c !important;
}

.gie-modern-product-card .product-card-wishlist-btn.active {
    color: #ed441c !important;
}

.gie-modern-product-card .product-card-wishlist-btn.active i {
    font-weight: 900;
    /* FontAwesome solid */
}

/* Quick View Button */
.gie-modern-product-card .product-card-quickview-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background: #ffffff !important;
    color: #011627 !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.gie-modern-product-card:hover .product-card-quickview-btn {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.gie-modern-product-card .product-card-quickview-btn:hover {
    background: #011627 !important;
    color: #ffffff !important;
}

/* Title & Detail/Price Row */
.gie-modern-product-card .product-card-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 5px;
}

.gie-modern-product-card .product-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #011627 !important;
    margin: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
}

.gie-modern-product-card .product-card-price-detail {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #8D99AE !important;
    white-space: nowrap;
}

/* Rating Stars Hiding */
.gie-modern-product-card .star-rating,
.gie-modern-product-card .woocommerce-product-rating {
    display: none !important;
}

/* Shop Now Pill Button */
.gie-modern-product-card .product-card-footer-modern {
    padding: 0 !important;
    margin-top: auto;
}

.gie-modern-product-card .btn-shop-now {
    background-color: var(--primary-color) !important;
    /* Primary theme color (#ed441c) */
    color: #ffffff !important;
    width: 100%;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer;
}

.gie-modern-product-card .btn-shop-now:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 68, 28, 0.2);
}

.gie-modern-product-card .btn-shop-now i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.gie-modern-product-card .btn-shop-now:hover i {
    transform: translate(2px, -2px);
}

/* Premium Quick View Modal */
.gie-quickview-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 22, 39, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gie-quickview-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gie-quickview-modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 850px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.gie-quickview-modal-overlay.active .gie-quickview-modal-container {
    transform: scale(1);
}

.gie-quickview-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F3F5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #495057;
    z-index: 20;
    transition: all 0.2s ease;
}

.gie-quickview-close-btn:hover {
    background: #e9ecef;
    color: #000000;
    transform: rotate(90deg);
}

.gie-quickview-content-body {
    padding: 40px;
    overflow-y: auto;
}

.gie-quickview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gie-quickview-left {
    background: #FDF0ED;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.gie-quickview-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gie-quickview-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gie-quickview-title {
    font-size: 28px;
    font-weight: 800;
    color: #011627;
    margin-bottom: 10px;
}

.gie-quickview-price {
    font-size: 20px;
    font-weight: 700;
    color: #094C49;
    margin-bottom: 20px;
}

.gie-quickview-desc {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gie-quickview-action {
    display: flex;
    gap: 15px;
    align-items: center;
}

@media (max-width: 768px) {
    .gie-quickview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gie-quickview-content-body {
        padding: 25px;
    }
}

/* ==========================================
   SIDEBAR PRODUCT CATEGORIES WIDGET REDESIGN
   ========================================== */
.shop-sidebar-refined .widget_product_categories,
.shop-sidebar-refined .widget_block {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f0f0f0 !important;
    margin-bottom: 30px !important;
}

.shop-sidebar-refined .widget_product_categories .widget-title,
.shop-sidebar-refined .widget_block .widget-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #011627 !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.shop-sidebar-refined .widget_product_categories .sidebar-reset-link,
.shop-sidebar-refined .widget_block .sidebar-reset-link {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #8D99AE !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.shop-sidebar-refined .widget_product_categories .sidebar-reset-link:hover,
.shop-sidebar-refined .widget_block .sidebar-reset-link:hover {
    color: #011627 !important;
}

.shop-sidebar-refined ul.product-categories,
.shop-sidebar-refined .wc-block-product-categories-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item,
.shop-sidebar-refined .wc-block-product-categories-list-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item a,
.shop-sidebar-refined .wc-block-product-categories-list-item a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

/* Mock Checkbox Styling */
.shop-sidebar-refined ul.product-categories li.cat-item a::before,
.shop-sidebar-refined .wc-block-product-categories-list-item a::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    border: 1.5px solid #ced4da !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    display: none !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item.current-cat a,
.shop-sidebar-refined .wc-block-product-categories-list-item.is-active a {
    color: #011627 !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item.current-cat a::before,
.shop-sidebar-refined ul.product-categories li.cat-item a:hover::before,
.shop-sidebar-refined .wc-block-product-categories-list-item.is-active a::before,
.shop-sidebar-refined .wc-block-product-categories-list-item a:hover::before {
    border-color: #094C49 !important;
    background-color: #e6f2f2 !important;
}

/* Category Count Badges */
.shop-sidebar-refined ul.product-categories li.cat-item .count,
.shop-sidebar-refined .wc-block-product-categories-list-item-count {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    padding: 4px 12px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #8D99AE !important;
    min-width: 36px !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
}

/* ==========================================================================
   About Us Page Refined (Premium Layout Styles)
   ========================================================================== */

/* Modern Hero Section */
.about-modern-hero,
.solar-plant-hero {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0 160px;
    overflow: hidden;
}

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

/* Accent Decorative Shapes */
.decor-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
}

.decor-shape.shape-1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
}

.decor-shape.shape-2 {
    bottom: 50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: var(--primary-color-light);
}

/* Top Hero Title */
.hero-top-title {
    text-align: center;
    margin-bottom: 60px;
}

.hero-top-title h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--secondary-color);
    letter-spacing: -1.5px;
}

.hero-top-title h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-top-title h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(237, 68, 28, 0.15);
    border-radius: 4px;
}

/* Hero Flex Layout */
.hero-flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.hero-left-info {
    flex: 1;
    max-width: 320px;
}

.hero-left-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-about-badge {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    transition: var(--transition);
}

.btn-about-badge:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Center Image Layout */
.hero-center-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 380px;
}

.visual-circle-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 68, 28, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border: 1.5px dashed rgba(237, 68, 28, 0.32);
    top: 0;
    z-index: 1;
}

.visual-portrait {
    max-width: 320px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Action Buttons Pill Block overlay */
.visual-action-pills {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.pill-btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.pill-btn-solid:hover {
    background-color: var(--primary-hover);
}

.pill-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.pill-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Right Badge Layout */
.hero-right-badge {
    flex: 1;
    max-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-right-badge h3 {
    font-size: 38px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.hero-right-badge p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
}

/* Curved Separator at bottom of hero */
.curved-bottom-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 4;
}

.curved-bottom-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.curved-bottom-separator .shape-fill {
    fill: #111215;
    /* Matching dark section background */
}

/* Dark Section: Stats & Story */
.about-dark-section {
    background-color: #111215;
    padding: 120px 0 100px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Stats Row */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 90px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(237, 68, 28, 0.3);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Masterpieces Sub-Section */
.about-masterpieces-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.decor-sparkle {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.masterpieces-left h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.masterpieces-right p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Dual Image Collage */
.about-collage-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.collage-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.collage-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-item:hover img {
    transform: scale(1.03);
}

.collage-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Expertise Section */
.about-expertise-section {
    background-color: #fafbfc;
    padding: 120px 0;
}

.expertise-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.expertise-tag {
    background-color: rgba(237, 68, 28, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.expertise-title-row p {
    max-width: 500px;
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.expertise-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* Left interactive items */
.expertise-list-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.expertise-item:hover,
.expertise-item.active {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.item-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    align-self: flex-start;
    padding-top: 2px;
}

.item-title-desc {
    flex: 1;
}

.item-title-desc h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.item-title-desc p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.expertise-item:hover .item-title-desc p,
.expertise-item.active .item-title-desc p {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.item-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f7f8f9;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.expertise-item:hover .item-arrow,
.expertise-item.active .item-arrow {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(-45deg);
}

/* Center Image Layout */
.expertise-center-image {
    display: flex;
    justify-content: center;
}

.expertise-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.expertise-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rotating SVG text label */
.swirling-circle-decor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateText 15s linear infinite;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.svg-text {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 800;
    fill: var(--secondary-color);
    letter-spacing: 1px;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

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

/* Right Action Cards */
.expertise-action-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.action-card-dark,
.action-card-primary {
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    transition: var(--transition);
}

.action-card-dark {
    background-color: #111215;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-card-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.action-card-dark p,
.action-card-primary p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 25px;
}

.action-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.action-link-btn .arrow-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.action-link-btn:hover .arrow-wrap {
    background-color: var(--white);
    color: var(--secondary-color);
}

.action-link-btn.white-style:hover .arrow-wrap {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-top-title h1 {
        font-size: 46px;
    }

    .hero-flex-layout {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-left-info,
    .hero-right-badge {
        max-width: 500px;
        text-align: center;
    }

    .hero-right-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .expertise-main-grid {
        grid-template-columns: 1fr;
    }

    .expertise-center-image {
        display: none;
        /* Hide center image on tablet/mobile to focus layout */
    }
}

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

    .about-masterpieces-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-collage-row {
        grid-template-columns: 1fr;
    }

    .collage-item img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-top-title h1 {
        font-size: 34px;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px;
    }

    .visual-action-pills {
        padding: 8px 10px;
    }

    .pill-btn-solid,
    .pill-btn-outline {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Product Get Quote Popup Modal & Form Styles
   ========================================================================== */

.btn-get-quote {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-get-quote:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 68, 28, 0.25);
}

.gie-quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(1, 22, 39, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
}

.gie-quote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.gie-quote-modal-container {
    background-color: #ffffff;
    width: 90%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 40px;
    animation: quoteModalFade 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes quoteModalFade {
    0% {
        transform: translateY(20px) scale(0.96);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.gie-quote-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f3f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.gie-quote-close-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.gie-quote-modal-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: 20px;
}

.gie-quote-modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.gie-quote-modal-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.gie-quote-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 35px;
    align-items: start;
}

.gie-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.gie-form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gie-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gie-form-user-details input,
.gie-form-user-details textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #eaeaea;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.gie-form-user-details input:focus,
.gie-form-user-details textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 68, 28, 0.08);
}

.gie-form-user-details textarea {
    height: 110px;
    resize: none;
}

/* Checklist Dropdown */
.gie-quote-products-checklist {
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 15px;
    max-height: 310px;
    overflow-y: auto;
    background-color: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Scrollbar for checklist */
.gie-quote-products-checklist::-webkit-scrollbar {
    width: 6px;
}

.gie-quote-products-checklist::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
}

.gie-quote-products-checklist::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 4px;
}

.gie-quote-products-checklist::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.product-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
}

.product-checkbox-label input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid #ced4da;
    border-radius: 6px;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.product-checkbox-label input[type="checkbox"]:checked+.custom-checkbox {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.product-checkbox-label input[type="checkbox"]:checked+.custom-checkbox::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 11px;
}

.product-title-text {
    line-height: 1.3;
}

/* Response Message */
.gie-quote-response-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}

.gie-quote-response-msg.success {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #c2e7cd;
}

.gie-quote-response-msg.error {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

/* Submit Button */
.btn-submit-quote {
    padding: 14px 28px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gie-quote-modal-container {
        padding: 30px 20px;
    }

    .gie-quote-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gie-quote-products-checklist {
        max-height: 200px;
    }

    .gie-form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Welcome Industrial Forge Section */
.welcome-industrial-forge {
    background-color: var(--secondary-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.welcome-industrial-forge::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: url('../images/wf-logo-round.png') no-repeat center center;
    background-size: contain;
    opacity: 0.10;
    pointer-events: none;
    z-index: 1;
}

.welcome-header {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.welcome-header h2 {
    font-size: 38px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.welcome-header h2 span {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
}

.welcome-lead {
    font-size: 20px;
    color: var(--white);
    line-height: 1.8;
    margin-top: 40px;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.welcome-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.welcome-icon-box {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.welcome-item:hover .welcome-icon-box {
    transform: translateY(-5px);
}

.welcome-text {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.welcome-text p {
    margin: 0 0 4px 0;
}

.welcome-text p strong {
    color: var(--white);
}

.welcome-text .label {
    color: var(--white);
}

.welcome-text .value {
    font-weight: 400;
    color: var(--white);
}

@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .welcome-header h2 {
        font-size: 28px;
    }
}

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

/* ==========================================================================
   FAQ Page Custom Styling
   ========================================================================== */
.faq-search-box input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(237, 68, 28, 0.08) !important;
}

.faq-tab-btn {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 68, 28, 0.2);
}

.faq-group-wrapper {
    margin-bottom: 40px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eaeaea;
    position: relative;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #dcdcdc;
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--secondary-color);
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question.active {
    color: var(--primary-color);
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    background-color: #f5f5f7;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.faq-question.active .faq-toggle-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fafafb;
}

.faq-answer p {
    padding: 0 25px 22px 25px;
    margin: 0;
    color: var(--gi-export-text);
    font-size: 15px;
    line-height: 1.7;
}

/* Innovative Solutions Across Sectors Section */
.innovative-solutions-sec {
    background: linear-gradient(135deg, #fbfbfd 0%, #f4f6fa 100%);
    padding: 90px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.innovative-solutions-sec .sec-header {
    text-align: center;
    margin-bottom: 55px;
}

.innovative-solutions-sec .sec-header h2 {
    font-size: 38px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.innovative-solutions-sec .sec-header h2 em {
    font-style: italic;
    font-weight: 800;
    color: #000000;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.solution-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.solution-image-area {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    flex: none;
}

.solution-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.solution-card:hover .solution-image-area img {
    transform: scale(1.06);
}

.solution-content-area {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.solution-content-area h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.solution-subcategories {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.solution-subcategories li {
    margin-bottom: 12px;
}

.solution-subcategories li a {
    font-size: 15px;
    color: #555555;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.solution-subcategories li a i {
    font-size: 10px;
    color: #b0b0b0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.solution-subcategories li a:hover {
    color: var(--primary-color);
}

.solution-subcategories li a:hover i {
    transform: translateX(4px);
    color: var(--primary-color);
}

.solution-action {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333333;
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.btn-view-all .view-all-arrow {
    width: 24px;
    height: 24px;
    background-color: #0056b3;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-view-all:hover .view-all-arrow {
    background-color: var(--primary-color);
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-image-area {
        height: 220px;
    }

    .solution-content-area {
        padding: 25px;
    }
}

/* ==========================================================================
   Shop Page Category Sidebar Highlights, sorting UX, and List/Grid Layouts
   ========================================================================== */

/* 1. Highlight Selected Category in Sidebar */
.shop-sidebar-refined ul.product-categories li.cat-item.current-cat a,
.shop-sidebar-refined .wc-block-product-categories-list-item.is-active a {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item.current-cat .count,
.shop-sidebar-refined .wc-block-product-categories-list-item.is-active .wc-block-product-categories-list-item-count {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* 2. Top Bar UI/UX - Result Count & Select Sorting Dropdown Styling */
.shop-top-bar-modern .results-count,
.shop-top-bar-modern .woocommerce-result-count {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    margin: 0 !important;
    display: block !important;
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 0em;
}

.sorting-wrapper select,
.woocommerce-ordering select {
    border: 1px solid #e2e8f0 !important;
    padding: 8px 32px 8px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #495057 !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 10px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.sorting-wrapper select:hover,
.woocommerce-ordering select:hover,
.sorting-wrapper select:focus,
.woocommerce-ordering select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(237, 68, 28, 0.15) !important;
}

/* Active mode button highlight using primary theme color */
.btn-view-mode.active {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

/* 3. List View Layout Styles */
.woocommerce ul.products.list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    width: 100% !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card {
    flex-direction: row !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 20px !important;
    padding: 25px !important;
    gap: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    clear: none !important;
    float: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card::before,
.woocommerce ul.products.list-view li.product.gie-modern-product-card::after {
    display: none !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-image-wrap {
    width: 180px !important;
    height: 180px !important;
    flex-shrink: 0 !important;
    aspect-ratio: 1/1 !important;
    border-radius: 12px !important;
    margin: 0 !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-info-row {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin: 0 !important;
    gap: 8px !important;
    padding: 0 !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-title {
    font-size: 22px !important;
    margin: 0 !important;
    text-align: left !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-price-detail {
    font-size: 16px !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-footer-modern {
    flex-shrink: 0 !important;
    width: 200px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products.list-view li.product.gie-modern-product-card .btn-shop-now {
    width: 100% !important;
}

@media (max-width: 768px) {
    .woocommerce ul.products.list-view li.product.gie-modern-product-card {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-image-wrap {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    .woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-info-row {
        width: 100% !important;
    }

    .woocommerce ul.products.list-view li.product.gie-modern-product-card .product-card-footer-modern {
        width: 100% !important;
    }
}

/* Mobile View Shop Page UX Improvements */
@media (max-width: 576px) {
    .shop-top-bar-modern {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
        padding: 20px !important;
    }

    .shop-top-bar-modern .results-count {
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid #f1f3f5 !important;
        padding-bottom: 12px !important;
        margin-bottom: 5px !important;
    }

    .shop-top-bar-modern .shop-actions-right {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .shop-top-bar-modern .sorting-wrapper {
        flex-grow: 1 !important;
    }

    .shop-top-bar-modern .sorting-wrapper select,
    .shop-top-bar-modern .woocommerce-ordering select {
        width: 100% !important;
    }

    /* Display products in 1 column on mobile grid view */
    .woocommerce ul.products[class*="columns-"] li.product.gie-modern-product-card,
    .woocommerce ul.products li.product.gie-modern-product-card {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 30px !important;
    }
}

/* AMERICAN PALM SPECIFIC STYLES */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-red: #c7042f;
    /* Premium Rose Red */
    --primary-red-hover: #be123c;
    --primary-red-light: #fff1f2;
    --text-dark: #0f172a;
    /* Slate 900 */
    --text-slate-700: #334155;
    --text-muted: #64748b;
    /* Slate 500 */
    --bg-light: #f8fafc;
    /* Slate 50 */
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    /* Slate 200 */
    --font-primary: 'Outfit', sans-serif;

    /* Premium Shadows & Transitions */
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.04);
    --shadow-premium-hover: 0 30px 60px -15px rgba(225, 29, 72, 0.12), 0 0 0 1px rgba(225, 29, 72, 0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-light-section {
    background-color: var(--bg-light);
}

/* Premium Buttons */
.btn-primary-red {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.btn-primary-red:hover {
    background-color: var(--primary-red-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.btn-outline-red {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-red:hover {
    background-color: var(--primary-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.2);
}

/* Header & Nav */
.top-header {
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    color: var(--text-muted);
    background: #fafafa;
}

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand span {
    font-size: 1.4rem;
}

.navbar-nav .nav-link {
    color: var(--text-slate-700);
    font-weight: 600;
    padding: 1.6rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red);
}

.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1.2rem;
    right: 1.2rem;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 3px 3px 0 0;
}

/* Premium Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.85) 0%, rgba(30, 27, 75, 0.2) 60%, rgba(17, 24, 39, 0.2) 100%), url('../../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.navbar-brand img,
.logo img {
    height: 100px !important;
    width: auto !important;
    max-width: 250px;
    object-fit: contain;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(80px);
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 550px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease;
}

.hero-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.7;
    animation: fadeInUp 1s ease;
}

/* 3D Rotating & Floating Hero Image */
.hero-3d-container {
    perspective: 1200px;
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
}

.hero-3d-image {
    max-width: 100%;
    height: auto;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    animation: rotateFloating3d 12s infinite ease-in-out;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    transition: filter 0.3s ease, transform 0.1s ease;
}

.hero-3d-container:hover .hero-3d-image {
    animation-play-state: paused;
    filter: drop-shadow(0 30px 50px rgba(225, 29, 72, 0.35));
}

@keyframes rotateFloating3d {
    0% {
        transform: rotateY(-18deg) rotateX(12deg) translateY(0px) rotate(0deg);
    }

    25% {
        transform: rotateY(18deg) rotateX(-8deg) translateY(-12px) rotate(1deg);
    }

    50% {
        transform: rotateY(-12deg) rotateX(-12deg) translateY(-25px) rotate(-1deg);
    }

    75% {
        transform: rotateY(12deg) rotateX(8deg) translateY(-12px) rotate(1deg);
    }

    100% {
        transform: rotateY(-18deg) rotateX(12deg) translateY(0px) rotate(0deg);
    }
}

/* Product Range Grid */
.product-range-title {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.product-range-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.product-card-premium {
    border-radius: 24px;
    padding: 2.5rem;
    height: 280px;
    display: flex;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.product-card-premium.card-gradient-red {
    background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    color: #ffffff;
    border: none;
}

.product-card-premium.card-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
}

.product-card-premium.card-gradient-dark {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: #ffffff;
    border: none;
}

.product-card-premium.card-white {
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: var(--shadow-premium);
}

.product-card-premium.card-white:hover {
    box-shadow: var(--shadow-premium-hover);
    color: var(--text-dark);
}

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

.product-card-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.product-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: inherit;
}

.product-card-title span {
    display: block;
    font-weight: 400;
    font-size: 1.8rem;
    opacity: 0.7;
    margin-top: 2px;
}

.card-white .product-card-title span {
    color: var(--text-muted);
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.card-white .product-card-btn {
    color: var(--text-dark);
}

.card-gradient-red .product-card-btn,
.card-gradient-blue .product-card-btn,
.card-gradient-dark .product-card-btn {
    color: #ffffff;
}

.product-card-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.card-white .product-card-btn-circle {
    background: #000000;
    color: #ffffff;
}

.card-gradient-red .product-card-btn-circle,
.card-gradient-blue .product-card-btn-circle,
.card-gradient-dark .product-card-btn-circle {
    background: #ffffff;
    color: #000000;
}

.product-card-premium:hover .product-card-btn-circle {
    transform: rotate(45deg) scale(1.05);
}

.product-card-img {
    position: absolute;
    right: 5px;
    bottom: -5px;
    width: 42%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition-smooth);
}

.product-card-img img {
    max-width: 105%;
    max-height: 105%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.product-card-premium:hover .product-card-img {
    transform: scale(1.08) translateY(-4px);
}

/* Mix-blend-mode for white cards to blend transparent image backgrounds */
.card-white .product-card-img img {
    mix-blend-mode: multiply;
}

/* SC Vastrum Section */
.vastrum-section {
    position: relative;
    padding-bottom: 10rem;
    background: #ffffff;
}

.vastrum-split {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.vastrum-text-block {
    background: linear-gradient(135deg, var(--primary-red) 0%, #be123c 100%);
    color: #ffffff;
    padding: 5rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.vastrum-text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.vastrum-text-block h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.vastrum-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 0;
}

.vastrum-image-block {
    width: 50%;
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.vastrum-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vastrum-split:hover .vastrum-image-block img {
    transform: scale(1.05);
}

/* Floating Glass Stats Cards */
.vastrum-floating-cards {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(120%);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: var(--shadow-premium-hover);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon {
    background-color: var(--primary-red);
    color: #ffffff;
    transform: rotateY(180deg);
}

.stat-info h6 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-slate-700);
    margin-bottom: 0;
    font-weight: 500;
}

/* Certifications Section */
.cert-section-title {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cert-desc {
    font-size: 1.05rem;
    color: var(--text-slate-700);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cert-thumbnails {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cert-thumb {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.6rem;
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 96px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cert-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-thumb.active,
.cert-thumb:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.1);
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-slate-700);
    font-size: 0.95rem;
}

.slider-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: scale(1.05);
}

.slider-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.cert-preview-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.cert-preview-card:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.cert-preview-img-wrapper {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cert-preview-img-wrapper img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cert-preview-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Premium Personalized Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 50%, #111827 100%);
    color: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 5rem 4rem;
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.4);
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 80%, rgba(225, 29, 72, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.offer-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.offer-image-wrapper {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.offer-banner:hover .offer-image-wrapper {
    transform: scale(1.03) rotate(-1deg);
}

.offer-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.offer-text-wrapper {
    width: 60%;
    padding-left: 3rem;
}

.offer-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.offer-title span {
    color: var(--primary-red);
    background: linear-gradient(to right, var(--primary-red), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-text-wrapper .btn-primary-red {
    padding: 1rem 3rem;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: #f8fafc;
}

/* Custom Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Responsive Custom Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .vastrum-split {
        flex-direction: column;
    }

    .vastrum-text-block,
    .vastrum-image-block {
        width: 100%;
    }

    .vastrum-text-block {
        padding: 3.5rem 2rem;
    }

    .vastrum-image-block {
        min-height: 320px;
    }

    .vastrum-floating-cards {
        margin-top: 2rem;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .offer-banner {
        padding: 4rem 2rem;
    }

    .offer-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .offer-image-wrapper {
        width: 70%;
        margin-bottom: 2.5rem;
    }

    .offer-text-wrapper {
        width: 100%;
        padding-left: 0;
    }

    .offer-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .cert-thumbnails {
        justify-content: center;
    }

    .cert-preview-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .cert-preview-img-wrapper {
        height: 280px;
    }
}

/* ==========================================================================
   ENGINEERED FOR EVERY INDUSTRY - PRODUCT CATEGORIES SECTION
   ========================================================================== */
.industry-section {
    background-color: #0b0f19;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', 'Roboto', sans-serif;
}

.industry-header {
    margin-bottom: 50px;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.industry-tag .tag-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #f95700;
}

.industry-tag .tag-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #f95700;
    text-transform: uppercase;
}

.industry-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.industry-main-title span {
    color: #f95700;
}

.industry-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* Card Styling */
.industry-card {
    background-color: #121826;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(249, 87, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(249, 87, 0, 0.05);
    transition: all 0.35s ease;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #f95700 50%, transparent 100%);
    opacity: 0.8;
    z-index: 5;
    transition: all 0.35s ease;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #f95700 50%, transparent 100%);
    opacity: 0.8;
    z-index: 5;
    transition: all 0.35s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 87, 0, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(249, 87, 0, 0.2);
}

.industry-card:hover::before,
.industry-card:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
}

/* Card Image Area */
.industry-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.industry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card-image img {
    transform: scale(1.06);
}

.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 24, 38, 0.2) 0%, rgba(18, 24, 38, 0.95) 100%);
}

/* Hexagon Icon */
.industry-hex-icon {
    position: absolute;
    bottom: 12px;
    left: 24px;
    z-index: 4;
    width: 58px;
    height: 64px;
}

.industry-hex-icon .hex-shape {
    width: 100%;
    height: 100%;
    background-color: #121826;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    border: 2px solid #f95700;
    box-shadow: 0 0 15px rgba(249, 87, 0, 0.4);
}

/* Glowing border overlay for hexagon */
.industry-hex-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #f95700;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.industry-hex-icon::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #121826;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.industry-hex-icon svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
    z-index: 2;
}

/* Card Body */
.industry-card-body {
    padding: 24px;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #121826;
}

.industry-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.industry-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* View Button */
.industry-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 18px 8px 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.industry-view-btn .btn-arrow-circle {
    width: 26px;
    height: 26px;
    background-color: #f95700;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.industry-view-btn:hover {
    background-color: #f95700;
    border-color: #f95700;
    color: #ffffff;
}

.industry-view-btn:hover .btn-arrow-circle {
    background-color: #ffffff;
    color: #f95700;
    transform: translateX(3px);
}

/* ==========================================================================
   WHY CHOOSE PREMIUM PARTS SECTION STYLES
   ========================================================================== */
.why-choose-parts-section {
    background-color: #ffffff;
    font-family: 'Poppins', 'Roboto', sans-serif;
}

/* Top Dark Header Banner with Machinery Background Image */
.why-choose-top-banner {
    background: linear-gradient(90deg, rgba(9, 14, 23, 0.95) 0%, rgba(9, 14, 23, 0.85) 50%, rgba(9, 14, 23, 0.6) 100%), url('../images/hero-banner.png') center/cover no-repeat;
    color: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 340px 85%, 300px 100%, 0 100%);
}

.why-choose-main-heading {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.btn-header-red {
    background-color: #e62329;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 22px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-header-red:hover {
    background-color: #c7042f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(230, 35, 41, 0.4);
}

.btn-header-white {
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 22px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-header-white:hover {
    background-color: #f1f3f5;
    color: #000000;
    transform: translateY(-2px);
}

/* Body wrap with subtle hexagon pattern background */
.why-choose-body-wrap {
    background-color: #ffffff;
    background-image:
        radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 28px 28px;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.why-choose-intro-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 2rem;
}

/* Grid Boxes */
.why-choose-grid {
    width: 100%;
}

.why-choose-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 24px 16px 28px;
    height: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.why-choose-box .box-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    color: var(--primary-color, #c7042f);
    transition: all 0.3s ease;
}

.why-choose-box .box-icon svg {
    width: 100%;
    height: 100%;
}

.why-choose-box .box-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    line-height: 1.35;
    letter-spacing: 0.3px;
    margin: 0;
    z-index: 2;
    transition: color 0.3s ease;
}

.why-choose-box .box-number-watermark {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 900;
    color: #f1f3f5;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Hover & Active States for Grid Box */
.why-choose-box:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 4, 47, 0.3);
    box-shadow: 0 8px 24px rgba(199, 4, 47, 0.12);
}

.why-choose-box.active {
    background-color: var(--primary-color, #c7042f);
    border-color: var(--primary-color, #c7042f);
    box-shadow: 0 10px 25px rgba(199, 4, 47, 0.3);
}

.why-choose-box.active .box-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.why-choose-box.active .box-title {
    color: #ffffff;
}

.why-choose-box.active .box-number-watermark {
    color: rgba(255, 255, 255, 0.18);
}

/* Right Column Visual Layout */
.why-choose-visual-container {
    width: 100%;
    position: relative;
}

.why-choose-img-wrapper {
    width: 100%;
    height: 360px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Dynamic Red Detail Card Overlapping Image Exactly as in Reference Image */
.why-choose-detail-card {
    background: #e62329;
    color: #ffffff;
    padding: 32px 36px 36px;
    border-radius: 2px;
    margin-top: -85px;
    margin-left: -25px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(230, 35, 41, 0.3);
    /* Subtle curved contour line pattern overlay */
    background-image:
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 12px);
}

.card-top-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.card-count-indicator {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.card-dynamic-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.card-dynamic-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

/* Dynamic Card Content Transition */
.why-choose-detail-card.card-updating {
    opacity: 0.3;
    transform: translateY(4px);
    transition: all 0.15s ease;
}

.why-choose-detail-card {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .why-choose-visual-container {
        margin-top: 2rem;
    }

    .why-choose-img-wrapper {
        height: 280px;
    }

    .why-choose-detail-card {
        margin-top: -50px;
        margin-left: 0;
        padding: 24px 20px;
    }
}

/* Category Sidebar Widget Styling */
.product-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-categories-list .cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.25s ease;
}

.product-categories-list .cat-item a {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-categories-list .cat-item .cat-count {
    font-size: 0.85rem;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2px 10px;
}

.product-categories-list .cat-item:hover,
.product-categories-list .cat-item.active {
    background: rgba(199, 4, 47, 0.05);
}

.product-categories-list .cat-item:hover a,
.product-categories-list .cat-item.active a {
    color: var(--primary-color, #c7042f);
}

/* Custom Products Grid & Card Styling */
.product-item-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-item-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 18px;
}

.product-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-item-card:hover .product-item-img-wrapper img {
    transform: scale(1.05);
}

.product-item-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.product-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-item-title a:hover {
    color: var(--primary-color, #c7042f);
}

.btn-product-view-details {
    background-color: var(--primary-color, #c7042f);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 4, 47, 0.25);
}

.btn-product-view-details:hover {
    background-color: #a80327;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 4, 47, 0.35);
}