/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e1e, #8c1aff);
    color: white;
    text-align: center;
    padding: 50px;
    font-size: 16px;
    overflow-x: hidden;
}

/* Header */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff, 0 0 45px #ff00ff;
}

header p {
    font-size: 18px;
    color: #ddd;
}

/* Glowing Text Effect */
.glowing-text {
    font-size: 36px;
    color: white;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    }
    100% {
        text-shadow: 0 0 30px #ff00ff, 0 0 50px #ff00ff, 0 0 75px #ff00ff;
    }
}

/* Profile Section */
.profile-photo {
    display: inline-block;
    width: 150px;
    height: 150px;
    margin-top: 20px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-photo:hover img {
    transform: scale(1.1);
}

.profile-photo:hover {
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
}

/* About Me Section */
.about-me {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.about-me .about-text {
    max-width: 600px;
}

.about-me h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.about-me p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 10px;
}

/* Typing effect */
.typing-effect {
    font-size: 20px;
    color: #ddd;
    border-right: 3px solid #ff00ff;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(40) 1s forwards, blink 0.75s step-end infinite;
}

/* Typing animation */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Cursor blink effect */
@keyframes blink {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: #ff00ff;
    }
}

/* YouTube Video Section */
.video-section iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.video-section iframe:hover {
    transform: scale(1.05);
}

.video-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}

/* Test Series Section */
.test-series {
    margin-top: 50px;
    max-width: 600px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.test-series label {
    display: block;
    margin: 10px 0 5px;
    font-size: 18px;
    color: #fff;
}

.test-series input, .test-series button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.test-series input {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
}

.test-series button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.test-series button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Notes Section */
.notes-section {
    margin-top: 50px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.notes-section h
.image{
border-radius:20px;}
