@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
    .main-nav a,
    .cta-button,
    .carousel-btn,
    .dot,
    .social-link,
    .submit-btn {
        min-height: 44px; /* iOS recommended minimum touch target */
        min-width: 44px;
    }
    
    .form-group input,
    .form-group textarea {
        min-height: 44px;
    }
    
    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 44px;
        min-height: 44px;
    }
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e6fff2 0%, #f0fff4 100%);
    color: #2d2d2d;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced Header and Navigation */
.site-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #3ec6a6 0%, #2bb8a3 100%);
    box-shadow: 0 4px 20px rgba(62, 198, 166, 0.3);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.1);
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8em 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.main-nav a:hover {
    background: rgba(233, 77, 26, 0.9);
    border-color: #e94d1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 77, 26, 0.4);
}

.main-nav i {
    font-size: 1.1rem;
}

/* Enhanced Section Titles */
.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    color: #e94d1a;
    text-align: center;
    margin: 3rem 0 2rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(233, 77, 26, 0.2);
    border-bottom: 4px solid #3ec6a6;
    padding-bottom: 1rem;
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3ec6a6, #7ee6e6);
    border-radius: 2px;
}

.subsection-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-left: 4px solid #3ec6a6;
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(62, 198, 166, 0.1), transparent);
    border-radius: 0 8px 8px 0;
    font-weight: 400;
}

.subsection-title i {
    color: #1a5f4a;
    margin-right: 0.5rem;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.column {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.column p {
    color: #2d2d2d;
    line-height: 1.6;
}

/* Hero Section with Carousel */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3ec6a6 0%, #2bb8a3 100%);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-content {
    flex: 1;
    padding: 3rem;
    text-align: left;
}

.carousel-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.carousel-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(62, 198, 166, 0.3);
}

.placeholder-carousel-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #3ec6a6, #7ee6e6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 8px 24px rgba(62, 198, 166, 0.3);
}

.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.cta-button {
    color: #fff;
    background: linear-gradient(135deg, #3ec6a6, #2bb8a3);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 198, 166, 0.4);
    border: none;
    display: inline-block;
}

.cta-button:hover,
.cta-button:focus {
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 77, 26, 0.4);
    outline: 2px solid #e94d1a;
    outline-offset: 2px;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-btn:hover,
.carousel-btn:focus {
    background: #3ec6a6;
    color: white;
    transform: translateY(-50%) scale(1.1);
    outline: 2px solid #3ec6a6;
    outline-offset: 2px;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.dot:focus {
    outline: 2px solid #3ec6a6;
    outline-offset: 2px;
}

.dot.active {
    background: #3ec6a6;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(62, 198, 166, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skills-list li:hover {
    background: rgba(62, 198, 166, 0.1);
    padding-left: 1rem;
    border-radius: 8px;
}

.skills-list i {
    color: #1a5f4a;
    font-size: 1.2rem;
    width: 20px;
}

/* Projects Section */
.projects-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.placeholder-project-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3ec6a6, #7ee6e6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3ec6a6;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: #3ec6a6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #1a5f4a;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3ec6a6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #e94d1a;
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2d2d2d;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3ec6a6;
    box-shadow: 0 0 0 3px rgba(62, 198, 166, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #3ec6a6, #2bb8a3);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 198, 166, 0.4);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 77, 26, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d2d2d, #404040);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.site-footer p {
    margin-bottom: 0.5rem;
}

.site-footer i {
    color: #e94d1a;
}

/* About Page Specific Styles */
.hero-content {
    text-align: center;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 2rem;
    color: #1a5f4a;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-story-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3ec6a6, #7ee6e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3ec6a6;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: #1a5f4a;
    font-size: 0.9rem;
}

.service-card p {
    color: #2d2d2d;
    line-height: 1.6;
}

/* Experience Timeline */
.experience-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3ec6a6, #7ee6e6);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: #3ec6a6;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 0 0 4px #3ec6a6;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-left: 3rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-title {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-company {
    color: #1a5f4a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2d2d2d;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #3ec6a6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Education Section */
.education-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.education-item,
.certification-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid #3ec6a6;
}

.education-item h4,
.certification-item h4 {
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.education-school,
.certification-year {
    color: #1a5f4a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-year {
    font-size: 0.9rem;
    opacity: 0.8;
}

.education-item p,
.certification-item p {
    color: #2d2d2d;
    line-height: 1.6;
}

/* RWD Examples Page Styles */
.examples-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.simple-examples-list {
    max-width: 800px;
    margin: 0 auto;
}

.example-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #3ec6a6;
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.example-item h3 {
    font-family: 'Merriweather', serif;
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.example-item h3 i {
    color: #1a5f4a;
    font-size: 1.2rem;
}

.example-item p {
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.simple-link {
    color: #fff;
    background: linear-gradient(135deg, #3ec6a6, #2bb8a3);
    padding: 0.6em 1.2em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.simple-link:hover {
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 77, 26, 0.3);
}

.return-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.return-content h3 {
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.return-content h3 i {
    color: #1a5f4a;
}

.return-content p {
    color: #2d2d2d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #3ec6a6 0%, #2bb8a3 100%);
        box-shadow: 0 4px 20px rgba(62, 198, 166, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 12px 12px;
        padding: 1rem;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 1rem;
        width: 100%;
        justify-content: flex-start;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .carousel-container {
        height: 450px;
        min-height: 400px;
    }
    
    .carousel-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .carousel-image {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .column {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.5rem 1rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .logo-container {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
    
    .main-nav {
        padding: 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .carousel-container {
        height: 350px;
        min-height: 300px;
    }
    
    .carousel-content {
        padding: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .column {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        padding: 0.6rem;
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        bottom: 5px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .timeline-item {
        padding: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
}

/* Extra small devices (phones, 320px and down) */
@media (max-width: 320px) {
    .site-header {
        padding: 0.3rem;
    }
    
    .site-name {
        font-size: 1rem;
    }
    
    .main-nav a {
        font-size: 0.75rem;
        padding: 0.3em 0.5em;
    }
    
    .carousel-container {
        height: 300px;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 0.3rem;
    }
    
    .column {
        padding: 0.8rem;
    }
    
    .contact-form {
        padding: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }
    
    .submit-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .site-header {
        flex-direction: row;
        padding: 0.5rem 1rem;
    }
    
    .main-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .main-nav a {
        font-size: 0.75rem;
        padding: 0.3em 0.5em;
    }
    
    .carousel-container {
        height: 250px;
        min-height: 200px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* Resume Section Styles */
.resume-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.resume-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resume-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3ec6a6;
}

.resume-info h3 {
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.resume-info h3 i {
    color: #d43d0a;
}

.resume-info p {
    color: #2d2d2d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.resume-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #3ec6a6;
}

.feature-item i {
    color: #1a5f4a;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: #2d2d2d;
}

.resume-download-btn {
    background: linear-gradient(135deg, #3ec6a6, #2bb8a3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 198, 166, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-download-btn:hover {
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 77, 26, 0.4);
}

.resume-download-btn i {
    font-size: 1.2rem;
}

/* RWD Examples List Styles */
.examples-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.example-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3ec6a6;
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.example-item h3 {
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.example-item h3 i {
    color: #1a5f4a;
    font-size: 1.2rem;
}

.example-item p {
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.example-item .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3ec6a6, #2bb8a3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 198, 166, 0.4);
    border: none;
}

.example-item .cta-button:hover {
    background: linear-gradient(135deg, #e94d1a, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 77, 26, 0.4);
}

/* Mobile responsiveness for examples list */
@media (max-width: 768px) {
    .examples-list {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .example-item {
        padding: 1.5rem;
    }
    
    .example-item h3 {
        font-size: 1.2rem;
    }
    
    .example-item p {
        font-size: 0.95rem;
    }
    
    .example-item .cta-button {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .examples-list {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .example-item {
        padding: 1.2rem;
    }
    
    .example-item h3 {
        font-size: 1.1rem;
    }
    
    .example-item p {
        font-size: 0.9rem;
    }
    
    .example-item .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
