

 :root {
            --primary: #6A0DAD;   
            --secondary: #FF6B8B;  
            --accent: #00C9B1;     
            --dark: #2D2B55;       
            --light: #F7F9FF;      
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --card-bg: rgba(255, 255, 255, 0.9);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #444;
            background: linear-gradient(135deg, #E6E9FF 0%, #F2F6FF 100%);
            line-height: 1.6;
        }

        .intro {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem;
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 107, 139, 0.15), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(0, 201, 177, 0.18), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(106, 13, 173, 0.18), transparent 55%),
                linear-gradient(135deg, #FFF6FB 0%, #F2F6FF 100%);
        }

        .intro-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 24px;
            padding: 3.5rem 3rem;
            text-align: center;
            max-width: 640px;
            width: 100%;
            box-shadow: 0 18px 45px rgba(45, 43, 85, 0.18);
            border: 1px solid rgba(106, 13, 173, 0.08);
            animation: fadeIn 0.9s ease-out;
        }

        .intro-eyebrow {
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 0.6rem;
        }

        .intro-card h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.6rem, 5vw, 3.6rem);
            margin-bottom: 0.6rem;
            color: var(--dark);
        }

        .intro-subtitle {
            font-size: 1.1rem;
            color: #5a5874;
            margin-bottom: 2.2rem;
        }

        .intro-button {
            border: none;
            cursor: pointer;
            background: var(--gradient);
            color: white;
            font-size: 1rem;
            padding: 0.9rem 2.5rem;
            border-radius: 999px;
            font-weight: 600;
            letter-spacing: 0.03em;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .intro-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(107, 4, 135, 0.25);
        }

        .site-content {
            display: none;
        }

        body.revealed .site-content {
            display: block;
        }

        body.revealed .intro {
            display: none;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(107, 4, 135, 0.1);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .navdiv {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .logo a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .logo a:hover::after {
            width: 100%;
        }
        
        .navbar ul {
            display: flex;
            gap: 2rem;
        }
        
        .navbar li {
            list-style: none;
        }
        
        .navbar li a {
            color: var(--dark);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .navbar li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .navbar li a:hover::after {
            width: 100%;
        }
        
        .signup-link {
            background: var(--gradient);
            color: white !important;
            padding: 0.5rem 1.5rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .signup-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
        }
        
        .signup-link::after {
            display: none;
        }
        
        /* Sections */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* About Section */
        #About {
            padding-top: 8rem;
            text-align: center;
        }
        
        .image-wrapper {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(107, 4, 135, 0.1);
            margin-bottom: 3rem;
        }
        
        .photo {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(107, 4, 135, 0.2);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .photo:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(107, 4, 135, 0.3);
        }
        
        /* Container for YouTube section */
        .container {
            display: flex;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        
        .left, .right {
            flex: 1;
            min-width: 300px;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(107, 4, 135, 0.1);
        }
        
        .left {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        iframe {
            width: 100%;
            height: 315px;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .asap {
            background: var(--gradient);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .asap:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(107, 4, 135, 0.3);
        }
        
        /* Form Styling */
        #contact-section {
            padding-top: 8rem;
            min-height: calc(100vh - 200px);
        }

        .form-container {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(107, 4, 135, 0.12);
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
            border: 2px solid rgba(107, 4, 135, 0.08);
            backdrop-filter: blur(10px);
        }
        
        .form-container h2 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 2rem;
        }
        
        .form-container h2 i {
            margin-right: 0.8rem;
            color: var(--secondary);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }
        
        label i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            font-size: 1rem;
            background: #f9f9f9;
        }
        
        textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(107, 4, 135, 0.15);
            transform: translateY(-2px);
        }
        
        input[type="submit"] {
            background: var(--gradient);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            padding: 1rem;
            transition: all 0.3s ease;
            font-size: 1rem;
            margin-top: 0.5rem;
            position: relative;
            overflow: hidden;
        }
        
        input[type="submit"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }
        
        input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(107, 4, 135, 0.3);
        }
        
        input[type="submit"]:hover::before {
            left: 100%;
        }
        
        input[type="submit"]:active {
            transform: translateY(-1px);
        }
        
        /* Qualifications, Skills, Certificates */
        #Qualifications, #Skills, #certificates {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem auto;
            box-shadow: 0 10px 30px rgba(107, 4, 135, 0.1);
        }
        
        #Qualifications ul, #Skills ul, #certificates ul {
            list-style: none;
        }
        
        #Qualifications li, #Skills li, #certificates li {
            margin-bottom: 1rem;
            padding: 1rem;
            background: #f0f3ff;
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }
        
        #Qualifications li:hover, #Skills li:hover, #certificates li:hover {
            transform: translateX(5px);
            background: #e8edff;
        }
        
        #certificates a {
            background: var(--gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-left: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        #certificates a:hover {
            box-shadow: 0 5px 15px rgba(107, 4, 135, 0.2);
            transform: translateY(-2px);
        }
        
        /* Projects Section */
        #projects {
            text-align: center;
        }
        
        .boxes {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .box1, .box2 {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(107, 4, 135, 0.1);
            transition: all 0.3s ease;
        }
        
        .box1:hover, .box2:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(107, 4, 135, 0.2);
        }
        
        .project-tile img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        .project-tile:hover img {
            transform: scale(1.05);
        }
        
        .project-tile p {
            padding: 1.5rem;
            font-weight: 600;
            background: var(--gradient);
            color: white;
            margin: 0;
        }
        
        /* Virtual Memory Box - Improved with larger images */
        #virtual-memory-box {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem auto;
            box-shadow: 0 10px 30px rgba(107, 4, 135, 0.1);
            text-align: center;
        }
        
        .swiper {
            width: 100%;
            height: 400px; /* Increased height for larger images */
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem 0;
        }
        
        .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f7f7;
        }
        
        .swiper-slide img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: white;
            background: rgba(107, 4, 135, 0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
        }
        
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: var(--primary);
        }
        
        .swiper-pagination-bullet {
            background: white;
            opacity: 0.7;
            width: 12px;
            height: 12px;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--secondary);
            opacity: 1;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem;
            margin-top: 5rem;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gradient);
        }
        
        .footer-section a {
            color: #ddd;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .footer-section a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .intro-card {
                padding: 2.8rem 2rem;
            }

            .intro-subtitle {
                font-size: 1rem;
            }

            .navbar {
                padding: 1rem;
            }

            .navbar ul {
                gap: 0.8rem;
                font-size: 0.85rem;
            }
            
            .logo a {
                font-size: 1.5rem;
            }

            section {
                padding: 3rem 1rem;
            }

            #About {
                padding-top: 6rem;
            }

            #contact-section {
                padding-top: 6rem;
            }

            .form-container {
                padding: 2rem 1.5rem;
                max-width: 100%;
                margin: 0 1rem;
            }

            .form-container h2 {
                font-size: 1.5rem;
            }

            input, select, textarea {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 0.9rem 0.8rem;
            }

            .image-wrapper {
                padding: 2rem 1rem;
            }
            
            .container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .boxes {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .box1, .box2 {
                max-width: 100%;
                width: 100%;
            }

            #Qualifications, #Skills, #certificates {
                padding: 2rem 1.5rem;
                margin: 2rem auto;
            }

            #certificates li {
                padding: 0.8rem;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            #certificates a {
                margin-left: 0;
                width: 100%;
                text-align: center;
                padding: 0.7rem 1rem;
                font-size: 0.95rem;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .swiper {
                height: 300px; 
            }

            .swiper-button-next, .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next:after, .swiper-button-prev:after {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .intro-card {
                padding: 2.4rem 1.6rem;
            }

            .intro-button {
                width: 100%;
                padding: 0.9rem 1.2rem;
            }

            .navbar ul {
                gap: 0.5rem;
                font-size: 0.75rem;
            }

            .navbar li a {
                padding: 0.3rem 0;
            }

            .logo a {
                font-size: 1.2rem;
            }

            section {
                padding: 2rem 0.8rem;
            }

            .form-container {
                padding: 1.5rem 1rem;
                border-radius: 15px;
            }

            .form-container h2 {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }

            .form-group {
                margin-bottom: 1.2rem;
            }

            input[type="submit"] {
                padding: 0.9rem;
                font-size: 0.95rem;
            }

            .photo {
                width: 150px;
                height: 150px;
            }

            h2 {
                font-size: 1.5rem;
            }

            #Qualifications, #Skills, #certificates {
                padding: 1.5rem 1rem;
            }

            #certificates li {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            #certificates a {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }

            .swiper {
                height: 250px;
            }
        }
        
      
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        section {
            animation: fadeIn 0.8s ease-out;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
