* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.7;
}
.container { max-width: 1200px; margin: auto; padding: 0 24px; }

.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: #000; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-text p {
    font-size: 1.35rem;
    color: #444;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}
.btn-primary {
    background: #000;
    color: #fff;
}
.btn-primary:hover {
    background: #222;
    transform: translateY(-3px);
}

.section { padding: 120px 0; }
.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 70px;
}

.grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s;
}
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.footer {
    padding: 60px 20px;
    text-align: center;
    background: #111;
    color: #aaa;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .nav-links { gap: 20px; font-size: 0.95rem; }
    .section { padding: 80px 0; }
    .section-title { font-size: 2rem; }


    .about-container h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-container strong {
    color: #0f766e;          /* teal-green accent */
    font-weight: 600;
}

/* Subtle hover on photo container */
.about-container > div > div:last-child > div {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-container > div > div:last-child > div:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.process-step {
    transition: all 0.3s ease;
}
.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12) !important;
}
.step-number {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    color: #10b981;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.experience-card {
    transition: all 0.4s ease;
}
.experience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12) !important;
}
.timeline-line-desktop {
    display: block !important; /* only on desktop if you add media query */
}
    /* Base Navbar Styles (Desktop) */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #10b981;
}

/* Hamburger Icon Styles */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #334155;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Responsive Styles (Android/iOS) */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide standard menu by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        text-align: center;
        gap: 20px;
    }

    /* Class to trigger when the menu is open */
    .nav-links.active {
        display: flex;
    }
}
@media (max-width: 768px) {
    .timeline-line-desktop { display: none; }
}

}
