/* ============================================
   ROOT VARIABLES & GLOBAL STYLES
   ============================================ */
:root {
    --primary: #e09f1d;
    --primary-dark: #c98c13;
    --primary-light: #e6f0ff;
    --secondary: black;
    --accent: #c78c02;
    --gold: #c9a84c;
    --dark: #000000;
    --dark-2: #121f36;
    --gray: #6c757d;
    --light-bg: #f4f7fb;
    --gradient: black;
    --gradient-2: #c78c02;
    --shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 102, 204, 0.15);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gb-navy-deep: #0B1B2E;
    --gb-navy-mid: #102B46;
    --gb-cyan: #c78c02;
    --gb-blue-bright: #c78c02;
    --gb-white: #FFFFFF;
    --gb-muted: #B9C7D5;
    --gb-border: rgba(255, 255, 255, 0.09);
    --gb-glow: rgba(0, 191, 239, 0.18);
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
    --gb-radius: 16px;
    --gb-radius-sm: 10px;
    --gb-radius-xs: 6px;
    --gb-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gb-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --gb-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gb-font: 'Montserrat', sans-serif;
    --gb-header-height: 82px;
    --gb-header-height-scrolled: 68px;
    --gb-container-max: 1320px;
    --gb-container-padding: clamp(16px, 3vw, 40px);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat' !important;
    font-weight: 400;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-custom {
    background-color: var(--light-bg);
}

.bg-dark-custom {
    background-color: var(--dark);
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    background: black;
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-tag.light {
    background: white;
    color: var(--secondary);
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
}

.loader i {
    font-size: 50px;
    color: var(--secondary);
    animation: pulse 1.5s infinite;
    display: block;
    margin-bottom: 15px;
}

.loader span {
    font-family: 'Montserrat' !important;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ============================================
   NAVBAR
   ============================================ */



/* Reset for header elements */
.gb-header *,
.gb-header *::before,
.gb-header *::after,
.gb-mobile-menu *,
.gb-mobile-menu *::before,
.gb-mobile-menu *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========== MAIN HEADER ========== */
.gb-header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: calc(var(--gb-container-max) + 40px);
    z-index: 9999;
    font-family: var(--gb-font);
    animation: gb-header-entrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes gb-header-entrance {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.gb-header-inner {
    position: relative;
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gb-border);
    border-radius: var(--gb-radius);
    box-shadow: var(--gb-shadow), 0 0 40px rgba(0, 191, 239, 0.03);
    transition: all var(--gb-transition);
    overflow: hidden;
}

/* Accent line at top */
.gb-header-accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gb-accent-cyan), transparent);
    border-radius: 2px;
    opacity: 0.6;
    transition: width var(--gb-transition), opacity var(--gb-transition);
}

/* Scrolled State */
.gb-header.gb-scrolled {
    top: 8px;
}

.gb-header.gb-scrolled .gb-header-inner {
    background: white;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-color: var(--gb-border-hover);
    box-shadow: var(--gb-shadow-lg), 0 0 60px rgba(0, 191, 239, 0.05);
}

.gb-header.gb-scrolled .gb-header-accent-line {
    width: 200px;
    opacity: 0.8;
}

/* ========== HEADER CONTAINER ========== */
.gb-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--gb-header-height);
    padding: 0 var(--gb-container-padding);
    max-width: var(--gb-container-max);
    margin: 0 auto;
    transition: height var(--gb-transition);
}

.gb-header.gb-scrolled .gb-header-container {
    height: var(--gb-header-height-scrolled);
}

/* ========== BRAND ========== */
.gb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gb-white);
    flex-shrink: 0;
    transition: opacity var(--gb-transition-fast);
}

.gb-brand:hover {
    opacity: 0.85;
}

.gb-brand:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: 4px;
    border-radius: 4px;
}

.gb-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 191, 239, 0.15), rgba(22, 143, 232, 0.08));
    border: 1px solid rgba(0, 191, 239, 0.3);
    border-radius: var(--gb-radius-xs);
    color: var(--gb-accent-cyan);
    transition: all var(--gb-transition);
}

.gb-brand:hover .gb-brand-icon {
    border-color: var(--gb-accent-cyan);
    box-shadow: 0 0 12px var(--gb-glow-cyan);
}

.gb-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.gb-brand-name {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gb-white);
}

.gb-brand-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gb-accent-cyan);
    margin-top: 2px;
}

/* ========== DESKTOP NAVIGATION ========== */
.gb-nav {
    display: flex;
    align-items: center;
}

.gb-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.gb-nav-item {
    position: relative;
}

.gb-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--gb-muted-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--gb-radius-xs);
    position: relative;
    transition: color var(--gb-transition-fast), background var(--gb-transition-fast);
    white-space: nowrap;
}

.gb-nav-link:hover {
    color: #9c8403;
    background: rgba(255, 255, 255, 0.04);
}

.gb-nav-link:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

.gb-nav-link--active {
    color: var(--gb-accent-cyan);
}

.gb-nav-link--active .gb-nav-link-indicator {
    transform: scaleX(1);
    opacity: 1;
}

/* Nav link indicator (underline) */
.gb-nav-link-indicator {
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gb-accent-cyan);
    border-radius: 2px;
    transform: scaleX(0);
    opacity: 0;
    transition: transform var(--gb-transition), opacity var(--gb-transition);
    box-shadow: 0 0 8px var(--gb-glow-cyan);
}

.gb-nav-link:hover .gb-nav-link-indicator {
    transform: scaleX(1);
    opacity: 0.6;
}

.gb-nav-link--active:hover .gb-nav-link-indicator,
.gb-nav-link--active .gb-nav-link-indicator {
    transform: scaleX(1);
    opacity: 1;
}

/* Chevron for dropdown */
.gb-nav-link-chevron {
    transition: transform var(--gb-transition-fast);
    opacity: 0.6;
}

.gb-nav-item--has-dropdown:hover .gb-nav-link-chevron,
.gb-nav-item--has-dropdown .gb-nav-link[aria-expanded="true"] .gb-nav-link-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* ========== PRODUCTS DROPDOWN ========== */
.gb-products-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 320px;
    background: rgba(11, 27, 46, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--gb-border-hover);
    border-radius: var(--gb-radius-sm);
    box-shadow: var(--gb-shadow-lg), 0 0 40px rgba(0, 191, 239, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--gb-transition);
    z-index: 100;
    overflow: hidden;
}

.gb-products-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.gb-nav-item--has-dropdown:hover .gb-products-dropdown,
.gb-nav-item--has-dropdown .gb-nav-link[aria-expanded="true"]+.gb-products-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.gb-products-dropdown-inner {
    padding: 8px;
}

.gb-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--gb-muted-white);
    border-radius: var(--gb-radius-xs);
    transition: all var(--gb-transition-fast);
}

.gb-dropdown-item:hover {
    background: rgba(0, 191, 239, 0.06);
    color: var(--gb-white);
}

.gb-dropdown-item:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: -2px;
    border-radius: 4px;
}

.gb-dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gb-border);
    border-radius: var(--gb-radius-xs);
    color: var(--gb-muted-white);
    flex-shrink: 0;
    transition: all var(--gb-transition-fast);
}

.gb-dropdown-item:hover .gb-dropdown-item-icon {
    color: var(--gb-accent-cyan);
    border-color: rgba(0, 191, 239, 0.3);
    background: rgba(0, 191, 239, 0.08);
}

.gb-dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.gb-dropdown-item-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gb-white);
    transition: color var(--gb-transition-fast);
}

.gb-dropdown-item-desc {
    font-size: 11.5px;
    color: var(--gb-muted-white);
    opacity: 0.7;
}

.gb-dropdown-item-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--gb-transition-fast);
    color: var(--gb-accent-cyan);
    flex-shrink: 0;
}

.gb-dropdown-item:hover .gb-dropdown-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========== CTA BUTTON ========== */
.gb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--secondary);
    color: var(--gb-white);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--gb-transition);
    box-shadow: 0 4px 16px rgba(0, 191, 239, 0.2);
    flex-shrink: 0;
    white-space: nowrap;
}

.gb-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gb-accent-blue), var(--gb-accent-cyan));
    opacity: 0;
    transition: opacity var(--gb-transition);
}

.gb-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 191, 239, 0.35), 0 0 20px rgba(0, 191, 239, 0.15);
}

.gb-cta-btn:hover::before {
    opacity: 1;
}

.gb-cta-btn:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 191, 239, 0.2);
}

.gb-cta-btn:focus-visible {
    outline: 2px solid var(--gb-white);
    outline-offset: 3px;
}

.gb-cta-btn-text,
.gb-cta-btn-arrow {
    position: relative;
    z-index: 1;
}

.gb-cta-btn-arrow {
    transition: transform var(--gb-transition-fast);
}

.gb-cta-btn:hover .gb-cta-btn-arrow {
    transform: translateX(3px);
}

/* ========== HEADER ACTIONS ========== */
.gb-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ========== HAMBURGER / MENU TOGGLE ========== */
.gb-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #000;
    border: 1px solid var(--gb-border);
    border-radius: var(--gb-radius-xs);
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all var(--gb-transition-fast);
}

.gb-menu-toggle:hover {
    background: rgba(0, 191, 239, 0.08);
    border-color: rgba(0, 191, 239, 0.3);
}

.gb-menu-toggle:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: 2px;
}

.gb-menu-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gb-white);
    border-radius: 2px;
    transition: all var(--gb-transition);
    transform-origin: center;
}

/* Hamburger active state (X) */
.gb-menu-toggle.gb-active .gb-menu-toggle-line--top {
    transform: translateY(7px) rotate(45deg);
}

.gb-menu-toggle.gb-active .gb-menu-toggle-line--mid {
    opacity: 0;
    transform: scaleX(0);
}

.gb-menu-toggle.gb-active .gb-menu-toggle-line--bot {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
.gb-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
    font-family: var(--gb-font);
}

.gb-mobile-menu.gb-mobile-menu--open {
    pointer-events: auto;
    visibility: visible;
}

.gb-mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--gb-transition);
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-backdrop {
    opacity: 1;
}

.gb-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--gb-primary-bg);
    border-left: 1px solid var(--gb-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--gb-transition-slow);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-panel {
    transform: translateX(0);
}

.gb-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gb-border);
    flex-shrink: 0;
}

.gb-mobile-menu-brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gb-white);
}

.gb-mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gb-border);
    border-radius: var(--gb-radius-xs);
    color: var(--gb-white);
    cursor: pointer;
    transition: all var(--gb-transition-fast);
}

.gb-mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gb-border-hover);
}

.gb-mobile-menu-close:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: 2px;
}

/* Mobile Nav */
.gb-mobile-menu-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.gb-mobile-menu-list {
    list-style: none;
    padding: 0 16px;
}

.gb-mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.gb-mobile-menu-item:last-child {
    border-bottom: none;
}

.gb-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 12px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    border-radius: var(--gb-radius-xs);
    transition: all var(--gb-transition-fast);
    font-family: var(--gb-font);
}

.gb-mobile-menu-link:hover {
    color: var(--gb-white);
    background: rgba(0, 191, 239, 0.05);
}

.gb-mobile-menu-link:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: -2px;
}

.gb-mobile-menu-link-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--gb-accent-cyan);
    opacity: 0.5;
    min-width: 20px;
    font-variant-numeric: tabular-nums;
    transition: opacity var(--gb-transition-fast);
}

.gb-mobile-menu-link:hover .gb-mobile-menu-link-num {
    opacity: 1;
}

.gb-mobile-menu-link-text {
    flex: 1;
}

.gb-mobile-menu-link-arrow,
.gb-mobile-menu-link-plus {
    opacity: 0.4;
    transition: all var(--gb-transition-fast);
    flex-shrink: 0;
}

.gb-mobile-menu-link:hover .gb-mobile-menu-link-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Accordion toggle rotation */
.gb-mobile-menu-accordion-toggle[aria-expanded="true"] .gb-mobile-menu-link-plus {
    transform: rotate(45deg);
    opacity: 1;
    color: var(--gb-accent-cyan);
}

/* Mobile Sublist (Products Accordion) */
.gb-mobile-menu-sublist {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--gb-transition), padding var(--gb-transition);
    padding: 0 12px 0 48px;
}

.gb-mobile-menu-sublist.gb-sublist--open {
    max-height: 400px;
    padding: 4px 12px 12px 48px;
}

.gb-mobile-menu-sublist[aria-hidden="true"] {
    visibility: hidden;
}

.gb-mobile-menu-sublist[aria-hidden="false"] {
    visibility: visible;
}

.gb-mobile-menu-sublink {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--gb-muted-white);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--gb-radius-xs);
    transition: all var(--gb-transition-fast);
    border-left: 2px solid transparent;
}

.gb-mobile-menu-sublink:hover {
    color: var(--gb-accent-cyan);
    background: rgba(0, 191, 239, 0.04);
    border-left-color: var(--gb-accent-cyan);
}

.gb-mobile-menu-sublink:focus-visible {
    outline: 2px solid var(--gb-accent-cyan);
    outline-offset: -2px;
}

/* Mobile Menu Footer */
.gb-mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gb-border);
    flex-shrink: 0;
}

.gb-mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    color: var(--gb-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--gb-transition);
    box-shadow: 0 4px 16px rgba(0, 191, 239, 0.2);
}

.gb-mobile-menu-cta:hover {
    box-shadow: 0 6px 24px rgba(0, 191, 239, 0.35);
    transform: translateY(-1px);
}

.gb-mobile-menu-cta:focus-visible {
    outline: 2px solid var(--gb-white);
    outline-offset: 3px;
}

.gb-mobile-menu-cta svg {
    transition: transform var(--gb-transition-fast);
}

.gb-mobile-menu-cta:hover svg {
    transform: translateX(3px);
}

/* ========== STAGGER ANIMATIONS ========== */
.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item {
    animation: gb-mobile-item-fade 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(20px);
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(2) {
    animation-delay: 0.15s;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(4) {
    animation-delay: 0.25s;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(5) {
    animation-delay: 0.3s;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(6) {
    animation-delay: 0.35s;
}

.gb-mobile-menu.gb-mobile-menu--open .gb-mobile-menu-item:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes gb-mobile-item-fade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Nav items entrance animation */
.gb-nav-list .gb-nav-item {
    animation: gb-nav-fade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.gb-nav-list .gb-nav-item:nth-child(1) {
    animation-delay: 0.3s;
}

.gb-nav-list .gb-nav-item:nth-child(2) {
    animation-delay: 0.35s;
}

.gb-nav-list .gb-nav-item:nth-child(3) {
    animation-delay: 0.4s;
}

.gb-nav-list .gb-nav-item:nth-child(4) {
    animation-delay: 0.45s;
}

.gb-nav-list .gb-nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gb-nav-list .gb-nav-item:nth-child(6) {
    animation-delay: 0.55s;
}

.gb-nav-list .gb-nav-item:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes gb-nav-fade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA entrance */
.gb-cta-btn {
    animation: gb-cta-fade 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
    opacity: 0;
}

@keyframes gb-cta-fade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE — TABLET (max-width: 1100px) ========== */
@media (max-width: 1100px) {
    .gb-nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .gb-cta-btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .gb-header-container {
        gap: 12px;
    }
}

/* ========== RESPONSIVE — TABLET SMALL (max-width: 992px) ========== */
@media (max-width: 992px) {
    .gb-nav {
        display: none;
    }

    .gb-menu-toggle {
        display: flex;
    }

    .gb-header-container {
        height: 70px;
    }

    .gb-header.gb-scrolled .gb-header-container {
        height: 62px;
    }

    .gb-cta-btn-text {
        display: none;
    }

    .gb-cta-btn {
        padding: 10px 14px;
        gap: 0;
    }

    .gb-cta-btn::after {
        content: '';
        display: block;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .gb-cta-btn-arrow {
        display: none;
    }
}

/* ========== RESPONSIVE — MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
    .gb-header {
        top: 8px;
        width: calc(100% - 16px);
    }

    .gb-header-container {
        height: 64px;
        padding: 0 16px;
    }

    .gb-header.gb-scrolled .gb-header-container {
        height: 58px;
    }

    .gb-brand-icon {
        width: 34px;
        height: 34px;
    }

    .gb-brand-icon svg {
        width: 22px;
        height: 22px;
    }

    .gb-brand-name {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .gb-brand-sub {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .gb-mobile-menu-panel {
        max-width: 100%;
    }
}

/* ========== RESPONSIVE — SMALL MOBILE (max-width: 375px) ========== */
@media (max-width: 375px) {
    .gb-header-container {
        padding: 0 12px;
    }

    .gb-brand-name {
        font-size: 13px;
        letter-spacing: 0.8px;
    }

    .gb-brand-sub {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .gb-brand-icon {
        width: 30px;
        height: 30px;
    }

    .gb-brand-icon svg {
        width: 18px;
        height: 18px;
    }

    .gb-brand {
        gap: 8px;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

    .gb-header,
    .gb-header *,
    .gb-mobile-menu,
    .gb-mobile-menu * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== PREVENT BODY SCROLL WHEN MOBILE MENU OPEN ========== */
body.gb-menu-open {
    overflow: hidden;
}





/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #000000 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 100px 0px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.hero-title {
    font-size: 56px;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: transparent;
    color: #e09f1d;
    border: 2px solid #e09f1d;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    color: white;
    background-color: #ad9200 !important;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-3px);
}

.btn-white-custom {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    /* font-weight: 600; */
    border: none;
}

.btn-white-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: var(--primary-dark);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    display: inline;
}

.stat-item span {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    object-fit: cover;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge-float {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.hero-badge-float i {
    color: var(--gold);
    margin-right: 5px;
}

.badge-1 {
    top: 10%;
    right: -10px;
    animation-delay: -1s;
}

.badge-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: -3s;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ============================================
   BRAND MARQUEE
   ============================================ */
.brand-marquee {
    background: white;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 600;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-content span i {
    color: var(--primary);
    margin-right: 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-images {
    position: relative;
    padding: 20px;
}

.about-img-main img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 85%;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
}

.about-img-secondary img {
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.experience-badge h2 {
    font-size: 40px;
    color: white;
    margin: 0;

}

.experience-badge p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fcfcfc;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature-item:hover {
    background: var(--primary-light);
    transform: translateX(10px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-feature-item p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}



.filter-btn:hover,
.filter-btn.active {
    background: var(--dark);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-action {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-action {
    transform: translateY(0);
}

.product-action:hover {
    background: var(--primary);
    color: white;
    transform: translateY(0) scale(1.1) !important;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.new {
    background: #28a745;
}

.product-badge.hot {
    background: #e74c3c;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-info h4 {
    font-size: 20px;
    margin: 8px 0;
    /* font-family: 'Poppins', sans-serif; */
    color: white;
    font-weight: 600;
}

.product-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-rating {
    color: var(--gold);
    font-size: 14px;
}

.product-rating span {
    color: var(--gray);
    font-size: 13px;
    margin-left: 3px;
}

.product-item.hide {
    display: none;
}

.product-item.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(0, 102, 204, 0.05);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/* ============================================
   PARALLAX CTA
   ============================================ */
.parallax-cta {
    background-image: url('../img/home/cta.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.49), rgba(8, 22, 25, 0.512));
    opacity: 0.2;
}

.parallax-cta h2 {
    font-size: 42px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
}

.parallax-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 10px;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h5 {
    color: white;
    font-size: 20px;
    margin-bottom: 3px;
}

.gallery-overlay p {
    color: var(--secondary);
    font-size: 14px;
    margin: 0;
}

/* Owl Carousel Custom Navigation */
.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--gradient) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 22px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.owl-carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav .owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav .owl-next {
    right: -25px;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
    display: none;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    margin: 0 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.owl-carousel .owl-dot.active span {
    background: var(--primary) !important;
    width: 35px;
    border-radius: 10px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-card {
    text-align: center;
    padding: 35px 25px;
    position: relative;
    height: 300px;

    border: 1px solid rgba(180, 140, 60, 0.35);
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.process-card:hover {
    border-color: rgba(180, 140, 60, 0.7);
    box-shadow: 0 0 15px rgba(180, 140, 60, 0.18);
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 767px) {
    .process-card {
        height: auto;
    }
}

/* .process-step {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
} */

.process-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--gray);
}

.process-card::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 1;
}

.process-card:last-child::after {
    display: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: var(--radius);
    margin: 15px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-author h6 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--gb-blue-bright);
    font-size: 13px;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(0, 180, 216, 0.15);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-wrapper {
    height: 100%;
}

.contact-info-card {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-card p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.contact-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-floating label {
    color: var(--gray);
}

.form-success-message {
    text-align: center;
    padding: 40px;
}

.form-success-message i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 15px;
}

.form-success-message h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: var(--dark);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-brand h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand h3 i {
    color: var(--secondary);
}

.footer-brand p {
    color: white;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-2);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gradient-2);
    padding-left: 10px;
}

.footer-newsletter .input-group {
    border: 2px solid #c78c02;
    border-radius: 50px;
    overflow: hidden;

}

.footer-newsletter .form-control {
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .btn {
    background: var(--gradient);
    color: white;
    padding: 12px 20px;
    border: none;
}

.footer-newsletter .btn:hover {
    opacity: 0.9;
}

.cert-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.cert-badge i {
    color: var(--gold);
    margin-right: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: white;
    font-size: 14px;
}

.footer-bottom p a:hover {
    margin: 0;
    color: white;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {

    .hero-section {
        padding: 120px 0px 70px 0px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    /* .hero-image {
        max-height: 350px;
    } */

    .hero-stats {
        gap: 25px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .hero-badge-float {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .parallax-cta h2 {
        font-size: 32px;
    }

    .process-card::after {
        display: none;
    }

    .owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px !important;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: -15px;
    }

    .owl-carousel .owl-nav .owl-next {
        right: -15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-images {
        margin-bottom: 30px;
    }

    .experience-badge {
        top: auto;
        bottom: 270px;
        right: 30px;
        padding: 15px;
    }

    .experience-badge h2 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .parallax-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .parallax-cta h2 {
        font-size: 26px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .gallery-item {
        height: 250px;
    }

    .owl-carousel .owl-nav {
        /* display: none; */
    }

    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .back-to-top {
        right: 15px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }

    .product-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   SELECTION STYLE
   ============================================ */
::selection {
    background: var(--primary);
    color: white;
}



/* gallery page css */
/* Gallery Hero */

.gallery-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0px 80px 0px;

    /* Background Image */
    background-image: url('../img/contact-sub.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Blue Overlay */
.gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 28, 48, 0.779);
    z-index: 1;
}

/* Hero Content */
.gallery-hero>* {
    position: relative;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: 65px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 28px;
    color: #fff;
}

.gallery-hero h1 span {
    color: var(--gb-cyan);
    display: block;
}

.gallery-hero .subtitle {
    font-size: 1.25rem;
    color: var(--gb-muted);
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--gb-white);
    background: linear-gradient(135deg, var(--gb-cyan), var(--gb-blue-bright));
    box-shadow: 0 8px 28px rgba(0, 191, 239, 0.3);
    transition: all 0.3s;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 191, 239, 0.45);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--gb-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: #c78c02;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: black;
    border-color: rgba(0, 191, 239, 0.5);
    color: var(--gb-cyan);
}

/* Gallery Grid - Masonry Feel */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    align-items: start;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0B1B2E;
    animation: fadeInScale 0.7s ease forwards;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    border-color: rgba(0, 191, 239, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 191, 239, 0.08);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media(max-width:992px) {
    .gallery-item.tall {
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item .item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 27, 46, 0.92) 10%, rgba(11, 27, 46, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-item .item-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gb-cyan);
    margin-bottom: 6px;
}

.gallery-item .item-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gb-white);
    line-height: 1.2;
    margin-bottom: 4px;
}

.gallery-item .item-desc {
    font-size: 0.85rem;
    color: var(--gb-muted);
    line-height: 1.4;
    max-width: 320px;
}

/* Spotlight Feature */
.spotlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.spotlight-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.spotlight-visual img {
    width: 100%;
    display: block;
}

.spotlight-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 27, 46, 0.142), rgba(11, 27, 46, 0.521));
}

.spotlight-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: rgba(11, 27, 46, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gb-cyan);
    letter-spacing: 0.05em;
}

.spotlight-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.spotlight-content p {
    font-size: 1.05rem;
    color: #636363;
    margin-bottom: 28px;
}

.spotlight-stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.spotlight-stats .stat {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
}

.spotlight-stats .stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
}

.spotlight-stats .stat span {
    font-size: 0.75rem;
    color: #040404;
}

@media(max-width:992px) {
    .spotlight {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta-section {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 43, 70, 0.9), rgba(11, 27, 46, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 100px 48px;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 239, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 560px;
    margin: 0 auto 36px;
    color: var(--gb-muted);
    font-size: 1.1rem;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gb-cyan), var(--gb-blue-bright));
    color: var(--gb-white);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 14px 36px rgba(0, 191, 239, 0.35);
    transition: all 0.3s;
}

.cta-btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 191, 239, 0.45);
}

@media(max-width:480px) {
    .gallery-hero h1 {
        font-size:42px;
        line-height: 1.2;
    }

    .gallery-hero {
        padding: 120px 0px 70px 0px;

        min-height: auto;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 {
    animation-delay: 0.08s;
}

.reveal-delay-2 {
    animation-delay: 0.16s;
}

.reveal-delay-3 {
    animation-delay: 0.24s;
}

.reveal-delay-4 {
    animation-delay: 0.32s;
}

.reveal-delay-5 {
    animation-delay: 0.40s;
}

.reveal-delay-6 {
    animation-delay: 0.48s;
}

.reveal-delay-7 {
    animation-delay: 0.56s;
}

.reveal-delay-8 {
    animation-delay: 0.64s;
}


/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gb-cyan);
    margin-bottom: 16px;
}

p {
    color: var(--gb-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.text-gradient {
    background: #c78c02;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* about page css  */

/* =========================================
   ABOUT PAGE SECTIONS
   ========================================= */
section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}



.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gb-cyan);
    margin-bottom: 16px;
}

p {
    color: #4b535a;
    font-size: 1.05rem;
    line-height: 1.75;
}



/* Hero */


.about-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0px 80px 0px;

    /* Background Image */
    background-image: url('../img/contact-sub.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 70px 0;

        min-height: auto;
    }
}

/* Dark Blue Overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 28, 48, 0.779);
    z-index: 1;
}

/* Hero Content */
.about-hero>* {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 65px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 28px;
    color: #fff;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }
}

.about-hero h1 span {
    color: var(--gb-cyan);
    display: block;
}

.about-hero p.subtitle {
    font-size: 1.25rem;
    color: var(--gb-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-cta-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--gb-cyan), var(--gb-blue-bright));
    color: var(--gb-white);
    box-shadow: 0 8px 28px rgba(0, 191, 239, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 191, 239, 0.45);
}

.hero-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gb-white);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* Story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-grid>div {
        width: 100%;
    }

    .story-grid img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
    }
}

.story-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gb-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 27, 46, 0.9) 100%);
    pointer-events: none;
}

.story-visual-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    background: rgba(11, 27, 46, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
}

.story-visual-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gb-white);
    margin-bottom: 4px;
}

.story-visual-badge span {
    font-size: 0.85rem;
    color: var(--gb-muted);
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #01010127;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: #c78c02;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gb-cyan), var(--gb-blue-bright));
    opacity: 0.8;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4e5862;
    font-weight: 500;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.value-card {
    background: #000;
    border: 1px solid var(--gb-border);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(0, 191, 239, 0.3);
    box-shadow: 0 20px 60px rgba(0, 191, 239, 0.08);
}

.value-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 191, 239, 0.15);
    display: grid;
    place-items: center;
    color: var(--gb-cyan);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.value-card:hover .icon-wrap {
    background: rgba(0, 191, 239, 0.15);
    transform: scale(1.05);
}

.value-card h3 {
    color: #fcfcfc;
    font-size: 25px;
}

.value-card p {
    color: #b4b2b2;
}

/* Process / Manufacturing */
/* .process-steps{display:flex;flex-wrap:wrap;gap:20px;} */
.step {
    flex: 1 1 220px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--gb-border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gb-white);
    position: relative;
    z-index: 1;
}

.step p {
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
    color: var(--gb-muted);
}

/* =========================================
   CONTACT HERO
   ========================================= */
.contact-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0px 80px 0px;

    /* Background Image */
    background-image: url('../img/contact-sub.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
.contact-hero{
     min-height: auto;
        padding: 120px 0px 70px 0px;

}
.contact-hero h1{
        font-size: 42px !important;
  
    line-height: 1.2 !important;
}
}

/* Dark Blue Overlay */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 28, 48, 0.779);
    z-index: 1;
}

/* Hero Content */
.contact-hero>* {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 65px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 28px;
    color: #fff;
}

.contact-hero h1 span {
    color: var(--gb-cyan);
    display: block;
}

.contact-hero .subtitle {
    font-size: 1.15rem;
    color: var(--gb-muted);
    max-width: 560px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-cta-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--gb-cyan), var(--gb-blue-bright));
    color: var(--gb-white);
    box-shadow: 0 8px 28px rgba(0, 191, 239, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 191, 239, 0.45);
}

.hero-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gb-white);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* =========================================
   FORM & INFO LAYOUT
   ========================================= */
.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media(max-width:992px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrap {
    background: #000;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px 36px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.contact-form-wrap .subtext {
    color: var(--gb-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gb-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gb-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(0, 191, 239, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 191, 239, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gb-cyan), var(--gb-blue-bright));
    color: var(--gb-white);
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 191, 239, 0.35);
    transition: all 0.3s;
    margin-top: 8px;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 191, 239, 0.45);
}

.form-btn:active {
    transform: translateY(0);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #000;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

/* Hover Effect */
.info-card:hover {
    transform: translateY(-6px);

    border-color: rgba(90, 180, 230, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(40, 130, 190, 0.08);
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gb-cyan), var(--gb-blue-bright));
    opacity: 0.7;
}

.info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gb-white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: var(--gb-cyan);
    flex-shrink: 0;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gb-muted);
    line-height: 1.6;
}

.info-card a {
    color: var(--gb-cyan);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 191, 239, 0.3);
    transition: border-color 0.2s;
}

.info-card a:hover {
    border-color: rgba(0, 191, 239, 0.8);
}

/* =========================================
   MAP VISUAL SECTION
   ========================================= */
.map-visual {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gb-border);
    position: relative;
    height: 340px;
    background: #071a2d;
}

.map-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(60%) contrast(120%);
}

.map-visual .map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 27, 46, 0.7), rgba(16, 43, 70, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual .map-overlay-content {
    text-align: center;
    padding: 24px;
}

.map-visual .map-overlay-content h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.map-visual .map-overlay-content p {
    color: var(--gb-muted);
    font-size: 0.95rem;
}

/* =========================================
   TRUST / CTA BANNER
   ========================================= */
.trust-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.trust-card {
    background: transparent;
    border: 2px solid #c78c02c0;
    border-radius: 20px;
    padding: 32px;
}

.trust-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-card p {
    font-size: 0.92rem;
    color: #000000c4;
    line-height: 1.6;
}

.trust-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 191, 239, 0.08);
    border: 1px solid rgba(0, 191, 239, 0.12);
    display: grid;
    place-items: center;
    color: var(--gb-cyan);
    margin-bottom: 16px;
}

/* Hero */


.product-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0px 80px 0px;

    /* Background Image */
    background-image: url('../img/contact-sub.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {

.product-hero{
     min-height: auto;
       padding: 120px 0px 70px 0px;
}
}
/* Dark Blue Overlay */
.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 28, 48, 0.779);
    z-index: 1;
}

/* Hero Content */
.product-hero>* {
    position: relative;
    z-index: 2;
}

.product-hero h1 {
    font-size: 65px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 28px;
    color: #fff;
}

@media (max-width: 768px) {

.product-hero h1{
 font-size: 42px;

  line-height: 1.2;
}}

.product-hero h1 span {
    color: var(--gb-cyan);
    display: block;
}

.product-hero .subtitle {
    font-size: 1.2rem;
    color: var(--gb-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    color: var(--gb-white);
    background: linear-gradient(135deg, var(--gb-cyan), var(--gb-blue-bright));
    box-shadow: 0 10px 30px rgba(0, 191, 239, 0.35);
    transition: all 0.3s;
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 191, 239, 0.45);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--gb-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}


.fa-quote-right-alt:before,
.fa-quote-right:before {
    content: "\f10e";
    color: white;
}

/* Enhanced Card Layout */
.product-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: black;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(0, 191, 239, 0.25);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 191, 239, 0.08);
}

.product-card .card-visual {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-card .card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .card-visual img {
    transform: scale(1.08);
}

.product-card .card-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 27, 46, 0.2) 30%, rgba(11, 27, 46, 0.92) 100%);
    pointer-events: none;
}

.product-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(11, 27, 46, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gb-cyan);
    text-transform: uppercase;
}

.product-card .card-body {
    padding: 32px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(16, 43, 70, 0.3), rgba(11, 27, 46, 0.9));
}

.product-card .card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 191, 239, 0.08);
    border: 1px solid rgba(0, 191, 239, 0.15);
    display: grid;
    place-items: center;
    color: var(--gb-cyan);
    margin-bottom: 20px;
    transition: transform 0.3s, background 0.3s;
}

.product-card:hover .card-icon-wrap {
    transform: scale(1.1);
    background: rgba(0, 191, 239, 0.15);
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gb-white);
    letter-spacing: -0.02em;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--gb-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-card .card-meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--gb-muted);
    font-weight: 500;
}

.product-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card .card-meta i {
    width: 14px;
    height: 14px;
    color: var(--gb-cyan);
}

.product-card .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 12px 22px;
    border-radius: 10px;
    background: rgba(0, 191, 239, 0.08);
    border: 1px solid rgba(0, 191, 239, 0.15);
    color: var(--gb-cyan);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.product-card .card-cta:hover {
    background: rgba(0, 191, 239, 0.15);
    border-color: rgba(0, 191, 239, 0.4);
    gap: 12px;
}

/* Featured Full-Width Card */
.featured-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0B1B2E;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 520px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card:hover {
    border-color: rgba(0, 191, 239, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 191, 239, 0.08);
}

@media(max-width:992px) {
    .featured-card {
        grid-template-columns: 1fr;
        display: block;
    }

    .featured-card .feat-body{
        padding: 40px 25px !important;
    }

    .featured-card .feat-body .feat-specs{
        display: block !important;
    }
}

.featured-card .feat-visual {
    position: relative;
    overflow: hidden;
}

.featured-card .feat-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    transition: transform 0.8s ease;
}

.featured-card:hover .feat-visual img {
    transform: scale(1.05);
}

.featured-card .feat-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 27, 46, 0.85) 0%, rgba(11, 27, 46, 0.3) 60%, transparent 100%);
}

.featured-card .feat-body {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
}

.featured-card .feat-body .badge {
    display: inline-block;
    background: rgba(0, 191, 239, 0.1);
    border: 1px solid rgba(0, 191, 239, 0.3);
    color: var(--gb-cyan);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.featured-card .feat-body h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    color: #fff;
}

.featured-card .feat-body p {

    color: #fcfcfc;
}



.featured-card .feat-body .feat-specs {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.featured-card .feat-body .feat-spec {
    background: transparent;
    border: 1px solid rgba(60, 150, 210, 0.35);
    border-radius: 14px;
    padding: 18px 20px;
    flex: 1;
}

.featured-card .feat-body .feat-spec strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gb-white);
    margin-bottom: 4px;
}

.featured-card .feat-body .feat-spec span {
    font-size: 0.82rem;
    color: var(--gb-muted);
}

/* Specs Table Improved */
.spec-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gb-cyan);
    padding: 20px 18px;
    text-align: left;
    font-weight: 800;
    background: rgba(0, 191, 239, 0.05);
}

.spec-table td {
    padding: 18px;
    vertical-align: middle;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--gb-white);
    font-size: 0.9rem;
}

.spec-table td {
    font-size: 0.88rem;
    color: var(--gb-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cert-item {
    background: linear-gradient(160deg, rgba(16, 43, 70, 0.3), rgba(11, 27, 46, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.cert-item:hover {
    border-color: rgba(0, 191, 239, 0.25);
    transform: translateY(-4px);
}

.cert-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 191, 239, 0.08);
    border: 1px solid rgba(0, 191, 239, 0.15);
    display: grid;
    place-items: center;
    color: var(--gb-cyan);
    margin-bottom: 18px;
}

.cert-item h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gb-white);
    margin-bottom: 6px;
}

.cert-item p {
    font-size: 0.85rem;
    color: var(--gb-muted);
    line-height: 1.6;
}

.owl-carousel .owl-item img {
    display: block;
    /* width: auto !important; */
}


/* 01-9-2026 */

/* =========================================================
  GRAVITECH BATHWARE - Product Marquee Carousel CSS
  All classes are prefixed with "gb-" to avoid conflicts.
========================================================= */

.gb-product-marquee {
    --gb-dark: #02090c;
    --gb-dark-2: #000405;
    --gb-white: #ffffff;
    --gb-muted: #aeb8bf;
    --gb-gold: #E5A719;
    --gb-gold-soft: rgba(229, 167, 25, 0.35);
    --gb-gold-border: rgba(229, 167, 25, 0.72);
    --gb-circle-size: 188px;
    --gb-item-gap: 48px;
    --gb-animation-duration: 40s;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 30px 0 35px;
    background:
        radial-gradient(circle at 50% 58%, rgba(229, 167, 25, 0.105), transparent 34%),
        radial-gradient(circle at 8% 0%, rgba(229, 167, 25, 0.055), transparent 28%),
        linear-gradient(180deg, var(--gb-dark) 0%, var(--gb-dark-2) 100%);
    color: var(--gb-white);
    border-top: 1px solid rgba(229, 167, 25, 0.13);
    border-bottom: 1px solid rgba(229, 167, 25, 0.13);
}

.gb-product-marquee *,
.gb-product-marquee *::before,
.gb-product-marquee *::after {
    box-sizing: border-box;
}

.gb-product-marquee__inner {
    width: min(100%, 1440px);
    margin: 0 auto;
}

.gb-product-marquee__header {
    width: min(100% - 36px, 760px);
    margin: 0 auto;
    text-align: center;
}

.gb-product-marquee__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gb-gold);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gb-product-marquee__eyebrow::before,
.gb-product-marquee__eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gb-gold);
    opacity: 0.85;
}

.gb-product-marquee__title {
    margin: 0;
    color: var(--gb-white);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.gb-product-marquee__title span {
    color: var(--gb-gold);
}

.gb-product-marquee__description {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--gb-muted);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.75;
}

/* Minimal decorative divider */
.gb-product-marquee__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(100% - 40px, 440px);
    margin: 34px auto 48px;
}

.gb-product-marquee__divider span {
    display: block;
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 167, 25, 0.68));
}

.gb-product-marquee__divider span:last-child {
    background: linear-gradient(90deg, rgba(229, 167, 25, 0.68), transparent);
}

.gb-product-marquee__divider i {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gb-gold);
    box-shadow: 0 0 14px rgba(229, 167, 25, 0.5);
}

/* Marquee viewport */
.gb-marquee-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0 10px;
}

.gb-marquee-viewport::before,
.gb-marquee-viewport::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    width: min(12vw, 180px);
    pointer-events: none;
}

.gb-marquee-viewport::before {
    left: 0;
    background: linear-gradient(90deg, #02090c 0%, rgba(2, 9, 12, 0) 100%);
}

.gb-marquee-viewport::after {
    right: 0;
    background: linear-gradient(270deg, #02090c 0%, rgba(2, 9, 12, 0) 100%);
}

/* The animated track */
.gb-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: gb-marquee-scroll var(--gb-animation-duration) linear infinite;
}

/* Pause the whole marquee on hover/focus or via JS visibility handling */
.gb-marquee-viewport:hover .gb-marquee-track,
.gb-marquee-viewport:focus-within .gb-marquee-track,
.gb-marquee-track.gb-marquee-paused {
    animation-play-state: paused;
}

/* One duplicated product group */
.gb-marquee-set {
    display: flex;
    align-items: flex-start;
    gap: var(--gb-item-gap);
    padding-right: var(--gb-item-gap);
    flex-shrink: 0;
}

/* Product item */
.gb-product-item {
    flex: 0 0 auto;
    width: var(--gb-circle-size);
    text-align: center;
}

.gb-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none;
}

.gb-product-circle {
    position: relative;
    width: var(--gb-circle-size);
    height: var(--gb-circle-size);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 1.5px solid var(--gb-gold-border);
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.08), transparent 35%),
        linear-gradient(145deg, #11191d, #030708);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 24px rgba(229, 167, 25, 0.13);
    transform: translateZ(0) scale(1);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.gb-product-image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    filter: saturate(0.98) contrast(1.04);
    transform: scale(1);
    transition:
        transform 0.36s ease,
        filter 0.36s ease;
}

/* Dark premium overlay inside circle */
.gb-shop-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
}

.gb-shop-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 15px;
    border: 1px solid rgba(229, 167, 25, 0.8);
    border-radius: 999px;
    background: rgba(229, 167, 25, 0.95);
    color: #060606;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(229, 167, 25, 0.22);
}

.gb-product-name {
    display: block;
    margin-top: 16px;
    color: var(--gb-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

/* Product hover / keyboard focus effects */
.gb-product-link:hover .gb-product-circle,
.gb-product-link:focus-visible .gb-product-circle {
    transform: translateY(-4px) scale(1.055);
    border-color: var(--gb-gold);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.55),
        0 0 34px rgba(229, 167, 25, 0.35);
}

.gb-product-link:hover .gb-product-image,
.gb-product-link:focus-visible .gb-product-image {
    transform: scale(1.08);
    filter: saturate(1.03) contrast(1.08);
}

.gb-product-link:hover .gb-shop-overlay,
.gb-product-link:focus-visible .gb-shop-overlay {
    opacity: 1;
    transform: scale(1);
}

.gb-product-link:hover .gb-product-name,
.gb-product-link:focus-visible .gb-product-name {
    color: var(--gb-gold);
}

.gb-product-link:focus-visible {
    border-radius: 18px;
    outline: 2px solid var(--gb-gold);
    outline-offset: 8px;
}

/* Seamless right-to-left animation */
@keyframes gb-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .gb-product-marquee {
        --gb-circle-size: 150px;
        --gb-item-gap: 38px;
        --gb-animation-duration: 34s;
        padding: 78px 0 82px;
    }

    .gb-product-name {
        font-size: 14px;
        margin-top: 14px;
    }

    .gb-shop-overlay span {
        padding: 9px 13px;
        font-size: 11px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gb-product-marquee {
        --gb-circle-size: 138px;
        --gb-item-gap: 28px;
        --gb-animation-duration: 31s;
        padding: 20px 0px;
    }

    .gb-product-marquee__header {
        width: min(100% - 30px, 620px);
    }

    .gb-product-marquee__divider {
        margin: 28px auto 38px;
    }

    .gb-marquee-viewport::before,
    .gb-marquee-viewport::after {
        width: 54px;
    }

    .gb-product-image {
        padding: 10px;
    }
}

/* Small mobile: 320px, 360px, 375px friendly */
@media (max-width: 430px) {
    .gb-product-marquee {
        --gb-circle-size: 128px;
        --gb-item-gap: 24px;
        --gb-animation-duration: 29s;
    }

    .gb-product-marquee__title {
        font-size: clamp(30px, 9vw, 38px);
    }

    .gb-product-marquee__description {
        font-size: 14.5px;
    }

    .gb-product-name {
        font-size: 13.5px;
    }

    .gb-shop-overlay span {
        padding: 8px 11px;
        font-size: 10.5px;
    }
}

/* Very small devices */
@media (max-width: 350px) {
    .gb-product-marquee {
        --gb-circle-size: 122px;
        --gb-item-gap: 20px;
    }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gb-marquee-track {
        animation-duration: 120s;
        animation-play-state: paused;
    }

    .gb-marquee-viewport {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .gb-marquee-viewport::-webkit-scrollbar {
        display: none;
    }
}

/* contact page form */

.mm-contact-form .mm-blk {
    color: #010101;
}

.text-center {
    text-align: center !important;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}

.gb-floating-call {
    position: fixed;
    left: 18px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 9999;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E5A719;
    color: #050505;
    text-decoration: none;
    font-size: 24px;

    box-shadow: 0 10px 28px rgba(229, 167, 25, 0.35);
    transition: all 0.3s ease;
}

.gb-floating-call:hover {
    transform: translateY(-50%) scale(1.08);
    background: #f3b72b;
    color: #000000;
    box-shadow: 0 14px 36px rgba(229, 167, 25, 0.5);
}

.gb-floating-call i {
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .gb-floating-call {
        left: 14px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}

.gb-floating-call {
    position: fixed;
    left: 18px;
    top: 90%;
    transform: translateY(-50%);
    z-index: 9999;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Green call button */
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;

    /* Continuous glow */
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
    animation: gb-call-glow 1.7s infinite ease-out;

    transition: all 0.3s ease;
}

.gb-floating-call i {
    line-height: 1;
}

.gb-floating-call:hover {
    transform: translateY(-50%) scale(1.08);
    background: #20bf5a;
    color: #ffffff;
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.75);
}

/* Glow Animation */
@keyframes gb-call-glow {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.65),
            0 8px 22px rgba(37, 211, 102, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 16px rgba(37, 211, 102, 0),
            0 8px 22px rgba(37, 211, 102, 0.35);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 8px 22px rgba(37, 211, 102, 0.35);
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .gb-floating-call {
        left: 14px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}