/* General Styling - Dark Theme */
body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4 {
    color: #cab854; /* Light Blue Accent */
}

/* Buttons */
.btn-primary {
    background-color: #003366; /* Deep Blue */
    border: none;
}
.btn-primary:hover {
    background-color: #002244;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: 50% 60%; /* A value like 50% 60% or 50% 70% will shift the image down, effectively "zooming out" the top portion. */
    padding: 60px 20px;
    min-height: 300px;
}
.hero-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Hero Text */
.hero-text {
    flex-grow: 1;
    text-align: center;
}
.hero-text h1 {
    font-weight: bold;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 1.1rem;
}

/* Certifications in Hero */
.certifications {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cert-img {
    width: 90px;
    height: auto;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 6px;
}

/* Resume Button in Hero */
.resume-btn {
    text-align: right;
}
.resume-btn .btn {
    background-color: #003366; /* Deep Blue */
    border: none;
}
.resume-btn .btn:hover {
    background-color: #002244;
}

/* Section Spacing */
section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Accordion */
.accordion-button {
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-weight: bold;
}
.accordion-button:not(.collapsed) {
    background-color: #003366;
    color: white;
}
.accordion-body {
    background: #1f1f1f;
    color: #e0e0e0;
}

/* Contact Links */
a {
    color: #66b2ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Skills Section */
.bg-light {
    background-color: #1a1a1a !important;
}
