@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* CSS Variables for consistent theming */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --accent-hover: #00c299;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #00c299;
    --text-white: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-dark: #2d3748;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-secondary: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    scroll-behavior: smooth;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7)) 
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.3))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.logo:hover {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) 
            drop-shadow(0 0 16px rgba(255, 255, 255, 0.7))
            drop-shadow(0 0 32px rgba(255, 255, 255, 0.4))
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transform: scale(1.05);
}

.logo-text {
    color: var(--text-white);
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.05em;
    transition: var(--transition);
    position: relative;
    background: transparent;
}

.nav-menu li a:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu li a:hover::after {
    width: 70%;
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(45, 106, 138, 0.8)), url('images/background.png') no-repeat center center/cover;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 1.25rem 3rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.cta-button:hover::before {
    left: 100%;
}

/* About Section */
#about {
    background: var(--bg-secondary);
}

#about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Vision & Mission Section */
#vision-mission {
    background: var(--bg-primary);
    padding: 6rem 2rem;
}

#vision-mission .vision,
#vision-mission .mission {
    background: #ffffff;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    position: relative;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: var(--transition);
}

#vision-mission .vision:hover,
#vision-mission .mission:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

#vision-mission h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#vision-mission p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: left;
}

#vision-mission h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

#vision-mission .vision p strong,
#vision-mission .mission p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery Section */
#gallery {
    background: var(--bg-secondary);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 0.2;
}

/* Contact Section */
#contact {
    background: var(--gradient-secondary);
    color: #ffffff;
}

#contact h2 {
    color: #ffffff;
}

#contact h2::after {
    background: var(--accent-color);
}

#contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.9;
}

#contact address {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
}

#contact address a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
}

#contact address a:hover {
    opacity: 1;
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.95em;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
}

/* Ensure hamburger is hidden on desktop */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        gap: 5px !important;
        width: auto !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .nav-menu li {
        opacity: 1 !important;
        transform: none !important;
        margin: 0 !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .nav-menu li a {
        width: auto !important;
        max-width: none !important;
        white-space: normal !important;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 5%;
        position: relative;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5em;
    }
    
    /* Show hamburger, hide regular menu */
    .hamburger-menu {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--gradient-primary);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        list-style: none;
        margin: 0;
        height: auto;
        min-height: calc(100vh - 70px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        width: 100%;
        display: block;
        text-align: center;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-menu li a {
        padding: 1.2rem 2rem;
        font-size: 1.2em;
        display: block;
        border-radius: 8px;
        margin: 0 auto;
        text-align: center;
        width: 90%;
        max-width: 320px;
        white-space: nowrap;
        color: var(--text-white);
        text-decoration: none;
        font-weight: 500;
        background: transparent;
        transition: var(--transition);
    }

    .nav-menu li a:hover {
        background: var(--accent-color);
        transform: translateY(0);
        box-shadow: var(--shadow-sm);
    }

    .nav-menu li a::after {
        display: none;
    }

    #hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    #vision-mission .vision,
    #vision-mission .mission {
        padding: 2rem;
        margin: 1.5rem auto;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 3%;
    }

    .logo {
        height: 30px;
    }

    .logo-text {
        font-size: 1.3em;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .nav-menu li {
        margin: 0.6rem 0;
    }

    .nav-menu li a {
        font-size: 1.1em;
        padding: 1rem 1.5rem;
        width: 95%;
        max-width: 280px;
    }

    .hero-content {
        padding: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    #vision-mission .vision,
    #vision-mission .mission {
        padding: 1.5rem;
    }

    #contact address {
        padding: 1.5rem;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Team Section */
#team {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8f9fa;
}

.team-member h3 {
    color: #333;
    margin: 10px 0;
    font-size: 1.5em;
}

.team-member .position {
    color: #666;
    font-weight: bold;
    margin: 5px 0;
}

.team-member .description {
    color: #777;
    font-size: 0.9em;
    line-height: 1.5;
    margin-top: 10px;
}

/* Services Section */
#services {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.03) 0%, rgba(22, 33, 62, 0.05) 100%);
    pointer-events: none;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-intro p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(26, 26, 46, 0.1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.service-features li:hover {
    color: var(--text-primary);
    padding-left: 1.8rem;
    transition: var(--transition);
}

.services-cta {
    text-align: center;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 26, 46, 0.1);
    position: relative;
    z-index: 1;
}

.services-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
}

.charts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 24px;
}

.charts-row > div {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 16px 12px 12px 12px;
    margin: 0;
}

@media (max-width: 900px) {
    .charts-row {
        flex-direction: column;
        gap: 20px;
    }
    .charts-row > div {
        max-width: 100%;
    }
}

/* Vision Mission Sections - Previously Inline Styles */
.vision-focus-areas, .mission-core-pillars {
    text-align: left;
    margin-top: 20px;
}

/* Development Roadmap Section */
.roadmap-summary {
    max-width: 1000px;
    margin: 0 auto 24px auto;
}

.roadmap-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1a1a2e;
}

.roadmap-intro p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 0;
    color: #2c3e50;
    font-weight: 500;
}

/* Gallery Section - Previously Inline Styles */
.result-summary {
    max-width: 900px;
    margin: 0 auto 24px auto;
}

.achievement-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.achievement-intro p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 0;
    color: #2c3e50;
}

.charts-vertical {
    margin-bottom: 20px;
}

.dev-progress, .current-results {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px 16px 20px 16px;
}

.dev-progress {
    margin-bottom: 20px;
    min-height: 500px;
    overflow: visible;
}

.future-plans {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px 16px 20px 16px;
    margin-bottom: 20px;
    min-height: 500px;
    overflow: visible;
    border: 2px solid #f0f8ff;
}

.future-plans h3 {
    color: #1a1a2e;
    margin-bottom: 0;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
}

.key-metrics {
    background: #fff;
    border: 2px solid #f0f8ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.key-metrics h4 {
    color: #1a1a2e;
    margin-bottom: 16px;
    font-size: 1.1em;
}

.key-metrics ul {
    font-size: 1.05em;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

.key-metrics li {
    margin-bottom: 8px;
}

.key-metrics li:last-child {
    margin-bottom: 0;
}

.key-metrics strong {
    color: #0f3460;
}

.key-metrics span {
    background: #f0f8ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    color: #1a1a2e;
}

.conclusion {
    background: #f7fafc;
    padding: 16px;
    border-left: 4px solid #16213e;
    border-radius: 0 8px 8px 0;
}

.conclusion p {
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
    color: #1a1a2e;
    font-style: italic;
}

/* New Unified Timeline Styles */
.unified-timeline-container {
    padding: 3rem 1rem;
    margin: 4rem 0;
}

.unified-timeline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 4rem 0;
    min-height: 350px;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 6px;
    background: linear-gradient(90deg, #FFD700, #FF7F50, #FF1493, #9370DB, #4169E1, #2F4F4F);
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.timeline-milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.timeline-circle .year {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.milestone-content {
    position: absolute;
    width: 180px;
    text-align: center;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.milestone-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    border-color: #cbd5e0;
}

.milestone-content.above {
    bottom: 120px;
}

.milestone-content.below {
    top: 120px;
}

.milestone-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    left: 50%;
    transform: translateX(-50%);
}

.milestone-content.above::before {
    top: 100%;
    border-top: 12px solid white;
}

.milestone-content.below::before {
    bottom: 100%;
    border-bottom: 12px solid white;
}

.milestone-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.milestone-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.phase-separator {
    text-align: center;
    margin: 6rem 0 4rem 0;
    padding: 2rem 0;
    position: relative;
}

.phase-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateY(-50%);
    z-index: 1;
}

.phase-separator h3 {
    background: var(--bg-primary);
    padding: 0 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .unified-timeline-container {
        padding: 2rem 0.5rem;
    }
    
    .unified-timeline {
        flex-direction: column;
        min-width: auto;
        margin: 2rem 0;
        padding: 0;
        min-height: auto;
    }
    
    .timeline-line {
        top: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #FFD700, #FF7F50, #FF1493, #9370DB, #4169E1, #2F4F4F);
        transform: translateX(-50%);
    }
    
    .timeline-milestone {
        width: 100%;
        margin: 3rem 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    .timeline-milestone:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-milestone:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .timeline-circle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        border-width: 4px;
    }
    
    .timeline-circle .year {
        font-size: 0.75rem;
    }
    
    .milestone-content {
        position: relative;
        width: 40%;
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .timeline-milestone:nth-child(odd) .milestone-content {
        margin-left: 0;
        margin-right: 55%;
    }
    
    .timeline-milestone:nth-child(even) .milestone-content {
        margin-right: 0;
        margin-left: 55%;
    }
    
    .milestone-content.above,
    .milestone-content.below {
        position: relative;
        top: auto;
        bottom: auto;
    }
    
    .milestone-content::before {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .timeline-milestone:nth-child(odd) .milestone-content::before {
        left: 100%;
        border: 10px solid transparent;
        border-left: 10px solid white;
    }
    
    .timeline-milestone:nth-child(even) .milestone-content::before {
        right: 100%;
        left: auto;
        border: 10px solid transparent;
        border-right: 10px solid white;
    }
    
    .phase-separator {
        margin: 4rem 0 3rem 0;
        padding: 1.5rem 0;
    }
    
    .phase-separator h3 {
        font-size: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .phase-separator::before {
        left: 15%;
        right: 15%;
    }
}