@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Dosis:wght@200..800&family=Kanit: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=Lexend+Giga:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+MX+Guides&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=Ysabeau+SC:wght@1..1000&display=swap');




* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background: linear-gradient(to bottom right, #000000, #1a0033);
    color: #fff;
}

<!------------------------------------------------------------------------------------------------------>

  
.heading {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
  }
  
  .card p:not(.heading) {
    font-size: 14px;
  }
  
  .card p:last-child {
    color: #e81cff;
    font-weight: 600;
    
  }
  
  .card:hover::after {
    filter: blur(30px);
  }
  
  .card:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
  }
  

.checkbox {
    display: none;
}

.slider {
    width: 60px;
    height: 30px;
    background-color: lightgray;
    border-radius: 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid transparent;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
    box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
    cursor: pointer;
}

.slider::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    border-radius: 20px;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.checkbox:checked~.slider::before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}




.checkbox:checked~.slider {
    background-color: rgb(123, 0, 123);
}

.checkbox:active~.slider::before {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}





.container {
    margin-top: 20px;
    padding: 10px 10%;
}

#element {
    font-size: 35px;
    color: rgb(123, 0, 123);
}

nav {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 140px;
}

#menu-btn {
    display: none;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li {
    display: inline-block;
    list-style: none;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}


nav ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(130, 12, 130, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

nav ul li a:hover::before {
    width: 200%;
    height: 200%;
}


nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b721ff, #21d4fd);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    background: rgba(130, 12, 130, 0.2);
    box-shadow: 0 0 20px rgba(130, 12, 130, 0.3);
}


nav ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


nav ul li a:active {
    transform: scale(0.95);
}

.header-text {
    margin-left: 250px;
    color: aliceblue;
    margin-top: 15%;
    font-size: 30px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-text h1 {

    font-size: 60px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.header-text h1 span {


    color: rgb(130, 12, 130);
}


#about {

    padding: 80px 0;
    color: #ababab;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;

}

.about-col-1 img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-col-1 img:hover {
    transform: scale(1.02);
}

.about-col-2 {
    flex-basis: 60%;
}


.about-col-2 p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
    font-family: "Poppins", serif;
}

.sec2 {
    margin-top: 100px;
}

.class {
    font-family: "Poppins", serif;
    color: rgb(130, 12, 130);
}

.sub-title {

    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.tab-titles {
    display: flex;
    margin: 20px 0 40;
}

.tab-links {
    margin-top: 20px;
    margin-right: 50px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: rgb(130, 12, 130);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;

}

.tab-contents {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;

}

.tab-contents ul li {
    background: rgba(38, 38, 38, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tab-contents ul li:hover {
    background: rgba(38, 38, 38, 0.8);
    transform: translateX(10px);
}

.tab-contents ul li span {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(130, 12, 130);

    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

#project {
    width: 600px;
    padding: 80px;
    margin-bottom: 200px;
    padding: 1rem;
    margin-top: 10px;
    border-radius: 2rem;
    background-color: rgb(33, 33, 35);
}

.Section-title {
    font-size: 50px;
    color: #fff;
    text-align: center;
    padding-top: 30px;
    margin: 40px 0px;
}

.Section-title span {
    color: rgb(130, 12, 130);
}

.project_card {
    color: #fff;
    font-size: 20px;
    padding: 1.5rem;
    border-radius: 2rem;
}

.project_image {
    display: block;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 10px;
}

.project_detail {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #ababab;
}

.projects_skills {

    color: #ababab;
}

.project_button {
    text-decoration: none;
    font-size: 18px;
    color: #ababab;
}

.project_button:hover {
    font-size: 19px;
    color: #521a4a;
}

/* <!---------------------------------------------------------------------  */
.contact-left {
    color: #fff;
    flex-basis: 30%;

}

.contact-right {
    color: #fff;
    flex-basis: 60%;
}

.contact-left p {
    margin-right: 15px;
    margin-top: 30px;
}

.contact-left p i {
    color: rgb(130, 12, 130);
    margin-right: 19px;
    font-size: 20px;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(171, 171, 171, 0.1);
    border-radius: 50%;
    color: #9c1e94;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.social-icons a i {
    font-size: 22px;
    transition: all 0.4s ease;
    z-index: 1;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #76036d, #9c1e94);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.social-icons a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(156, 30, 148, 0.3);
}

.social-icons a:hover i {
    color: white;
    transform: scale(1.1);
}

.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid rgb(130, 12, 130);
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
}

.btn.btn2 {
    border-radius: 30px;
    font-size: 16px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #76036d, #9c1e94);
    border: none;
    box-shadow: 0 4px 15px rgba(130, 12, 130, 0.3);
    transition: all 0.3s ease;
}

.btn.btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(130, 12, 130, 0.4);
}

.contact-right form {
    width: 100%;

}

form input,
form textarea {
    width: 100%;
    border: 1px solid rgba(130, 12, 130, 0.3);
    outline: none;
    background: rgba(38, 38, 38, 0.8);
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: rgb(130, 12, 130);
    box-shadow: 0 0 10px rgba(130, 12, 130, 0.2);
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;

}

.copyright {
    color: #c9c9c9;
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}

.copyright i {
    color: rgb(130, 12, 130);
}


/* <!-------------------------------------------------------------------------> */
@media only screen and (max-width:600px) {


    .header-text {
        margin: auto;
        margin-left: 40px;
        font-size: 20px;
    }

    #project {


        width: auto;
        font-size: 14px;
    }

    .project_data {

        font-size: 10px;
    }

    .header-text h1 {
        font-size: 45px;
    }


    nav ul {
        background: rgb(130, 12, 130);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 80vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }


    .sub-title {
        font-size: 40px;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
    }

    .about-col-2 {
        font-size: 14px;
    }

    .tab-links {
        margin-right: 54px;

    }

    .contact-left,
    .contact-right {
        flex-basis: 100%;
    }

}

#msg {
    color: #61b752;
    margin-top: -40px;
    display: block;
}


#projects {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #000000, #1a0033);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(130, 12, 130, 0.3);
    border-color: rgba(130, 12, 130, 0.3);
}

.project-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: none;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-content p {
    color: #ababab;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tags span {
    background: rgba(130, 12, 130, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: rgba(130, 12, 130, 0.4);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.demo-btn, .github-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-btn {
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    color: white;
}

.github-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(130, 12, 130, 0.4);
}

.github-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .projects-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .project-card {
        max-width: 100%;
    }
}


@media only screen and (max-width: 600px) {
    /* Header & Navigation */
    .header-text {
        margin: 20px;
        font-size: 16px;
        text-align: center;
    }

    .header-text h1 {
        font-size: 35px;
    }

    #element {
        font-size: 25px;
    }

    nav {
        padding: 15px;
    }

    nav ul {
        background: rgba(130, 12, 130, 0.95);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 999;
        flex-direction: column;
        gap: 1rem;
        transition: right 0.3s ease;
    }

    nav ul.show {
        right: 0;
    }

    nav ul li {
        display: block;
        margin: 15px 0;
    }

    nav ul li a {
        font-size: 16px;
        padding: 10px 20px;
        display: block;
    }

  
    .switch {
        margin: 15px auto;
    }

    /* About Section */
    .about-col-1, 
    .about-col-2 {
        flex-basis: 100%;
        padding: 15px;
    }

    .about-col-2 p {
        font-size: 16px;
    }

    .tab-links {
        font-size: 16px;
        margin-right: 20px;
    }

    /* Projects Section */
    .projects-container {
        padding: 15px;
    }

    .project-card {
        margin: 10px 0;
    }

    .project-content {
        padding: 15px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .project-content p {
        font-size: 14px;
    }

    .project-tags span {
        font-size: 12px;
    }

    .project-links {
        flex-direction: column;
        gap: 10px;
    }

    .demo-btn, 
    .github-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

 
    .contact-left, 
    .contact-right {
        flex-basis: 100%;
        padding: 15px;
    }

    .contact-left p {
        font-size: 16px;
    }

    form input, 
    form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .social-icons {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-icons a {
        padding: 8px;
        font-size: 18px;
    }

   
    #menu-btn {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        background: rgba(130, 12, 130, 0.8);
        padding: 15px 18px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 5px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }
    
    #menu-btn:hover {
        background: rgba(130, 12, 130, 1);
    }
    
    #menu-btn i {
        font-size: 20px;
        color: #fff;
        pointer-events: none;
    }

    
    .container {
        padding: 10px 20px;
    }

   
    .Section-title {
        font-size: 28px;
        margin: 30px 0;
    }

    .sub-title {
        font-size: 24px;
    }
}


@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-text {
        margin-left: 50px;
        font-size: 25px;
    }

    .header-text h1 {
        font-size: 45px;
    }

    nav ul {
        gap: 1rem;
    }

    .about-col-1, 
    .about-col-2 {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .contact-left, 
    .contact-right {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
}



.social-icons-nav {
    display: flex;
    gap: 15px;
    margin-right: auto;
    margin-left: 20px;
}

.social-icons-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(171, 171, 171, 0.1);
    border-radius: 50%;
    color: #9c1e94;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.social-icons-nav a i {
    font-size: 18px;
    transition: all 0.4s ease;
    z-index: 1;
}

.social-icons-nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #76036d, #9c1e94);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.social-icons-nav a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-icons-nav a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(156, 30, 148, 0.3);
}

.social-icons-nav a:hover i {
    color: white;
    transform: scale(1.1);
}


@media only screen and (max-width: 600px) {
    .social-icons-nav {
        position: absolute;
        top: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .social-icons-nav a {
        width: 35px;
        height: 35px;
    }
    
    .social-icons-nav a i {
        font-size: 16px;
    }
}

.skills-container {
    display: grid;
    gap: 2rem;
    padding: 20px 0;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 15px;
}

.skill-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgb(130, 12, 130);
    border-radius: 50%;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background: rgba(130, 12, 130, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(130, 12, 130, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(130, 12, 130, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 12, 130, 0.2);
}

.skill-tag i {
    font-size: 2em !important;
    vertical-align: middle;
    margin-right: 8px;
}

@media only screen and (max-width: 600px) {
    .skills-container {
        gap: 1rem;
    }

    .skill-category {
        padding: 1rem;
    }

    .skill-category h3 {
        font-size: 1rem;
    }

    .skill-tag {
        font-size: 0.8rem;
    }
}

@media only screen and (min-width: 768px) {
    .skills-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.education-container {
    display: grid;
    gap: 2rem;
    padding: 20px 0;
}

.education-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.education-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(130, 12, 130, 0.2);
}

.education-category h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 15px;
}

.education-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgb(130, 12, 130);
    border-radius: 50%;
}

.education-item {
    padding: 1rem;
    background: rgba(130, 12, 130, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(130, 12, 130, 0.2);
}

.education-period {
    display: inline-block;
    background: rgba(130, 12, 130, 0.2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.education-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.education-location {
    color: rgb(130, 12, 130) !important;
    font-weight: 500;
}


@media only screen and (max-width: 600px) {
    .education-container {
        gap: 1rem;
    }

    .education-category {
        padding: 1rem;
    }

    .education-category h3 {
        font-size: 1rem;
    }

    .education-item h4 {
        font-size: 1rem;
    }

    .education-item p {
        font-size: 0.8rem;
    }

    .education-period {
        font-size: 0.8rem;
    }
}

@media only screen and (min-width: 768px) {
    .education-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-svg {
  vertical-align: middle;
  margin-right: 8px;
  width: 2em;
  height: 2em;
  display: inline-block;
}
