

 :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;
        }
        
        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 */
        .form-container {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(107, 4, 135, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        input, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        input:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(107, 4, 135, 0.1);
        }
        
        input[type="submit"] {
            background: var(--gradient);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            padding: 1rem;
            transition: all 0.3s ease;
        }
        
        input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(107, 4, 135, 0.3);
        }
        
        /* 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;
        }
        
        #certificates a:hover {
            box-shadow: 0 5px 15px rgba(107, 4, 135, 0.2);
        }
        
        /* 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) {
            .navbar ul {
                gap: 1rem;
            }
            
            .container {
                flex-direction: column;
            }
            
            .boxes {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .swiper {
                height: 300px; 
            }
        }
        
      
        @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;
        }
