/* Card Container */
    .profile-card {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        background: var(--card-bg);
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        /* Deep soft shadow */
    }

    /* Typography */
    .main-title {
        font-family: var(--font-serif);
        font-size: 3.5rem;
        color: var(--accent-color);
        margin: 0;
        line-height: 1;
    }

    .bio-title {
        font-family: var(--font-serif);
        font-size: 2.2rem;
        color: var(--about-bio-badge-text);
        /* Nature green */
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 10px;
    }

    .text-content {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-color);
    }

    .text-content p {
        margin-bottom: 15px;
    }

    /* Left Section: Brand */
    .brand-section {
        background: var(--about-brand-bg);
        /* Very light pink */
        padding: 60px 40px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: right;
    }

    .separator-line {
        height: 2px;
        width: 50px;
        background: var(--accent-color);
        margin: 20px 0 30px auto;
        /* Right aligned */
        opacity: 0.3;
    }

    .decorative-dots {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(#F8BBD0 2px, transparent 2px);
        background-size: 10px 10px;
        opacity: 0.5;
    }

    .icon-floating {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 8rem;
        color: white;
        opacity: 0.2;
        transform: rotate(-15deg);
    }

    /* Swipe Hint Styling */
    .swipe-hint {
        display: none;
        /* Hidden on desktop */
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Outfit', sans-serif;
        /* FORCE OUTFIT FONT */
        font-weight: 700;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        opacity: 0.7;
        animation: bounceRight 2s infinite;
        white-space: nowrap;
        text-align: center;
        z-index: 10;
        cursor: pointer;
    }

    /* Right Section: Bio */
    .bio-section {
        background: var(--card-bg);
        padding: 60px 50px;
        position: relative;
    }

    .bio-content {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .bio-badge {
        display: inline-block;
        background: var(--about-bio-badge-bg);
        color: var(--about-bio-badge-text);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .bio-text {
        text-align: justify;
    }

    .bio-decoration {
        position: absolute;
        bottom: 10px;
        right: 15px;
        font-size: 10rem;
        color: var(--about-bio-deco);
        /* Super light green */
        z-index: 0;
        opacity: 0.4;
        transform: rotate(15deg);
    }

    /* Photo styling */
    .photo-container {
        position: relative;
        margin-bottom: 25px;
        display: inline-block;
        z-index: 2;
    }

    .photo-frame {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        padding: 5px;
        background: var(--card-bg);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 2px solid var(--about-bio-badge-bg);
        /* Subtle green border */
    }

    .photo-frame img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    .placeholder-photo {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--input-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
    }

    /* Edit Button - Discrete Overlay */
    .photo-edit-form {
        position: absolute;
        bottom: 5px;
        right: 5px;
    }

    /* Instagram Floating Button */
    .instagram-floating-btn {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        /* Official Insta Gradient */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 10;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 4px solid var(--card-bg);
        /* Cutout effect */
        text-decoration: none;
    }

    .instagram-floating-btn:hover {
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* LinkedIn Floating Button */
    .linkedin-floating-btn {
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #0077b5;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 10;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 4px solid var(--card-bg);
        text-decoration: none;
    }

    .linkedin-floating-btn:hover {
        transform: scale(1.15) rotate(-10deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* GitHub Floating Button */
    .github-floating-btn {
        position: absolute;
        bottom: 5px;
        left: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #333;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 10;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 4px solid var(--card-bg);
        text-decoration: none;
    }

    .github-floating-btn:hover {
        transform: scale(1.15) rotate(-10deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .edit-btn {
        background: var(--accent-color);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s;
        font-size: 1.1rem;
    }

    .edit-btn:hover {
        transform: scale(1.1);
        background: var(--primary-dark);
    }

    #about_photo_upload,
    #developer_photo_upload {
        display: none;
    }

    /* Footer Note */
    .footer-note {
        text-align: center;
        margin-top: 30px;
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Mobile Responsiveness - CAROUSEL MODE */
    @media (max-width: 900px) {
        .profile-card {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            grid-template-columns: none;
            gap: 0;
            border-radius: 20px;
        }

        .brand-section,
        .bio-section {
            flex: 0 0 100%;
            width: 100%;
            scroll-snap-align: start;
            padding: 40px 20px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-section {
            background: var(--about-brand-bg);
            text-align: center;
            align-items: center;
        }

        .separator-line {
            margin: 20px auto;
        }

        .icon-floating {
            top: 10px;
            left: 50%;
            transform: translateX(-50%) rotate(-15deg);
            opacity: 0.1;
            font-size: 6rem;
        }

        .main-title {
            font-size: 2.5rem;
        }

        .bio-title {
            font-size: 1.8rem;
        }

        .text-content {
            font-size: 0.95rem;
        }

        /* Show the HTML div hint instead of CSS content */
        .swipe-hint {
            display: block;
        }
    }

    @keyframes bounceRight {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%);
        }

        40% {
            transform: translateX(-50%) translateX(5px);
        }

        60% {
            transform: translateX(-50%) translateX(10px);
        }
    }