:root {
    --main-accent-color: #64ffda;
    --main-heading-color: #ccd6f6;
    --secondary-heading-color: #ccd6f6b0;

    --dark: #1c1c1c;
    --light: #c4c4c4;
    --teal: #008080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a192f;
    color: var(--secondary-heading-color);
    
}

/* hero section typing animation start */

.typed-text {
  color: var(--main-accent-color);
}

.cursor {
  display: inline-block;
  width: 3px;
  margin-left: 4px;
  background: var(--teal);
}

.cursor.blink {
  animation: blink 0.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    background: var(--teal);
  }
  40%, 50% {
    background: transparent;
  }
}

/* hero section typing animation Ends */

/* Utilities starts */

.underline-animation {
    position: relative;
    color: var(--main-accent-color);
    text-decoration: none;
}

.underline-animation::after {
    position: absolute;
    content: " ";
    width: 0;
    background-color: var(--main-accent-color);
    bottom: 3px;
    left: 0;
    height: 0.009rem;
    transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
}

.underline-animation:hover::after {
    width: 100%;
}

/* Utilities ends */


/* Header starts */

.header {
    height: 20vh;
    position: relative;
}

.header-content {
    width: 90%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    position: absolute;
    top: 20%;
    left: 5%;
}

.site-logo {
    width: 50px;
}

.nav-links-div {
    width: 40%;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    width: max-content;
    margin: auto;
}

.nav-links li a {
    font-family: 'Source Code Pro', monospace;
    color: #ccd6f6;
    text-decoration: none;
    position: relative;
    transition: 200ms ease-in;
}

.nav-links li a:hover {
    color: var(--main-accent-color);
}

.nav-links li a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: var(--main-accent-color);
    left: 0;
    bottom: -3px;
    transition: 200ms;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Header section Ends  */


/* Hero section Starts*/

.hero-section {
    height: 100vh;
}

.hero-section-container {
    width: 80%;
    margin-left: 10%;
}

.hero-heading1 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 500;
    color: var(--main-accent-color);
    margin: 40px 0px 0px 4px;
}

.hero-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: #ccd6f6;
}

.hero-heading3 {
    color: #ccd6f6b0;
    margin-top: -15px;
}

.hero-heading4 {
    color: #ccd6f6b0;
    width: 50%;
    margin-top: 15px;
}

.hero-section-buttons {
    display: flex;
    margin-top: 45px;
}

.resume-button a {
    display: block;
    color: var(--main-accent-color);
    font-family: 'Source Code Pro', monospace;
    background-color: transparent;
    outline: 1px solid var(--main-accent-color);
    cursor: pointer;
    border-radius: 5px;
    height: 50px;
    width: 180px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    transition: 200ms ease-in;
}

.social-buttons {
    margin-left: 5px;
}

.social-buttons button {
    width: 60px;
    height: 50px;
    font-size: 15px;
    font-size: 25px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 5px;
    transition: 200ms ease-in;
    background-color: transparent;
    color: var(--main-accent-color);
    border: 1px solid var(--main-accent-color);
}

.resume-button a:hover, 
.social-buttons button:hover {
    background-color: #64ffdb18;
}

/* Hero section Ends */


/* About me section Starts */

.about-me-container {
    width: 50%;
    margin-left: 10%;
    margin-bottom: 10%;
}

.about-me-title {
    margin-bottom: 7.5%;
    position: relative;
    color: var(--main-heading-color);
}

.about-me-title::before {
    content: "01.";
    color: var(--main-accent-color);
    font-family: 'Source Code Pro', monospace;
    margin-right: 10px;
}

.about-me-title::after {
    position: absolute;
    content: "";
    width: 70%;
    height: 1px;
    bottom: 50%;
    right: 15px;
    background-color: #ccd6f65e;
}

.about-me-info {
    margin-bottom: 4%;
}

/* About me section Ends */


/* Experience section starts */

.exp-container {
    margin-left: 10%;
    width: 65%;
    margin-bottom: 10%;
}

.exp-title{
    margin-bottom: 7.5%;
    position: relative;
    color: var(--main-heading-color);
}

.exp-title::before {
    content: "02.";
    color: var(--main-accent-color);
    font-family: 'Source Code Pro', monospace;
    margin-right: 10px;
}

.exp-title::after {
    position: absolute;
    content: "";
    width: 75%;
    height: 1px;
    bottom: 50%;
    right: 15px;
    background-color: #ccd6f65e;
}

.exp-content {
    display: flex;
    width: 80%;
}

.exp-company {
    max-height: 300px;
    width: 15%;
    margin-right: 10px;
    border-left: 1px solid var(--secondary-heading-color);
}

.exp-company li {
    list-style: none;
    margin: 0 auto;
    text-align: center;
    padding: 5px 0;
}

.exp-company li:hover {
    background-color: #64ffdb18;
}

.exp-details {
    min-height: 300px;
    width: 70%;
}

.exp-details-hero {
    margin-bottom: 20px
}

.exp-company-duties li {
    margin-bottom: 4%;
    list-style: none;
    font-size: 0.9rem;
}

.fi {
    margin-right: 10px;
    color: var(--main-accent-color);
}

/* Experience section ends */


/* Skills Section starts */

.skills-section-container {
    margin-left: 10%;
    width: 65%;
    margin-bottom: 10%;
}

.skills-title {
    margin-bottom: 7.5%;
    position: relative;
    color: var(--main-heading-color);
}

.skills-title::before {
    content: "03.";
    color: var(--main-accent-color);
    font-family: 'Source Code Pro', monospace;
    margin-right: 10px;
}

.skills-title::after {
    position: absolute;
    content: "";
    width: 68%;
    height: 1px;
    bottom: 50%;
    right: 15px;
    background-color: #ccd6f65e;
}

.skills-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    gap: 5%;
    align-items: center;
}

.skill {
    width: 80px;
    height: 80px;
    outline: 1px solid var(--main-accent-color);
    border-radius: 5px;
    margin-bottom: 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in;
}

.skill:hover {
    background-color: #64ffdb18;
}

.skill-name {
    position: absolute;
    bottom: 0px;
    font-size: 0.8rem;
}
.skill-img img {
    width: 40px;
    height: 40px;
}

/* Skills Section ends */


/* Education section starts */

.education-section-container {
    width: 65%;
    margin-left: 10%;
    margin-bottom: 10%;
}

.education-section-title {
    position: relative;
    margin-bottom: 7.5%;
    color: var(--main-heading-color);
}

.education-section-title::before {
    content: "04.";
    font-family: 'Source Code Pro', monospace;
    color: var(--main-accent-color);
    margin-right: 10px;
}

.education-section-title::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 60%;
    background-color: #ccd6f65e;
    bottom: 50%;
    right: 5px;
}

.education-section-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8%;
}

.education-section-card {
    width: 40%;
    height: 300px;
    outline: 1px solid var(--main-accent-color);
    border-radius: 5px;
    position: relative;
}

.education-section-card-content {
    padding: 15px
}

.edu-degree {
    position: absolute;
    top: 5%;
    width: 90%;
}

.edu-institute {
    position: absolute;
    top: 40%;
    width: 90%;
}

.edu-duration {
    position: absolute;
    bottom: 5%;
}

/* Education section Ends */


/* Contact Section Starts */

.contact-section-container {
    margin-left: 10%;
    width: 65%;
    margin-bottom: 10%;
}

.contact-section-heading {
    position: relative;
    margin-bottom: 7.5%;
    color: var(--main-heading-color);
}

.contact-section-heading::before {
    content: "05.";
    color: var(--main-accent-color);
    margin-right: 10px;
    font-family: 'Source Code Pro', Monospace;
}

.contact-me-message {
    width: 80%;
    margin-bottom: 7.5%;
}

.contact-section-heading::after {
    content: "";
    height: 1px;
    position: absolute;
    bottom: 50%;
    width: 75%;
    right: 5px;
    background-color: #ccd6f65e;
}

.contact-section-buttons {
    display: flex;
}

.contact-section-email-button {
    display: block;
    color: var(--main-accent-color);
    font-family: 'Source Code Pro', monospace;
    background-color: transparent;
    outline: 1px solid var(--main-accent-color);
    cursor: pointer;
    border-radius: 5px;
    height: 50px;
    width: 130px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    border: none;
    transition: 200ms ease-in-out;
}

.contact-section-email-button:hover {
    background-color: #64ffdb18;
}
/* Contact Section Ends */


/* Footer Section Starts */

.footer {
    background-color: #091423d4;
}

.margin-bottom {
    margin-bottom: 5%;
}

.footer-container {
    padding-top: 2%;
    display: flex;
    margin-bottom: 2%;
}

.footer-section-headings {
    color: var(--main-heading-color);
}

.footer-ty-message-section {
    width: 25%;
    margin-left: 5%;
}

.footer-ty-message {
    font-family: 'Source code pro', Monospace;
}

.footer-quick-links-section {
    width: 25%;
    margin-left: 5%;
}

.footer-section-logo {
    width: 70px;
    height: 70px;
    margin-top: 20px;
}

.footer-section-links,
.footer-section-contact-info-links {
    list-style-type: none;
}


.footer-section-links li a{
    color: var(--secondary-heading-color);
    text-decoration: none;
    transition: 200ms ease-in;
    font-family: 'Source code pro', Monospace;
}

.footer-section-links li a:hover {
    color: var(--main-accent-color);
}

.footer-contact-info-section {
    width: 25%;
    margin-left: 5%;
}

.footer-section-contact-info-links li a{
    color: var(--secondary-heading-color);
    text-decoration: none;
    font-family: 'Source code pro', Monospace;
}

.fi-rr-angle-small-right {
    margin-right: 5px;
}

.footer-divider {
    border-bottom: 1mm ridge var(--secondary-heading-color);
    width: 100%;
}

.footer-final-message {
    text-align: center;
    padding: 1% 0 1%;
    background-color: #091423d4;
}

/* Footer Section ends  */


/* Responsive section starts */

@media only screen and (max-width: 480px) {

    /* remove this asap  */

    .nav-links-div {
        opacity: 0;
    }
    /* remove this asap  */

    .about-me-section,
    .exp-section,
    .skills-section,
    .education-section,
    .contact-section {
        margin-bottom: 25%; 
    }

    .hero-heading {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        color: #ccd6f6;
    }

    .hero-heading1 {
        font-family: 'Source Code Pro', monospace;
        font-weight: 500;
        color: var(--main-accent-color);
        margin: 40px 0px 10px 0px;
    }

    .hero-heading3 {
        margin-top: 0px;
        width: 100%;
    }

    .hero-heading4 {
        margin-top: 15px;
        width: 100%;
        font-size: 14px;
    }

    .hero-section-buttons {
        margin-top: 50px;
        display: inline-block;
    }

    .social-buttons {
        display: flex;
        margin-left: -10px;
        margin-top: 20px;
    }

    .resume-button a {
        width: 200px;
    }

    .hero-section-container,
    .about-me-container,
    .exp-container,
    .skills-section-container,
    .education-section-container,
    .contact-section-container {
        width: 80%;
        margin: 0 auto;
    }

    .about-me-title,
    .exp-title,
    .skills-title,
    .contact-section-heading {
        font-size: 20px;
    }

    .education-section-title {
        font-size: 18px;
    }

    .about-me-title::after {
        width: 40%;

    }

    .exp-title::after {
        width: 30%;
    }

    .skills-title::after {
        width: 15%;
    }

    .education-section-title::after {
        width: 5%;
    }

    .contact-section-heading::after {
        width: 35%;
    }

    .exp-content {
        display: inline-block;
        width: 100%;
    }

    .exp-company {
        margin-bottom: 20px;
        border: none;
        width: max-content;
        background-color: #64ffdb18;
        padding: 5px;
    }

    .exp-details {
        min-height: 300px;    
        width: 100%;
    }

    .skills-row {
        gap: 10%;
    }

    .education-section-cards {
        display: block;
    }

    .education-section-card {
        width: 100%;
        gap: 20px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .edu-degree,
    .edu-institute,
    .edu-duration {
        width: 90%;
    }

    .contact-me-message {
        width: 100%;
    }

    .contact-section-buttons .social-buttons {
        margin: 0;
    }

    .footer-container {
        display: block;
        padding: 25px 0;
    }

    .footer-ty-message-section,
    .footer-quick-links-section,
    .footer-contact-info-section {
        width: 90%;
    }
}

/* Responsive section ends  */


     