* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(rgb(21, 10, 49), black);
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

nav .logo {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(223, 156, 10);
    letter-spacing: 1px;
    transition: transform 0.3s;
}

nav .logo:hover {
    transform: scale(1.1);
}

nav .nav-links a {
    word-spacing: 3rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 6rem;
    transition: color 0.3s, transform 0.2s;
}

nav .nav-links a:hover {
    color: rgb(223, 156, 10);
    transform: translateY(-2px);
}


/* Dividers */
#Welcome-bar {
    background-color: rgb(21, 10, 49);
    padding: 0.5rem;
    text-align: center;
    font-size: 2.5rem;
    color: rgb(248, 146, 3);
    font-weight: bold;
}

#divider {
    border: none;
    background-color: rgb(21, 10, 49);
    margin: 1rem;
}

/* Search bar */
/* Custom Styling for Search Bar Section */
.search-bar {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 90%;
    transition: all 0.3s ease-in-out;
}

.search-bar h2 {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(223, 156, 10);
}

.search-bar .form-control,
.search-bar .form-select {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.search-bar .form-control:focus,
.search-bar .form-select:focus {
    box-shadow: 0 0 8px rgba(223, 156, 10, 0.6);
    transform: scale(1.02);
}

.search-bar .btn-warning {
    font-weight: 600;
    font-size: 1rem;
    background-color: rgb(223, 156, 10);
    color: black;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.search-bar .btn-warning:hover {
    background-color: rgb(255, 193, 7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 156, 10, 0.4);
}


/* Dashboard grid */

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    padding: 0 2rem 2rem;
    animation: fadeInUp 0.8s ease-out;
}

/* Card */

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 0, 246, 0.2), transparent 70%);
    opacity: 1;
    transition: opacity 0.4s;
}

.card {
    background: rgb(21, 10, 49);
    padding: 1.5rem;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(1, 26, 252, 0.6);
}

.card:hover::before {
    opacity: 1;
}

.card h1,
.card h2,
.card h3 {
    color: rgb(223, 156, 10);
    margin-bottom: 0.5rem;
}
.c1 {
    color: rgb(223, 156, 10);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.card p {
    color: rgb(220, 220, 220);
    margin-bottom: 0.75rem;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    position: relative;
    background: rgb(223, 156, 10);
    color: rgb(6, 20, 29);
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.card .button:hover {
    background-color: rgb(255, 132, 0);
    transform: translateY(-2px);
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .search-bar {
        grid-template-columns: 1fr;
    }
}
#divide{
    color: rgb(220, 220, 220);
}

/* footer */

footer {
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border: none;
    text-align: center;
    padding: 1rem;
    bottom: 0;
    width: 100%;
    height: flexible;
}

footer .footer-links {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 6rem;
    padding: 3px;
    border: none;
    border-radius: 6px;
    transition: color 0.3s, transform 0.2s;
}

footer .footer-links:hover {
    background: rgb(2, 27, 255);
    transform: translateY(-2px);
}

.quick-links {
    gap: 20rem;
    padding-top: 4rem;
    font-weight: 600;
}

.subscribe {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-align: center;
}

input[type="email"] {
    background: transparent;
    padding: 0.75rem 1rem;
    color: rgb(220, 220, 220);
    border: double 2px rgb(223, 156, 10);
    border-radius: 6px;
    font-size: 1rem;
    /* background-color: rgb(8, 8, 94); */
    transition: background 0.3s;
}

input[type="email"]:focus {
    background-color: rgb(0, 30, 255);
    outline: none;
}

.city-job ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.city-job a {
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.07);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.city-job a:hover {
    background-color: #facc15;
    color: #111827;
    transform: scale(1.05);
}

.city-job li {
    font-size: 1rem;
    font-weight: 500;
}
.social-media {
   display: flex;
   justify-self:end;
   margin-right: 2rem;
    gap: 0.75rem;
    margin-top: 1rem;
}
.social-media > p {
    color: rgb(14, 61, 132);
     text-decoration: underline;
    font-size: 1rem;
}
.social-media > i{
    color: rgb(255, 255, 255);
    font-size: 1rem;
    transition: color 0.3s, transform 0.2s;
}
.social-media > i:hover {
    color: rgb(223, 156, 10);
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgb(235, 235, 235));
}
.statistics {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4rem;
    font-weight: 600;
    font-size: 1.75rem;
    gap: 2rem; 
    flex-wrap: wrap; 
    text-align: center;
}

.statistics > div {
    flex: 1 1 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.statistics > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 67, 251, 0.4);
}

.stat-data {
    color: rgb(220, 220, 220);
    font-weight: 700;
    font-size: 2.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    cursor: pointer;
}

.stat-data:hover {
    color: rgb(223, 156, 10);
}

.statistics p {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
}
.disclaimer > strong{
    color: rgb(223, 156, 10);
    font-weight: 600;
    font-size: 1.25rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.head > p {
    color: rgb(223, 156, 10);
    font-weight: 600;
    font-size: 1.25rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
