/* Modern PPID Website Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--gray-800);
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Light Theme Only - Dark theme support removed */

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
    padding: 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-900) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: var(--gray-50);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section with Background Image Slideshow */
.hero-section.with-bg-slideshow {
    background: none;
    animation: none;
}

.hero-section.with-bg-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundSlideshow 15s infinite;
    z-index: 1;
}

.hero-section.with-bg-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(29, 78, 216, 0.8) 100%);
    z-index: 2;
}

@keyframes backgroundSlideshow {
    0%, 20% {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" fill="none"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233b82f6;stop-opacity:1" /><stop offset="100%" style="stop-color:%231e40af;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad1)"/><circle cx="300" cy="200" r="150" fill="%23ffffff" opacity="0.1"/><circle cx="1600" cy="800" r="200" fill="%23ffffff" opacity="0.05"/><polygon points="0,1080 400,900 800,1080" fill="%23ffffff" opacity="0.1"/></svg>');
    }
    25%, 45% {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" fill="none"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%237c3aed;stop-opacity:1" /><stop offset="100%" style="stop-color:%23db2777;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad2)"/><circle cx="1400" cy="300" r="180" fill="%23ffffff" opacity="0.1"/><circle cx="200" cy="700" r="120" fill="%23ffffff" opacity="0.08"/><polygon points="1920,0 1520,200 1920,400" fill="%23ffffff" opacity="0.1"/></svg>');
    }
    50%, 70% {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" fill="none"><defs><linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2310b981;stop-opacity:1" /><stop offset="100%" style="stop-color:%23059669;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad3)"/><circle cx="800" cy="400" r="160" fill="%23ffffff" opacity="0.1"/><circle cx="1200" cy="600" r="140" fill="%23ffffff" opacity="0.06"/><polygon points="0,0 300,150 0,300" fill="%23ffffff" opacity="0.1"/></svg>');
    }
    75%, 95% {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" fill="none"><defs><linearGradient id="grad4" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f59e0b;stop-opacity:1" /><stop offset="100%" style="stop-color:%23ea580c;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad4)"/><circle cx="600" cy="250" r="170" fill="%23ffffff" opacity="0.1"/><circle cx="1500" cy="750" r="190" fill="%23ffffff" opacity="0.07"/><polygon points="1920,1080 1600,950 1920,820" fill="%23ffffff" opacity="0.1"/></svg>');
    }
    100% {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" fill="none"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233b82f6;stop-opacity:1" /><stop offset="100%" style="stop-color:%231e40af;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad1)"/><circle cx="300" cy="200" r="150" fill="%23ffffff" opacity="0.1"/><circle cx="1600" cy="800" r="200" fill="%23ffffff" opacity="0.05"/><polygon points="0,1080 400,900 800,1080" fill="%23ffffff" opacity="0.1"/></svg>');
    }
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 25%, #7c3aed 50%, #db2777 75%, #dc2626 100%);
        background-size: 400% 400%;
        background-position: 0% 50%;
    }
    25% {
        background: linear-gradient(135deg, #1e40af 0%, #7c3aed 25%, #db2777 50%, #dc2626 75%, #ea580c 100%);
        background-size: 400% 400%;
        background-position: 100% 50%;
    }
    50% {
        background: linear-gradient(135deg, #7c3aed 0%, #db2777 25%, #dc2626 50%, #ea580c 75%, #059669 100%);
        background-size: 400% 400%;
        background-position: 50% 100%;
    }
    75% {
        background: linear-gradient(135deg, #db2777 0%, #dc2626 25%, #ea580c 50%, #059669 75%, #3b82f6 100%);
        background-size: 400% 400%;
        background-position: 0% 0%;
    }
    100% {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 25%, #7c3aed 50%, #db2777 75%, #dc2626 100%);
        background-size: 400% 400%;
        background-position: 0% 50%;
    }
}

.hero-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 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section.with-bg-slideshow .hero-content {
    position: relative;
    z-index: 3;
}

.hero-section.with-bg-slideshow .container {
    position: relative;
    z-index: 3;
}

.hero-section.with-bg-slideshow .carousel {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.hero-content .lead {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    opacity: 0.95;
}

/* Enhanced text visibility for all hero content */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content * {
    color: white !important;
}

.hero-content .btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content .btn:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Quick Access Cards */
/* Quick Menu PPID Styles */
.quick-menu-ppid {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.quick-menu-card {
    display: block;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 140px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.quick-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

.quick-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.quick-menu-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: white;
}

.quick-menu-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.quick-menu-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Color Variants */
.quick-menu-card.bg-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.quick-menu-card.bg-green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.quick-menu-card.bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.quick-menu-card.bg-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.quick-menu-card.bg-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.quick-menu-card.bg-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
}

.quick-menu-card.bg-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.quick-menu-card.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.quick-menu-card.bg-yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.quick-menu-card.bg-emerald {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Quick Menu Container */
.quick-menu-ppid .container {
    max-width: 1200px;
}

/* Responsive Design for Quick Menu */
@media (min-width: 1400px) {
    .quick-menu-ppid .row {
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media (max-width: 1199px) {
    .quick-menu-card {
        min-height: 130px;
    }
}

@media (max-width: 991px) {
    .quick-menu-card {
        min-height: 125px;
        padding: 1.25rem 0.875rem;
    }
    
    .quick-menu-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .quick-menu-ppid {
        padding: 3rem 0;
    }
    
    .quick-menu-card {
        min-height: 120px;
        padding: 1rem 0.75rem;
    }
    
    .quick-menu-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .quick-menu-title {
        font-size: 0.8rem;
    }
    
    .quick-menu-desc {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .quick-menu-ppid {
        padding: 2.5rem 0;
    }
    
    .quick-menu-card {
        min-height: 110px;
        padding: 0.875rem 0.625rem;
        margin-bottom: 0.75rem;
    }
    
    .quick-menu-icon {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .quick-menu-title {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .quick-menu-desc {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .quick-menu-card {
        min-height: 100px;
        padding: 0.75rem 0.5rem;
    }
    
    .quick-menu-icon {
        font-size: 1.3rem;
    }
    
    .quick-menu-title {
        font-size: 0.7rem;
    }
    
    .quick-menu-desc {
        font-size: 0.6rem;
    }
}

/* Legacy quick-access styles for backward compatibility */
.quick-access {
    padding: 5rem 0;
    background: var(--gray-50);
}

.quick-access-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-access-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

.quick-access-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.quick-access-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.quick-access-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--gray-200);
}

.news-card-placeholder i {
    color: var(--gray-400);
}

.news-card-body {
    padding: 1.5rem;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.stats-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 1000 100" fill="%23ffffff" opacity="0.05"><circle cx="50" cy="50" r="40"/><circle cx="150" cy="30" r="20"/><circle cx="250" cy="70" r="30"/></svg>');
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    border-radius: 1rem 1rem 0 0 !important;
    border: none;
    font-weight: 600;
}

/* Button Styles */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Statistics Cards */
.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card .stats-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stats-card .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-card .stats-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* News Cards */
.news-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-img-top {
    transform: scale(1.05);
}

.news-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.news-meta i {
    margin-right: 0.25rem;
}

/* Quick Access Cards */
.quick-access-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.quick-access-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-access-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quick-access-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Banner Styles */
.banner-carousel .carousel-item {
    height: 400px;
}

.banner-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* Form Styles */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Table Styles */
.table {
    border-radius: 0.5rem;
    overflow: hidden;
}

.table thead th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Pagination */
.pagination .page-link {
    border-radius: 0.5rem;
    margin: 0 0.125rem;
    border: 1px solid #dee2e6;
    color: var(--primary-color);
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Alert Styles */
.alert {
    border-radius: 0.5rem;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    color: #055160;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

footer .social-links a {
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--primary-color) !important;
}

footer .footer-links a {
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: white !important;
}

/* Floating Buttons */
.btn-floating {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Search Results */
.search-result {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.search-result h5 {
    color: var(--primary-color);
}

.search-result .text-muted {
    font-size: 0.875rem;
}

/* Document List */
.document-item {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.document-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.document-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .quick-access-card {
        margin-bottom: 1rem;
    }
    
    .banner-carousel .carousel-item {
        height: 250px;
    }
    
    .btn-floating {
        width: 48px;
        height: 48px;
    }
    
    .whatsapp-float {
        bottom: 70px !important;
        right: 15px !important;
    }
    
    #btn-back-to-top {
        bottom: 15px !important;
        right: 15px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .stats-card .stats-number {
        font-size: 2rem;
    }
    
    .stats-card .stats-icon {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn-floating,
    .whatsapp-float {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--dark-color);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0 1rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: 1rem 0;
    margin-top: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Newsletter Form */
.newsletter-form .input-group {
    margin-bottom: 0.5rem;
}

.newsletter-form .form-control {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--gray-300);
    border-radius: 0.5rem 0 0 0.5rem;
}

.newsletter-form .form-control:focus {
    background: var(--gray-800);
    border-color: var(--primary-color);
    color: var(--gray-300);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-500);
}

.newsletter-form .btn {
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.5rem 1rem;
}

/* Footer responsive improvements */
@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .col-md-6:first-child {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:last-child {
        text-align: center !important;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quick-access,
    .news-section,
    .stats-section {
        padding: 3rem 0;
    }
    
    .navbar-nav {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quick-access-card {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .quick-access,
    .news-section,
    .stats-section {
        padding: 2rem 0;
    }
    
    .quick-access-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* YouTube Section Styles */
.youtube-section {
    background: white;
    position: relative;
}

.youtube-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.youtube-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.youtube-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--gray-100);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.youtube-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.youtube-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youtube-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youtube-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: auto;
}

.youtube-date,
.youtube-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.youtube-date i,
.youtube-views i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* YouTube Button Styling */
.btn-danger {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    color: white;
}

/* Responsive Design for YouTube Section */
@media (max-width: 768px) {
    .youtube-section {
        padding: 3rem 0;
    }
    
    .youtube-info {
        padding: 1rem;
    }
    
    .youtube-title {
        font-size: 1rem;
    }
    
    .youtube-desc {
        font-size: 0.9rem;
    }
    
    .youtube-meta {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .youtube-section {
        padding: 2rem 0;
    }
    
    .btn-danger.btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Agenda PPID Styles */
.agenda-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.agenda-card {
    transition: all 0.3s ease;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.agenda-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.agenda-card .card-header {
    border: none;
    padding: 1.5rem;
    border-radius: 0;
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.agenda-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agenda-date .year {
    font-size: 0.75rem;
    opacity: 0.8;
}

.agenda-card .card-body {
    padding: 1.5rem;
}

.agenda-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.agenda-card .card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.agenda-details {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.agenda-details .fas {
    width: 16px;
    text-align: center;
}

/* Responsive adjustments for agenda */
@media (max-width: 768px) {
    .agenda-card .card-header {
        padding: 1rem;
    }
    
    .agenda-card .card-body {
        padding: 1rem;
    }
    
    .agenda-date .day {
        font-size: 1.5rem;
    }
}

/* Agenda Page Styles */
.agenda-page .search-filter-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.agenda-page .search-filter-card .form-label {
    color: white;
    font-weight: 500;
}

.agenda-page .search-filter-card .form-control,
.agenda-page .search-filter-card .form-select {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.agenda-page .search-filter-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.agenda-page .search-filter-card .form-control:focus,
.agenda-page .search-filter-card .form-select:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.agenda-page .search-filter-card .form-select option {
    background: var(--dark-color);
    color: white;
}

.agenda-page .results-info {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.agenda-page .no-results {
    background: var(--light-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
}

.agenda-page .pagination .page-link {
    color: var(--primary-color);
    border-color: var(--gray-300);
}

.agenda-page .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.agenda-page .pagination .page-link:hover {
    color: var(--primary-dark);
    background-color: var(--gray-100);
}

/* Responsive adjustments for agenda page */
@media (max-width: 768px) {
    .agenda-page .search-filter-card .row {
        gap: 1rem;
    }
    
    .agenda-page .search-filter-card .col-md-2 {
        margin-top: 1rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .d-flex.align-items-center.flex-wrap {
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.1);
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .gap-2 {
        gap: 0.5rem !important;
    }
}

/* Improved button responsiveness */
@media (max-width: 767.98px) {
    .btn .d-none.d-sm-inline {
        display: none !important;
    }
    
    .btn-sm {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Enhanced mobile navigation */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Force horizontal layout for buttons */
.d-flex.align-items-center.flex-wrap {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    display: flex !important;
}

@media (max-width: 480px) {
    .d-flex.align-items-center.flex-wrap {
        gap: 0.25rem !important;
    }
    
    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Ensure proper spacing on all devices */
.container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Digital Clock Styling */
.digital-clock {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.digital-clock:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.1);
}

.digital-clock #current-time {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.digital-clock #current-date {
    font-size: 0.75rem;
    font-weight: 400;
}

/* Responsive adjustments for digital clock */
@media (max-width: 991px) {
    .digital-clock {
        display: flex !important;
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .digital-clock #current-time {
        font-size: 0.85rem;
    }
    
    .digital-clock #current-date {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .digital-clock #current-date {
        display: none;
    }
    
    .digital-clock {
        padding: 0.4rem 0.6rem;
    }
    
    .digital-clock #current-time {
        font-size: 0.9rem;
    }
}