:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --accent: #00f2ff;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
  }
  
body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li { margin: 0 20px; }

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: 0.3s;
    opacity: 0.8;
}

.nav-links a:hover { opacity: 1; color: var(--accent); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h2 {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.typewriter-container {
    font-size: 1.5rem;
    height: 30px;
    font-weight: 300;
    margin-bottom: 40px;
}

#typewriter {
    color: var(--accent);
    font-weight: 600;
}

.btn-main {
    padding: 15px 35px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin-right: 15px;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-outline {
    padding: 15px 35px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-main:hover, .btn-outline:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

/* Animated Background Blob */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #00f2ff, #7000ff);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

@keyframes move {
    from { transform: translate(-20%, -20%); }
    to { transform: translate(20%, 20%); }
}

/* Responsive Burger Menu */
@media (max-width: 768px) {
    .nav-links { display: none; }
}
/* --- Desktop Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

/* --- Burger Icon Styling --- */
.burger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text);
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden; /* Prevent side-scroll */
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background: rgba(10, 10, 10, 0.95); /* Darker for readability */
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%); /* Hidden by default */
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0; /* Fade in animation */
    }

    .burger {
        display: block; /* Show burger on mobile */
    }
}

/* --- Toggle Classes (Triggered by JS) --- */
.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}

/* Burger Animation to 'X' */
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

.about-section {
    padding: 100px 8% 150px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image Side */
.about-image-side {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.image-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--accent);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.experience-badge .number { font-size: 2rem; display: block; }

.blob-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

/* Content Side */
.section-subtitle {
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.chip:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

.stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--accent);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 50px;
        text-align: center;
    }

    .about-image-side {
        max-width: 400px;
        margin: 0 auto;
    }

    .skills-chips {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .experience-badge {
        right: 10px; /* Adjust badge for smaller screens */
    }
}
.edu-section {
    padding: 100px 8%;
    background: #0a0a0a;
}

.center { text-align: center; margin-bottom: 10px; }

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
}

/* The vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0; /* Animated via JS */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Left & Right positioning */
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

/* The Glowing Dots */
.timeline-dot {
    height: 16px;
    width: 16px;
    position: absolute;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    border-radius: 50%;
    top: 25px;
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }

/* The Cards */
.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.timeline-content:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.07);
    transform: scale(1.02);
}

.edu-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.timeline-date {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.university {
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; } /* Move line to side */

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) { left: 0%; }

    .timeline-dot {
        left: 23px !important;
    }
}
.exp-section {
    padding: 100px 8%;
    background: #0d0d0d; /* Slightly different black for depth */
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.exp-card {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.exp-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}

.exp-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.exp-number {
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.exp-role h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.exp-role p {
    color: var(--accent);
    font-size: 0.9rem;
}

.exp-desc {
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.exp-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    color: #ccc;
}

.exp-metric {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 992px) {
    .exp-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}

@media screen and (max-width: 480px) {
    .exp-card {
        padding: 25px;
    }
    .exp-number {
        font-size: 2rem;
    }
}
.skills-section {
    padding: 100px 8%;
    background: #050505;
}

.skills-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    margin-top: 50px;
}

.skill-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.skill-box:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

/* Grid Layout Logic */
.large { grid-column: span 2; grid-row: span 2; }
.medium { grid-column: span 2; }
.small { grid-column: span 1; }

.box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.box-header .icon { font-size: 1.5rem; }
.box-header h3 { font-size: 1.2rem; font-weight: 700; }

/* Progress Bars */
.skill-item { margin-bottom: 15px; }
.skill-item span { display: block; font-size: 0.85rem; margin-bottom: 8px; opacity: 0.8; }
.bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.fill { height: 100%; background: var(--accent); border-radius: 10px; box-shadow: 0 0 10px var(--accent); }

/* Tag Cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--accent); color: #000; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }

/* List Style */
.check-list { list-style: none; }
.check-list li::before { content: '▹ '; color: var(--accent); }
.check-list li { margin-bottom: 10px; opacity: 0.8; font-size: 0.9rem; }

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 1024px) {
    .skills-bento { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 600px) {
    .skills-bento { grid-template-columns: 1fr; }
    .large, .medium, .small { grid-column: span 1; }
}

.projects-section {
    padding: 100px 8%;
    background: #0a0a0a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.project-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
}

.project-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s transform;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 242, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.view-btn {
    color: #000;
    text-decoration: none;
    font-weight: 900;
    padding: 12px 25px;
    border: 2px solid #000;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-img img { transform: scale(1.1); }

.project-info {
    padding: 30px;
}

.proj-tag {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-info h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

.project-info p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 60px;
}

.btn-glow {
    position: relative;
    padding: 20px 50px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.btn-glow:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 30px var(--accent);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .projects-grid { grid-template-columns: 1fr; }
    .project-overlay { opacity: 1; height: 60px; top: auto; bottom: 0; background: rgba(0,0,0,0.8); }
    .view-btn { color: var(--accent); border-color: var(--accent); }
}
.quote-section {
    position: relative;
    padding: 150px 8%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Moving background text */
.bg-quote-text {
    position: absolute;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    user-select: none;
    letter-spacing: -5px;
}

.quote-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-size: 6rem;
    font-family: serif;
    color: var(--accent);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.5;
}

.main-quote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    color: #eee;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(90deg, #00f2ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--accent);
}

.author-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    .quote-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .bg-quote-text {
        font-size: 30vw; /* Make it bigger on mobile to act as a texture */
    }
}

.testi-section {
    padding: 100px 8%;
    background: #050505;
}

.testi-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto; /* For smooth swiping on mobile */
    padding-bottom: 30px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.testi-container::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

.testi-card {
    min-width: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: 0.4s;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 242, 255, 0.05);
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.client-info h4 { font-size: 1.1rem; }
.client-info span { font-size: 0.8rem; color: #888; }

.verified-badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-tag {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.testi-text {
    color: #ccc;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.stars { color: #ffb400; font-size: 0.9rem; }

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    .testi-container {
        flex-direction: column;
    }
    .testi-card {
        min-width: 100%;
        padding: 30px;
    }
}
.contact-section {
    padding: 100px 8% 50px;
    background: #050505;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    display: block;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: #888;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Hover Effects */
.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

/* --- Footer --- */
.social-footer {
    margin-top: 100px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.6;
    transition: 0.3s;
}

.social-icon:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 30px;
}

.copyright {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright span {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    .contact-card {
        padding: 30px;
    }
}
/* --- HERO RESPONSIVE FIXES --- */

@media screen and (max-width: 768px) {
    .hero {
        padding: 0 5%;
        text-align: center;
        height: 100vh; /* Keeps it full screen */
        display: flex;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 0.9rem; /* Smaller subtitle */
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 3.5rem; /* Prevents text from breaking or overlapping */
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .typewriter-container {
        font-size: 1.2rem; /* Scaled down for mobile */
        height: 50px; /* Extra height to prevent layout jump during typing */
        margin-bottom: 30px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .btn-main, .btn-outline {
        width: 80%; /* Make buttons wider and easier to hit */
        margin-right: 0; /* Remove the desktop right margin */
        padding: 18px 0; /* Taller for better "tap-ability" */
        text-align: center;
    }

    /* Adjust the background blob for mobile so it stays centered */
    .blob {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
}

/* Specific fix for very small phones (iPhone SE, etc.) */
@media screen and (max-width: 380px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .typewriter-container {
        font-size: 1rem;
    }
}
/* Update this global rule or apply to each section class */
section {
    padding: 60px 8% !important; /* Reduced from 100px/150px to 60px */
}

/* Specifically target the spacing between the Subtitle and Title */
.section-subtitle {
    margin-bottom: 5px; /* Reduced gap */
}

.section-title {
    margin-bottom: 30px; /* Reduced gap before content starts */
}

/* Remove extra margin from the bottom of the container if it exists */
.container {
    margin-bottom: 0;
}
/* Update this global rule or apply to each section class */
section {
    padding: 60px 8% !important; /* Reduced from 100px/150px to 60px */
}

/* Specifically target the spacing between the Subtitle and Title */
.section-subtitle {
    margin-bottom: 5px; /* Reduced gap */
}

.section-title {
    margin-bottom: 30px; /* Reduced gap before content starts */
}

/* Remove extra margin from the bottom of the container if it exists */
.container {
    margin-bottom: 0;
}