/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}



.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.highlight {
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.49);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    background: #2563eb;
    border-radius: 20px;
    padding: .5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.profile-img {
    width: 275px;
    height: 275px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #2563eb;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #2563eb;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

/* Reduce gap between Foundation and Resume */
.foundations {
    padding-bottom: 40px;
}

.resume {
    padding-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 0rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat p {
    color: #64748b;
    font-weight: 500;
    font-size: .85rem;
}

.stat-logo {
    object-fit: contain;
    flex-shrink: 0;
}

.ng-logo {
    width: 140px;
    height: 140px;
    margin-bottom: .60rem;
    transform: translateY(1px);
}

.ucla-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 0rem;
    transform: translateY(4px);
}

.northrop-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.northrop-stat p {
    text-align: center;
    line-height: 1.2;
    font-size: 0.85rem;
    margin: 0;
}

.ucla-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem;
}

.experience-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem;
}

.experience-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 0rem;
    transform: translate(15px, 50px);
}

.experience-stat p {
    margin-top: 3rem;
}

.ucla-stat p {
    text-align: center;
    line-height: 1.2;
    font-size: 0.85rem;
    margin: 0;
}

/* Technologies Section */
.technologies {
    background: white;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.tech-item i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
    transition: color 0.3s ease;
}

.tech-item:hover i {
    color: white;
}

.tech-item span {
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

/* Projects Section */
.projects {
    background: #f8fafc;
}

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

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}



.project-image {
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.shape-detection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: center bottom;*/
    transform: translateY(0px);
}

.speech-recognition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.project-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #1d4ed8;
}

/* Experience Section */
.experience {
    background: white;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.boeing-timeline-item {
    flex-direction: row !important;
}

.timeline-content,
.timeline-video {
    width: calc(50% - 1rem);
}

.timeline-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #2563eb;
    border: 4px solid white;
    border-radius: 50%;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px #e2e8f0;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: left;
}

.company-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.company-logo img {
    height: 60px;
    width: 120px;
    object-fit: contain;
    background: white;
    padding: .25rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.company-logo img[src*="boeing"] {
    padding: .6rem;
    height: 50px;
}

.timeline-video {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.video-container, .ng-video-container, .boeing-video-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ng-video-container video {
    width: 400px;
    height: 678px;
    object-fit: cover;
    object-position: 75% 50%;
    border-radius: 8px;
    background: #f8fafc;
}

.boeing-video-container video {
    width: 400px;
    height: 642px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8fafc;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-date {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 0.8rem;
}

/* Resume Section */
.resume {
    background: #f8fafc;
}

.resume-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resume-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
}

.resume-header i {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.resume-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.resume-header p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.resume-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Foundations Section */
.foundations {
    background: #f8fafc;
}

.foundations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.foundations-intro p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

.club-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.club-images {
    position: relative;
    height: 440px;
    overflow: hidden;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.club-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

/* Individual image positioning classes */
.club-img.pos-top { object-position: center top; }
.club-img.pos-bottom { object-position: center bottom; }
.club-img.pos-left { object-position: left center; }
.club-img.pos-right { object-position: right center; }
.club-img.pos-top-left { object-position: left top; }
.club-img.pos-top-right { object-position: right top; }
.club-img.pos-bottom-left { object-position: left bottom; }
.club-img.pos-bottom-right { object-position: right bottom; }

/* Custom percentage positioning */
.club-img.pos-25-50 { object-position: 25% 50%; }
.club-img.pos-75-50 { object-position: 75% 50%; }
.club-img.pos-50-25 { object-position: 50% 25%; }
.club-img.pos-50-75 { object-position: 50% 75%; }
.club-img.pos-30-30 { object-position: 30% 30%; }
.club-img.pos-70-70 { object-position: 70% 70%; }
.club-img.pos-50-10 { object-position: 50% 10%; }

/* Top view variations */
.club-img.pos-top-lower { object-position: center 20%; }
.club-img.pos-top-slight { object-position: center 15%; }

/* VEX Robotics specific styling */
.vex-robotics .club-images {
    height: 440px;
}

.vex-robotics .club-img {
    transform: scale(1.0);
}

/* FIRST Robotics specific styling */
.first-robotics .club-images {
    height: 440px;
}

.first-robotics .club-img {
    /*transform: scale(0.8);*/
    object-fit: contain;
    background: white;
}

.engineering-design .club-img {
    transform: translateX(-50px);
}

.club-img.active {
    opacity: 1;
}

.club-card:hover .club-img {
    transform: scale(1.05);
}

.image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.club-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.club-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.club-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.club-date {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.club-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}



.club-attachments {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pdf-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-link:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.pdf-link[href*=".pptx"], .pdf-link[href*=".ppt"] {
    background: #d97706;
}

.pdf-link[href*=".pptx"]:hover, .pdf-link[href*=".ppt"]:hover {
    background: #b45309;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.pdf-link.youtube-link, .pdf-link[href*="youtube.com"] {
    background: #ff0000;
}

.pdf-link.youtube-link:hover, .pdf-link[href*="youtube.com"]:hover {
    background: #cc0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.pdf-link i {
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    padding: 0rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
    margin-top: 0rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-items {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
    padding: 0.875rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    justify-content: center;
    flex: 1;
    white-space: nowrap;
}

.contact-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.contact-item i {
    width: 24px;
    color: #2563eb;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 65px;
    height: 65px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}



/* Footer */
.footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 769px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

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

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .timeline-content,
    .timeline-video {
        width: 100%;
    }

    .timeline-marker {
        left: 12px !important;
        transform: none;
    }

    .resume-card {
        max-width: 100%;
        padding: 2rem;
    }

    .contact-info {
        padding: 1rem;
        max-width: 100%;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        min-width: 250px;
        max-width: 100%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .profile-card {
        padding: 2rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}


