/* Body & Typography */
body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', Tahoma, sans-serif; /* modern & professional */
    background-color: #F4F4F9; /* soft neutral background */
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

/* Header */
header {
    background: #1E2A38; /* elite dark blue */
    color: #fff;
    padding: 25px 0;
    text-align: center;
    margin-bottom: 0; /* removes extra space */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle depth */
}

h1 {
    color: #fff;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    color: #F0A500; /* accent color */
    margin-top: 0;
    font-size: 1.8rem;
}

/* Navigation */
nav {
    background: #162D4A;
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

nav a {
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #F0A500; /* accent hover */
    color: #162D4A;
    transform: translateY(-2px); /* subtle lift */
}

/* About Me Section */
.about {
    background: #fff;
    padding: 30px 25px;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about p {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 15px;
}

/* Skills Section */
.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
    padding: 0 10px;
}
/*
.skill-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
*/

.skill-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    text-align: center;
}

.skill-box:hover {
    background-color: #2eb40c; /* premium gold highlight */
    color: #162d4a; /* dark text on hover */
    transform: translateY(-5px); /* subtle lift effect */
}


/* Hire Me Section
.hire-me {
    background: #F0A500; 
    color: #fff;
    padding: 25px 20px;
    margin: 40px auto 20px auto;
    border-radius: 12px;
    max-width: 900px;
    text-align: center;
}

.hire-me a {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 25px;
    background: #fff;
    color: #F0A500;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hire-me a:hover {
    background: #162D4A;
    color: #fff;
    transform: translateY(-2px);
} */

.hire-me {
    background: #28a745; /* clean, professional green */
    color: white; /* ensures text is readable */
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.hire-me a {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background: white;
    color: #3eaf58;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hire-me a:hover {
    background: #1e3a5f; /* dark blue for contrast on hover */
    color: white;
    transform: translateY(-3px);
}



/* Sections General */
section {
    padding: 25px 0;
    max-width: 900px;
    margin: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #1E2A38;
    color: #fff;
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
