   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            /* fixed */
        }

        html {
            scroll-behavior: smooth;

        }

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        /* ================= LUXURY BACKGROUND ================= */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(240, 158, 31, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(129, 197, 196, 0.03) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
        }

        #particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .avatar-section,
        .about-page,
        .text-about {
            position: relative;
            z-index: 2;
        }

        /* ================= LUXURY SHOOTING LINES ================= */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .bg-animation span {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #fff;
            border-radius: 50%;
            box-shadow:
                0 0 0 6px rgba(240, 158, 31, 0.15),
                0 0 0 12px rgba(240, 158, 31, 0.05),
                0 0 30px rgba(240, 158, 31, 0.3),
                0 0 60px rgba(129, 197, 196, 0.2);
            animation: shoot linear infinite;
            opacity: 0;
        }

        .bg-animation span::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 1px;
            background: linear-gradient(90deg, rgba(240, 158, 31, 0.5), transparent);
        }

        .bg-animation span:nth-child(1) {
            top: 10%;
            left: 20%;
            animation-duration: 8s;
            animation-delay: 2s;
        }

        .bg-animation span:nth-child(2) {
            top: 30%;
            left: 80%;
            animation-duration: 10s;
            animation-delay: 5s;
        }

        .bg-animation span:nth-child(3) {
            top: 60%;
            left: 10%;
            animation-duration: 12s;
            animation-delay: 3s;
        }

        .bg-animation span:nth-child(4) {
            top: 20%;
            left: 60%;
            animation-duration: 9s;
            animation-delay: 7s;
        }

        .bg-animation span:nth-child(5) {
            top: 70%;
            left: 40%;
            animation-duration: 11s;
            animation-delay: 4s;
        }

        @keyframes shoot {
            0% {
                transform: rotate(315deg) translateX(0);
                opacity: 0;
            }

            5% {
                opacity: 1;
            }

            95% {
                opacity: 1;
            }

            100% {
                transform: rotate(315deg) translateX(-1000px);
                opacity: 0;
            }
        }

        /* ================= AVATAR SECTION - LUXURIOUS ================= */
        .avatar-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            color: #fff;
            padding: 20px;
            z-index: 2;
            background: linear-gradient(180deg, transparent 0%, rgba(240, 158, 31, 0.02) 100%);
        }

        canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .avatar-box {
            position: relative;
            width: clamp(240px, 35vw, 400px);
            height: clamp(240px, 35vw, 400px);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
            z-index: 3;
            will-change: transform;
        }

        .avatar-box::before {
            content: "";
            position: absolute;
            width: 85%;
            height: 85%;
            border-radius: 50%;
            border: 2px solid rgba(240, 158, 31, 0.4);
            animation: pulse 3s infinite;
            box-shadow: 0 0 40px rgba(240, 158, 31, 0.2);
        }

        .avatar-box::after {
            content: "";
            position: absolute;
            width: 70%;
            height: 70%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            backdrop-filter: blur(15px);
        }

        .avatar-box img {
            width: 65%;
            height: 65%;
            border-radius: 50%;
            border: 4px solid #F09E1F;
            z-index: 3;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow:
                0 0 40px rgba(240, 158, 31, 0.4),
                inset 0 0 40px rgba(240, 158, 31, 0.1),
                0 20px 60px rgba(0, 0, 0, 0.6);
        }

        .avatar-box:hover img {
            transform: scale(1.15) rotate(5deg);
            box-shadow:
                0 0 60px rgba(240, 158, 31, 0.6),
                inset 0 0 40px rgba(240, 158, 31, 0.2),
                0 30px 80px rgba(0, 0, 0, 0.8);
        }

        .glow {
            position: absolute;
            width: 90%;
            height: 90%;
            border-radius: 50%;
            background: conic-gradient(#F09E1F, #81C5C4, #F09E1F);
            animation: rotate 8s linear infinite;
            filter: blur(30px);
            opacity: 0.6;
        }

        h1 {
            margin-top: 30px;
            font-size: clamp(28px, 6vw, 48px);
            font-weight: 700;
            letter-spacing: 3px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #F09E1F 0%, #81C5C4 50%, #F09E1F 100%) text;
            background-size: 200% 200%;
            -webkit-text-fill-color: transparent;
            font-family: 'Playfair Display', serif;
            animation: gradientShift 8s ease infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .typing {
            margin-top: 15px;
            font-size: clamp(16px, 3.5vw, 22px);
            color: #81C5C4;
            min-height: 28px;
            font-weight: 500;
            letter-spacing: 2px;
        }

        .reveal-text {
            margin-top: 20px;
            max-width: 700px;
            font-size: clamp(15px, 3vw, 18px);
            color: #ccc;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 1.2s ease forwards;
            animation-delay: 2s;
            letter-spacing: 1px;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            70% {
                transform: scale(1.15);
                opacity: 0;
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ================= GALLERY SECTION - LUXURIOUS ================= */
        .about-page {
            padding: 120px 200px 50px 210px;
            display: flex;
            gap: 3px;
            opacity: 0;
            transform: translateY(60px);
            background: linear-gradient(180deg, rgba(240, 158, 31, 0.02) 0%, transparent 100%);
        }

        .about-page.reveal {
            animation: pageReveal 1s ease forwards;
        }

        @keyframes pageReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-page .about-inner {
            height: 450px;
            width: 24%;
            border: 2px dotted #F09E1F;
            border-radius: 12px;
            box-shadow:
                0 0 60px rgba(240, 158, 31, 0.3),
                inset 0 0 30px rgba(240, 158, 31, 0.05);
            opacity: 0;
            transform: scale(0.75) translateY(50px);
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-page .about-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(240, 158, 31, 0.2) 0%, transparent 100%);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-page .about-inner:hover::before {
            opacity: 1;
        }

        .about-page .about-inner.item-reveal {
            animation: itemReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .about-page .about-inner:nth-child(1).item-reveal {
            animation-delay: 0.1s;
        }

        .about-page .about-inner:nth-child(2).item-reveal {
            animation-delay: 0.3s;
        }

        .about-page .about-inner:nth-child(3).item-reveal {
            animation-delay: 0.5s;
        }

        .about-page .about-inner:nth-child(4).item-reveal {
            animation-delay: 0.7s;
        }

        @keyframes itemReveal {
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .about-page .about-inner img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-page .about-inner:hover img {
            transform: scale(1.12) rotate(2deg);
            filter: brightness(1.3) saturate(1.2) contrast(1.1);
        }

        /* ================= ABOUT WRAPPER ================= */
        .avatar-section,
        .about-page,
        .about-wrapper {
            position: relative;
            z-index: 2;
        }

        .about-wrapper {
            position: relative;
            overflow: visible;
            padding: 80px 20px;
            min-height: 120vh;
            display: flex;
            align-items: center;
            justify-content: center;
            isolation: isolate;
            background: linear-gradient(180deg, rgba(129, 197, 196, 0.02) 0%, transparent 100%);

        }

        .about-container {
            max-width: 800px;
            /* सही container width */
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ================= TEXT ABOUT ================= */
        .text-about {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(40px);
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, rgba(240, 158, 31, 0.05) 0%, rgba(129, 197, 196, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(240, 158, 31, 0.2);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
        }

        .text-about.reveal {
            animation: textReveal 1s ease forwards;
        }

        @keyframes textReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .premium-heading {
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.4;
            font-family: 'Playfair Display', serif;
        }

        .premium-heading .line {
            display: block;
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 900;
            color: #fff;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(60px);
        }

        .premium-heading .line.line-reveal {
            animation: lineReveal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .premium-heading .line:nth-child(2).line-reveal {
            animation-delay: 0.2s;
        }

        @keyframes lineReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .premium-heading .highlight {
            background: linear-gradient(135deg, #F09E1F 0%, #81C5C4 100%) text;
            -webkit-text-fill-color: transparent;
            font-size: 1.1em;
        }

        .premium-heading::after {
            content: "";
            display: block;
            width: 0;
            height: 4px;
            margin: 20px auto 0;
            background: linear-gradient(90deg, #F09E1F, #81C5C4);
            border-radius: 10px;
            transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
            box-shadow: 0 0 20px rgba(240, 158, 31, 0.5);
        }

        .premium-heading.heading-reveal::after {
            width: 150px;
        }

        .text-about p {
            color: #ddd;
            font-size: 16px;
            line-height: 2;
            margin-bottom: 30px;
            padding: 25px 30px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid transparent;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            letter-spacing: 0.5px;
        }

        .text-about p.p-reveal {
            animation: pReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .text-about p:nth-of-type(1).p-reveal {
            animation-delay: 0.2s;
        }

        .text-about p:nth-of-type(2).p-reveal {
            animation-delay: 0.35s;
        }

        .text-about p:nth-of-type(3).p-reveal {
            animation-delay: 0.5s;
        }

        .text-about p:nth-of-type(4).p-reveal {
            animation-delay: 0.65s;
        }

        .text-about p:nth-of-type(5).p-reveal {
            animation-delay: 0.8s;
        }

        .text-about p:nth-of-type(6).p-reveal {
            animation-delay: 0.95s;
        }

        @keyframes pReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-about p:hover {
            border-left: 4px solid #F09E1F;
            background: rgba(240, 158, 31, 0.08);
            transform: translateX(12px);
            box-shadow:
                0 10px 40px rgba(240, 158, 31, 0.3),
                inset 0 0 20px rgba(240, 158, 31, 0.05);
        }

        /* ================= LUXURY STICKY IMAGES ================= */
        .left-image-box,
        .right-image-box {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            height: 580px;
            width: 280px;
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            z-index: 8;
            pointer-events: none;
        }

        /* LEFT */
        .left-image-box {
            left: 40px;
            border: 3px solid #F09E1F;
            box-shadow:
                0 0 80px rgba(240, 158, 31, 0.5),
                0 20px 60px rgba(240, 158, 31, 0.3),
                inset 0 0 40px rgba(240, 158, 31, 0.15),
                0 0 0 1px rgba(240, 158, 31, 0.3);
            backdrop-filter: blur(10px);
        }

        /* RIGHT */
        .right-image-box {
            right: 40px;
            border: 3px solid #81C5C4;
            box-shadow:
                0 0 80px rgba(129, 197, 196, 0.5),
                0 20px 60px rgba(129, 197, 196, 0.3),
                inset 0 0 40px rgba(129, 197, 196, 0.15),
                0 0 0 1px rgba(129, 197, 196, 0.3);
            backdrop-filter: blur(10px);
        }

        .left-image-box img,
        .right-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .left-image-box::before,
        .right-image-box::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: auto;
        }

        .left-image-box::before {
            background: linear-gradient(135deg, rgba(240, 158, 31, 0.3) 0%, transparent 70%);
        }

        .right-image-box::before {
            background: linear-gradient(225deg, rgba(129, 197, 196, 0.3) 0%, transparent 70%);
        }

        .left-image-box:hover::before,
        .right-image-box:hover::before {
            opacity: 1;
        }

        .left-image-box:hover img {
            transform: scale(1.15) rotate(-8deg) skewY(3deg);
            filter: brightness(1.4) contrast(1.3) hue-rotate(8deg) saturate(1.2);
        }

        .right-image-box:hover img {
            transform: scale(1.15) rotate(8deg) skewY(-3deg);
            filter: brightness(1.4) contrast(1.3) hue-rotate(-8deg) saturate(1.2);
        }

        .left-image-box:hover img {
            transform: scale(1.12) rotate(2deg);
            filter: brightness(1.3) saturate(1.2) contrast(1.1);
        }

        /* ================= RESPONSIVE ================= */
        @media screen and (max-width:1200px) {

            .left-image-box,
            .right-image-box {
                display: none !important;
            }

            .text-about {
                padding: 40px 30px;
            }
        }

        @media screen and (max-width:990px) {
            .about-page {
                padding: 100px 50px 30px 50px;
            }
        }

        @media screen and (max-width:768px) {
            .text-about p {
                font-size: 14px;
                padding: 18px 20px;
                line-height: 1.8;
            }
        }

        @media screen and (max-width:479px) {
            .about-page {
                padding: 40px 10px 10px 14px;
            }

            .about-page .about-inner {
                height: 200px;
            }

            .text-about {
                padding: 30px 20px;
                margin: 0 10px;
            }
        }

        @media screen and (max-width:1300px) {

            .left-image-box,
            .right-image-box {
                display: none;
            }
        }