* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    background-color: #080808;
    color: #ffffff;
    overflow-x: hidden;
    transition: background-color 0.6s ease;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background: rgba(59, 57, 255, 0.8);
}

.logo {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #ffffff !important;
    text-decoration: none;
    position: relative;
}

.logo:visited {
    color: #ffffff !important;
}

.logo:hover {
    color: #ffffff !important;
    opacity: 1 !important;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF3B9A;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF3B9A;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}
.nav-links a,
.nav-links a:visited,
.nav-links a:active {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    padding-top: 80px;
}

.hero-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 4rem;
    max-width: 1000px;
    letter-spacing: -0.02em;
}

/* Glassmorphic Chatbox */
.chatbox {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem 3.5rem;
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-top: 40px;
}

.chatbox-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.typing-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
    min-height: 60px;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: #ffffff;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.chat-button {
    background: #3B39FF;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(59, 57, 255, 0.5);
}

.chat-button svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Projects Section */
.projects-section {
    min-height: 100vh;
    padding: 8rem 4rem;
    background-color: #3B39FF;
}

.projects-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 500;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
}

.project-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 280px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image-placeholder {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
}

.project-info {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 2px solid #3B39FF;
    background: #FFEDFA;
}

.project-icon {
    width: 40px;
    height: 40px;
    background: #3B39FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.project-details h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #3B39FF;
    margin-bottom: 0.25rem;
}

.project-details p {
    font-size: 0.875rem;
    color: #999;
}

/* About Me Section */
.about-section {
    min-height: 100vh;
    padding: 8rem 4rem;
    background-color: #080808;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
}

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-box {
    background: #FFEDFA;
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.testimonial-box {
    flex: 1;
    justify-content: space-between;
}

.testimonial-content {
    flex: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content.fade-out {
    opacity: 0;
}

.testimonial-text {
    font-size: 36px;
    color: #3B39FF;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.testimonial-author {
    margin-top: auto;
    align-self: flex-start;
}

.testimonial-author h4 {
    font-size: 24px;
    color: #3B39FF;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 1rem;
    color: #999;
}

.work-culture-box h3 {
    font-size: 1.75rem;
    color: #3B39FF;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.work-culture-box p {
    font-size: 1.125rem;
    color: #FF3B9A;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.outside-work-box {
    background: #3B39FF;
}

.outside-work-box h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.outside-work-box p {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background: #FD4FCC;
    color: #FFEDFA;
    border: none;
}

.cta-primary:hover {
    background: #FF00B8;
    transform: translateY(-2px);
}

.cta-secondary {
    background: #080808;
    color: #FFEDFA;
    border: 2px solid #FFEDFA;
}

.cta-secondary:hover {
    background: #FFEDFA;
    color: #FD4FCC;
    transform: translateY(-2px);
}

.cta-button svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   CONTACT SECTION - UPDATED STYLES
   ============================================ */

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 8rem 4rem;
    background-color: #FFEDFA;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
}

.contact-title {
    font-size: 173px;
    font-weight: 400;
    color: #3B39FF;
    line-height: 1.1;
    letter-spacing: -0.02em;
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 550px;
    margin-top: 60px; /* Adjust this value until it aligns */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.form-row {
    display: flex;
    gap: 70px;
    margin-bottom: 45px;
}

/* Form Group with floating label */
.form-group {
    position: relative;
}

/* Name and Email inputs */
.form-row .form-group {
    width: 226px;
}

.form-row .form-input {
    width: 226px;
    height: 72px;
}

/* Message textarea container */
.form-group:has(.form-textarea) {
    width: 520px;
    margin-bottom: 66px;
}

/* Input and Textarea base styles */
.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid #999;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    transition: all 0.3s ease;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.form-input {
    height: 72px;
}

.form-textarea {
    width: 520px;
    height: 72px;
    resize: none;
}

/* Placeholder styling */
.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

/* Floating label */
.form-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #FFEDFA;
    padding: 0 8px;
    font-size: 0.875rem;
    color: #3B39FF;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show label when input is focused or has content */
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
    opacity: 1;
}

/* Focus state - blue border */
.form-input:focus,
.form-textarea:focus {
    border-color: #3B39FF;
}

/* Hide placeholder when focused */
.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    opacity: 0;
}

/* Submit Button */
.submit-button {
    align-self: flex-end;
    padding: 1rem 3rem;
    border: 2px solid #FD4FCC;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #FD4FCC;
    font-family: inherit;
    margin-bottom: 232px;
}

.submit-button:hover {
    background: #FD4FCC;
    color: #ffffff;
    transform: translateY(-2px);
    /* box-shadow: 0 8px 20px rgba(253, 79, 204, 0.4); */
}

/* Contact Links */
.contact-links {
    text-align: right;
    font-size: 1.125rem;
    color: #333;
}

.contact-links a {
    color: #3B39FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #FD4FCC;
}

/* ============================================
   CONTACT SECTION RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        padding: 6rem 4rem;
        text-align: center;
        gap: 3rem;
        align-items: center;
    }

    .contact-title {
        font-size: 100px;
    }

    .contact-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 45px;
        align-items: center;
    }

    .form-row .form-group,
    .form-row .form-input,
    .form-group:has(.form-textarea),
    .form-textarea {
        width: 100%;
        max-width: 520px;
    }

    .submit-button {
        align-self: center;
        margin-bottom: 150px;
    }

    .contact-links {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-title {
        font-size: 60px;
    }

    .form-row .form-group,
    .form-row .form-input,
    .form-group:has(.form-textarea),
    .form-textarea {
        width: 100%;
    }

    .submit-button {
        width: 100%;
        margin-bottom: 100px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #3B39FF;
    padding: 4rem;
    color: #ffffff;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF3B9A;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0;
}

.footer-copyright {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9;
}

/* ============================================
   RESUME PAGE STYLES - UPDATED
   ============================================ */

.resume-page {
    background-color: #080808;
}

.resume-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 4rem 4rem;
}

/* Profile Section - Keep as is */
.profile-section {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 484px;
    height: 535px;
    border-radius: 53px;
    object-fit: cover;
    opacity: 1;
}

.profile-info {
    flex: 1;
    padding-top: 2rem;
}

.profile-name {
    font-size: 100px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 3rem;
    letter-spacing: 0%;
}

.contact-links-resume {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: #FFC7EF;
    text-decoration: none;
    font-size: 50px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
    width: fit-content;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #FD4FCC;
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #FD4FCC;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link svg {
    width: 24px;
    height: 24px;
}

.location {
    color: #FFC7EF;
    font-size: 50px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 0.5rem;
}

/* ============================================
   NEW RESUME SECTION STYLES
   ============================================ */

.resume-section-new {
    margin-bottom: 100px;
}

/* Section Titles - 100px */
.section-title-new {
    font-size: 100px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 60px;
}

/* Full-width title (for Experience, Skills, Education) */
.section-title-full {
    margin-bottom: 80px;
}

/* ============================================
   SUMMARY SECTION - 2 Column Grid
   ============================================ */

.resume-summary {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: start;
}

.resume-summary .section-title-new {
    margin-bottom: 0;
}

.section-content-new p {
    font-size: 32px;
    line-height: 1.5;
    color: #FFEDFA;
    margin-bottom: 40px;
    font-weight: 400;
}

.section-content-new p:last-child {
    margin-bottom: 0;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.resume-experience {
    display: block;
}

.experience-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px 100px;
    align-items: start;
    row-gap: 120px;
}

.experience-left {
    padding-top: 0;
}

.job-title-new {
    font-size: 50px;
    font-weight: 500;
    color: #CAF76F;
    line-height: 1.2;
    margin-bottom: 16px;
}

.job-date-new {
    font-size: 40px;
    font-weight: 100;
    color: #CAF76F;
    line-height: 1.2;
}

.experience-right {
    padding-top: 0;
}

.experience-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list-new li {
    font-size: 32px;
    line-height: 1.5;
    color: #FFEDFA;
    margin-bottom: 32px;
    padding-left: 40px;
    position: relative;
}

.experience-list-new li:last-child {
    margin-bottom: 0;
}

/* Pink bullets for Experience */
.pink-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    background-color: #FD4FCC;
    border-radius: 50%;
}

/* ============================================
   SKILLS SECTION
   ============================================ */

.resume-skills {
    display: block;
}

.skills-content-new {
    max-width: 900px;
    margin-left: auto;
    padding-left: 100px;
}

.skills-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list-new li {
    font-size: 32px;
    line-height: 1.5;
    color: #FFEDFA;
    margin-bottom: 32px;
    padding-left: 40px;
    position: relative;
}

.skills-list-new li:last-child {
    margin-bottom: 0;
}

/* Blue bullets for Skills */
.blue-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    background-color: #3B39FF;
    border-radius: 50%;
}

/* ============================================
   EDUCATION SECTION
   ============================================ */

.resume-education {
    display: block;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.degree-title-new {
    font-size: 50px;
    font-weight: 500;
    color: #CAF76F;
    line-height: 1.2;
}

.education-right {
    text-align: right;
}

.school-name-new {
    font-size: 40px;
    font-weight: 100;
    color: #CAF76F;
    line-height: 1.3;
    margin-bottom: 8px;
}

.education-date-new {
    font-size: 40px;
    font-weight: 100;
    color: #CAF76F;
    line-height: 1.3;
}

/* ============================================
   DOWNLOAD BUTTON
   ============================================ */

.download-section-new {
    display: flex;
    justify-content: flex-end;
    margin-top: 100px;
    margin-bottom: 60px;
}

.download-button-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border: 2px solid #FD4FCC;
    border-radius: 50px;
    background: transparent;
    color: #FD4FCC;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.download-button-new:hover {
    background: #FD4FCC;
    color: #ffffff;
    transform: translateY(-2px);
   /* box-shadow: 0 8px 20px rgba(253, 79, 204, 0.4); */
}

.download-button-new svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESUME RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .resume-summary {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-left {
        margin-bottom: 20px;
    }

    .skills-content-new {
        margin-left: 0;
        padding-left: 0;
        max-width: 100%;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .education-right {
        text-align: left;
    }

    .section-title-new {
        font-size: 70px;
    }

    .job-title-new,
    .degree-title-new {
        font-size: 40px;
    }

    .job-date-new,
    .school-name-new,
    .education-date-new {
        font-size: 32px;
    }

    .section-content-new p,
    .experience-list-new li,
    .skills-list-new li {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .resume-container {
        padding: 100px 2rem 3rem;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .profile-image img {
        width: 200px;
        height: 280px;
    }

    .profile-name {
        font-size: 50px;
    }

    .contact-links-resume {
        align-items: center;
    }

    .contact-link,
    .location {
        font-size: 24px;
    }

    .section-title-new {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .section-title-full {
        margin-bottom: 50px;
    }

    .section-content-new p,
    .experience-list-new li,
    .skills-list-new li {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .job-title-new,
    .degree-title-new {
        font-size: 28px;
    }

    .job-date-new,
    .school-name-new,
    .education-date-new {
        font-size: 22px;
    }

    .experience-list-new li,
    .skills-list-new li {
        padding-left: 30px;
    }

    .pink-bullets li::before,
    .blue-bullets li::before {
        width: 12px;
        height: 12px;
        top: 10px;
    }

    .download-button-new {
        font-size: 18px;
        padding: 16px 32px;
    }
}
/* ============================================
   GOOSE FORWARD CASE STUDY STYLES
   Add this to the bottom of your styles.css file
   ============================================ */

/* Video Container - 16:9 responsive embed */
.gf-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 80px;
    border-radius: 32px;
    overflow: hidden;
}

.gf-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* Remove border-radius on images for this page if needed */
.gf-page .content-image {
    border-radius: 0;
}
.gf-section4-image {
    margin-left: 80px;
}

/* ============================================
   RESPONSIVE - Goose Forward
   ============================================ */

@media (max-width: 768px) {
    .gf-video-container {
        border-radius: 16px;
        margin-bottom: 60px;
    }
}
/* ============================================
   HOME DEPOT HERO FIX
   ============================================ */
/* ============================================
   GLOBAL STYLES & NAV
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    background-color: #080808;
    color: #ffffff;
    overflow-x: hidden;
    transition: background-color 0.6s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
}

/* .logo { font-size: 1rem; font-weight: 400; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: #ffffff; text-decoration: none; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 0.7; } */

/* ============================================
   CASE STUDY CORE LAYOUT
   ============================================ */
.case-study-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 140px 4rem 4rem;
}

/* Sidebar-style grid for content sections */

.content-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: start;
}

.section-title-case {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    position: sticky;
    top: 140px;
}

.section-content-case {
    max-width: 800px;
}

.section-content-case p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ============================================
   HOME DEPOT CASE STUDY STYLES (FINAL)
   ============================================ */

/* ============================================
   HOME DEPOT CASE STUDY STYLES (FINAL)
   ============================================ */

/* Main Container */
.case-study-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px 80px;
    background: #000;
}

/* Hero Image Section */
.home-depot-hero-banner {
    width: 100%;
    margin-bottom: 80px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: none;
}

/* --- INTRO SECTION --- */
.intro-section-vertical {
    margin-bottom: 120px;
}

.figma-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 16px;
    color: #FFEDFA;
    background: transparent;
    text-decoration: none;
    margin-bottom: 50px;
    font-size: 1.75rem; /* 28px */
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.figma-badge:hover {
    background: #FFC7EF;
    border-color: #FFC7EF;
    color: #E854C5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 84, 197, 0.3);
}

.figma-badge::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFEDFA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.figma-badge:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E854C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
}

.intro-text-block {
    margin-bottom: 60px;
}

.uniform-intro-text {
    font-size: 2rem; /* 32px */
    line-height: 1.5;
    color: #FFEDFA;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 100%;
}

.uniform-intro-text:last-child {
    margin-bottom: 0;
}

/* Meta Data Table (Bottom of intro) */
.project-meta-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-column h4 {
    font-size: 2rem; /* 32px */
    text-transform: capitalize;
    color: #666;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.meta-column p {
    font-size: 2rem; /* 32px */
    color: #FFEDFA;
    line-height: 1.6;
    font-weight: 400;
}

/* --- VERTICAL SECTIONS (Image -> Title Left | Text Right) --- */
.vertical-section {
    margin-bottom: 150px;
}

/* Container for images */
.content-image-container {
    margin-bottom: 50px;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

/* Grid for Title/Text below image */
.section-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 225px;
    align-items: start;
}

.vertical-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #FFEDFA;
}

.text-col {
    max-width: 750px;
}

.text-col p {
    font-size: 1.5rem; /* 24px */
    line-height: 1.75;
    color: #FFEDFA;
    margin-bottom: 1.5rem;
}

.text-col p:last-child {
    margin-bottom: 0;
}

/* --- FOOTER NAV --- */
.next-project-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 120px;
    margin-bottom: 80px;
}

.next-project-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #FFEDFA;
    font-size: 2.75rem; /* 44px */
    font-weight: 400;
    transition: 0.3s;
    position: relative;
}

.next-project-btn span {
    display: flex;
    align-items: center;
    position: relative;
}

.next-project-btn span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF3B9A;
    transition: width 0.3s ease;
}

.next-project-btn:hover span::after {
    width: 100%;
}

.next-project-btn:hover {
    opacity: 1;
}

.arrow-box { 
    width: 40px; 
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-box svg { 
    width: 44px; 
    height: 44px; 
    stroke: #FFEDFA;
}

/* Footer */
.footer-bottom {
    background: #3B39FF;
    padding: 60px 80px 40px;
    margin: 0;
    border-radius: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
    max-width: 1440px;
    margin: 0 auto 60px;
}

.footer-col h5 { 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    font-weight: 500;
    color: #FFEDFA;
}

.footer-col a { 
    display: block; 
    color: #FFEDFA;
    text-decoration: none; 
    font-size: 1rem; 
    margin-bottom: 12px;
    transition: 0.3s;
    opacity: 0.85;
}

.footer-col a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    color: rgba(255,237,250,0.6);
    font-size: 0.875rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1440px;
    margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 1100px) {
    .case-study-container { 
        padding: 100px 40px 60px; 
    }
    
    .section-content-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .project-meta-table { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .vertical-title { 
        font-size: 36px; 
    }
    
    .hero-image, .content-image { 
        border-radius: 24px; 
    }
    
    .footer-bottom {
        padding: 60px 40px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .case-study-container { 
        padding: 80px 24px 40px; 
    }
    
    .uniform-intro-text {
        font-size: 1.5rem;
    }
    
    .vertical-title {
        font-size: 28px;
    }
    
    .hero-image, .content-image { 
        border-radius: 16px; 
    }
    
    .footer-bottom {
        padding: 40px 24px 30px;
    }
    
    .figma-badge {
        font-size: 1.25rem;
    }
    
    .next-project-btn {
        font-size: 2rem;
    }
}
/* ============================================
   SIMPLE CASE STUDIES RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .hero-card-simple {
        padding: 4rem 2rem;
        min-height: 300px;
    }

    .hero-text-simple h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .coming-soon-section {
        padding: 4rem 2rem;
    }

    .coming-soon-icon {
        font-size: 4rem;
    }

    .coming-soon-section h2 {
        font-size: 2rem;
    }

    .coming-soon-section p {
        font-size: 1.125rem;
    }
}
/* ============================================
   TD YOUTH CASE STUDY STYLES
   ============================================ */

/* TD Hero Section */
.td-hero-banner {
    width: 100%;
    margin-bottom: 80px;
}

/* ============================================
   TD SECTION WRAPPER (Repeatable Structure)
   ============================================ */

.td-section-wrapper {
    margin-bottom: 150px;
}

/* Green Header Bar */
.td-green-header {
    width: 100vw;
    height: 193px;
    background: #00BC2C;
    display: flex;
    align-items: center;
    padding-left: calc((100vw - 1440px) / 2 + 93px);
    margin-left: calc(-1 * ((100vw - 1440px) / 2 + 80px));
    margin-bottom: 150px;
}

.td-section-header-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -1px;
}

/* Section Content Layout (Default - used for Homepage) */
.td-section-content {
    display: flex;
    gap: 144px;
    position: relative;
    align-items: flex-start;
}

/* Phone Mockup */
.td-phone-mockup {
    flex-shrink: 0;
    width: 655px;
    position: sticky;
    top: 140px;
}

.td-phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Annotations Container */
.td-annotations {
    flex: 1;
    max-width: 485px;
    position: relative;
}

/* ============================================
   ANNOTATION ITEMS (Green titles)
   ============================================ */

.td-annotation-item {
    position: relative;
    margin-bottom: 80px;
}

/* Green Title */
.td-green-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #00BC2C;
    margin-bottom: 16px;
}

/* Light Text */
.td-light-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #ECFFF0;
}

.td-underline {
    text-decoration: none;
    background-color: #3A483C;
    padding: 4px 6px;
}

/* ============================================
   PROBLEM + SOLUTION BOXES
   ============================================ */

.td-problem-solution-box {
    margin-bottom: 80px;
}

/* Red Problem Title */
.td-red-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #E34943;
    margin-bottom: 16px;
}

/* Solution Card (Dark green box) */
.td-solution-card {
    background: #3A483C;
    border: 3px solid #266333;
    border-radius: 34px;
    padding: 44px 24px;
    margin-top: 32px;
}

.td-solution-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #00BC2C;
    margin-bottom: 20px;
}

.td-solution-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #ECFFF0;
}

/* ============================================
   INVESTMENT PAGE - Positioned Layout
   ============================================ */

.td-positioned-layout {
    display: flex;
    gap: 144px;
    position: relative;
    align-items: flex-start;
}

.td-phone-column {
    flex-shrink: 0;
    width: 655px;
    position: sticky;
    top: 140px;
}

.td-phone-column img {
    width: 100%;
    height: auto;
    display: block;
}

.td-annotations-column {
    flex: 1;
    position: relative;
}

.td-annotation-positioned {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 450px;
}

.td-annotation-positioned .td-green-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #00BC2C;
    margin-bottom: 16px;
}

.td-annotation-positioned .td-light-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #ECFFF0;
}

/* ============================================
   TD FINANCE 101 PAGE - Grid Layout
   ============================================ */

.td-finance101-layout {
    display: grid;
    grid-template-columns: 655px 1fr;
    grid-template-rows: auto auto;
    gap: 40px 80px;
    position: relative;
    max-width: 100%;
}

.td-finance101-left {
    grid-column: 1;
    grid-row: 1;
}

.td-finance101-middle {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 485px;
}

.td-finance101-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    width: 100%;
    max-width: 550px;
    margin-left: -150px;
}

.td-finance101-lesson-text {
    grid-column: 1;
    grid-row: 2;
    max-width: 485px;
    align-self: center;
}

.td-finance101-phone {
    width: 100%;
    height: auto;
    display: block;
}

.td-finance101-problem {
    margin-top: 0;
}

.td-finance101-learning {
    margin-top: 40px;
}

/* ============================================
   ADVISORS PAGE - Grid Layout
   ============================================ */

.td-advisors-layout {
    display: grid;
    grid-template-columns: 655px 1fr;
    grid-template-rows: auto auto;
    gap: 40px 80px;
    position: relative;
    max-width: 100%;
}

.td-advisors-left {
    grid-column: 1;
    grid-row: 1;
}

.td-advisors-middle {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 485px;
}

.td-advisors-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    width: 100%;
    max-width: 550px;
    margin-left: -100px;
}

.td-advisors-detail-text {
    grid-column: 1;
    grid-row: 2;
    max-width: 485px;
    align-self: center;
}

.td-advisors-phone {
    width: 100%;
    height: auto;
    display: block;
}

.td-advisors-problem {
    margin-top: 0;
}

.td-advisors-select {
    margin-top: 20px;
}

/* ============================================
   RESPONSIVE - All TD Sections
   ============================================ */

@media (max-width: 1200px) {
    /* Investment Page */
    .td-positioned-layout {
        flex-direction: column;
        gap: 60px;
    }

    .td-phone-column {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .td-annotations-column {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .td-annotation-positioned {
        position: static;
        max-width: 100%;
    }

    /* Finance 101 Page */
    .td-finance101-layout {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .td-finance101-left,
    .td-finance101-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .td-finance101-middle {
        order: 2;
        max-width: 100%;
    }

    .td-finance101-right {
        order: 3;
    }

    .td-finance101-lesson-text {
        order: 4;
        max-width: 100%;
    }

    /* Advisors Page */
    .td-advisors-layout {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .td-advisors-left,
    .td-advisors-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .td-advisors-middle {
        order: 2;
        max-width: 100%;
    }

    .td-advisors-right {
        order: 3;
    }

    .td-advisors-detail-text {
        order: 4;
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    .td-green-header {
        padding-left: 40px;
        margin-left: -40px;
        height: 150px;
    }

    .td-section-header-title {
        font-size: 2.5rem;
    }

    .td-section-content {
        flex-direction: column;
        gap: 60px;
    }

    .td-phone-mockup {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .td-annotations {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .td-green-header {
        padding-left: 24px;
        margin-left: -24px;
        height: 120px;
    }

    .td-section-header-title {
        font-size: 2rem;
    }

    .td-green-title,
    .td-red-title,
    .td-solution-title {
        font-size: 20px;
    }

    .td-light-text,
    .td-solution-text {
        font-size: 16px;
        line-height: 28px;
    }

    .td-solution-card {
        padding: 32px 20px;
    }

    .td-positioned-layout,
    .td-finance101-layout,
    .td-advisors-layout {
        padding: 40px 0;
        gap: 40px;
    }

    .td-annotation-positioned .td-green-title,
    .td-finance101-layout .td-green-title,
    .td-advisors-layout .td-green-title {
        font-size: 20px;
    }

    .td-annotation-positioned .td-light-text,
    .td-finance101-layout .td-light-text,
    .td-advisors-layout .td-light-text {
        font-size: 16px;
        line-height: 28px;
    }
}
/* ============================================
   PROFILE TRANSACTIONS CASE STUDY STYLES
   Add this to the bottom of your styles.css file
   ============================================ */

/* Hero Banner */
.pt-hero-banner {
    width: 100%;
    margin-bottom: 80px;
}

.pt-hero-banner .hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

/* Mobile App Badge */
.mobile-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    color: #FFEDFA;
    background: transparent;
    text-decoration: none;
    margin-bottom: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.mobile-app-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-app-badge svg {
    width: 16px;
    height: 16px;
}

/* Section Titles - Green color for PT */
/* Section Titles - Same as body text */
.pt-section-title {
    color: #FFEDFA;
}

/* ============================================
   USER INTERFACE SECTION
   ============================================ */

/* .pt-ui-image {
    border: 3px solid #00D1FF;
    border-radius: 32px;
} */

/* ============================================
   USER EXPERIENCE SECTION
   ============================================ */

.pt-ux-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    margin-bottom: 50px;
    align-items: start;
}

.pt-ux-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pt-ux-card {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #3CBB5D;
    border-radius: 24px;
    margin-top: 30px;
}

.pt-ux-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.pt-ux-phone {
    width: 100%;
    /* max-width: 620px; */
    height: auto;
    display: block;
    /* border: 3px solid #00D1FF; */
    border-radius: 32px;
}
/* ============================================
   ENGAGEMENT SECTION
   ============================================ */

.pt-engagement-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.pt-engagement-left {
    display: flex;
    justify-content: center;
}

.pt-engagement-phone {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    border-radius: 32px;
}

.pt-engagement-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.pt-hottip-card {
    width: 100%;
    /* max-width: 450px; */
    height: auto;
    display: block;
    border: 1px solid #3CBB5D;
    border-radius: 24px;
}
.pt-page .content-image {
    border-radius: 0;
}

/* ============================================
   RESPONSIVE - Profile Transactions
   ============================================ */

@media (max-width: 1100px) {
    .pt-ux-layout,
    .pt-engagement-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pt-ux-left {
        order: 1;
        align-items: center;
    }

    .pt-ux-right {
        order: 2;
    }

    .pt-engagement-left {
        order: 1;
    }

    .pt-engagement-right {
        order: 2;
        align-items: center;
    }

    .pt-ux-card,
    .pt-hottip-card {
        max-width: 100%;
    }

    .pt-ux-phone,
    .pt-engagement-phone {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .pt-hero-banner .hero-image,
    .pt-ui-image,
    .pt-ux-phone {
        border-radius: 16px;
    }

    .pt-ux-card,
    .pt-hottip-card {
        border-radius: 16px;
    }

    .mobile-app-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
}
/* Hero Images */
.chatbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 100%;
}

.hero-money {
    position: absolute;
    left: -100px;
    top: 10%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    z-index: 1;
}

.hero-avatar {
    position: absolute;
    right: -120px;
    bottom: -35px;
    width: 280px;
    height: auto;
    z-index: -1;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-money {
        left: -80px;
        width: 150px;
    }
    
    .hero-avatar {
        right: -100px;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-money {
        display: none;
    }
    
    .hero-avatar {
        display: none;
    }
}
/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    /* Navigation */
    nav {
        padding: 1.5rem 2rem;
    }

    /* Hero Section */
    .hero {
        padding: 0 1.5rem;
        padding-top: 100px;
    }

    .hero-text {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 3rem;
    }

    .chatbox {
        padding: 2rem 2.5rem;
        max-width: 600px;
    }

    .hero-money {
        left: -60px;
        width: 180px;
    }

    .hero-avatar {
        right: -80px;
        width: 220px;
    }

    /* Projects Section */
    .projects-section {
        padding: 6rem 2rem;
    }

    .projects-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
        margin-bottom: 3rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    /* About Section */
    .about-section {
        padding: 6rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left-column,
    .about-right-column {
        gap: 1.5rem;
    }

    .testimonial-text {
        font-size: 28px;
    }

    .testimonial-author h4 {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-section {
        padding: 3rem 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column h3 {
        font-size: 1.5rem;
    }

    .footer-link {
        font-size: 1.25rem;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    /* Hero Section */
    .hero {
        padding: 0 1rem;
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-text {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .chatbox-wrapper {
        max-width: 100%;
    }

    .chatbox {
        padding: 1.5rem;
        border-radius: 24px;
        margin-top: 20px;
    }

    .chatbox-content {
        gap: 1rem;
    }

    .typing-text {
        font-size: 1rem;
        min-height: 50px;
    }

    .chat-button {
        width: 40px;
        height: 40px;
    }

    .hero-money,
    .hero-avatar {
        display: none;
    }

    /* Projects Section */
    .projects-section {
        padding: 4rem 1rem;
    }

    .projects-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 1rem;
    }

    .project-icon {
        width: 36px;
        height: 36px;
    }

    .project-details h3 {
        font-size: 0.9rem;
    }

    .project-details p {
        font-size: 0.8rem;
    }

    /* About Section */
    .about-section {
        padding: 4rem 1rem;
    }

    .about-box {
        padding: 2rem;
        border-radius: 24px;
    }

    .testimonial-text {
        font-size: 22px;
        margin-bottom: 2rem;
    }

    .testimonial-author h4 {
        font-size: 18px;
    }

    .testimonial-author p {
        font-size: 0.875rem;
    }

    .work-culture-box h3,
    .outside-work-box h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .work-culture-box p,
    .outside-work-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact Section - already has responsive styles, adding refinements */
    .contact-title {
        font-size: 48px;
    }

    /* Footer */
    .footer-section {
        padding: 2rem 1rem;
    }

    .footer-column h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 1rem;
    }

    .footer-copyright {
        font-size: 1rem;
    }

    /* Case Study Footer */
    .footer-bottom {
        padding: 40px 1.5rem 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h5 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .footer-col a {
        font-size: 0.9rem;
    }

    /* Case Study Pages */
    .case-study-container {
        padding: 80px 1.5rem 40px;
    }

    .intro-section-vertical {
        margin-bottom: 60px;
    }

    .figma-badge {
        font-size: 1rem;
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    .uniform-intro-text {
        font-size: 1.25rem;
    }

    .intro-text-block {
        margin-bottom: 40px;
    }

    .project-meta-table {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .meta-column h4 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .meta-column p {
        font-size: 1.25rem;
    }

    .vertical-section {
        margin-bottom: 80px;
    }

    .content-image-container {
        margin-bottom: 30px;
    }

    .section-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vertical-title {
        font-size: 28px;
    }

    .text-col p {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .next-project-row {
        margin-top: 60px;
        margin-bottom: 40px;
        justify-content: center;
    }

    .next-project-btn {
        font-size: 1.5rem;
        gap: 10px;
    }

    .arrow-box {
        width: 30px;
        height: 30px;
    }

    .arrow-box svg {
        width: 30px;
        height: 30px;
    }

    /* Goose Forward Video */
    .gf-video-container {
        margin-bottom: 40px;
        border-radius: 16px;
    }

    .gf-section4-image {
        margin-left: 0;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Navigation */
    nav {
        padding: 0.75rem 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    /* Hero */
    .hero-text {
        font-size: 1.5rem;
    }

    .chatbox {
        padding: 1.25rem;
    }

    .typing-text {
        font-size: 0.9rem;
    }

    /* Projects */
    .projects-title {
        font-size: 2rem;
    }

    .project-image {
        height: 180px;
    }

    /* About */
    .about-box {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

    .work-culture-box h3,
    .outside-work-box h3 {
        font-size: 1.125rem;
    }

    .work-culture-box p,
    .outside-work-box p {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-title {
        font-size: 36px;
    }

    /* Case Studies */
    .uniform-intro-text {
        font-size: 1.125rem;
    }

    .meta-column h4,
    .meta-column p {
        font-size: 1rem;
    }

    .vertical-title {
        font-size: 24px;
    }

    .text-col p {
        font-size: 1rem;
    }

    .next-project-btn {
        font-size: 1.25rem;
    }
}
/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Hero spacing fix for mobile */
    .hero {
        min-height: 100vh;
        padding-bottom: 6rem;
    }

    .projects-section {
        margin-top: 0;
    }
}