/* Doja Blue and White Portfolio CSS */
body {
    background: white url('img/smith.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: brightness(70%); /* Slightly brighter for the new theme */
    color: #ffffff; /* White text */
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
}

/* Overlay for Doja Blue Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 105, 225, 0.3); /* Doja blue overlay */
    z-index: -1;
}

header {
    text-align: center;
    padding: 20px;
    font-size: 24px;
    background: rgba(65, 105, 225, 0.9); /* Doja blue background */
    border-bottom: 2px solid #ffffff;
    text-shadow: 0 0 10px #ffffff;
    color: #ffffff;
}

nav ul {
    list-style-type: none;
    padding: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9); /* White background */
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    color: #4169E1; /* Doja blue links */
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: bold;
}

nav ul li a:hover {
    text-shadow: 0 0 15px #4169E1;
    color: #0080FF; /* Brighter blue on hover */
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.large-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
}

.large-card {
    background: rgba(255, 255, 255, 0.9); /* White background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #4169E1; /* Doja blue border */
    box-shadow: 0 0 15px #4169E1;
    color: #4169E1; /* Doja blue text */
}

.large-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #4169E1; /* Doja blue border */
}

.achievement-cards, .card-container, .skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.achievement-card, .card, .skills-card {
    background: #4169E1; /* Doja blue background */
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    border: 2px solid #0080FF;
    box-shadow: 0 0 15px #4169E1;
    color: #ffffff; /* White text for contrast */
}

/* Hover Effects */
.card:hover, .large-card:hover, .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #0080FF; /* Brighter blue glow on hover */
}

/* Footer with Contact Cards */
.contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-card {
    background: #4169E1; /* Doja blue background */
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    border: 2px solid #0080FF;
    box-shadow: 0 0 10px black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff; /* White text */
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #0080FF; /* Bright blue glow */
}

.contact-card a {
    color: #ffffff; /* White links for contrast */
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-shadow: 0 0 10px #ffffff;
    color: #E6F3FF; /* Light blue on hover */
}

footer {
    text-align: center;
    padding: 20px;
    background: rgb(249, 246, 246); /* Doja blue background */
    border-top: 2px solid #ffffff;
    margin-top: 30px;
    text-shadow: 0 0 10px #ffffff;
    color: #ffffff;
}
/* Quote Section Styling */
.quote-container {
    background: rgba(255, 255, 255, 0.9); /* White background */
    border: 2px solid #4169E1;
    box-shadow: 0 0 10px #4169E1;
    padding: 20px;
    margin: 40px auto;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    color: #4169E1; /* Doja blue text */
}

.visitor-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.counter-icon {
    font-size: 18px;
    margin-right: 10px;
    color: #4169E1; /* Doja blue */
}

.quotes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(65, 105, 225, 0.1); /* Light doja blue background */
    border-radius: 10px;
    border: 2px solid #4169E1;
    box-shadow: 0 0 10px #4169E1;
}

.quote {
    font-size: 16px;
    font-style: italic;
    margin: 10px 0;
    color: #4169E1; /* Doja blue text */
    max-width: 80%;
    text-align: center;
    font-weight: bold;
}

