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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

section {
    position: relative;
    overflow: hidden;
}

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

/* Greeting Section - Full Screen */
.greeting-section {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Menu Button - Top Left */
.menu-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-3px);
}

.menu-button i {
    font-size: 1.2rem;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

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

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: #FFD700;
    transform: translateX(5px);
}

/* Social Links - Top Right */
.social-links-top {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 99;
}

.social-links-top a {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links-top a:hover {
    transform: translateY(-3px) scale(1.1);
    color: #FFD700;
}

.x-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-links-top a:hover .x-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

.greeting-title {
    font-size: 3rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-image {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 1s ease;
}

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

/* Who is this guy Section */
.who-section {
    background: linear-gradient(135deg, #CD853F 0%, #8B4513 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 968px) {
    .who-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.who-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    min-height: 500px;
    background: rgba(216, 203, 184, 0.3);
}

.who-image.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Scene Container */
.hero-scene {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

/* Main Character - Made Larger */
.main-character {
    height: 95%;
    max-height: 480px;
    width: auto;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.3));
    position: relative;
}

/* Floating Icons Common Styles */
.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    will-change: transform;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Floating Animation - Reduced movement */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Specific Icon Positioning - Brought Closer to Character */
.icon-insta {
    width: 50px;
    height: 50px;
    top: 12%;
    left: 15%;
    animation-delay: 0s;
}

.icon-google-ads {
    width: 60px;
    height: 60px;
    top: 18%;
    right: 15%;
    animation-delay: 1s;
}

.icon-seo {
    width: 65px;
    height: 65px;
    top: 42%;
    left: 10%;
    animation-delay: 2s;
    z-index: 12;
}

.icon-ahrefs {
    width: 75px;
    height: 42px;
    top: 38%;
    right: 10%;
    animation-delay: 0.5s;
}

.icon-linkedin {
    width: 50px;
    height: 50px;
    bottom: 28%;
    left: 18%;
    animation-delay: 1.5s;
    z-index: 12;
}

.icon-meta {
    width: 58px;
    height: 34px;
    bottom: 32%;
    right: 15%;
    animation-delay: 2.5s;
    z-index: 12;
}

.icon-mic {
    width: 42px;
    height: 42px;
    bottom: 48%;
    left: 5%;
    animation-delay: 3s;
    opacity: 0.8;
}

.icon-ads {
    width: 62px;
    height: 62px;
    top: 8%;
    right: 8%;
    animation-delay: 1.2s;
}

/* Glass Cards - Closer positioning */
.glass-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    z-index: 4;
}

.card-1 { 
    width: 75px; 
    height: 48px; 
    top: 25%; 
    left: 12%; 
    transform: rotate(-10deg); 
}

.card-2 { 
    width: 65px; 
    height: 65px; 
    bottom: 18%; 
    right: 12%; 
    transform: rotate(15deg); 
}

.who-text {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-text.in-view {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.who-description {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px 0;
    color: #FFD700;
}

.cv-link {
    font-size: 1.1rem;
    margin-top: 20px;
}

.cv-link a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 2px solid #FFD700;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cv-link a:hover {
    color: #FFF;
    border-color: #FFF;
}

/* About Me Section */
.about-section {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    width: 100%;
}

.about-me-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.about-me-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.about-me-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-me-text:last-child {
    margin-bottom: 0;
}

/* Blogs Section */
.blogs-section {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.blogs-section .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.blogs-section .section-title {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* All Blogs Button - Top Right */
.all-blogs-top-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.all-blogs-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.all-blogs-top-btn i {
    font-size: 1.1rem;
}

.blogs-scroll-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 40px 0;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blogs-scroll-container::-webkit-scrollbar {
    display: none;
}

.blogs-wrapper {
    display: flex;
    gap: 30px;
    padding: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.blogs-wrapper.in-view {
    opacity: 1;
    transform: translateY(0);
}

.blog-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.blog-excerpt {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #E0E0E0;
}

.btn-read-more {
    display: inline-block;
    padding: 10px 25px;
    background: #228B22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-read-more:hover {
    background: #1a6b1a;
    transform: scale(1.05);
}

/* View All Card (6th card) */
.view-all-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.view-all-card-content {
    text-align: center;
    color: #000;
    padding: 40px 20px;
}

.view-all-card-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #8B0000;
}

.view-all-card-content h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000;
}

.view-all-card-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
}

.view-all-arrow {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.view-all-card:hover .view-all-arrow {
    transform: translateX(10px);
}

.view-all-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

.scroll-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.scroll-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.scroll-arrow:active {
    transform: scale(0.95);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
    display: none; /* Hidden since View All is now the 6th card */
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-view-all:active {
    transform: translateY(-1px);
}

/* Skills Section */
.skills-section {
    background: linear-gradient(135deg, #2C1810 0%, #1a0f0a 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.skills-section .container {
    width: 100%;
}

.section-title-white {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

.skills-heading {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.skills-grid {
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.skill-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 1.1rem;
    color: #fff;
}

.skill-percentage {
    font-weight: bold;
    color: #FFD700;
}

.skill-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.skill-item.in-view .skill-progress {
    width: var(--progress);
}

.skill-badge {
    margin-top: 40px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.skill-badge.in-view {
    opacity: 1;
    transform: translateY(0);
}

.skill-badge p {
    margin: 0;
    font-size: 1.1rem;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer-section .container {
    width: 100%;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.social-links-bottom a {
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links-bottom a:hover {
    transform: translateY(-5px) scale(1.2);
    color: #FFD700;
}

.x-icon-footer {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}




.social-links-bottom a:hover .x-icon-footer {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

/* Email Links */
.email-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.email-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 215, 0, 0.1);
    display: inline-block;
}

.email-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
    color: #FFF;
}

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Adjust section padding for mobile */
    .greeting-section,
    .who-section,
    .about-section,
    .blogs-section,
    .skills-section,
    .footer-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    /* Keep greeting section full screen on mobile */
    .greeting-section {
        min-height: 100vh;
        height: 100vh;
    }
    
    /* Menu button on mobile */
    .menu-button {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .menu-button span {
        display: none;
    }
    
    /* All Blogs button on mobile */
    .all-blogs-top-btn {
        top: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Social links on mobile - Keep at top right */
    .social-links-top {
        position: absolute;
        top: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-links-top a {
        font-size: 20px;
    }
    
    .x-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Email links on mobile */
    .email-links {
        gap: 10px;
    }
    
    .email-link {
        font-size: 0.95rem;
        padding: 8px 15px;
    }
    
    .greeting-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image {
        width: 210px;
        height: 210px;
    }
    
    .who-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .who-image {
        max-width: 100%;
        min-height: 400px;
        margin: 0 auto 30px;
    }
    
    .hero-scene {
        height: 400px;
    }
    
    .main-character {
        height: 85%;
        max-height: 340px;
    }
    
    .floating-icon {
        padding: 8px;
        border-radius: 12px;
    }
    
    /* Bring icons even closer on mobile */
    .icon-insta { width: 40px; height: 40px; top: 10%; left: 12%; }
    .icon-google-ads { width: 48px; height: 48px; top: 15%; right: 12%; }
    .icon-seo { width: 52px; height: 52px; top: 40%; left: 8%; }
    .icon-ahrefs { width: 60px; height: 35px; top: 35%; right: 8%; }
    .icon-linkedin { width: 40px; height: 40px; bottom: 25%; left: 15%; }
    .icon-meta { width: 45px; height: 28px; bottom: 30%; right: 12%; }
    .icon-mic { width: 35px; height: 35px; bottom: 45%; left: 4%; }
    .icon-ads { width: 50px; height: 50px; top: 6%; right: 6%; }
    
    .card-1 { width: 60px; height: 40px; left: 10%; }
    .card-2 { width: 55px; height: 55px; right: 10%; }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .who-description {
        font-size: 1rem;
    }
    
    .about-me-section {
        padding: 25px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 480px) {
    /* Make sections auto-height on very small screens */
    .greeting-section,
    .who-section,
    .about-section,
    .blogs-section,
    .skills-section,
    .footer-section {
        min-height: auto;
        padding: 50px 15px;
    }
    
    .who-image {
        min-height: 350px;
        margin-bottom: 20px;
    }
    
    .hero-scene {
        height: 350px;
    }
    
    .main-character {
        height: 80%;
        max-height: 280px;
    }
    
    /* Keep icons visible but smaller */
    .icon-insta { width: 36px; height: 36px; left: 10%; }
    .icon-google-ads { width: 42px; height: 42px; right: 10%; }
    .icon-seo { width: 45px; height: 45px; left: 6%; }
    .icon-ahrefs { width: 52px; height: 32px; right: 6%; }
    .icon-linkedin { width: 36px; height: 36px; left: 12%; }
    .icon-meta { width: 40px; height: 25px; right: 10%; }
    .icon-mic { width: 32px; height: 32px; }
    .icon-ads { width: 45px; height: 45px; }
    
    .card-1 { width: 55px; height: 36px; }
    .card-2 { width: 50px; height: 50px; }
    
    /* Reduce floating animation on small screens */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    
    .blog-card {
        flex: 0 0 280px;
    }
    
    .skills-heading {
        font-size: 1.8rem;
    }
    
    .skill-name {
        font-size: 0.95rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .greeting-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-card {
        flex: 0 0 250px;
    }
    
    .social-links-bottom a {
        font-size: 24px;
    }
}

/* Tablet devices (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .who-image {
        max-width: 450px;
        min-height: 450px;
    }
    
    .hero-scene {
        height: 450px;
    }
    
    .main-character {
        height: 80%;
        max-height: 360px;
    }
}

/* Landscape orientation fix */
@media (max-height: 600px) and (orientation: landscape) {
    .who-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .who-image {
        min-height: 320px;
    }
    
    .hero-scene {
        height: 320px;
    }
    
    .main-character {
        height: 75%;
        max-height: 240px;
    }
    
    .floating-icon {
        padding: 6px;
    }
    
    .icon-insta { width: 32px; height: 32px; }
    .icon-google-ads { width: 38px; height: 38px; }
    .icon-seo { width: 42px; height: 42px; }
    .icon-ahrefs { width: 48px; height: 28px; }
    .icon-linkedin { width: 32px; height: 32px; }
    .icon-meta { width: 38px; height: 24px; }
    .icon-mic { width: 30px; height: 30px; }
    .icon-ads { width: 40px; height: 40px; }
}
