        :root {
            --police-blue: #004085;
            --police-gold: #c5a47e;
            --light-blue: #e6f0fa;
            --dark-blue: #002752;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        
        .header {
            background: linear-gradient(135deg, var(--police-blue), var(--dark-blue));
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container {
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 15px;
        }
        
        .logo {
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #dee2e6;
        }
        
        .department-name {
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .department-name h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .department-name h2 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-top: 5px;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--police-blue) !important;
            padding: 15px 20px !important;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--police-gold) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--police-gold);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .hero {
           
            background: linear-gradient(rgba(0, 64, 133, 0.8), rgba(0, 64, 133, 0.9));
            
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .section-title {
            color: var(--police-blue);
            font-weight: 700;
            position: relative;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--police-gold);
        }
        
        .mission-vision {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
            border-left: 4px solid var(--police-blue);
        }
        
        .video-container {
            background-color: #f0f8ff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .video-placeholder {
            height: 300px;
            background: linear-gradient(135deg, #6a8caf, #3a5f7c);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .card-container {
            margin-bottom: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .card-icon {
            font-size: 3rem;
            color: var(--police-blue);
            margin-bottom: 20px;
        }
        
        .card-title {
            color: var(--police-blue);
            font-weight: 700;
        }
        
        .btn-service {
            background-color: var(--police-blue);
            color: white;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-service:hover {
            background-color: var(--dark-blue);
            color: white;
            transform: scale(1.05);
        }

        /* Safety Tips Section */
        .safety-tips {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .tip-card {
            background: #f8fafc;
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid #4a90e2;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .tip-card i {
            font-size: 2.5rem;
            color: #2c5282;
            margin-bottom: 15px;
        }
        
        .tip-card h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #1a3a5f;
        }
        
        .tip-card p {
            color: #4a5568;
        }
        
        .footer {
            background: linear-gradient(135deg, var(--dark-blue), var(--police-blue));
            color: white;
            padding: 40px 0 20px;
        }
           .footer .heart-beat {
         color: #e63946;
         margin: 0 4px;
         animation: heartbeat 1.3s infinite ease-in-out;
        }
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--police-gold);
        }
        
        .contact-info li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--police-gold);
            margin-top: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .department-name h1 {
                font-size: 1.5rem;
            }
            
            .department-name h2 {
                font-size: 1.2rem;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }
                @keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.3);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.3);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}