/* Global Styles & Variables */
:root {
    --primary: #8B4513;
    --primary-dark: #703810;
    --primary-light: #A0522D;
    --accent: #D2691E;
    --dark: #111111;
    --dark-light: #1a1a1a;
    --text: #333333;
    --text-light: #cccccc;
    --white: #ffffff;
    --gray: #f5f5f5;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container & Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--accent);
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(210, 105, 30, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Background Elements */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/crowd 1.jpeg") no-repeat center center/cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(0, 0, 0, 0.9));
    z-index: -1;
}

/* Navbar */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 30px;
    flex-wrap: wrap;
}

header.scrolled {
    padding: 10px 50px;
    background: rgba(17, 17, 17, 0.98);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.tagline-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.tagline-dot {
    color: var(--primary);
    margin: 0 2px;
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    font-weight: 500;
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 10px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle:hover span {
    background-color: var(--accent);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--accent);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--accent);
}

/* Typography base */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Page Headers */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gray));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Content Sections */
.about-section,
.structure-section {
    padding: 60px 0;
}

.content-block {
    background: var(--dark-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.content-block h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 10px;
}

/* Lists */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Grid Layouts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Homepage Hero */
.youth-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content-container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.anniversary {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.goal {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 35px auto;
    border-radius: 2px;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 25px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

/* Carousel */
.eai-glance-section {
    padding: 80px 20px;
    background: var(--dark);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background: var(--dark-light);
}

.image-container {
    width: 100%;
    max-width: 700px;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-container:hover img {
    transform: scale(1.05);
}

.caption {
    text-align: center;
    max-width: 700px;
}

.caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 25px;
}

.carousel-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Press Release & Logos */
.press-release {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.press-release .section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
}

.press-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.press-track {
    display: flex;
    gap: 2rem;
    animation: scrollLeft 20s linear infinite;
}

.press-item {
    flex: 0 0 auto;
}

.press-item img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.press-item img:hover {
    transform: scale(1.1);
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Vision Roadmap */
.vision-roadmap {
    padding: 80px 20px;
    background: var(--dark-light);
    position: relative;
    text-align: center;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.roadmap-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.roadmap-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.roadmap-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.roadmap-label {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.roadmap-subtitle {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Cards (Commitment) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--dark-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

/* Footer (Common) */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--dark-light) 50%, #0a0a0a 100%);
    padding: 60px 0 0;
    border-top: 3px solid var(--primary);
    margin-top: auto;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    padding-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 0;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-about {
    padding-right: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact-item div {
    flex: 1;
}

.footer-contact-item a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: transparent;
    padding: 25px 0;
    border-top: 1px solid rgba(139, 69, 19, 0.15);
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Responsive */
/* Tablet (Medium devices) */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
        flex-wrap: wrap;
    }

    .logo-section {
        flex: 0 0 auto;
    }

    .tagline {
        font-size: 0.7rem;
    }

    nav {
        flex: 1;
        justify-content: flex-end;
    }

    nav ul {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    nav ul li a {
        font-size: 0.82rem;
        padding: 7px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Small Tablet to Large Mobile */
@media (max-width: 768px) {
    header {
        padding: 12px 20px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .logo-section {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        flex: 1;
    }

    .logo img {
        height: 45px;
    }

    .tagline-section {
        display: flex;
    }

    .tagline {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(10px);
        overflow: hidden;
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        border-bottom: 1px solid rgba(139, 69, 19, 0.2);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
    }

    nav.open {
        height: calc(100vh - 70px);
        padding: 20px 0;
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        flex-wrap: nowrap;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.3s ease forwards;
    }

    nav.open ul li {
        opacity: 1;
        transform: translateX(0);
    }

    nav.open ul li:nth-child(1) { animation-delay: 0.05s; }
    nav.open ul li:nth-child(2) { animation-delay: 0.1s; }
    nav.open ul li:nth-child(3) { animation-delay: 0.15s; }
    nav.open ul li:nth-child(4) { animation-delay: 0.2s; }
    nav.open ul li:nth-child(5) { animation-delay: 0.25s; }
    nav.open ul li:nth-child(6) { animation-delay: 0.3s; }
    nav.open ul li:nth-child(7) { animation-delay: 0.35s; }
    nav.open ul li:nth-child(8) { animation-delay: 0.4s; }
    nav.open ul li:nth-child(9) { animation-delay: 0.45s; }
    nav.open ul li:nth-child(10) { animation-delay: 0.5s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 18px 25px;
        width: 100%;
        font-size: 1rem;
        transition: all 0.3s ease;
        text-align: left;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background-color: rgba(139, 69, 19, 0.15);
        color: var(--accent);
        padding-left: 35px;
    }

    nav ul li a::after {
        display: none;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .content-block {
        padding: 15px;
    }

    .anniversary {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    header.scrolled {
        padding: 10px 15px;
    }

    .logo img {
        height: 40px;
    }

    .tagline-section {
        display: flex;
    }

    .tagline {
        font-size: 0.5rem;
        letter-spacing: 0.3px;
    }

    .menu-toggle {
        width: 28px;
        height: 20px;
    }

    .menu-toggle span {
        height: 2.5px;
    }

    nav {
        top: 60px;
    }

    nav.open {
        height: calc(100vh - 60px);
    }

    nav ul li a {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    nav ul li a:hover,
    nav ul li a.active {
        padding-left: 30px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .anniversary {
        font-size: 1.6rem;
    }

    .content-block {
        padding: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Privacy Policy Styles */
.privacy-subsection {
    margin: 30px 0;
    padding: 20px;
    background: rgba(139, 69, 19, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 5px;
}

.privacy-subsection h3 {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-subsection h3 i {
    color: var(--primary);
    font-size: 1.3rem;
}