
:root {
    /* --primary-color: #00a8cc;
    --background-color: #1a1a1a;
    --surface-color: #2c2c2c;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --heading-color: #ffffff; */
    --primary-color: #FDCC00;
    --background-color: #eeeeee;
    --surface-color: #e0e0e0;
    --text-color: #303030;
    --text-muted: #2d2b2b;
    --heading-color: #1a1d2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

header.scrolled {
    background-color: rgba(206, 206, 206, 0.4);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s ease;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--heading-color);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    /* background-color: var(--primary-color); */
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #222;
    text-shadow: 1px 1px 1px var(--text-muted);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    padding-top: 100px; /* Offset for fixed header */
}
section {
    background-color: var(--surface-color);
    
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    margin-top: 100px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px #999;
}

h3 {
    color: var(--heading-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: var(--heading-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-muted);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}
.btn h4 {
    color: var(--text-color);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 204, 0.3);
}

.pending {
    color: var(--text-muted);
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* .contact-item strong {
    margin-right: 10px;
} */

.highlight {
    background-color: rgba(0, 168, 204, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

footer {
    background-color: var(--surface-color);
    color: var(--text-muted);
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 25px;
    }
}
