        :root {
        --primary: #1a5fb4;
        --secondary: #2ec27e;
        --dark: #2a4365;
        --light: #f7f9fc;
        --accent: #e95420;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Roboto', sans-serif;
        color: #333;
        background-color: #f8f9fa;
    }
    
    h1, h2, h3, h4, h5 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
    }
    
    /* Header Styles */
    .header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .logo-section {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }
    
    .logo {
        width: 60px;
        height: 60px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        margin-right: 15px;
    }
    
    .sector-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark);
    }
    
    .navbar {
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        padding: 0;
    }
    
    .navbar .nav-link {
        color: white !important;
        padding: 15px 20px;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .navbar .nav-link:hover {
        background-color: rgba(255,255,255,0.15);
    }
    
    .navbar .nav-link.active {
        background-color: rgba(255,255,255,0.25);
    }
            /* Hero Slider */
        .hero-slider {
            margin-bottom: 30px;
        }
        
        .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-caption {
            background: rgba(0,0,0,0.6);
            padding: 20px;
            border-radius: 5px;
            bottom: 50px;
            left: 10%;
            right: 10%;
        }
        
        /* Card Section */
        .card-section {
            padding: 40px 0;
            background-color: var(--light);
        }
        
        .feature-card {
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .card-icon {
            font-size: 3rem;
            margin: 20px 0;
            color: var(--primary);
        }
    
    /* Page Header */
    .page-header {
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        color: white;
        padding: 80px 0 60px;
        margin-bottom: 30px;
    }
    
    .breadcrumb {
        background-color: rgba(255,255,255,0.2);
        padding: 10px 15px;
        border-radius: 30px;       
    }
    
    .breadcrumb-item a {
        color: white;
        text-decoration: none;
    }
    /* Login Section */
        .login-section {
            padding: 40px 0;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        
        .login-container {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .login-header {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .login-body {
            padding: 30px;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(26, 95, 180, 0.25);
        }
        
        .input-group-text {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 8px 0 0 8px;
            color: var(--primary);
        }
        
        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .login-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        
        .forgot-password {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .forgot-password:hover {
            color: var(--dark);
            text-decoration: underline;
        }
        
        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
        }
        
        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background-color: #ddd;
        }
        
        .divider-text {
            padding: 0 15px;
            color: #777;
            font-size: 14px;
        }
        
        .alternative-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-login {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .social-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .facebook {
            background: #3b5998;
        }
        
        .google {
            background: #dd4b39;
        }
        
        .microsoft {
            background: #00a1f1;
        }
        
        .signup-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }
        
        .signup-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .signup-link a:hover {
            text-decoration: underline;
        }
        
        .security-notice {
            background-color: rgba(26, 95, 180, 0.05);
            border-left: 4px solid var(--primary);
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin-top: 25px;
            font-size: 14px;
        }
        
    /* About Sections */
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 4px;
        background: var(--secondary);
    }
    
    .about-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.3s;
        height: 100%;
    }
    
    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    
    .about-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
    }
    
    .powers-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .powers-list li {
        padding: 15px;
        margin-bottom: 15px;
        background: #f8f9fa;
        border-left: 4px solid var(--primary);
        border-radius: 0 8px 8px 0;
    }
    /* Services Sections */
        .services-section {
            padding: 60px 0;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--secondary);
        }
        
        /* Tabs styling */
        .nav-tabs {
            border-bottom: 2px solid var(--primary);
            margin-bottom: 30px;
        }
        
        .nav-tabs .nav-link {
            border: none;
            border-radius: 0;
            padding: 15px 25px;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: all 0.3s;
        }
        
        .nav-tabs .nav-link.active {
            background-color: transparent;
            color: var(--primary);
            border-bottom: 3px solid var(--primary);
        }
        
        .nav-tabs .nav-link:hover:not(.active) {
            background-color: rgba(26, 95, 180, 0.1);
        }
        
        .nav-tabs .nav-link i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Service cards */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            background: white;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 95, 180, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .requirement-list {
            list-style-type: none;
            padding-left: 0;
            margin-top: 15px;
        }
        
        .requirement-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            position: relative;
            padding-left: 25px;
        }
        
        .requirement-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        
        .time-badge {
            background: rgba(46, 194, 126, 0.2);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 15px;
            font-weight: 500;
        }
        
        .time-badge i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        /* Info section */
        .info-section {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 60px 0;
            margin-top: 50px;
        }
        
        .info-box {
            text-align: center;
            padding: 30px;
        }
        
        .info-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.8);
        }
    
    /* Footer */
    .footer {
        background-color: var(--dark);
        color: white;
        padding: 60px 0 30px;
    }
    
    .footer h5 {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .footer h5:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary);
    }
    
    .footer-links a {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        transition: all 0.3s;
    }
    
    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }
    
    .copyright {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
        margin-top: 40px;
        text-align: center;
        color: #aaa;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .carousel-item {
                height: 350px;
            }
            
            .carousel-caption {
                bottom: 20px;
                left: 5%;
                right: 5%;
            }
            
            .logo-section {
                justify-content: center;
                text-align: center;
            }
            
            .navbar .nav-link {
                padding: 10px 15px;
            }
        }