/*Style starts here*/
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    background-color: #0a0a12;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

::selection {
    background-color: rgba(13, 115, 119, 0.35);
    color: #ffffff;
}

::-moz-selection {
    background-color: rgba(13, 115, 119, 0.35);
    color: #ffffff;
}

h1, h2 {
    font-family: "Roboto", sans-serif;
    color: #64ffda;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1::selection, h2::selection {
    background-color: rgba(100, 255, 218, 0.35);
    color: #0a0a12;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #64ffda;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-shadow: 0 3px 5px rgba(100, 255, 218, 0.4);
}

.container {
    width: 90%;
    margin: 0 auto;
}

button, .btn {
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}



/*Navbar*/
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(15, 15, 25, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid #2d2d3a;
    backdrop-filter: blur(10px);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: #64ffda;
    transition: transform 0.39s;
}

.hamburger.rotate {
    transform: rotate(180deg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-heading h1 {
    margin: 0;
    font-size: 2rem;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.navbar.active .nav-menu {
    display: flex;
}

#name{
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: #b8fff9;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}

.nav-heading h1:hover {
    transform: scale(1.1);
}

.nav-menu{
    text-align: center;
}

.nav-menu a {
    margin-left: 1.5rem;
    font-weight: bold;
    color: #64ffda;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #0d7377, #64ffda);
    color: #0a0a12;
    transform: scale(1.05);
}



/*Profile section*/
.profile {
    text-align: center;
    padding: 7rem 0;
    background: linear-gradient(135deg, #0a0a12, #1a1a2e);
    position: relative;
    overflow: hidden;
}

.profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.profile::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 35%, rgba(100, 255, 218, 0.05) 100%);
    animation: rotateBackground 25s linear infinite;
    pointer-events: none;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-content {
    max-width: 600px;
    margin: 0 auto;
}

.typing-animation {
    color: #64ffda;
    font-weight: bold;
}



/*About-me section*/
.about-me {
    padding: 5rem 0;
    background: linear-gradient(135deg, #12122e, #1f1f3a);
    position: relative;
}

.about-me::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.3), transparent);
}

.aboutme-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.aboutme-image {
    position: relative;
}

.aboutme-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(100, 255, 218, 0.7), 
        rgba(13, 115, 119, 0.5), 
        rgba(26, 26, 46, 0.3), 
        rgba(13, 115, 119, 0.5), 
        rgba(100, 255, 218, 0.7)
    );
    animation: rotateConic 9s linear infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes rotateConic {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.aboutme-image img {
    width: 300px;
    border-radius: 50%;
    border: 3.3px solid #64ffda;
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.3);
    position: relative;
    z-index: 1;
}

.aboutme-desc {
    max-width: 600px;
    margin-left: 3rem;
    position: relative;
}

.vertical-line {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #64ffda, #0d7377);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    animation: verticalLineGrow 1.5s ease forwards, verticalLineGlow 3s ease-in-out infinite;
    z-index: 1;
}

.vertical-line::before, 
.vertical-line::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #64ffda;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.vertical-line::before {
    top: 0;
    animation: pulseDot 2s ease-in-out infinite;
}

.vertical-line::after {
    bottom: 0;
    animation: pulseDot 2s ease-in-out 1s infinite;
}

@keyframes verticalLineGrow {
    0% { height: 0; }
    100% { height: 90%; }
}

@keyframes verticalLineGlow {
    0% { box-shadow: 0 0 10px rgba(100, 255, 218, 0.3); }
    50% { box-shadow: 0 0 20px rgba(100, 255, 218, 0.6); }
    100% { box-shadow: 0 0 10px rgba(100, 255, 218, 0.3); }
}

@keyframes pulseDot {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.5); opacity: 0.7; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.cv-button {
    background: linear-gradient(135deg, #0d7377, #64ffda);
    border: none;
    color: #0a0a12;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 11px;
    transition: all 0.33s ease-in-out;
}

.cv-button:hover {
    background: linear-gradient(135deg, #64ffda, #0d7377);
    border-radius: 1.7rem;
    color: #0a0a12;
    transform: scale(1.1);
    box-shadow: 0 0 11px rgba(100, 255, 218, 0.5);
}



/*Proex section*/
.proex {
    background-color: #0a0a12;
    padding: 5rem 0;
    position: relative;
}

.proex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.3), transparent);
}

.card {
    background: rgba(26, 26, 46, 0.4);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(100, 255, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(100, 255, 218, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(100, 255, 218, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(100, 255, 218, 0.3),
        0 0 30px rgba(100, 255, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 255, 218, 0.4);
}

.card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    margin-bottom: 1rem;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.card:hover .card-icon {
    transform: translateY(0) scale(1.1);
}

.card-icon img {
    width: 50px;
    filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.3));
}

.card-title h2 {
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.card-title h2:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #64ffda;
    transition: width 0.4s ease, left 0.4s ease;
}

.card:hover .card-title h2:after {
    width: 100%;
    left: 0;
}


.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: square;
    padding: 0;
}

.projects li {
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.9rem;
}


.education {
    padding-left: 0;
    width: 85%;
    margin: 0 auto;
}

.education li {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid #64ffda;
    background: rgba(30, 30, 50, 0.3);
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
    position: relative;
    list-style: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.education li:hover {
    transform: translateY(-3px);
    background: rgba(30, 30, 50, 0.5);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.education li h3 {
    color: #64ffda;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.education li p {
    margin: 0.3rem 0;
}

.education li a {
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.education li a:hover {
    color: #b8fff9;
}


.skills-container {
    margin-top: 1rem;
}

.skill-bar {
    background-color: rgba(30, 30, 50, 0.7);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.skill-bar:hover {
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(100, 255, 218, 0.1);
}

.skill {
    padding: 1rem;
    height: 23px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.skill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.skill::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.skill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.skill:hover::before {
    left: 100%;
}

.skill:hover::after {
    width: 120%;
    height: 120%;
}

.skill.java {
    background: linear-gradient(90deg, #e53935, #fb8c00);
    width: 87%;
}

.skill.flutter {
    background: linear-gradient(90deg, #02569B, #42A5F5);
    width: 75%;
}

.skill.python {
    background: linear-gradient(90deg, #3776ab, #ffd343);
    width: 70%;
}

.skill.github {
    background: linear-gradient(90deg, #8e24aa, #ab47bc);
    width: 65%;
}

.skill-icon {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skill-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
    margin-left: 0.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.skill:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    filter: brightness(1.2);
}

.skill:hover .skill-name {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transform: translateX(3px);
    font-weight: 700;
}


.skill-bar {
    animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 8px rgba(100, 255, 218, 0.05);
    }
}

.skill-bar:hover {
    animation: none;
}

.skill-bar:nth-child(1) { animation-delay: 0s; }
.skill-bar:nth-child(2) { animation-delay: 0.5s; }
.skill-bar:nth-child(3) { animation-delay: 1s; }
.skill-bar:nth-child(4) { animation-delay: 1.5s; }



/* Image Gallery */
.gallery {
    padding: 43px 0 50px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a12, #171730);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    transition: transform 0.3s ease;
}

.gallery-grid img {
    width: 280px;
    height: 210px;
    margin: 0.9rem 0;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}


.gallery-active-image {
    z-index: 10;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4) !important;
    border: 1px solid rgba(100, 255, 218, 0.4) !important;
    transition: filter 0.3s ease, transform 0.3s ease !important;
}

.gallery-image-actions {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    animation: fadeIn 0.3s ease forwards;
}

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

.gallery-download-btn, 
.gallery-download-all-btn {
    background: linear-gradient(135deg, #0d7377, #64ffda);
    border: none;
    color: #0a0a12;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
}

.gallery-download-btn:hover,
.gallery-download-all-btn:hover {
    background: linear-gradient(135deg, #64ffda, #0d7377);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(100, 255, 218, 0.3);
}

.gallery-download-btn:active,
.gallery-download-all-btn:active {
    transform: translateY(1px) scale(0.98);
}

.download-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a45);
    color: #f0f0f0;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.2);
    z-index: 1000;
    animation: slideIn 0.5s ease forwards;
    transition: opacity 0.5s ease;
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.download-notification.fade-out {
    opacity: 0;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(15, 15, 30, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: #64ffda;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.arrow:hover {
    background-color: rgba(15, 15, 30, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}



/* Hide scrollbar */
.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



/* Blog Section */
.blogs {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a12, #1a1a2e);
    color: white;
}

.blogs h2 {
    text-align: center;
    margin-bottom: 20px;
}

.blog-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.blog-grid {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    transition: transform 0.3s ease;
    scrollbar-width: none;
}

.blog-grid::-webkit-scrollbar {
    display: none;
}

.blog-card {
    background: linear-gradient(135deg, #1a1a2e, #2a2a45);
    padding: 1rem;
    margin: 0.9rem 0.333rem;
    border-radius: 10px;
    width: 250px;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(100, 255, 218, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.blog-card:hover::before {
    transform: translateX(100%);
}

.blog-card h3 {
    color: #f0f0f0;
    margin: 11px 0 0.7px 0;
}

.blog-card p {
    color: #d8d8d8;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Number of lines before truncating */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.blog-card button {
    background: linear-gradient(135deg, #0d7377, #64ffda);
    border: none;
    color: #0a0a12;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    align-self: flex-end;
}

.blog-card button:hover {
    background: linear-gradient(135deg, #64ffda, #0d7377);
    border-radius: 2rem;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}



/* Blog Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #2a2a45);
    margin: 10% auto;
    padding: 20px;
    border: 1.5px solid rgba(100, 255, 218, 0.2);
    width: 80%;
    max-width: 700px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.modal-content pre {
    white-space: pre-wrap;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
}

.close-button {
    color: #ccc;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
    text-decoration: none;
    cursor: pointer;
}



/*Contact section*/
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #12122e, #1f1f3a);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.3), transparent);
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 11px;
    background-color: rgba(15, 15, 30, 0.7);
    color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 
        0 0 0 3px rgba(100, 255, 218, 0.1),
        0 8px 25px rgba(100, 255, 218, 0.15);
    background: rgba(15, 15, 30, 0.8);
    transform: translateY(-2px);
}

form input::placeholder, form textarea::placeholder {
    color: #94a3b8;
}

form button {
    background: linear-gradient(135deg, #0d7377, #64ffda);
    border: none;
    color: #0a0a12;
    padding: 0.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
    border-radius: 11px;
    transition: all 0.3s ease-in-out;
}

form button:hover {
    background: linear-gradient(135deg, #64ffda, #0d7377);
    border-radius: 1.7rem;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.h-captcha {
    text-align: center;
}

.media-buttons .btn {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease-in-out;
}

.media-buttons .btn i {
    transition: all 0.3s ease-in-out;
}

.media-buttons .btn i:hover {
    transform: scale(1.19);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}



/*Footer section*/
footer {
    background: linear-gradient(135deg, #0a0a12, #12122a);
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d7377, #64ffda, #0d7377);
    opacity: 0.3;
}

footer p {
    margin: 0;
    color: #f0f0f0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}




/*Shiny Text Animation*/
.shiny-text {
    color: #b5b5b5a4;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    animation: shine 3.9s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 100%;
    }
    100% {
        background-position: -100%;
    }
}

.shiny-text.disabled {
    animation: none;
}




/*Responsive styles*/
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar .container {
        flex-direction: column;
    }

    .nav-heading {
        margin-bottom: 1rem;
        text-align: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-menu a {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }


    #name{
        text-decoration: underline;
    }
    
    .card-title h2:after {
        width: 100%;
        left: 0;
    }

    .aboutme-content {
        flex-direction: column;
        align-items: center;
    }

    .aboutme-image {
        margin-bottom: 2rem;
    }

    .aboutme-desc {
        margin-left: 0;
        margin-top: 0.5rem;
        padding: 0 1rem;
        text-align: center;
        position: relative;
    }

    .vertical-line {
        display: none;
    }

    .aboutme-desc::before,
    .aboutme-desc::after {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        box-shadow: none;
        background: transparent;
        pointer-events: none;
    }
    
    .aboutme-desc::before {
        top: 0;
        left: 0;
        border-top: 2px solid #64ffda;
        border-left: 2px solid #64ffda;
        animation: subtlePulse 3s infinite;
    }
    
    .aboutme-desc::after {
        bottom: 0;
        right: 0;
        border-bottom: 2px solid #64ffda;
        border-right: 2px solid #64ffda;
        animation: subtlePulse 3s infinite 1.5s;
    }
    
    @keyframes subtlePulse {
        0% { opacity: 0.5; }
        50% { opacity: 1; }
        100% { opacity: 0.5; }
    }

    .media-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .media-buttons .btn {
        margin: 0.5rem;
    }


    .education {
        width: 100%;
    }

    .education li {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .education li h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .education li p {
        font-size: 0.9rem;
        margin: 0.2rem 0;
    }

    .education li a {
        font-size: 0.85rem;
    }


    .skill-icon {
        font-size: 1rem;
        min-width: 18px;
    }

    .skill-name {
        font-size: 0.9rem;
        margin-left: 0.3rem;
    }

    .skill {
        padding: 0.8rem;
        gap: 0.3rem;
    }

    .skill:hover .skill-icon {
        transform: scale(1.05) rotate(3deg);
    }

    .skill:hover .skill-name {
        transform: translateX(2px);
    }

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

    .skill-bar {
        animation-duration: 6s;
    }
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 30, 0.8);
}

::-webkit-scrollbar-thumb {
    background: #0d7377;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64ffda;
}


section:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
}
