         :root {
            --primary-blue: #1a56db;
            --secondary-green: #0e9f6e;
            --accent-orange: #f05252;
            --highlight-gold: #f3b344;
            --neutral-white: #ffffff;
            --light-gray: #f9fafb;
            --dark-gray: #374151;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-gray);
            color: var(--dark-gray);
        }
        
        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-circle {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .logo-icon {
            color: var(--primary-blue);
            font-size: 2.2rem;
        }
        
        .office-name {
            color: white;
            font-size: 1.6rem;
            font-weight: 700;
        }
        
        .navbar-custom .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }
        
        .login-btn {
            background-color: var(--highlight-gold);
            color: var(--dark-gray);
            border-radius: 5px;
            font-weight: 600;
            padding: 8px 20px;
            transition: all 0.3s;
        }
        
        .login-btn:hover {
            background-color: #e0a235;
            transform: translateY(-2px);
        }
                       
        /* Section Styles */
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            color: var(--primary-blue);
            font-weight: 700;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--highlight-gold);
            border-radius: 2px;
        }
          
       /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            color: white;
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
            color: white;
        }
        
        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }
        
        /* Directorate Page Styles */
        .breadcrumb-container {
            background-color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .directorate-header {
            background: linear-gradient(rgba(26, 86, 219, 0.9), rgba(14, 159, 110, 0.9));
            color: white;
            padding: 60px 0 40px;
            text-align: center;
        }
        
        .directorate-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin-bottom: 25px;
            height: 100%;
            background-color: white;
        }
        
        .directorate-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .directorate-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .directorate-img {
            height: 180px;
            object-fit: cover;
        }
        .services-container {
            max-width: 1300px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .table-responsive {
            overflow-x: auto;
        }
        
        .services-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .services-table th {
            background: linear-gradient(135deg, var(--primary-blue), #2c6bed);
            color: white;
            font-weight: 600;
            padding: 18px 20px;
            text-align: left;
            position: sticky;
            top: 0;
        }
        
        .services-table th:first-child {
            border-top-left-radius: 15px;
        }
        
        .services-table th:last-child {
            border-top-right-radius: 15px;
        }
        
        .services-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            vertical-align: top;
        }
        
        .services-table tbody tr:nth-child(even) {
            background-color: var(--light-gray);
        }
        
        .services-table tbody tr:hover {
            background-color: rgba(26, 86, 219, 0.05);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            font-weight: 600;
            font-size: 16px;
        }
        
        .service-name {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }
        
        .requirements-list {
            padding-left: 20px;
            margin: 0;
        }
        
        .requirements-list li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .requirements-list li:before {
            content: "•";
            color: var(--secondary-green);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .processing-time {
            display: inline-block;
            padding: 6px 15px;
            background: rgba(243, 179, 68, 0.2);
            border-radius: 20px;
            font-weight: 600;
            color: #8a6200;
        }
        
        .processing-time.fast {
            background: rgba(14, 159, 110, 0.15);
            color: var(--secondary-green);
        }
        
        .processing-time.medium {
            background: rgba(243, 179, 68, 0.2);
            color: #8a6200;
        }
        
        .processing-time.slow {
            background: rgba(240, 82, 82, 0.15);
            color: var(--accent-orange);
        }
        
        .search-container {
            max-width: 1200px;
            margin: 0 auto 30px;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--primary-blue);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        
        .search-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .search-btn:hover {
            background: #164bc5;
        }
        
        .info-box {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }
        
        .info-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .info-title i {
            margin-right: 12px;
            font-size: 1.8rem;
            color: var(--secondary-green);
        }
        
         /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            color: white;
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
            color: white;
        }
        
        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header {
                padding: 20px 0;
            }
            
            .logo-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo-circle {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .office-name {
                font-size: 1.8rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .services-table th, 
            .services-table td {
                padding: 12px 15px;
            }
        }
        
        @media (max-width: 576px) {
            .services-table {
                font-size: 0.9rem;
            }
            
            .service-number {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
            
            .processing-time {
                padding: 4px 12px;
                font-size: 0.85rem;
            }
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .carousel-item {
                height: 300px;
            }
            
            .office-name {
                font-size: 1.3rem;
            }
        }
    