/* DigiZone Tech Solutions - Custom Styles with Tailwind CSS */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Tailwind Base, Components, Utilities */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@3.4.0/base.min.css');

/* CSS Variables for Design System */
:root {
    /* Primary Colors - Metallic Blue Theme */
    --color-primary: #00418a;
    --color-primary-dark: #002d5f;
    --color-primary-light: #0055b3;

    /* Secondary Colors - Complementary */
    --color-secondary: #1e3a8a;
    --color-secondary-dark: #1e40af;
    --color-secondary-light: #3b82f6;

    /* Accent - Metallic Gold */
    --color-accent: #d4af37;

    /* Neutrals */
    --color-dark: #0F172A;
    --color-gray-900: #1E293B;
    --color-gray-700: #334155;
    --color-gray-600: #475569;
    --color-gray-500: #64748B;
    --color-gray-300: #CBD5E1;
    --color-gray-200: #E2E8F0;
    --color-gray-100: #F1F5F9;
    --color-white: #FFFFFF;
    --color-white: #FFFFFF;

    /* Semantic Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;

    /* Gradients - Metallic Blue Theme */
    --gradient-hero: linear-gradient(135deg, #00418a 0%, #1e3a8a 100%);
    --gradient-card: linear-gradient(135deg, #0055b3 0%, #3b82f6 100%);
    --gradient-cta: linear-gradient(90deg, #d4af37 0%, #c49a2e 100%);


    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 40px rgba(37, 99, 235, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.text-display {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

h1,
.text-h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h2,
.text-h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3,
.text-h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4,
.text-h4 {
    font-size: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-base {
    font-size: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

/* Gradient Text */
.gradient-text {
    /* Fallback for browsers that don't support background-clip */
    color: white !important;
    /* Gradient text for modern browsers */
    background: var(--gradient-cta);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Ensure it displays as inline for proper line breaking */
    display: inline;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-accent {
    background: var(--gradient-cta);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--color-gray-700);
    padding: 0.75rem 1.5rem;
}

.btn-ghost:hover {
    background: var(--color-gray-100);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Cards */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-service {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card-service .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform var(--transition-normal);
}

.card-service:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

.card-portfolio {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.card-portfolio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card-portfolio:hover img {
    transform: scale(1.1);
}

.card-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card-portfolio:hover .card-portfolio-overlay {
    opacity: 1;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.error {
    border-color: var(--color-error);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    /* Increased slightly for better visibility */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Ultra Modern Mega Menu (Compact) */
.nav-item-dropdown {
    position: relative;
    height: 100%;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.98);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 1rem;
    min-width: 750px;
    /* Compact Width */
    z-index: 1000;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    margin-top: 0.75rem;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    /* Compact Gap */
}

.mega-menu-column h4 {
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
}

.mega-menu-column ul li {
    margin-bottom: 0.25rem;
}

.mega-menu-column ul li a {
    color: var(--color-gray-600);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    margin-left: -0.75rem;
    border: 1px solid transparent;
}

.mega-menu-column ul li a:hover {
    color: var(--color-primary);
    background: linear-gradient(to right, rgba(37, 99, 235, 0.08), transparent);
    padding-left: 1rem;
    font-weight: 500;
    border-color: rgba(37, 99, 235, 0.1);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    z-index: -1;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* General Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: 3rem 0;
    display: flex;
    align-items: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Desktop Hero Section */
.hero-desktop {
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

.hero-desktop::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Mobile Hero Section */
.hero-mobile {
    display: none;
    background: var(--gradient-hero);
    padding: 3rem 0;
    text-align: center;
    color: white;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-mobile-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-mobile-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-mobile-icon i {
    font-size: 2rem;
    color: var(--color-accent);
}

.hero-mobile-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-mobile-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-mobile-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-stat {
    text-align: center;
}

.mobile-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.mobile-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-mobile-cta .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

.hero-mobile-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mobile-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-badge i {
    color: var(--color-accent);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-500);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Modern Stats Section */
.modern-stats-section {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.modern-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 65, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 65, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.modern-stat-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.modern-stat-card:hover::before {
    left: 100%;
}

.modern-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.6);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 65, 138, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.modern-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #1e40af);
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease-in-out;
    animation: progressAnimation 2s ease-in-out forwards;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: var(--progress-width, 100%); }
}

.achievement-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    border-color: var(--color-primary);
}

.achievement-badge i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-stats-section {
        padding: 3rem 0;
    }
    
    .stats-header {
        margin-bottom: 3rem;
    }
    
    .modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-stat-card {
        padding: 1.5rem;
    }
    
    .modern-stat-number {
        font-size: 2.5rem;
    }
    
    .achievement-badges {
        gap: 1rem;
    }
    
    .achievement-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modern-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .modern-stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .modern-stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--spacing-md);
}

.mt-2 {
    margin-top: var(--spacing-xl);
}

.mt-3 {
    margin-top: var(--spacing-2xl);
}

.mt-4 {
    margin-top: var(--spacing-3xl);
}

.mb-1 {
    margin-bottom: var(--spacing-md);
}

.mb-2 {
    margin-bottom: var(--spacing-xl);
}

.mb-3 {
    margin-bottom: var(--spacing-2xl);
}

.mb-4 {
    margin-bottom: var(--spacing-3xl);
}

.py-1 {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-2 {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.py-3 {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

.py-4 {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* ====================================
   HERO SLIDER STYLES
   ==================================== */

/* Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;

    /* Center content vertically for each slide */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Content Areas */
.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide.active .hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-right {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.hero-slide.active .hero-right {
    animation: slideInRight 0.8s ease-out;
}

/* Hero Title */
.hero-title {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Subtitle */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid white !important;
    color: white !important;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

/* Hero Badges */
.hero-badges {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge i {
    color: var(--color-accent);
}

/* Hero Card (Glassmorphic) */
.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-card-content {
    color: white;
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.hero-card-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: floatAnimation 4s ease-in-out infinite;
}

.stat-top {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.stat-bottom {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

/* Navigation Arrows */
.hero-nav-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-arrow:active {
    transform: scale(0.95);
}

/* Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.hero-dot.active {
    background: var(--color-accent);
    width: 32px;
    border-radius: 8px;
}

/* Slide Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Hero Slider */
@media (max-width: 1024px) {
    .hero {
        min-height: calc(100vh - 80px);
        padding: 3rem 0;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-desktop {
        display: none !important;
    }
    
    .hero-mobile {
        display: block !important;
        min-height: 75vh;
        padding: 2rem 0;
    }

    .hero-slider {
        height: 100% !important;
    }

    .hero-slide {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        height: 100%;
        align-content: center;
        width: 100%;
    }

    .hero-right {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-left {
        order: 1;
    }

    .hero-title {
        font-size: clamp(1.3rem, 5vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-card {
        padding: 2rem;
        margin: 0 auto;
        max-width: 300px;
    }

    .hero-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-card-text {
        font-size: 0.9rem;
    }

    .floating-stat {
        padding: 1rem;
    }

    .stat-top {
        top: -10px;
        right: -10px;
    }

    .stat-bottom {
        bottom: -10px;
        left: -10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-nav-arrows {
        padding: 0 1rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-badges {
        gap: 1rem;
    }

    .hero-dots {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-mobile {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero-mobile-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .hero-mobile-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-mobile-stats {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .mobile-stat-number {
        font-size: 1.25rem;
    }
    
    .hero-mobile-badges {
        gap: 1rem;
    }
    
    .mobile-badge {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-slider {
        height: 100% !important;
    }

    .hero-slide {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .hero-content {
        height: 100%;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-card {
        padding: 1.5rem;
        max-width: 280px;
    }

    .hero-icon {
        font-size: 2.5rem;
    }

    .hero-card-title {
        font-size: 1.1rem;
    }

    .hero-card-text {
        font-size: 0.85rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .hero-badge {
        justify-content: center;
        font-size: 0.85rem;
    }

    .floating-stat {
        position: static !important;
        margin: 0.5rem auto;
        transform: none !important;
        display: inline-block;
        width: auto;
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-nav-arrows {
        display: none; /* Hide arrows on very small screens */
    }

    .hero-dots {
        bottom: 0.5rem;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

/* ====================================
   ULTRA MODERN SERVICES SECTION (COMPACT)
   ==================================== */
.section .grid-3 {
    gap: 2rem;
    /* Reduced gap */
}

.card-service {
    background: #ffffff;
    /* Gradient Border Trick */
    background-clip: padding-box;
    border: 1px solid transparent;
    position: relative;
    border-radius: 1rem;
    /* Slightly smaller radius */
    padding: 2rem 1.5rem;
    /* Compact padding */
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Gradient Border Effect */
.card-service::after {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff, #f0f4ff);
    z-index: -1;
    border-radius: 1.1rem;
    transition: all 0.4s ease;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.25);
}

.card-service:hover::after {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* Icon Styling (Compact) */
.card-service .icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    color: var(--color-primary);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    transform: rotate(-5deg);
}

.card-service:hover .icon {
    transform: rotate(0) scale(1.1);
    background: var(--gradient-hero);
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Title Styling (Compact) */
.card-service h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--color-dark), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--color-dark);
    /* Fallback */
    transition: all 0.3s ease;
}

/* Fix text visibility on hover */
.card-service:hover h3 {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.card-service p {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem !important;
    /* Force override inline style */
    line-height: 1.5;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* Fix text visibility on hover */
.card-service:hover p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Service Link List - Compact Pill Style */
.service-list {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.service-list li {
    margin-bottom: 0.6rem;
}

.service-list a,
.service-list span {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.6rem 0.85rem;
    background: #f8fafc;
    border-radius: 0.6rem;
    color: var(--color-gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hover style for links only */
.service-list a:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Style for non-link spans (Maintenance) */
.service-list span {
    background: rgba(241, 245, 249, 0.5);
    /* Lighter bg */
    color: var(--color-gray-500);
    cursor: default;
}

/* Icon inside link */
.service-list i {
    color: var(--color-accent);
    margin-right: 0.75rem;
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

.service-list a:hover i {
    color: var(--color-primary);
}

/* Card Hover: Adjust list items for visibility on dark bg */
.card-service:hover .service-list a {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
}

.card-service:hover .service-list a:hover {
    background: white;
    color: var(--color-primary);
}

.card-service:hover .service-list span {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Main Button Styling (Compact) */
.card-service .btn {
    margin-top: auto;
    border-radius: 0.6rem;
    padding: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--gradient-hero);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 65, 138, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    color: white;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.card-service .btn:hover {
    box-shadow: 0 8px 25px rgba(0, 65, 138, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* ====================================
   CTA Service Card (Last Card)
   ==================================== */
.card-service-cta {
    background: var(--gradient-hero) !important;
    border: none;
}

.card-service-cta h3 {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    margin-bottom: 1rem;
}

.card-service-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-service-cta .icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-service-cta:hover .icon {
    background: white;
    color: var(--color-primary);
    transform: rotate(0) scale(1.1);
}

.card-service-cta .btn {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-service-cta .btn:hover {
    background: var(--color-gray-100);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hide gradient border on CTA card since it IS a gradient */
.card-service-cta::after {
    display: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-delayed {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ====================================
   WHY CHOOSE US SECTION
   ==================================== */

.why-choose-section {
    padding: 6rem 0;
    background: var(--color-gray-100);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 65, 138, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 65, 138, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.why-choose-title {
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #1e40af);
    border-radius: 2px;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 65, 138, 0.1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 65, 138, 0.05), transparent);
    transition: left 0.6s ease;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 65, 138, 0.15);
    border-color: var(--color-primary);
}

.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 65, 138, 0.3);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.icon-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 65, 138, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 50%;
    z-index: 1;
    animation: pulse-effect 3s ease-in-out infinite;
}

@keyframes pulse-effect {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.why-choose-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 65, 138, 0.4);
}

.feature-content {
    text-align: center;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-highlight {
    display: inline-block;
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-primary), #1e40af);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 65, 138, 0.3);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 65, 138, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 65, 138, 0.15);
    border-color: var(--color-primary);
}

.trust-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.trust-item span {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-header {
        margin-bottom: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .why-choose-card {
        padding: 2rem;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .icon-bg-effect {
        width: 80px;
        height: 80px;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.15rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        padding: 0.5rem 0.75rem;
    }
    
    .trust-item span {
        font-size: 0.85rem;
    }
}
/* ====================================
   ABOUT PAGE STYLES
   ==================================== */

/* About Hero Section */
.about-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: var(--color-accent);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Section */
.about-story-section {
    padding: 6rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 65, 138, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.highlight-item i {
    font-size: 1.25rem;
}

.story-visual {
    position: relative;
}

.achievement-card {
    background: var(--gradient-hero);
    color: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.achievement-icon i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.achievement-card h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.achievement-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.achievement-stats {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.mini-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 65, 138, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.mission-icon {
    background: linear-gradient(135deg, var(--color-primary), #1e40af);
}

.vision-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.card-header h3 {
    color: var(--color-dark);
    margin: 0;
}

.card-content p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-item i {
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border: 1px solid rgba(0, 65, 138, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 65, 138, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 65, 138, 0.15);
    border-color: var(--color-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.client-centric { background: linear-gradient(135deg, #ef4444, #dc2626); }
.innovation { background: linear-gradient(135deg, #f59e0b, #d97706); }
.quality { background: linear-gradient(135deg, #10b981, #059669); }
.transparency { background: linear-gradient(135deg, var(--color-primary), #1e40af); }
.collaboration { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.results { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.value-card h4 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 65, 138, 0.15);
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.avatar-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 10px;
}

.avatar-icon i {
    font-size: 2.5rem;
    color: white;
}

.avatar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 65, 138, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 50%;
    animation: pulse-avatar 3s ease-in-out infinite;
}

@keyframes pulse-avatar {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.team-name {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--color-gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 65, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.about-cta-section {
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon i {
    font-size: 3rem;
    color: var(--color-accent);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-buttons .btn-ghost {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: var(--color-accent);
    font-size: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-highlights {
        gap: 1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-features {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .achievement-card {
        padding: 2rem;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .team-card {
        padding: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== FONT AWESOME ICON FIX ===== */
/* Direct fix for social media icons not displaying */

/* Force Font Awesome to load from CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Ensure all Font Awesome icons display properly */
.fab, .fas, .far, .fal, .fad, .fat {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Brand icons specific font family */
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Solid icons specific font family */
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Social media icons - force display with Unicode content */
.fa-facebook-f::before {
    content: "\f39e" !important;
    font-family: "Font Awesome 6 Brands" !important;
}

.fa-twitter::before {
    content: "\f099" !important;
    font-family: "Font Awesome 6 Brands" !important;
}

.fa-linkedin-in::before {
    content: "\f0e1" !important;
    font-family: "Font Awesome 6 Brands" !important;
}

.fa-instagram::before {
    content: "\f16d" !important;
    font-family: "Font Awesome 6 Brands" !important;
}

/* If Font Awesome fails, show text fallbacks */
.social-link.facebook .social-icon i::after {
    content: "f";
    font-family: Arial, sans-serif !important;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.social-link.twitter .social-icon i::after {
    content: "𝕏";
    font-family: Arial, sans-serif !important;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.social-link.linkedin .social-icon i::after {
    content: "in";
    font-family: Arial, sans-serif !important;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.social-link.instagram .social-icon i::after {
    content: "📷";
    font-family: Arial, sans-serif !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* Show fallback text if Font Awesome icon is empty */
.social-icon i:empty::after,
.social-icon i[class*="fa-"]:not([class*="fa-"]):after {
    display: block !important;
}

/* Force social icons to be visible */
.social-icon i {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    position: relative;
}

/* Alternative approach - use CSS content directly */
.social-link.facebook .social-icon::before {
    content: "f";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.social-link.twitter .social-icon::before {
    content: "𝕏";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.social-link.linkedin .social-icon::before {
    content: "in";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.9em;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.social-link.instagram .social-icon::before {
    content: "📷";
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Hide the ::before content when Font Awesome is working */
.fa-loaded .social-icon::before {
    display: none !important;
}

/* Ensure the social icon container is positioned */
.social-icon {
    position: relative !important;
}

/* ===== FALLBACK TEXT STYLING ===== */
/* Show text when Font Awesome icons fail */

.icon-fallback-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
    font-size: 1em !important;
    color: white !important;
    display: block !important;
    z-index: 10;
    pointer-events: none;
}

/* Hide fallback text when Font Awesome is working */
.fa-loaded .icon-fallback-text {
    display: none !important;
}

/* Ensure social icon container is positioned for absolute positioning */
.social-icon {
    position: relative !important;
}
/* ===== SOCIAL LINKS FIX ===== */
/* Ensure social media text is not truncated */

.modern-social-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
}

.social-link {
    flex: 1 1 auto !important;
    min-width: 120px !important;
    max-width: none !important;
    overflow: visible !important;
    white-space: nowrap !important;
}

.social-label {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.social-icon {
    flex-shrink: 0 !important;
    width: 35px !important;
    height: 35px !important;
}

/* Force visibility of social icons */
.social-icon i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}