    /* font import */
    
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
    /* CSS variables */
    
     :root {
        --navbar: rgba(137, 43, 226, 0.2);
        --bg-color: rgb(6, 6, 51);
        --text-color: white;
    }
    /* Global styles */
    
    html {
        scroll-behavior: smooth;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: 'Poppins', sans-serif;
    }
    /* Navbar section */
    
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 60px;
        background: var(--navbar);
    }
    
    nav ul {
        display: flex;
        justify-content: center;
    }
    
    nav ul li {
        list-style: none;
        margin: 0 23px;
    }
    
    nav ul li a {
        text-decoration: none;
        color: var(--text-color);
        transition: color 0.3s, font-size 0.3s;
    }
    
    nav ul li a:hover {
        color: rgb(153, 153, 226);
        font-size: 1.2rem;
    }
    /* First section */
    
    .left {
        font-size: 1.8rem;
    }
    
    .firstSection {
        height: 50vh;
        display: flex;
        justify-content: space-around;
        margin: 150px 0;
        flex-wrap: wrap;
    }
    
    .firstSection>div {
        width: 30%;
    }
    
    .leftSection {
        width: 50%;
        font-size: 2.4rem;
    }
    
    .leftSection .buttons {
        margin: 20px 0;
    }
    .btn a{
        text-decoration: none;
        color: white;
    }
    
    .leftSection .btn {
        background: rgb(171, 93, 244);
        padding: 12px;
        text-align: center;
        color: var(--text-color);
        border: 2px solid transparent;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 300;
        cursor: pointer;
        transition: 0.6s ease-in-out;
    }
    
    .leftSection .btn:hover {
        transform: scale(1.08);
        color: blueviolet;
        background: transparent;
        border: 2px solid blueviolet;
    }
    
    .rightSection {
        width: 50%;
    }
    
    .rightSection img {
        width: 85%;
    }
    
    .purple,
    #element {
        color: blueviolet;
    }
    /* Second section */
    
    .secondSection {
        padding: 60px 80px;
        background: linear-gradient(to right, #0f0f3f, #1a1a5e);
        color: white;
    }
    
    .about-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
    }
    
    .about-image img {
        width: 280px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
        transition: transform 0.3s ease;
    }
    
    .about-image img:hover {
        transform: scale(1.05);
    }
    
    .about-content {
        max-width: 600px;
        font-size: 1rem;
        line-height: 1.7;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: violet;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    /* Experience section */
    
    .experienceSection {
        padding: 50px 80px;
        text-align: center;
    }
    
    .experienceSection h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        color: blueviolet;
    }
    
    .experienceContainer {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .skillCard {
        background-color: #1f1f4d;
        padding: 20px;
        border-radius: 15px;
        width: 180px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }
    
    .skillCard:hover {
        transform: translateY(-8px);
    }
    
    .skillCard img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 15px;
    }
    
    .duration {
        font-size: 1rem;
        color: #ccc;
    }
    
    .level {
        font-size: 0.9rem;
        margin-top: 8px;
        color: #aaa;
    }
    
    .progressBar {
        background-color: #444;
        height: 10px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 5px;
    }
    
    .progress {
        height: 100%;
        background: linear-gradient(to right, blueviolet, violet);
        border-radius: 10px;
    }
    /* Services section */
    
    #services {
        padding: 60px 20px;
        background-color: #0f0f1a;
        color: white;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #a871ff;
        margin-bottom: 10px;
    }
    
    .services-desc {
        font-size: 1.1rem;
        max-width: 700px;
        margin: auto;
        margin-bottom: 40px;
        color: #ccc;
    }
    
    .services-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }
    
    .service-card {
        flex: 0 0 250px;
        background: #1e1e2f;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
        scroll-snap-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-card:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px #a871ff66;
    }
    
    .service-card img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        color: #fff;
        font-size: 1.2rem;
    }
    /* Projects section */
    
    #projects {
        padding: 80px 20px;
        background: linear-gradient(to right, #0f0f3f, #1a1a5e);
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: blueviolet;
        margin-bottom: 10px;
        position: relative;
        margin-top: -20px;
    }
    
    .section-subtext {
        font-size: 1.1rem;
        color: #777;
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .projects-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        max-width: 1000px;
        margin: auto;
    }
    
    .project {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        background: linear-gradient(to right, #a09fa1, #f7f4f8);
        padding: 25px;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        flex-wrap: wrap;
    }
    
    .project:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 25px blueviolet;
    }
    
    .project video {
        width: 100%;
        max-width: 420px;
        border-radius: 15px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .project video:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(56, 56, 56, 0.4);
    }
    
    .project-details {
        flex: 1;
        text-align: left;
    }
    
    .project-details h3 {
        font-size: 1.7rem;
        color: #333;
        margin-bottom: 10px;
    }
    
    .project-details p {
        font-size: 1rem;
        color: #5e5e5e;
        margin-bottom: 12px;
    }
    
    .project-details a {
        display: inline-block;
        padding: 8px 16px;
        background: blueviolet;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s ease;
    }
    
    .project-details a:hover {
        background: blueviolet;
    }
    /* Contact section */
    
    #contact {
        background: #0f0f0f;
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .section-title {
        color: blueviolet;
        font-size: 2rem;
        margin-top: 50px;
    }
    
    .contact-name {
        color: #00ffc8;
        font-size: 2rem;
        margin: 40px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-info-boxes {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .contact-box {
        background: #1a1a1a;
        padding: 20px 30px;
        border-radius: 15px;
        box-shadow: 0 0 12px rgba(0, 255, 200, 0.1);
        min-width: 200px;
    }
    
    .contact-box h4 {
        color: #00ffc8;
        margin-bottom: 10px;
    }
    
    .contact-box p {
        font-size: 1rem;
        color: #ccc;
    }
    /* Side by Side Bottom Section */
    
    .bottom-contact-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        align-items: flex-start;
    }
    
    .contact-form,
    .also-connect {
        background: linear-gradient(145deg, #161616, #1e1e1e);
        padding: 30px;
        border-radius: 15px;
        width: 350px;
        box-shadow: 0 0 15px rgba(0, 255, 200, 0.1);
    }
    
    .contact-form h3,
    .also-connect h3 {
        color: #00ffc8;
        margin-bottom: 20px;
        font-size: 1.4rem;
    }
    
    .input-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .input-group input,
    textarea {
        background-color: #121212;
        color: #fff;
        border: 1px solid #00ffc859;
        padding: 12px;
        border-radius: 8px;
        width: 100%;
        resize: none;
        outline: none;
    }
    
    textarea {
        margin-top: 10px;
    }
    
    .contact-form button {
        margin-top: 15px;
        width: 100%;
        background: #00ffc8;
        color: #000;
        font-weight: bold;
        padding: 12px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .contact-form button:hover {
        background: #00e6b4;
    }
    /* Social Connect Buttons */
    
    .social-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .social-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #121212;
        padding: 12px 15px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 255, 200, 0.05);
        transition: transform 0.2s ease;
    }
    
    .social-btn:hover {
        transform: scale(1.03);
    }
    
    .social-btn img {
        width: 32px;
        height: 32px;
        filter: drop-shadow(0 0 4px #00ffc8);
    }
    
    .social-btn button {
        padding: 8px 12px;
        background: #00ffc8;
        color: #000;
        font-weight: bold;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .social-btn button:hover {
        background-color: #00d1a1;
    }
    /* Footer section */
    
    #footer {
        background-color: var(--bg-color);
        color: var(--navbar);
        font-family: 'Poppins', sans-serif;
        padding: 30px 20px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .footer-name {
        font-size: 22px;
        font-weight: 600;
        margin-left: 40px;
    }
    
    .footer-nav {
        list-style: none;
        display: flex;
        gap: 25px;
        padding: 0;
        margin: 0;
        margin-right: 40px;
    }
    
    .footer-nav a {
        text-decoration: none;
        color: blueviolet;
        font-size: 16px;
        transition: color 0.3s;
    }
    
    .footer-nav a:hover {
        color: violet;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }