/* ============================================ */
/* CORPORATE ELEGANCE THEME - PROFESSIONAL     */
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================ */
/* CORPORATE ELEGANCE VARIABLES                */
/* ============================================ */

:root {
    /* Sophisticated Blue & Gold Palette */
    --primary-color: #1e40af;      /* Royal Blue */
    --primary-dark: #1e3a8a;       /* Navy Blue */
    --primary-light: #3b82f6;      /* Bright Blue */
    --secondary-color: #d4af37;    /* Gold Accent */
    --accent-color: #64748b;       /* Slate Gray */
    --accent-secondary: #dc2626;   /* Crimson Red */
    
    /* Neutral Corporate Colors - Light Mode */
    --bg-primary: #ffffff;         /* Pure White */
    --bg-secondary: #f8fafc;       /* Light Gray */
    --bg-tertiary: #f1f5f9;        /* Medium Light Gray */
    --bg-accent: rgba(30, 64, 175, 0.05); /* Blue Tint */
    
    /* Text Colors - Light Mode */
    --text-primary: #1e293b;       /* Dark Blue-Gray */
    --text-secondary: #475569;     /* Medium Gray */
    --text-muted: #64748b;         /* Light Gray */
    --text-accent: var(--primary-color);
    
    /* Border & Effects */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), #fbbf24);
    --gradient-bg: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    --gradient-card: linear-gradient(145deg, var(--bg-primary), var(--bg-tertiary));
    
    /* Animation Curves */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Dark Mode Variables - Default (will be overridden) */
    --bg-primary-dark: #0f172a;
    --bg-secondary-dark: #1e293b;
    --bg-tertiary-dark: #334155;
    --bg-accent-dark: rgba(30, 64, 175, 0.15);
    
    --text-primary-dark: #f1f5f9;
    --text-secondary-dark: #cbd5e1;
    --text-muted-dark: #94a3b8;
    
    --border-color-dark: #334155;
    --border-light-dark: #475569;
    
    --shadow-subtle-dark: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-medium-dark: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-large-dark: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* ============================================ */
/* DARK MODE AUTO DETECTION                    */
/* ============================================ */

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: var(--bg-primary-dark);
        --bg-secondary: var(--bg-secondary-dark);
        --bg-tertiary: var(--bg-tertiary-dark);
        --bg-accent: var(--bg-accent-dark);
        
        --text-primary: var(--text-primary-dark);
        --text-secondary: var(--text-secondary-dark);
        --text-muted: var(--text-muted-dark);
        
        --border-color: var(--border-color-dark);
        --border-light: var(--border-light-dark);
        
        --shadow-subtle: var(--shadow-subtle-dark);
        --shadow-medium: var(--shadow-medium-dark);
        --shadow-large: var(--shadow-large-dark);
        
        --gradient-bg: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
        --gradient-card: linear-gradient(145deg, var(--bg-primary), var(--bg-tertiary));
    }
}

/* ============================================ */
/* MANUAL DARK MODE CLASS SUPPORT              */
/* ============================================ */

.dark-mode {
    --bg-primary: var(--bg-primary-dark);
    --bg-secondary: var(--bg-secondary-dark);
    --bg-tertiary: var(--bg-tertiary-dark);
    --bg-accent: var(--bg-accent-dark);
    
    --text-primary: var(--text-primary-dark);
    --text-secondary: var(--text-secondary-dark);
    --text-muted: var(--text-muted-dark);
    
    --border-color: var(--border-color-dark);
    --border-light: var(--border-light-dark);
    
    --shadow-subtle: var(--shadow-subtle-dark);
    --shadow-medium: var(--shadow-medium-dark);
    --shadow-large: var(--shadow-large-dark);
    
    --gradient-bg: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    --gradient-card: linear-gradient(145deg, var(--bg-primary), var(--bg-tertiary));
}

/* ============================================ */
/* GLOBAL CORPORATE THEME BASE                 */
/* ============================================ */

body {
    background: var(--gradient-bg);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================ */
/* ELEGANT TYPOGRAPHY                         */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    position: relative;
}

h1::after {
    content: '';
    color: white;
    position: absolute;
    bottom: -0.1rem;
    left: 48%;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h2 { 
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-light);
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 300;
}

/* ============================================ */
/* HEADER & NAVIGATION ELEGANCE               */
/* ============================================ */

.site-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-header {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.logo::first-letter {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    position: relative;
    transition: all 0.3s var(--ease-smooth);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--text-primary);
}

.main-nav a:hover {
    color: var(--primary-color) !important;
    background: var(--bg-accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-smooth);
    border-radius: 2px;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

/* ============================================ */
/* PROFESSIONAL BUTTONS                       */
/* ============================================ */

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.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 ease-in-out;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: white;
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================ */
/* ELEGANT CARDS & COMPONENTS                 */
/* ============================================ */

.card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-smooth);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-light);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

/* Service Cards */
.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* ============================================ */
/* PROFESSIONAL SECTIONS                      */
/* ============================================ */

.section {
    padding: 5rem 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    transition: color 0.3s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    background: var(--bg-primary);
}

.feature-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-section .btn:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================ */
/* FOOTER ELEGANCE                            */
/* ============================================ */

.site-footer {
    background: var(--text-primary);
    color: white;
    position: relative;
    transition: background-color 0.3s ease;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-widget h4 {
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-widget a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================ */
/* PAGE SPECIFIC STYLES                       */
/* ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: white;
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.cta-widget {
    background: var(--gradient-primary) !important;
    color: white;
    border: none;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================ */
/* FORM ELEGANCE                              */
/* ============================================ */

.contact-form-container,
.contact-details-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s var(--ease-smooth);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================ */
/* TABLES & DATA DISPLAY                      */
/* ============================================ */

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.table tr:hover {
    background: var(--bg-accent);
}

/* ============================================ */
/* ALERTS & NOTIFICATIONS                     */
/* ============================================ */

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #065f46;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #92400e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #991b1b;
}

.alert-info {
    background: rgba(30, 64, 175, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

/* Dark mode alert adjustments */
@media (prefers-color-scheme: dark) {
    .alert-success {
        background: rgba(16, 185, 129, 0.2);
        color: #6ee7b7;
    }
    
    .alert-warning {
        background: rgba(245, 158, 11, 0.2);
        color: #fcd34d;
    }
    
    .alert-error {
        background: rgba(239, 68, 68, 0.2);
        color: #fca5a5;
    }
    
    .alert-info {
        background: rgba(30, 64, 175, 0.2);
        color: #93c5fd;
    }
}

.dark-mode .alert-success {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.dark-mode .alert-warning {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.dark-mode .alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.dark-mode .alert-info {
    background: rgba(30, 64, 175, 0.2);
    color: #93c5fd;
}

/* ============================================ */
/* RESPONSIVE DESIGN                          */
/* ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        background: var(--bg-primary);
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
    }
    
    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 0;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ============================================ */
/* ANIMATIONS & INTERACTIONS                  */
/* ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================ */
/* CUSTOM SCROLLBAR                           */
/* ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================ */
/* UTILITY CLASSES                            */
/* ============================================ */

.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--primary-color) !important; }

.bg-primary { background: var(--bg-primary) !important; }
.bg-secondary { background: var(--bg-secondary) !important; }
.bg-accent { background: var(--bg-accent) !important; }

.border-light { border-color: var(--border-color) !important; }

.shadow-subtle { box-shadow: var(--shadow-subtle) !important; }
.shadow-medium { box-shadow: var(--shadow-medium) !important; }

/* ============================================ */
/* PRINT STYLES                               */
/* ============================================ */

@media print {
    .btn,
    .social-links,
    .main-nav {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ============================================ */
/* DARK MODE TOGGLE STYLES                    */
/* ============================================ */

.theme-toggle {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    color: var(--text-primary);
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .theme-toggle .sun-icon {
        display: none;
    }
    
    .theme-toggle .moon-icon {
        display: block;
    }
}

.dark-mode .theme-toggle .sun-icon {
    display: none;
}

.dark-mode .theme-toggle .moon-icon {
    display: block;
}

/* END OF CORPORATE ELEGANCE THEME */