 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #FFD700;
            --silver: #C0C0C0;
            --bronze: #CD7F32;
            --dark: #0a0a0a;
            --light: #f5f5f5;
            --accent: #4facfe;
            --accent2: #00f2fe;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
            --card-bg: rgba(25, 25, 45, 0.9);
            --card-border: rgba(79, 172, 254, 0.4);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--text-light);
            overflow-x: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Navigation Bar - Desktop और Mobile दोनों में same */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(8px); /* 20px se 8px kiya (Massive FPS boost) */
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 0;
            z-index: 200;
            transition: all 0.3s ease;
            height: 50px;
            display: flex;
            align-items: center;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold), var(--silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--accent);
        }

        /* Official Website Link - Desktop और Mobile दोनों में */
        .official-website {
            padding: 6px 16px;
            background: linear-gradient(135deg, var(--gold), var(--silver));
            color: var(--dark);
            text-decoration: none;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 32px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
        }

        .official-website:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
            background: linear-gradient(135deg, #ffed4e, #ffdb58);
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
            border-radius: 0 0 8px 0;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        body.loaded .preloader {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid transparent;
            border-top-color: var(--gold);
            border-right-color: var(--silver);
            border-bottom-color: var(--bronze);
            border-radius: 50%;
            animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* SIMPLIFIED BACKGROUND - Performance के लिए */
        .bg-canvas {
            position: fixed;
            inset: 0;
            z-index: -2;
            background: linear-gradient(135deg, 
                #0a0a0a 0%, 
                #1a1a2e 100%);
        }

        .particles {
            position: fixed;
            inset: 0;
            z-index: -1;
            opacity: 0.2;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 30s infinite linear;
            will-change: transform, opacity; /* 🚀 Forces Graphic Card (GPU) to handle particles */
        }

        .particle:nth-child(2n) {
            background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
            animation-delay: -15s;
            animation-duration: 40s;
        }

        .particle:nth-child(3n) {
            background: radial-gradient(circle, var(--silver) 0%, transparent 70%);
            animation-delay: -10s;
            animation-duration: 35s;
            width: 1px;
            height: 1px;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Controls - Language Button */
        .controls {
            position: fixed;
            top: 60px;
            right: 20px;
            display: flex;
            gap: 12px;
            z-index: 300;
            transition: all 0.3s ease;
        }

        .controls.hide {
            opacity: 0;
            transform: translateY(-20px);
            pointer-events: none;
        }

        .control-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            color: var(--text-light);
            font-size: 1em;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn:hover {
            background: rgba(79, 172, 254, 0.3);
            border-color: var(--accent);
            transform: scale(1.1) rotate(10deg);
        }

        .control-btn:focus {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        #langBtn {
            width: auto;
            padding: 0 15px;
            border-radius: 20px;
            font-size: 0.85em;
        }

        /* Mobile में Language Button */
        @media (max-width: 768px) {
            .controls {
                top: 55px;
                right: 10px;
                gap: 8px;
            }
            
            .control-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9em;
            }
            
            #langBtn {
                padding: 0 12px;
                font-size: 0.8em;
                height: 35px;
            }
            
            .navbar {
                height: 45px;
                padding: 6px 0;
            }
            
            .nav-container {
                padding: 0 15px;
            }
            
            .nav-logo {
                font-size: 1.2rem;
            }
            
            .nav-logo-icon {
                width: 24px;
                height: 24px;
            }
            
            .official-website {
                font-size: 0.8rem;
                padding: 5px 12px;
                height: 30px;
            }
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Main Container */
        .container {
            min-height: 100vh;
            padding: 120px 20px 50px;
            overflow-y: auto;
            scroll-behavior: smooth;
        }

        .container::-webkit-scrollbar {
            width: 10px;
        }

        .container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }

        .container::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent), var(--accent2));
            border-radius: 10px;
        }

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 0 auto 80px;
            text-align: center;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.2s;
        }

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

        .profile-section {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }

        .profile-ring {
            width: 200px;
            height: 200px;
            position: relative;
            margin: 0 auto;
        }

        .profile-ring::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--gold), var(--silver), var(--bronze), var(--accent));
            animation: rotate 4s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            to { transform: rotate(360deg); }
        }

        .profile-pic {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--dark);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .profile-pic:hover {
            transform: scale(1.05);
            box-shadow: 0 30px 80px rgba(79, 172, 254, 0.4);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin: 20px 0 10px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--silver) 50%, var(--bronze) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: slideInUp 1s ease forwards 0.5s;
        }

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

        .hero-intro {
            font-size: clamp(1rem, 2vw, 1.3rem);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Content Grid - IMPROVED CARDS */
        .content-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 30px;
        }

        /* Enhanced Card Design with Better Visibility */
        .section-card {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid transparent;
            padding: 30px;
            transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;

            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Gradient Border Effect */
        .section-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                var(--accent), 
                var(--accent2),
                var(--gold),
                var(--silver));
            border-radius: 22px;
            z-index: -1;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .section-card:hover::before {
            opacity: 0.8;
        }

        .section-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--card-bg);
            border-radius: 20px;
            z-index: -1;
        }

        .section-card:nth-child(2) { animation-delay: 0.1s; }
        .section-card:nth-child(3) { animation-delay: 0.2s; }
        .section-card:nth-child(4) { animation-delay: 0.3s; }
        .section-card:nth-child(5) { animation-delay: 0.4s; }

        .section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(79, 172, 254, 0.2);
        }

        /* Card Content Styling for Better Readability */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
            padding: 5px;
            border-radius: 12px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .section-header:hover {
            background: rgba(79, 172, 254, 0.05);
        }

        .section-header.active {
            background: rgba(79, 172, 254, 0.1);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 0 2px 10px rgba(79, 172, 254, 0.3);
        }

        .section-icon {
            font-size: 1.5em;
            filter: drop-shadow(0 0 10px var(--accent));
        }

        .toggle-icon {
            font-size: 1.5em;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            color: var(--accent);
        }

        .section-header.active .toggle-icon {
            transform: rotate(180deg) scale(1.2);
        }

        .section-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }

        .section-content.active {
            opacity: 1;
        }

        .section-inner {
            padding-top: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Skills */
        .skill-item {
            margin: 20px 0;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

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

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            border-radius: 10px;
            position: relative;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
        }

        .skill-progress::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            to { transform: translateX(100%); }
        }

        /* List Items - Better Visibility */
        .info-list {
            list-style: none;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideOutRight {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100px);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .info-list li span {
            color: var(--accent);
            font-weight: bold;
        }

        .info-list li:hover {
            padding-left: 15px;
            color: var(--accent);
        }

        /* Contact Form */
        .contact-form {
            display: grid;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent);
            font-weight: 500;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(79, 172, 254, 0.2);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            display: grid;
            gap: 15px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-item:hover {
            background: rgba(79, 172, 254, 0.1);
            transform: translateX(5px);
        }

        .contact-item a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }

        /* Buttons */
        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;

            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: white;
            box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        /* Social Links - COMPACT DESIGN */
       

  /* Grid already hoga, ye sirf confirm */
.social-link.full-width {
    grid-column: 1 / -1;
}

/* Main card */
.google-search {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 16px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);

    text-decoration: none;
    color: #ffffff;

    font-weight: 600;
    overflow: hidden;          /* 👈 VERY IMPORTANT */
}

/* Single line force */
.google-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    white-space: nowrap;       /* 👈 LINE BREAK STOP */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Highlighted brand */
.brand-name {
    font-size: 1.15em;
    font-weight: 900;
    color: #b388ff;
    
    
}

/* Mobile safety (very small screens) */
@media (max-width: 360px) {
    .google-search {
        font-size: 0.95rem;
    }
}
        
        .social-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            padding: 12px 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            text-align: center;
            text-decoration: none;
            color: var(--text-light);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 70px;
        }
        

        .social-link:hover {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            max-width: 1000px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 0, 0, 0.5);
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 25px;
        }

        .modal iframe {
            width: 100%;
            height: 70vh;
            border: none;
            border-radius: 15px;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            aspect-ratio: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.2) rotate(5deg);
        }

        .gallery-item::after {
            content: '🔍';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .controls {
                top: 50px;
                right: 10px;
                gap: 8px;
            }

            .control-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9em;
            }
            
            #langBtn {
                padding: 0 12px;
                font-size: 0.8em;
                height: 35px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .profile-ring,
            .profile-pic {
                width: 150px;
                height: 150px;
            }

            .section-card {
                padding: 20px;
            }

            .section-title {
                font-size: 1.4rem;
            }

            /* Social Grid - Mobile में 2 columns */
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .social-link {
                padding: 10px 6px;
                font-size: 0.85rem;
                min-height: 65px;
            }

            .modal-content {
                padding: 25px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 12px;
            }
            
            .container {
                padding: 110px 15px 50px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            
            .social-link {
                font-size: 0.8rem;
                min-height: 60px;
                padding: 8px 4px;
            }
        }

        /* Print */
        @media print {
            .controls,
            .back-to-top,
            .preloader,
            .bg-canvas,
            .particles {
                display: none !important;
            }

            body {
                background: white;
                color: black;
            }

            .section-content {
                max-height: none !important;
            }
        }