@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #050505;
    --bg-light: #ffffff;
    --bg-dark-secondary: #0a0a0a;
    --bg-light-secondary: #f4f4f4;
    
    --text-light: #ffffff;
    --text-dark: #121212;
    --text-muted-dark: #888888;
    --text-muted-light: #666666;
    
    --accent-teal: #2dd4a8;
    --border-dark: #1a1a1a;
    --border-light: #e5e5e5;
    
    --font-primary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: var(--font-primary);
}

html { font-size: 62.5%; }

body {
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--bg-dark);
}

/* ===== SECTION BASE ===== */
.dark-section { background: var(--bg-dark); color: var(--text-light); }
.light-section { background: var(--bg-light); color: var(--text-dark); }
section { padding: 10rem 9% 8rem; position: relative; }

/* ===== TYPOGRAPHY ===== */
.badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.subtext {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted-light);
    display: block;
    margin-bottom: 1.5rem;
}
.subtext.center { text-align: center; }

.section-heading { text-align: center; margin-bottom: 5rem; }
.section-heading h2 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.4rem 3.2rem;
    border-radius: 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary { background: var(--text-light); color: var(--bg-dark); }
.btn-primary:hover { background: #e0e0e0; transform: translateY(-2px); }
.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { border-color: var(--text-light); transform: translateY(-2px); }
.btn-solid {
    background: var(--accent-teal);
    color: var(--bg-dark);
    width: 100%;
    margin-top: 2rem;
}
.btn-solid:hover { background: #25b891; transform: translateY(-2px); }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 2.5rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.4s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header.sticky { padding: 1.5rem 9%; }
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 2.2rem;
    color: var(--text-light);
    font-weight: 700;
}
.logo svg {
    margin-right: -0.2rem;
}
.navbar { display: flex; align-items: center; gap: 3rem; }
.navbar a { font-size: 1.4rem; color: var(--text-muted-dark); font-weight: 500; transition: 0.3s; }
.navbar a:hover, .navbar a.active { color: var(--text-light); }

.btn-nav {
    background: var(--accent-teal);
    color: var(--bg-dark) !important;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: 0.3s;
    margin-left: 1.5rem;
}
.btn-nav:hover {
    background: #25b891;
    transform: translateY(-2px);
    color: var(--bg-dark) !important;
}
#menu-icon { font-size: 3rem; color: var(--text-light); display: none; cursor: pointer; }

/* ===== HERO SECTION ===== */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 12rem;
    position: relative;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
    gap: 5rem;
    padding: 0 9%;
}

.home-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.home-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.home-image img {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(45, 212, 168, 0.15));
    transform: scale(1.2);
    transform-origin: bottom;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
}

.hero-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.animated-bg-icons {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.float-particle {
    position: absolute;
    color: rgba(255,255,255,0.07);
    animation: floatAnim linear infinite alternate;
}

@keyframes floatAnim {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
    50% { transform: translateY(-60px) translateX(40px) rotate(180deg); opacity: 0.12; }
    100% { transform: translateY(-120px) translateX(-40px) rotate(360deg); opacity: 0.05; }
}

.hero-greeting {
    font-size: 1.4rem;
    color: var(--accent-teal);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.home-content h1 {
    font-size: 6.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* Rotating Words */
.rotating-words-wrapper {
    height: 4rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.rotating-words {
    position: relative;
    height: 100%;
}

.rotate-word {
    position: absolute;
    width: 100%;
    left: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rotate-word.active {
    opacity: 1;
    transform: translateY(0);
}

.rotate-word.exit {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-desc {
    font-size: 1.4rem;
    color: var(--text-muted-light);
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 90%;
}

.action-btns {
    display: flex;
    justify-content: flex-start;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4rem;
    padding: 0.5rem 2.5rem 0.5rem 0.5rem;
    transition: 0.3s;
}

.btn-about .btn-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    transition: 0.3s;
}

.btn-about:hover {
    border-color: var(--accent-teal);
}

.btn-about:hover .btn-icon {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(45, 212, 168, 0.4);
}

.scroll-down {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--text-muted-dark);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about { position: relative; }

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-img {
    flex: 0.8;
    position: relative;
}
.about-img img {
    width: 100%;
    border-radius: 2rem;
    filter: grayscale(80%);
    transition: 0.5s;
}
.about-img img:hover { filter: grayscale(0%); }

.exp-badge {
    position: absolute;
    top: -20px; right: -20px;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.exp-badge strong { font-size: 2.2rem; display: block; }
.exp-badge span { font-size: 1.2rem; color: var(--text-muted-dark); }

.about-content { flex: 1.2; }
.about-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}
.highlight-text { color: var(--accent-teal); }

.about-desc {
    font-size: 1.6rem;
    color: var(--text-muted-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mt-2 { margin-top: 3rem; }

.social-links-about { display: flex; gap: 1.5rem; }
.social-links-about a {
    font-size: 2.5rem;
    color: var(--text-muted-light);
    transition: 0.3s;
}
.social-links-about a:hover { color: var(--accent-teal); }

/* ===== WHY I DO SECTION ===== */
.why-section { padding: 10rem 9%; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45,212,168,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.why-icon-circle {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), #1aae8a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 3rem;
    box-shadow: 0 8px 30px rgba(45,212,168,0.2);
}

.why-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-card p {
    font-size: 1.4rem;
    color: var(--text-muted-dark);
    line-height: 1.8;
}

/* ===== PROJECTS (Light) ===== */
.projects { text-align: center; }

.projects .section-heading h2 { color: var(--text-dark); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-box.dark-card {
    background: #191c29;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 500px; /* Increased height to fit 150 characters */
    color: #fff;
    cursor: default;
}
.project-box.dark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.1);
}

.project-image-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}
.project-image-wrapper .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-box.dark-card:hover .project-img {
    transform: scale(1.05);
}
.img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, #191c29, transparent);
    pointer-events: none;
}
.badge-selected {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffb800;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}
.placeholder-img {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: #191c29;
    color: #444;
}

.project-info { 
    padding: 2.5rem; 
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}
.project-title-row h4 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
}
.badge-year {
    background: rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 1.1rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    flex-shrink: 0;
}

.project-desc {
    font-size: 1.3rem;
    color: #9ba1b0;
    margin-bottom: 2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.project-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.project-link i { font-size: 1.6rem; }
.project-link:hover { color: #2dd4a8; }
.project-link.disabled { color: #555; pointer-events: none; }

/* Pills */
.pill-container { display: flex; flex-wrap: wrap; gap: 1rem; }
.pill-container.sm .pill {
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
    background: var(--bg-dark);
    color: var(--text-muted-dark);
}
.pill {
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    background: var(--bg-light-secondary);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6rem;
    margin: 8rem auto 0;
    max-width: 900px;
    border-top: 1px solid var(--border-light);
    padding-top: 5rem;
}
.stat-item { text-align: center; }
.stat-item h3 { font-size: 3.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.stat-item p { font-size: 1.2rem; color: var(--text-muted-light); letter-spacing: 2px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 10rem 9%;
    text-align: center;
    overflow: hidden;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 33.333%;
    padding: 0 1.5rem;
    box-sizing: border-box;
    flex-shrink: 0;
}

.testimonial-card > div,
.testimonial-card > h4,
.testimonial-card > p,
.testimonial-card > strong {
    pointer-events: none;
}

.testimonial-card .testimonial-quote {
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
    text-align: right;
    margin-bottom: 1rem;
}

.testimonial-inner {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-service {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-text {
    font-size: 1.4rem;
    color: var(--text-muted-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
    flex: 1;
}

.testimonial-author {
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
}
.testimonial-author strong { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.testimonial-author span { font-size: 1.2rem; color: var(--text-muted-dark); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}
.carousel-dot {
    width: 1rem; height: 1rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: 0.3s;
}
.carousel-dot.active {
    background: var(--accent-teal);
    width: 3rem;
    border-radius: 1rem;
}

.no-testimonials {
    font-size: 1.6rem;
    color: var(--text-muted-dark);
}

.testimonial-cta {
    margin-top: 4rem;
}

/* ===== CONTACT SECTION ===== */
.contact { text-align: center; }
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}
input, textarea {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.8rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
input:focus, textarea:focus { 
    border-color: var(--accent-teal); 
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 15px rgba(45, 212, 168, 0.15);
}
input::placeholder, textarea::placeholder {
    color: #999;
}
textarea { resize: vertical; }

.contact-info {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-size: 1.5rem;
    color: var(--text-muted-light);
}
.contact-info i { color: var(--text-dark); margin-right: 0.5rem; }
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}
.contact-link:hover {
    color: var(--accent-teal);
}
.contact-link:hover i {
    color: var(--accent-teal);
}

.form-feedback { display: block; font-size: 1.4rem; color: #4CAF50; margin-top: 1rem; }
.form-feedback.error { color: #F44336; }

/* ===== FOOTER ===== */
.footer {
    padding: 6rem 9% 2rem;
    background: var(--bg-dark);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.footer-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 600;
}
.footer-profile img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
    background: var(--bg-dark-secondary);
}
.footer-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
}
.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.footer-nav a {
    color: var(--text-muted-dark);
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.3s;
}
.footer-nav a:hover {
    color: var(--text-light);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem; height: 4rem;
    color: var(--text-muted-dark);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}
.footer-social a:hover { 
    background: rgba(255,255,255,0.05); 
    color: var(--text-light); 
    border-color: rgba(255,255,255,0.3); 
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1.3rem;
    color: var(--text-muted-dark);
}
.footer-status {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
    margin-right: 0.8rem;
}
.footer-email {
    color: var(--text-muted-dark);
    text-decoration: none;
    transition: 0.3s;
}
.footer-email:hover {
    color: var(--text-light);
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: var(--bg-dark-secondary);
    padding: 4rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.marquee-row { display: flex; width: 200%; }
.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
    padding-left: 2rem;
    flex: none;
}
.marquee-content.reverse { animation-direction: reverse; }
.marquee-item {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem;
    gap: 1.5rem;
    white-space: nowrap;
}
.marquee-icon {
    width: 3.5rem; height: 3.5rem;
    background: #fff;
    border-radius: 0.6rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    html { font-size: 55%; }
    .testimonial-card { min-width: 50%; }
}

@media (max-width: 991px) {
    section { padding: 9rem 5% 7rem; }
    .header { padding: 2rem 5%; }
    
    .home-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 5rem;
    }
    .home-content {
        text-align: center;
        max-width: 100%;
    }
    .home-content h1 {
        font-size: 5rem;
    }
    .hero-desc {
        max-width: 100%;
        margin: 0 auto 3rem;
    }
    .action-btns {
        justify-content: center;
    }
    .rotate-word {
        text-align: center;
    }
    .home-image {
        justify-content: center;
    }
    .home-image img {
        max-height: 50vh;
    }

    .about-container { flex-direction: column; text-align: center; gap: 5rem; }
    .exp-badge { right: 50%; transform: translateX(50%); top: auto; bottom: -20px; }
    .social-links-about { justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 100%; }
}

@media (max-width: 768px) {
    #menu-icon { display: block; }
    .navbar {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        padding: 2rem 5%;
        background: rgba(5,5,5,0.98);
        flex-direction: column;
        align-items: center;
        display: none;
        border-bottom: 1px solid var(--border-dark);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .navbar.active { display: flex; }
    .navbar a { display: block; margin: 1.5rem 0; font-size: 1.8rem; text-align: center; }
    .btn-nav {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    .home-content h1 { font-size: 4rem; }
    .hero-greeting { font-size: 1.5rem; }
    .action-btns { flex-direction: column; gap: 1.5rem; }
    .stats-grid { flex-direction: column; align-items: center; text-align: center; gap: 3rem; }
    .contact-info { flex-direction: column; gap: 1rem; }
    .footer-container { flex-direction: column; }
    .footer-bottom { font-size: 1.1rem; }
    .section-heading h2 { font-size: 3rem; }
}
