body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #e5e7eb;
}

.hero-custom {
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    margin-top: 2rem;
}

.hero-custom h1 {
    color: #facc15;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-custom p {
    color: #9ca3af;
}

.profile-img img {
    border: 4px solid #facc15;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

.navbar-custom {
    background: #020617;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.navbar-item {
    color: #e5e7eb !important;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-item:hover {
    color: #facc15 !important;
    background-color: transparent !important;
}

main {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

main h1 {
    color: #facc15;
    margin-bottom: 1rem;
}

main h3 {
    color: #facc15;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #facc15;
    border-left: 4px solid #facc15;
    padding-left: 1rem;
    margin: 1.5rem auto;
}

.subtitle {
    color: #facc15;
    font-weight: 600;
}

ol li {
    margin-bottom: 0.4rem;
}

.footer-mega {
    background: #000814;
    padding: 3rem 2rem;
    border-top: 2px solid #facc15;
}

.footer-mega h3 {
    color: #facc15;
    margin-bottom: 1rem;
}

.footer-mega a {
    color: #9ca3af;
    transition: 0.3s;
}

.footer-mega a:hover {
    color: #facc15;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.3rem;
    color: #9ca3af;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #facc15;
    transform: scale(1.2);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.image-grid img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid #facc15;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
    transition: 0.3s;
}

.image-grid img:hover {
    transform: scale(1.05);
}

figcaption {
    margin-top: 0.7rem;
    color: #9ca3af;
    font-style: italic;
}

.timeline {
    border-left: 3px solid #facc15;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    margin-bottom: 1.2rem;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.95rem;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    background: #facc15;
    border-radius: 50%;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    color: #facc15;
    font-size: 2rem;
    font-weight: 700;
}

.section-title p {
    color: #9ca3af;
}

.card {
    background: #020617;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(250, 204, 21, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #facc15;
}

.gallery-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.card:hover .gallery-img {
    transform: scale(1.08);
}

.card-content {
    flex-grow: 1;
}

.card-content .title {
    color: #facc15;
    font-size: 1.1rem;
}

.card-content .content {
    color: #d1d5db;
    font-size: 0.95rem;
}

.award-card {
    background: #020617;
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 16px;
    padding: 1.4rem;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: #facc15;
}

.award-card h4 {
    color: #facc15;
    margin-bottom: 0.5rem;
}