[file name]: main.css
[file content begin]
/* ==========================================================================
   Webeye Digital Marketing - Main CSS
   Version: 3.0 | Clean Professional Design
   ========================================================================== */

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    cursor: auto !important;
}

/* ==========================================================================
   Webeye Theme Variables
   ========================================================================== */
:root {
    /* Primary Brand Colors */
    --webeye-primary: #4fbceb;
    --webeye-primary-dark: #2a96c7;
    --webeye-primary-light: #7fd3ff;
    --webeye-primary-ultralight: #f0fbff;
    
    /* Secondary Colors */
    --webeye-secondary: #0f172a;
    --webeye-secondary-light: #1e293b;
    --webeye-secondary-lighter: #334155;
    
    /* Accent Colors */
    --webeye-accent: #f8a61c;
    --webeye-success: #10b981;
    --webeye-warning: #f59e0b;
    --webeye-error: #ef4444;
    --webeye-info: #3b82f6;
    
    /* Neutral Colors */
    --webeye-white: #ffffff;
    --webeye-light: #f8fafc;
    --webeye-gray-light: #e2e8f0;
    --webeye-gray: #94a3b8;
    --webeye-gray-dark: #64748b;
    --webeye-dark: #0f172a;
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Space Grotesk', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 64px rgba(15, 23, 42, 0.16);
    --shadow-primary: 0 8px 32px rgba(79, 188, 235, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Container Widths */
    --container-sm: 100%;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;
}

/* ==========================================================================
   Container & Layout System
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-xxl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-md);
}

/* Responsive Container */
@media (max-width: 1200px) {
    .container {
        max-width: var(--container-xl);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: var(--container-lg);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: var(--container-md);
        padding: 0 var(--space-sm);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-xs);
    }
}

/* ==========================================================================
   Typography System
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--webeye-secondary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--webeye-gray-dark);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--webeye-secondary-lighter);
}

.small {
    font-size: 0.875rem;
}

.text-primary {
    color: var(--webeye-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--webeye-primary), var(--webeye-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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: left 0.6s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--webeye-primary), var(--webeye-primary-dark));
    color: var(--webeye-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(79, 188, 235, 0.3);
}

.btn-secondary {
    background: var(--webeye-secondary);
    color: var(--webeye-white);
}

.btn-secondary:hover {
    background: var(--webeye-secondary-light);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--webeye-primary);
    color: var(--webeye-primary);
}

.btn-outline:hover {
    background: var(--webeye-primary);
    color: var(--webeye-white);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--webeye-white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--webeye-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--webeye-secondary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--webeye-secondary);
    background-color: var(--webeye-white);
    border: 2px solid var(--webeye-gray-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: text;
}

.form-control:focus {
    outline: none;
    border-color: var(--webeye-primary);
    box-shadow: 0 0 0 3px rgba(79, 188, 235, 0.1);
}

.form-control::placeholder {
    color: var(--webeye-gray);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   Card System
   ========================================================================== */
.card {
    background: var(--webeye-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--webeye-gray-light);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--webeye-primary);
}

.card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--webeye-gray-light);
}

.card-body {
    padding: var(--space-lg);
}

.card-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--webeye-gray-light);
    background: var(--webeye-light);
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--webeye-white);
}

/* ==========================================================================
   Grid System
   ========================================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1 0 0%;
    padding: 0 1rem;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive Grid */
@media (max-width: 992px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 768px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ==========================================================================
   Section Spacing & Layout
   ========================================================================== */
section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-padding {
    padding: var(--space-3xl) 0;
}

.section-padding-lg {
    padding: var(--space-3xl) 0;
}

.section-padding-sm {
    padding: var(--space-xl) 0;
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--webeye-light);
}

.bg-primary {
    background-color: var(--webeye-primary);
    color: var(--webeye-white);
}

.bg-dark {
    background-color: var(--webeye-secondary);
    color: var(--webeye-white);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--webeye-primary), var(--webeye-primary-dark));
    color: var(--webeye-white);
}

/* ==========================================================================
   Navigation & Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 188, 235, 0.1);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--webeye-secondary);
}

.brand-logo img {
    height: 40px;
    width: auto;
}

/* ==========================================================================
   Interactive Elements
   ========================================================================== */
.interactive-hover {
    position: relative;
    transition: all var(--transition-normal);
}

.interactive-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--webeye-primary);
    transition: width var(--transition-normal);
}

.interactive-hover:hover::after {
    width: 100%;
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   Animation Classes
   ========================================================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideLeft 0.8s ease forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideRight 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease forwards;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Animation Keyframes */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Flex */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-center { align-items: center; }
.align-stretch { align-items: stretch; }

/* Grid */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* Spacing */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.m-1 { margin: var(--space-xs) !important; }
.mt-1 { margin-top: var(--space-xs) !important; }
.mr-1 { margin-right: var(--space-xs) !important; }
.mb-1 { margin-bottom: var(--space-xs) !important; }
.ml-1 { margin-left: var(--space-xs) !important; }
.m-2 { margin: var(--space-sm) !important; }
.mt-2 { margin-top: var(--space-sm) !important; }
.mr-2 { margin-right: var(--space-sm) !important; }
.mb-2 { margin-bottom: var(--space-sm) !important; }
.ml-2 { margin-left: var(--space-sm) !important; }
.m-3 { margin: var(--space-md) !important; }
.mt-3 { margin-top: var(--space-md) !important; }
.mr-3 { margin-right: var(--space-md) !important; }
.mb-3 { margin-bottom: var(--space-md) !important; }
.ml-3 { margin-left: var(--space-md) !important; }
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.p-1 { padding: var(--space-xs) !important; }
.pt-1 { padding-top: var(--space-xs) !important; }
.pr-1 { padding-right: var(--space-xs) !important; }
.pb-1 { padding-bottom: var(--space-xs) !important; }
.pl-1 { padding-left: var(--space-xs) !important; }
.p-2 { padding: var(--space-sm) !important; }
.pt-2 { padding-top: var(--space-sm) !important; }
.pr-2 { padding-right: var(--space-sm) !important; }
.pb-2 { padding-bottom: var(--space-sm) !important; }
.pl-2 { padding-left: var(--space-sm) !important; }
.p-3 { padding: var(--space-md) !important; }
.pt-3 { padding-top: var(--space-md) !important; }
.pr-3 { padding-right: var(--space-md) !important; }
.pb-3 { padding-bottom: var(--space-md) !important; }
.pl-3 { padding-left: var(--space-md) !important; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
    .section-padding { padding: var(--space-2xl) 0; }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .section-padding { padding: var(--space-xl) 0; }
    .btn-large { padding: 1rem 2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .lead { font-size: 1.125rem; }
    .section-padding { padding: var(--space-lg) 0; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn, .site-header {
        display: none !important;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid var(--webeye-primary);
    outline-offset: 2px;
}

/* ==========================================================================
   Loading States
   ========================================================================== */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--webeye-gray-light);
    border-top-color: var(--webeye-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Custom Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--webeye-light);
}

::-webkit-scrollbar-thumb {
    background: var(--webeye-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--webeye-primary-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--webeye-primary) var(--webeye-light);
}

/* ==========================================================================
   Image & Media
   ========================================================================== */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Badges & Labels
   ========================================================================== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--radius-full);
}

.badge-primary {
    background-color: var(--webeye-primary);
    color: var(--webeye-white);
}

.badge-secondary {
    background-color: var(--webeye-secondary);
    color: var(--webeye-white);
}

.badge-success {
    background-color: var(--webeye-success);
    color: var(--webeye-white);
}

.badge-warning {
    background-color: var(--webeye-warning);
    color: var(--webeye-dark);
}

.badge-error {
    background-color: var(--webeye-error);
    color: var(--webeye-white);
}

/* ==========================================================================
   Layout Fixes for Common Issues
   ========================================================================== */

/* Fix for body overflow */
body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fix for container alignment */
.container, 
.container-fluid {
    position: relative;
}

/* Fix for section alignment */
section > .container,
section > .container-fluid {
    position: relative;
    z-index: 2;
}

/* Clear floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Fix for images not loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for button alignment in forms */
.form-group .btn {
    margin-top: var(--space-sm);
}

/* Fix for card grid alignment */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

/* Fix for mobile tap targets */
@media (max-width: 768px) {
    button,
    .btn,
    a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix for text overflow */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Fix for line height in buttons */
.btn {
    line-height: 1.2;
}

/* Fix for form alignment on mobile */
@media (max-width: 576px) {
    .form-group {
        margin-bottom: var(--space-md);
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Fix for header overlapping content */
main {
    padding-top: 80px; /* Adjust based on header height */
}

/* Fix for absolute positioned elements */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

/* Fix for z-index issues */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* Fix for overflow in cards */
.card-body {
    overflow: hidden;
}

/* Fix for mobile navigation */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .brand-logo img {
        height: 35px;
    }
}

/* Fix for hero section spacing */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
}

/* Fix for footer sticking to bottom */
.site-footer {
    margin-top: auto;
}

/* Fix for list alignment */
ul, ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

/* Fix for table alignment */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-md);
}

th, td {
    padding: var(--space-sm);
    border: 1px solid var(--webeye-gray-light);
    text-align: left;
}

/* Fix for iframe responsiveness */
iframe {
    max-width: 100%;
}

/* Fix for select element styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

/* Fix for checkbox and radio alignment */
input[type="checkbox"],
input[type="radio"] {
    margin-right: var(--space-xs);
    vertical-align: middle;
}

/* Fix for label alignment with checkboxes */
label {
    vertical-align: middle;
    cursor: pointer;
}

/* Fix for hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .hover-lift:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .interactive-hover::after {
        display: none;
    }
}

/* Fix for dark mode compatibility */
@media (prefers-color-scheme: dark) {
    body {
        color-scheme: light; /* Force light mode */
    }
}
[file content end]