/* ===================================
   AVD INDUSTRIAL TRADERS - PREMIUM STYLES
   Aesthetic: High-End Industrial / Precision / Trust
   =================================== */


/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0F172A;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: calc(4px * 8);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== GRID SYSTEM ===== */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


section {
    padding: 100px 0;
}

/* Visual Elements */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1565c0;
    font-size: 1.25rem;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-icon {
    color: #f43f5e;
}

/* Borders */
.border-bottom-accent {
    border-bottom: 3px solid #1565c0;
}

.border-bottom-highlight {
    border-bottom: 3px solid #f43f5e;
}

/* Effects */
.grayscale-90 {
    filter: grayscale(0.9) brightness(0.85);
    transition: 0.6s ease;
}

.grayscale-90:hover {
    filter: grayscale(0) brightness(1);
}

.section-tag {
    display: inline-block;
    color: #1565c0;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: calc(4px * 4);
    padding-left: 12px;
    border-left: 2px solid #1565c0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: calc(4px * 4);
}

.section-title span {
    color: #1565c0;
}

.section-desc {
    color: #475569;
    font-size: 1.1rem;
    max-width: 760px;
    line-height: 1.7;
}

/* Padding Helpers */
.py-lg-7 {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .py-lg-7 {
        padding: 80px 0;
    }
}

/* Visual Helpers */
.about-visual-wrapper {
    position: relative;
}

.accent-frame {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    border-top: 4px solid #1565c0;
    border-left: 4px solid #1565c0;
    z-index: 0;
}

.premium-badge {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #0F172A;
    color: #FFFFFF;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.premium-badge strong {
    font-size: 2rem;
    color: #f43f5e;
    line-height: 1;
}

.border-start-accent {
    border-left: 3px solid #1565c0;
}

.border-start-highlight {
    border-left: 3px solid #f43f5e;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: #1565c0;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 188, 212, 0.4);
}

.btn-highlight {
    background: #f43f5e;
    color: #FFFFFF;
}

.btn-highlight:hover {
    background: #fb7185;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(233, 30, 99, 0.4);
}

.btn-accent {
    background: #1565c0;
    color: #FFFFFF;
}

.btn-accent:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 188, 212, 0.4);
}

.btn-outline {
    border-color: #1565c0;
    /* color:#0F172A; */
}

.btn-outline:hover {
    background: #0F172A;
    color: #FFFFFF;
}

/* ===== HEADER ===== */
.header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0F172A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 75px;
}

.navbar {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header.scrolled .logo-main {
    color: #0F172A;
}

.logo-main span {
    color: #1565c0;
}

.logo-sub {
    font-size: 0.55rem;
    color: #1565c0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
    position: relative;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .nav-link {
    color: #FFFFFF;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: #1565c0 !important;
}

/* ===== PREMIUM FORMS ===== */
.form-group-premium {
    margin-bottom: 25px;
}

.form-label-premium {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #0F172A;
    opacity: 0.8;
}

.form-control-premium,
.premium-input {
    width: 100%;
    padding: 15px 25px;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 1rem;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: #0F172A;
}

.form-control-premium:focus,
.premium-input:focus {
    outline: none;
    border-color: #1565c0;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.05);
}

.form-alert {
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid rgba(22, 101, 52, 0.1);
}

.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid rgba(153, 27, 27, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F172A;
}

.btn-nav-call:hover {
    background: #1565c0;
    color: #0F172A;
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 440px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    padding: 8px 0;
}

.dropdown-item:hover {
    color: #1565c0;
}

.dropdown-item .arrow {
    opacity: 0;
    transition: var(--transition);
}

.dropdown-item:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* ===== HERO PAGE (GLOBAL) ===== */
.page-hero {
    padding: 160px 0 100px;
    background: #0F172A;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #1565c0;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.page-hero h1 span {
    color: #1565c0;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 32px;
}

.breadcrumb-nav span {
    color: #1565c0;
}

/* ===== USER FRIENDLY HEADERS ===== */
.page-header-clean {
    padding: 160px 0 60px;
    background: #0F172A;
    color: #FFFFFF;
    background-image: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-tag-minimal {
    color: #1565c0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 9999px;
}

.section-tag {
    color: #f43f5e;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(190, 24, 93, 0.05);
    border-radius: 9999px;
}

.header-content-inner h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.header-content-inner h1 span {
    color: #1565c0;
}

.header-content-inner p {
    color: #94a3b8;
    max-width: 600px;
    font-size: 1.1rem;
}

.header.scrolled {
    background: #0F172A;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 75px;
}


/* ===== PREMIUM DESIGN SYSTEM ===== */
.glass-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
}

.glass-premium-dark {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.glow-centered {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
}


.bg-white-10 {
    background: rgba(255, 255, 255, 0.1) !important;
}

.z-index-2 {
    z-index: 2;
}

.border-white {
    border-color: #FFFFFF !important;
}

.border-top-white {
    border-top: 3px solid #FFFFFF !important;
}

.border-top-accent {
    border-top: 3px solid #1565c0 !important;
}

.border-top-highlight {
    border-top: 3px solid #f43f5e !important;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 55%,
            transparent 100%);
    transform: rotate(-45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-30%, -30%) rotate(-45deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(-45deg);
    }
}

[data-animate="reveal"] {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="reveal"].active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LUXURY HEADERS ===== */
.page-header-premium {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: #0F172A;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 40%);
}

.premium-title-main {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    text-transform: uppercase;
}

.premium-title-main span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.premium-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 500px;
    border-left: 2px solid #1565c0;
    padding-left: 25px;
    margin-left: 5px;
}

/* ===== NEW HERO PINNED ===== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #0F172A;
    color: #FFFFFF;
    padding: calc(80px + 60px) 0 80px;
    overflow: hidden;
}

.hero-visuals {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-visuals .ambient-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.hero-visuals .glow-1 {
    top: -10%;
    right: -10%;
}

.hero-visuals .glow-2 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(190, 24, 93, 0.1) 0%, transparent 70%);
}

.hero-visuals .hero-img-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
    filter: grayscale(1) contrast(1.2) brightness(0.5);
    mix-blend-mode: luminosity;
}

.hero-premium .container {
    position: relative;
    z-index: 3;
}

.hero-premium .shimmer-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin-bottom: calc(4px * 8);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1565c0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 188, 212, 0.2);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 8px 16px;
    border-radius: 9999px;
    color: #1565c0;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-main {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.95;
    color: white;
    letter-spacing: -0.04em;
    margin-bottom: calc(4px * 8);
    font-weight: 800;
}

.hero-title-main span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.hero-premium .subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    color: #94a3b8;
    border-left: 2px solid #1565c0;
    padding-left: calc(4px * 8);
    margin-bottom: calc(4px * 16);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2rem;
    color: #1565c0;
    line-height: 1;
}

.stat span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.scroll-indicator {
    position: absolute;
    bottom: calc(4px * 8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-indicator .line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #1565c0, transparent);
    margin: 0 auto;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-50 {
    opacity: 0.5;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-badge-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #f43f5e;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.about-badge-1 i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.about-badge-1 span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #1565c0;
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #1e293b;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-item i {
    color: #1565c0;
}

/* ===== PRODUCTS PINNED ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* ===== PRODUCT CARDS ===== */
.product-card-premium {
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    height: 280px;
    background: #f1f5f9;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    transition: 0.6s ease;
}

.product-card-premium:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    padding: calc(4px * 8);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1565c0;
    margin-bottom: calc(4px * 2);
    display: block;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: calc(4px * 4);
}

.product-details {
    list-style: none;
    padding: 0;
    margin-bottom: calc(4px * 8);
}

.product-details li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-details li i {
    color: #1565c0;
    font-size: 0.8rem;
}

/* ===== LEADERSHIP ===== */
.leader-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1565c0;
}

.leader-avatar.border-highlight {
    border-color: #f43f5e;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-accent {
    color: #1565c0 !important;
}

.text-highlight {
    color: #f43f5e !important;
}

.hover-translate {
    transition: transform 0.3s ease;
}

.hover-translate:hover {
    transform: translateY(-5px);
}

.hover-accent:hover {
    color: #1565c0 !important;
}

.hover-highlight:hover {
    color: #f43f5e !important;
}


/* ===== CATEGORY DIVIDERS ===== */
.category-divider-premium {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 6px solid #1565c0;
}

.category-divider-premium.highlight-accent {
    border-color: #f43f5e;
}

.category-divider-premium.yellow-accent {
    border-color: #fbbf24;
}

.category-title {
    color: #0F172A;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.category-title span {
    color: inherit;
}

.highlight-accent .category-title span {
    color: #f43f5e;
}

.yellow-accent .category-title span {
    color: #fbbf24;
}

/* ===== PRODUCT LIST VARIANTS ===== */
.product-details.text-highlight li i {
    color: #f43f5e;
}

.product-details.text-yellow li i {
    color: #fbbf24;
}


.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 240px;
    position: relative;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-img img {
    max-height: 100%;
    object-fit: contain;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-inquiry-btn {
    background: #1565c0;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 700;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #0F172A;
}

.product-info p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 20px;
}

.btn-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1565c0;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== UTILITIES OVERRIDE ===== */
.bg-white {
    background: #FFFFFF !important;
}

.border-subtle {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.highlight-tag {
    color: #f43f5e !important;
    border-color: #f43f5e !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}


/* ===== FOOTER ===== */
.footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 80px 0 0;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 40px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
}

.social-links a:hover {
    background: #1565c0;
    color: #0F172A;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: #1565c0;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact ul li i {
    color: #1565c0;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-bottom {
    background: #111;
    padding: 15px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}


.developer {
    color: #00bcd4;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.developer:hover {
    color: #ffffff;
}


.footer-legal {
    display: flex;
    gap: 24px;
}

/* WhatsApp & Back to Top */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    background: #0F172A;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    color: #0F172A;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.back-to-top.show {
    display: flex;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animated,
[data-animate].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overhaul */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0F172A;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        right: 0;
    }

    .hamburger {
        display: block !important;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: #FFFFFF;
        margin: 6px 0;
        transition: 0.4s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-actions-phones {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 768px) {
    .premium-title-main {
        font-size: clamp(2rem, 10vw, 3.5rem) !important;
        line-height: 1 !important;
        letter-spacing: -1px !important;
        margin-bottom: 20px !important;
        word-break: break-word;
    }

    .hero-premium {
        padding-top: 100px !important;
        min-height: auto !important;
        padding-bottom: 60px;
        overflow-x: hidden;
    }

    .hero-content-premium p {
        font-size: 1rem !important;
        padding-left: 15px !important;
        margin-bottom: 30px !important;
        line-height: 1.6 !important;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .form-row-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Fix image overflow or alignment */
    .about-grid-premium img {
        max-width: 100% !important;
        margin: 0 auto;
    }

    .about-iso-badge {
        padding: 15px 25px !important;
        bottom: -20px !important;
    }

    .about-iso-badge strong {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }

    .premium-title-main {
        font-size: 1.8rem !important;
    }

    .btn {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
    }

    .hero-btns-premium {
        flex-direction: column;
        gap: 10px !important;
        align-items: stretch;
    }

    .glass-premium {
        padding: 15px !important;
    }

    .logo-main {
        font-size: 1.1rem !important;
    }
}

/* ===== BRAND MARQUEE SECTION ===== */
.partners-section {
    overflow: hidden;
    padding: 80px 0;
}

.brands-marquee-wrapper {
    width: 100%;
    position: relative;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.brand-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-item img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .marquee-track {
        gap: 40px;
        animation-duration: 25s;
    }

    .brand-logo-item img {
        height: 35px;
    }
}

/*premium design*/

/* ===== REDESIGNED LEADERSHIP SECTION ===== */
.leadership-section {
    background: #ffffff;
    padding-bottom: 150px;
}

.badge-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e0f2fe;
    color: #1565c0;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 9999px;
    letter-spacing: 1.5px;
}

.section-title-alt {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #0F172A;
}

.section-title-alt span {
    color: #1565c0;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #1565c0;
    margin: 0 auto;
    border-radius: 2px;
}

.leadership-card-premium {
    background: #FFFFFF;
    border: 1px solid #e0f2fe;
    border-top: 6px solid #1565c0;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.1);
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.avatar-wrapper {
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.avatar-main {
    width: 170px;
    height: 170px;
    background: #FFFFFF;
    border: 4px solid #e0f2fe;
    border-radius: 50%;
    padding: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.avatar-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-pill {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: #1565c0;
    transition: all 0.3s ease;
}

.social-pill:hover {
    background: #1565c0;
    color: #FFFFFF;
    transform: scale(1.1);
}

.social-pill.linkedin {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.social-pill.twitter {
    right: 15px;
    bottom: 5px;
}

.card-content-inner {
    padding-top: 80px;
}

.name-main {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
}

.role-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #1565c0;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sub-line {
    width: 50px;
    height: 3px;
    background: #1565c0;
    margin: 0 auto;
    border-radius: 2px;
}

.bio-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .leadership-card-premium {
        padding: 60px 20px 40px;
    }

    .card-content-inner {
        padding-top: 60px;
    }

    .avatar-main {
        width: 140px;
        height: 140px;
    }

    .avatar-wrapper {
        top: -70px;
    }

    .name-main {
        font-size: 1.5rem;
    }
}