
           



            /* =============
            HERO SECTION
            ============= */

        
        /* Custom animations & 3D space config */
        .perspective-1000 {
            perspective: 1000px;
        }
        .preserve-3d {
            transform-style: preserve-3d;
        }
        
        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .animate-spin-slow {
            animation: spin-slow 15s linear infinite;
        }

        @keyframes float-hand {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }
        .animate-float-hand {
            animation: float-hand 6s ease-in-out infinite;
        }

        /* Pure CSS Golden Metallic Hand Simulation shapes */
        .gold-metallic {
            background: linear-gradient(135deg, #e5c060 0%, #b08926 40%, #fceabc 70%, #967012 100%);
            box-shadow: inset -2px -2px 6px rgba(0,0,0,0.4), inset 2px 2px 6px rgba(255,255,255,0.4);
        }
        
        /* ===================================
                    SERVICE CSS
        =================================== */
@keyframes isometricFloat {
            0%, 100% { transform: translateY(0) rotateX(60deg) rotateZ(-45deg); }
            50% { transform: translateY(-12px) rotateX(60deg) rotateZ(-45deg); }
        }
        .animate-iso-float {
            animation: isometricFloat 5s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.05); }
        }
        .animate-pulse-glow {
            animation: pulseGlow 4s ease-in-out infinite;
        }
/* 
======================================
            BENEFIT CSS
====================================== */

   /* ===== SLIDER CONTAINER ===== */
        .slider-perspective {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            perspective: 1200px;
        }

        /* ===== TRACK ===== */
        .slider-track {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            will-change: transform;
            padding: 10px 0;
            transition: transform 0.8s cubic-bezier(0.34, 1.2, 0.64, 1);
        }

        /* ===== CARDS ===== */
  .slide-card {
            flex: 0 0 360px;
            /* significantly increased from 280px */
            background: #ffffff;
            border-radius: 32px;
            padding: 50px 58px 46px;
            text-align: center;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            transition: all 0.8s cubic-bezier(0.34, 1.2, 0.64, 1);
            will-change: transform, filter, box-shadow, opacity;
            position: relative;
            border: 2px solid transparent;
            transform: scale(0.80) rotateY(3deg);
            filter: blur(4px) brightness(0.75);
            opacity: 0.4;
            pointer-events: none;
        }
        /* ===== CENTER CARD ===== */
        .slide-card.center-card {
            transform: scale(1.08) rotateY(0deg);
            filter: blur(0px) brightness(1.1);
            opacity: 1;
            pointer-events: auto;
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow:
                0 0 30px rgba(59, 130, 246, 0.15),
                0 0 60px rgba(59, 130, 246, 0.08),
                0 20px 60px rgba(0, 0, 0, 0.08),
                inset 0 0 40px rgba(59, 130, 246, 0.03);
            z-index: 10;
        }

        .slide-card.center-card::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 28px;
            /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5)); */
            z-index: -1;
            animation: glowPulse 2.4s ease-in-out infinite alternate;
            filter: blur(12px);
            opacity: 0.6;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.3;
                transform: scale(0.98);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.04);
            }
        }

        .slide-card .icon-wrap img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            transition: transform 0.6s ease;
        }

        .slide-card.center-card .icon-wrap img {
            transform: scale(1.1);
        }

        .slide-card .accent-line {
            width: 40px;
            height: 4px;
            border-radius: 4px;
            transition: width 0.6s ease, background 0.6s ease;
        }

        .slide-card.center-card .accent-line {
            width: 56px;
        }

        /* ===== NAV BUTTONS ===== */
        .nav-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #78581B;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(203, 213, 225, 0.5);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            color: #ffffff;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 30;
        }

        .nav-btn:hover {
            background: #ffffff;
            color: black;
            border-color: #94a3b8;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
            transform: scale(1.05);
        }

        .nav-btn:active {
            transform: scale(0.94);
        }

        /* ===== PAGINATION ===== */
        #paginationContainer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
        }

        .page-dot {
            width: 10px;
            height: 10px;
            border-radius: 20px;
            background: #d1d5db;
            transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            border: none;
            padding: 0;
            flex-shrink: 0;
        }

        .page-dot.active {
            width: 34px;
            background: #78581B;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.30);
        }

        .page-dot:hover:not(.active) {
            background: #9ca3af;
            transform: scale(1.2);
        }

        /* ===== GLOW ORB ===== */
        .glow-orb {
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 80%);
            transition: left 0.8s cubic-bezier(0.34, 1.2, 0.64, 1), top 0.8s cubic-bezier(0.34, 1.2, 0.64, 1);
            will-change: left, top;
            opacity: 0;
            filter: blur(40px);
        }

        .glow-orb.visible {
            opacity: 1;
        }

        /* ===== AUTO INDICATOR ===== */
        .auto-indicator {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 14px;
            align-items: center;
            font-size: 12px;
            color: #94a3b8;
            letter-spacing: 0.3px;
        }

        .auto-indicator .pause-btn {
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            font-size: 14px;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .auto-indicator .pause-btn:hover {
            background: #f1f5f9;
            color: #475569;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .slide-card {
                flex: 0 0 160px;
                padding: 18px 14px 16px;
            }
            .slide-card.center-card {
                transform: scale(1.04) rotateY(0deg);
            }
            .slide-card .icon-wrap img {
                width: 38px;
                height: 38px;
            }
            .slider-track {
                gap: 14px;
            }
            .nav-btn {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
            .glow-orb {
                width: 200px;
                height: 200px;
                filter: blur(30px);
            }
        }

        @media (max-width: 480px) {
            .slide-card {
                flex: 0 0 140px;
                padding: 14px 10px 12px;
            }
            .slide-card.center-card {
                transform: scale(1.02) rotateY(0deg);
            }
            .slide-card .icon-wrap img {
                width: 32px;
                height: 32px;
            }
            .slider-track {
                gap: 10px;
            }
            .nav-btn {
                width: 32px;
                height: 32px;
                font-size: 11px;
            }
        }

        .rotate{
transform-origin:center;
animation:spin 12s linear infinite;
}
.pulse{
animation:pulse 2s infinite;
}
@keyframes spin{
to{transform:rotate(360deg);}
}
@keyframes pulse{
50%{transform:scale(1.08);}
}


.bar{
transform-origin:bottom;
animation:grow 2s infinite alternate;
}
.coin{
animation:float 2s infinite;
}
@keyframes grow{
from{transform:scaleY(.4);}
to{transform:scaleY(1);}
}
@keyframes float{
50%{transform:translateY(-10px);}
}


.rotate{
transform-origin:center;
animation:spin 18s linear infinite;
}
.float{
animation:float 3s infinite;
}
@keyframes spin{
to{transform:rotate(360deg);}
}
@keyframes float{
50%{transform:translateY(-8px);}
}



        /*
        =======================
                ABOUT CSS
        ======================= */
        /* ── Google Fonts ── */
        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Chango&display=swap');

     

     

        /* ── main section wrapper ── */
        .section-wrap {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 40px;
            box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.06);
        }

        /* ── grid ── */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        /* ── LEFT CONTENT ── */
        .about-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .about-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-left .badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: #2563eb;
            background: rgba(219, 234, 254, 0.7);
            padding: 0.35rem 1rem;
            border-radius: 9999px;
            letter-spacing: 0.05em;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(191, 219, 254, 0.5);
            margin-bottom: 0.5rem;
        }
        .about-left .badge i {
            color: #facc15;
            margin-right: 4px;
        }

        .about-left h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-top: 0.5rem;
            line-height: 1.2;
        }
        .about-left h2 .highlight {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Chango', cursive;
            font-size: 2.2rem;
            display: inline-block;
        }

        .about-left p {
            color: #64748b;
            line-height: 1.8;
            max-width: 540px;
            font-size: 1.05rem;
            margin-top: 0.75rem;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 1.5rem;
        }

        .btn-primary,
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0.85rem 2rem;
            border-radius: 16px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #78581B;
            color: #fff;
            box-shadow: 0 12px 28px -8px rgba(37, 99, 235, 0.35);
        }
        .btn-primary:hover {
            transform: scale(1.04);
            box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.45);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.6);
            color: #334155;
            border: 1px solid #e2e8f0;
            backdrop-filter: blur(4px);
        }
        .btn-outline:hover {
            border-color: #93c5fd;
            background: rgba(239, 246, 255, 0.6);
        }
        .btn-outline i {
            color: #3b82f6;
        }

        /* ── RIGHT CONTENT ── */
        .about-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
            position: relative;
        }
        .about-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Glass card */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 28px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            transition: box-shadow 0.4s ease;
        }
        .glass-card:hover {
            box-shadow: 0 40px 80px -20px rgba(37, 99, 235, 0.12),
                0 0 0 2px rgba(37, 99, 235, 0.04) inset;
        }

        /* animated top border */
        /* .gradient-bar {
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
            background-size: 300% 100%;
            animation: slideGradient 4s linear infinite;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
        } */
        @keyframes slideGradient {
            0% {
                background-position: 0% 0%;
            }
            100% {
                background-position: 300% 0%;
            }
        }

        /* Owner row */
        .owner-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 24px;
            margin-bottom: 20px;
        }

        .owner-avatar {
            position: relative;
            flex-shrink: 0;
            width: 230px;
            height: 230px;
        }
        .owner-avatar::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            padding: 3px;
            background: #78581B;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: spinRing 6s linear infinite;
        }
        @keyframes spinRing {
            to {
                transform: rotate(360deg);
            }
        }

        .owner-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 12px 30px -8px rgba(37, 99, 235, 0.2);
            transition: transform 0.4s ease;
            display: block;
        }
        .owner-avatar:hover img {
            transform: scale(1.05) rotate(-2deg);
        }

        .owner-title h4 {
            font-size: 1.65rem;
            font-weight: 700;
            color: #78581B;
            line-height: 1.2;
        }
        .owner-title .role {
            font-size: 0.95rem;
            font-weight: 600;
            color: #0f172a;
            margin-top: 2px;
        }
        .owner-title .sub-role {
            font-size: 0.8rem;
            font-weight: 500;
            color: #94a3b8;
        }

        /* Divider */
        .divider {
            border: none;
            border-top: 1px solid rgba(226, 232, 240, 0.6);
            margin: 20px 0 18px;
        }

        /* Testimonial mini */
        .testimonial-mini {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .testimonial-mini i {
            color: #78581B;
            font-size: 1.4rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        .testimonial-mini p {
            font-size: 1.05rem;
            font-style: italic;
            color: #475569;
            line-height: 1.5;
        }

        /* Floating blobs */
        .blob-top {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.06);
            filter: blur(40px);
            pointer-events: none;
        }
        .blob-bottom {
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.06);
            filter: blur(40px);
            pointer-events: none;
        }

        /* ── RESPONSIVE ── */

        /* Tablets & small laptops */
        @media (max-width: 1024px) {
            .about-grid {
                gap: 32px;
            }
            .about-left h2 {
                font-size: 2.2rem;
            }
            .about-left h2 .highlight {
                font-size: 2rem;
            }
            .owner-avatar {
                width: 110px;
                height: 110px;
            }
            .owner-title h4 {
                font-size: 1.4rem;
            }
        }

        /* Mobile */
        @media (max-width: 820px) {
            .section-wrap {
                padding: 40px 16px;
                border-radius: 28px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-left {
                text-align: center;
            }
            .about-left p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                font-size: 1rem;
            }
            .btn-group {
                justify-content: center;
            }

            .about-left h2 {
                font-size: 2rem;
                white-space: normal;
                /* 👈 overwrites any nowrap */
                word-break: break-word;
            }
            .about-left h2 .highlight {
                font-size: 1.8rem;
                display: inline-block;
            }

            .owner-row {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .owner-avatar {
                width: 140px;
                height: 140px;
            }

            .owner-title h4 {
                font-size: 1.6rem;
            }
            .owner-title .role {
                font-size: 0.9rem;
            }

            .testimonial-mini {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .testimonial-mini i {
                font-size: 1.6rem;
            }
            .testimonial-mini p {
                font-size: 1rem;
            }

            .glass-card {
                padding: 24px 18px;
                border-radius: 24px;
            }

            .blob-top,
            .blob-bottom {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .section-wrap {
                padding: 28px 12px;
                border-radius: 20px;
            }

            .about-left h2 {
                font-size: 1.6rem;
            }
            .about-left h2 .highlight {
                font-size: 1.4rem;
            }
            .about-left p {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .btn-primary,
            .btn-outline {
                padding: 0.7rem 1.4rem;
                font-size: 0.85rem;
                border-radius: 14px;
            }
            .btn-group {
                gap: 12px;
            }

            .owner-avatar {
                width: 150px;
                height: 150px;
            }
            .owner-title h4 {
                font-size: 1.3rem;
            }
            .owner-title .role {
                font-size: 0.8rem;
            }
            .owner-title .sub-role {
                font-size: 0.7rem;
            }

            .glass-card {
                padding: 20px 14px;
                border-radius: 20px;
            }

            .testimonial-mini p {
                font-size: 0.9rem;
            }

            .about-right {
                transform: translateX(0);
                opacity: 1;
            }
            .about-left {
                transform: translateX(0);
                opacity: 1;
            }
            /* disable scroll animations on very small screens for better UX */
            .about-left.visible,
            .about-right.visible {
                transform: none;
            }
        }

        /* Extra small (<= 360px) */
        @media (max-width: 380px) {
            .about-left h2 {
                font-size: 1.3rem;
            }
            .about-left h2 .highlight {
                font-size: 1.2rem;
            }
            .owner-avatar {
                width: 90px;
                height: 90px;
            }
            .btn-primary,
            .btn-outline {
                padding: 0.6rem 1rem;
                font-size: 0.75rem;
                gap: 6px;
            }
            .glass-card {
                padding: 16px 12px;
            }
        }


        /* 
       =======================
        OUR SERVICE 
       ======================= 
    /* Smooth scale animation utility */
        @keyframes scaleUpIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-card-fade {
            animation: scaleUpIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }
        
        
        /* =============
        CTA SECTON
        ============= */
          @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&display=swap');

        * {
            font-family: 'Outfit', sans-serif;
        }

        /* ----- Animated gradient background ----- */
        .bg-live-gradient {
            background: #e1c386;
            background-size: 400% 400%;
            animation: gradientShift 12s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* ----- Floating particles (absolute positioned) ----- */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(5, 116, 122, 0.436);
            animation: floatParticle 8s ease-in-out infinite alternate;
            pointer-events: none;
        }

        @keyframes floatParticle {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            100% {
                transform: translate(40px, -30px) scale(1.6);
                opacity: 0.8;
            }
        }

        /* ----- Rotating 3D Ring (decorative) ----- */
        .ring-3d {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px solid rgba(208, 0, 255, 0.54);
            top: 50%;
            left: 70%;
            transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
            animation: spinRing3D 20s linear infinite;
            pointer-events: none;
            will-change: transform;
        }

        .ring-3d::before {
            content: '';
            position: absolute;
            inset: 20px;
            border-radius: 50%;
            border: 2px dashed rgba(81, 3, 80, 0.458);
            animation: spinRing3D 12s linear infinite reverse;
        }

        .ring-3d::after {
            content: '';
            position: absolute;
            inset: 50px;
            border-radius: 50%;
            border: 2px solid rgba(132, 6, 157, 0.5);
            animation: spinRing3D 15s linear infinite;
        }

        @keyframes spinRing3D {
            to {
                transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
            }
        }

        /* ----- Typewriter effect (optional, we'll use a static but animated gradient text) ----- */
        .heading-gradient {
            background: linear-gradient(135deg, #ffffff, #94a3b8, #e2e8f0, #ffffff);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmerText 4s ease-in-out infinite;
        }

        @keyframes shimmerText {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* ----- Glowing border on buttons ----- */
        .btn-glow {
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            padding: 2px;
            background: conic-gradient(from 0deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .btn-glow:hover::before {
            opacity: 1;
            animation: spinGlow 2s linear infinite;
        }

        @keyframes spinGlow {
            to {
                transform: rotate(360deg);
            }
        }

        /* ----- Magnetic tilt for buttons ----- */
        .magnetic {
            transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform;
        }

        /* ----- Floating phone icon (animated) ----- */
        .phone-icon {
            animation: ringPhone 2s ease-in-out infinite;
        }

        @keyframes ringPhone {
            0%,
            100% {
                transform: rotate(0deg);
            }
            10% {
                transform: rotate(15deg);
            }
            20% {
                transform: rotate(-15deg);
            }
            30% {
                transform: rotate(10deg);
            }
            40% {
                transform: rotate(-10deg);
            }
            50% {
                transform: rotate(5deg);
            }
            60% {
                transform: rotate(0deg);
            }
        }

        /* ----- Responsive ring hiding ----- */
        @media (max-width: 768px) {
            .ring-3d {
                display: none;
            }
            .particle {
                display: none;
            }
        }