/* ===================================
   COMBINED STYLES - ADVANCE RUBBER TECHNOLOGY
   Animations + Footer Styling
   =================================== */

/* ===== PERFORMANCE VARIABLES ===== */
:root {
    --primary-blue: #0066cc;
    --secondary-teal: #00a8cc;
    --gradient-blue: linear-gradient(135deg, #0066cc 0%, #0080ff 100%);
    --gradient-teal: linear-gradient(135deg, #00a8cc 0%, #00c4cc 100%);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
.nav-glass {
    background: linear-gradient(to left, #006BFF, #ffffff);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #006BFF !important;
    transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #006BFF 0%, #0056CC 50%, #004BB5 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 107, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-modern:hover {
    background: linear-gradient(135deg, #0056CC 0%, #004BB5 50%, #003A9E 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 107, 255, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.btn-metallic {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid #e2e8f0;
}

.btn-metallic:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

/* ===== CARDS ===== */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glassmorphism-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.modern-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid rgba(241, 245, 249, 0.8);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.modern-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.industrial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.industrial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ===== ICONS ===== */
.modern-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #006BFF 0%, #0056CC 50%, #004BB5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 107, 255, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 107, 255, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.modern-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    transition: transform 0.3s ease;
}

/* ===== COUNTERS ===== */
.counter {
    background: linear-gradient(135deg, #006BFF 0%, #0056CC 30%, #004BB5 60%, #16A085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 8px rgba(0, 107, 255, 0.2);
    font-variant-numeric: tabular-nums;
}

/* ===== SLIDESHOW ===== */
.slideshow-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(59, 130, 246, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.slideshow-container:hover {
    transform: scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(59, 130, 246, 0.15);
}

.slide {
    display: none;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.8), 
        rgba(16, 185, 129, 0.6),
        rgba(59, 130, 246, 0.8), 
        transparent);
    margin: 60px auto;
    max-width: 150px;
    border-radius: 4px;
    position: relative;
}

/* ===== MOBILE MENU ===== */
.hamburger {
    width: 24px;
    height: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
    transition: var(--transition-fast);
}

.mobile-menu {
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-fast);
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

/* ===== HERO CONTENT BOX ===== */
.hero-content-box {
    background: rgba(248, 251, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 40px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(59, 130, 246, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    animation: heroFadeUp 1.5s ease-out;
    color: #0E1E2E;
    transform-style: preserve-3d;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.92) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* ===== BACKGROUND EFFECTS ===== */
.aurora-borealis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 127, 0.3) 25%, 
        rgba(0, 191, 255, 0.2) 50%, 
        rgba(138, 43, 226, 0.3) 75%, 
        transparent 100%);
    animation: auroraWave 12s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes auroraWave {
    0%, 100% {
        transform: skewX(0deg) translateY(0);
        opacity: 0.4;
    }
    25% {
        transform: skewX(5deg) translateY(-20px);
        opacity: 0.8;
    }
    50% {
        transform: skewX(-3deg) translateY(-10px);
        opacity: 0.6;
    }
    75% {
        transform: skewX(7deg) translateY(-30px);
        opacity: 0.9;
    }
}

.cosmic-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lightning-bolt {
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(to bottom, 
        #ffffff 0%, 
        #00ffff 20%, 
        #0080ff 40%, 
        #8000ff 60%, 
        #ff00ff 80%, 
        transparent 100%);
    box-shadow: 0 0 20px #ffffff, 0 0 40px #00ffff;
    animation: lightningStrike 4s ease-in-out infinite;
    opacity: 0;
}

.lightning-bolt:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.lightning-bolt:nth-child(2) {
    left: 60%;
    animation-delay: 2s;
    transform: rotate(-10deg);
}

@keyframes lightningStrike {
    0%, 90%, 100% {
        opacity: 0;
    }
    5%, 15% {
        opacity: 1;
    }
    10% {
        opacity: 0.3;
    }
}

.laser-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.laser-beam {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #00ffff 20%, 
        #ffffff 50%, 
        #00ffff 80%, 
        transparent);
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    animation: laserSweep 4s ease-in-out infinite;
}

.laser-beam:nth-child(1) {
    top: 25%;
    width: 300px;
    animation-delay: 0s;
}

.laser-beam:nth-child(2) {
    top: 50%;
    width: 400px;
    animation-delay: 1s;
}

@keyframes laserSweep {
    0% {
        left: -400px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent, 
        #00ff00 10%, 
        #00ff00 90%, 
        transparent);
    animation: matrixFall 3s linear infinite;
    opacity: 0.6;
}

.matrix-column:nth-child(1) { left: 10%; animation-delay: 0s; }
.matrix-column:nth-child(2) { left: 25%; animation-delay: 0.5s; }
.matrix-column:nth-child(3) { left: 40%; animation-delay: 1s; }

@keyframes matrixFall {
    0% {
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.quantum-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ff00ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff00ff;
    animation: quantumMove 5s linear infinite;
}

.quantum-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.quantum-particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
}

.quantum-particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
}

@keyframes quantumMove {
    0% {
        top: 100%;
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: rotate(180deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: -10px;
        opacity: 0;
        transform: rotate(360deg);
    }
}

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00a8cc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00a8cc;
    animation: dataFlow 4s linear infinite;
}

.data-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.data-particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
}

.data-particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
}

@keyframes dataFlow {
    0% {
        top: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circuit-line {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: circuitPulse 3s ease-in-out infinite;
}

.circuit-line:nth-child(1) {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.circuit-line:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes circuitPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ===== COSMIC EFFECTS ===== */
.cosmic-nebula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(138, 43, 226, 0.1) 0%, 
        rgba(75, 0, 130, 0.05) 30%, 
        transparent 70%);
    animation: nebulaPulse 8s ease-in-out infinite;
}

@keyframes nebulaPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 0.7s;
}

.star:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 1.4s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 255, 255, 0.1) 35%, 
        rgba(0, 102, 204, 0.1) 40%, 
        transparent 45%,
        transparent 55%,
        rgba(0, 168, 204, 0.1) 60%,
        rgba(0, 255, 255, 0.1) 65%,
        transparent 70%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 168, 204, 0.1) 0%, transparent 50%);
    animation: patternShift 10s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.industrial-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 15s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.mechanical-gears {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gear {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    animation: gearRotate 8s linear infinite;
}

.gear:nth-child(1) {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
}

.gear:nth-child(2) {
    bottom: 30%;
    left: 10%;
    animation-delay: 4s;
    animation-direction: reverse;
}

@keyframes gearRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ffff;
    animation: neuralPulse 2s ease-in-out infinite;
}

.neural-node:nth-child(1) {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.neural-node:nth-child(2) {
    top: 70%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes neuralPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.slideshow-container,
.modern-card,
.industrial-card {
    will-change: transform;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .text-6xl { font-size: 2.5rem; }
    .text-5xl { font-size: 2rem; }
    .text-4xl { font-size: 1.75rem; }
    
    .modern-card {
        padding: 1.5rem;
    }
    
    .section-divider {
        margin: 2rem 0;
    }
    
    .btn-modern {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    /* Disable heavy animations on mobile */
    .aurora-borealis,
    .cosmic-lightning,
    .laser-beams,
    .matrix-rain,
    .quantum-particles,
    .data-stream,
    .circuit-lines,
    .cosmic-nebula,
    .starfield,
    .holographic-overlay,
    .bg-pattern,
    .industrial-grid,
    .mechanical-gears,
    .neural-network {
        display: none;
    }
}

@media (max-width: 480px) {
    .modern-card {
        padding: 1rem;
    }
    
    .modern-icon {
        width: 50px;
        height: 50px;
    }
    
    .modern-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* ===== FOOTER STYLING ===== */
footer .text-blue-100 {
    color: white !important;
}

footer .text-blue-200 {
    color: white !important;
}

footer .text-blue-300 {
    color: white !important;
}

footer ul li {
    color: white !important;
}

footer ul li p {
    color: white !important;
}

footer .text-white {
    color: white !important;
}

footer .text-sm {
    color: white !important;
}

footer p {
    color: white !important;
}

footer a {
    color: white !important;
}

footer li {
    color: white !important;
}

footer div {
    color: white !important;
}

footer span {
    color: white !important;
}

footer h3 {
    color: white !important;
}

footer h4 {
    color: white !important;
}

/* Ensure all footer text elements are white */
footer * {
    color: white !important;
}

/* Override any specific text color classes in footer */
footer .text-gray-100,
footer .text-gray-200,
footer .text-gray-300,
footer .text-gray-400,
footer .text-gray-500,
footer .text-gray-600,
footer .text-gray-700,
footer .text-gray-800,
footer .text-gray-900 {
    color: white !important;
}

/* Ensure footer links remain white on hover */
footer a:hover {
    color: white !important;
    opacity: 0.8;
}

/* ===== ADDITIONAL FOOTER FIXES ===== */
/* Make sure all footer content is white regardless of original classes */
footer .leading-relaxed {
    color: white !important;
}

footer .font-medium {
    color: white !important;
}

footer .font-bold {
    color: white !important;
}

footer .text-center {
    color: white !important;
}

footer .text-left {
    color: white !important;
}

/* ===== SEARCH BAR STYLING ===== */
.search-container {
    background: transparent !important;
}

.search-input {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    border-radius: 12px !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.search-input:focus {
    border-color: rgba(255, 255, 255, 0.6) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
}

.search-icon {
    color: rgba(255, 255, 255, 0.8) !important;
    width: 20px !important;
    height: 20px !important;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ===== SEARCH BAR FIXES ===== */
.bg-white.rounded-xl, .flex.items-center.bg-white, .bg-white.shadow-md {
    background: transparent !important;
}

#productSearch {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

#productSearch::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

#productSearch:focus {
    border-color: white !important;
    outline: none !important;
}

.w-5.h-5 {
    width: 20px !important;
    height: 20px !important;
}

.text-gray-400 {
    color: white !important;
}