General Reset
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Full Page Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(48, 8, 56), hsl(291, 37%, 19%), #290332);
    z-index: -1;
    top: 0;
    left: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo on left, menu on right */
    padding: 10px 50px; 
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Logo Styling */
.logo {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(45deg, #6C63FF, #5145CD, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    top: -51px;
    right: -1300px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    margin: 10px;
    padding: 10px;
    font-size: 40px;
    font-weight: 500;
    transition: 0.4s;
}

.nav-links a:hover {
    color: #ff66b2;
}

/* Mobile Navbar */
.menu-icon {
    display: none;
    font-size: 238px;
    cursor: pointer;
    color: white;
}

/* Introduction Section */
.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100vh;
}

.intro-title {
    font-size: 70px;
    font-weight: bold;
    color: white;
}

.intro-title span {
    color: #e36ccd;
}

.intro-subtitle {
    font-size: 50px;
    font-weight: bold;
    color: #ff00ff;
}

.follow-btn {
    margin-top: 30px;
    padding: 25px 30px;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(45deg, #fff, #eee);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.follow-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff66b2, #ff99cc);
}

/* Social Media Links */
.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-btn {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease-in-out;
}

.social-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.social-btn:hover {
    transform: scale(1.2);
}

/* Bitmoji Styling */
.bitmoji-container {
    position: absolute;
    bottom: 10%;
    right: 0.9%;
}

.bitmoji {
    width: 700px;
    height: 700px;
    transition: transform 0.3s;
    top: 10px;
}

.bitmoji:hover {
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 100px 50px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 100px 100px;
}

.about-image img {
    width: 300px;
    height: 500px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0px 5px 15px rgba(233, 159, 212, 0.881);
    transition: transform 0.5s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.2);
}

.about-text {
    max-width: 900px;
    color: white;
    background: linear-gradient(to right, rgba(27, 0, 22, 0.8), rgba(255, 255, 255, 0));
}

.about-title {
    font-size: 90px;
    font-weight: bold;
    color: #f398f3e8,;
}

.about-text p {
    font-size: 30px;
    line-height: 1.75;
    color: #e9a3de;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1200px) {
    .bitmoji {
        width: 250px;
    }

    .intro-title {
        font-size: 40px;
    }

    .intro-subtitle {
        font-size: 30px;
    }

    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        text-align: right;
        padding: 15px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .intro-title {
        font-size: 35px;
    }

    .intro-subtitle {
        font-size: 25px;
    }

    .bitmoji {
        width: 200px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100px;
        height: 100px;
    }
}
/* Resume Button */
.resume-btn {
    display: block;
    text-align: center;
    margin-top: 50px;
    padding: 20px 20px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff66b2, #ff99cc);
    text-decoration: none;
    border-radius: 10px;
    transition: 0.5s;
}

.resume-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff33a6, #ff80bf);
}
/* Skills Section Styling */
.skills {
    text-align: center;
    margin-top: 200px;
    background: linear-gradient(135deg, #29033e, #140221);
    color: white;
}

.section-title {
    font-size: 4.5em;
    font-weight: bold;
    margin-bottom: 200px;
}

.section-title span {
    color: #ffcc00;
}

.skills-container {
    height: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 55px;
    margin-top: 50px;
}

.skill-card {
    background: #0f0118;
    padding: 10px;
    width: 220px;
    height: 120px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.skill-card:hover {
    transform: scale(1.2);
    background: #8e61aa;
}

.skill-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}
.education {
    
    text-align: center;
    margin-top: 200px;
    background: linear-gradient(135deg, #f4adf5, #140221);
    color: white;
  }
  
  .education h2 {
    font-size: 4rem;
    font-weight: bold;
    color: #1d042f; /* Purple heading */
  }
  
 
  
  .education-card {
    display: flex;
    align-items: center;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 20px auto;
    max-width: 800px;
  }
  
  .education-card img {
    width: 35%;
    object-fit: cover;
    border-right: 5px solid #6a0dad; /* Purple border */
  }
  
  .education-info {
    padding: 20px;
    text-align: left;
  }
  
  .education-info h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
  }
  
  .education-info p {
    font-size: 2rem;
    color: #444;
  }
  
  .education-info span {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .pursuing {
    color: green;
  }
  
  .completed {
    color: darkgreen;
  }
  .education-card:hover {
    transform: scale(1.2);
    background: #debdf3;
}

/* Experience Section */
.experience {
    text-align: center;
    margin: 200px;
    padding: 50px 100px;
    background: linear-gradient(to bottom, #b57edc, #2c003e);
    color: rgb(244, 238, 243);
    font-size: xx-large;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3.5px;
}

/* Experience Cards */
.experience-card {
    background: orange;
    color: black;
    padding: 15px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    transition: transform 0.3s ease-in-out;
}

.experience-card:hover {
    transform: scale(1.05);
}

/* Alignment */
.experience-container {
    width: 50%;
    padding: 10px 40px;
}

.left-container {
    text-align: right;
}

.right-container {
    text-align: left;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    
    .experience-container {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #E8ECF3;
}

/* Centering the container */
.container {
    max-width: 1200px;
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 10px;
    top: 0;
}

/* Contact Form Box */
.contact-box {
    background: #ffffffa0;
    border-radius: 50px;
    padding: 90px;
    margin: 100pxauto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Image on the Left Side */
.contact-box img {
    width: 50%;
    max-width: 500px;
    border-radius: 20px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    width: 200%;
    max-width: 400px;
}

/* Input Fields */
.input-box {
    position: relative;
    margin-bottom: 30px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #0e0c0c;
    border-radius: 20px;
    outline: none;
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #6C63FF;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
}

/* Submit Button */
.submit-btn {
    background: #6C63FF;
    color: white;
    border: none;
    padding: 15px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #5145CD;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .contact-box img {
        max-width: 300px;
    }

    .form-container {
        width: 100%;
    }
}
