/* Global Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    box-sizing: border-box;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
}

header nav ul li {
    flex-grow: 1;
    text-align: center;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px 20px;
    display: block;
}

header nav ul li a:hover {
    color: #99f2c8;
}

/* Hero Section */
#hero {
    background: linear-gradient(to right, #1f4037, #99f2c8);
    color: white;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.project-name h1 {
    font-size: 3.5rem;
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #ff6600;
    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.project-name h1:hover {
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-content strong {
    color: #ff6600;
    font-weight: bold;
}

.button-container {
    margin-top: 20px;
}

.explore-btn {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 12px 30px;
    background-color: #ff6600;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.explore-btn:hover {
    background-color: #cc5200;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-name h1 {
        font-size: 2.5rem;
        padding: 10px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .explore-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Section Styles */
section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1000px;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

section h2 {
    font-size: 2rem;
    color: #99f2c8;
    margin-bottom: 15px;
}

section p, section ul li {
    font-size: 1rem;
    line-height: 1.6;
}

/* Highlighted Sections */
.highlight {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.project-includes-block {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Hover Effects */
.expertise-list li:hover, .project-includes-block li:hover {
    color: #ff6600;
    cursor: pointer;
}

/* Code Block Styling */
pre, code {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

pre.json-border {
    border: 2px solid #ff6600;
}

pre.splunk-border {
    border: 2px solid #99f2c8;
}

pre.code-border {
    border: 2px solid #ffffff;
}

pre code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.language-python {
    color: #dcdcaa;
}

.language-python .keyword {
    color: #569cd6;
}

.language-python .string {
    color: #ce9178;
}

.language-python .number {
    color: #b5cea8;
}

/* Dashboard Iframe */
iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dashboard Images */
.dashboard-image, .Purchase-Likelihood-Prediction {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1000px;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    color: #99f2c8;
    margin-bottom: 15px;
}

#contact ul {
    list-style: none;
    padding: 0;
}

#contact ul li {
    display: inline-block;
    margin: 10px 20px;
}

#contact ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 12px 30px;
    background-color: #ff6600;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

#contact ul li a:hover {
    background-color: #cc5200;
    color: #fff;
    transform: scale(1.1);
}

#contact ul li img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}