:root {
    --bg-main: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-sub: #b0aebe;
    --highlight-primary: #00c6ff;
    --highlight-secondary: #0072ff;
    --shadow-glow: rgba(0, 198, 255, 0.4);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(18, 18, 18, 0.8);
    border-bottom: 1px solid rgba(0, 198, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo span {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    
}



nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: var(--highlight-secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 198, 255, 0.15), transparent 60%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.2), transparent 70%);
    z-index: -1;
    
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15), transparent 70%);
    z-index: -1;
    
}



.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
    padding-right: 40px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-heading .highlight {
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
    display: inline-block;
    
    position: relative;
    z-index: 1;
}



.hero-subheading {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-sub);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
}

.hero-subheading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.hero-description {
    color: var(--text-sub);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--highlight-primary), transparent, var(--highlight-secondary));
    z-index: -1;
    
    border-radius: 50px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 198, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--highlight-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 198, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: -1;
}

.btn-secondary:hover {
    background: transparent;
    transform: translateY(-3px);
    border-color: var(--highlight-secondary);
}

.btn-secondary:hover::before {
    transform: translateX(100%);
}



.hero-image {
    flex: 1;
    position: relative;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 198, 255, 0.3);
    overflow: hidden;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.3));
}

.hero-image:hover .profile-img {
    transform: scale(1.05);
}

.overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/profile-overlay.svg') no-repeat center center/cover;
    mix-blend-mode: screen;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
    
}



.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 48, 0.7);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--highlight-primary), transparent, var(--highlight-secondary));
    z-index: -1;
    
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link:hover::before {
    opacity: 1;
}
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(127, 0, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-glow);
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(0, 198, 255, 0.15), transparent 60%);
    z-index: 0;
    animation: pulse-glow 5s ease-in-out infinite alternate-reverse;
}

.skills-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.skills-column {
    flex: 1;
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skills-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 198, 255, 0.2);
}

.skills-column::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skills-column:hover::before {
    opacity: 1;
}

.skills-category {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-main);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.skills-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 500;
    color: var(--text-main);
}

.skill-percentage {
    color: var(--highlight-secondary);
    font-weight: 600;
}

.skill-progress-bg {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    border-radius: 10px;
    position: relative;
    transition: width 1.5s ease-in-out;
}

.skill-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0 10px 10px 0;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-subheading {
        font-size: 1.8rem;
    }
    
    .hero-image {
        height: 400px;
    }
    
    nav ul {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .skills-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .skills-column {
        width: 100%;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        order: 2;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto;
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-subheading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-image {
        height: 300px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 198, 255, 0.1), transparent 70%);
    z-index: 0;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.6), rgba(20, 20, 35, 0.8));
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 198, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 198, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 198, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card {
    backdrop-filter: blur(10px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--highlight-primary);
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.3));
    
}



.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Work Experience Section */
.work-experience {
    padding: 100px 0;
    position: relative;
}

.work-experience {
    padding: 100px 0;
    position: relative;
}

.work-experience::after {
    content: '';
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--highlight-primary), transparent);
    opacity: 0.5;
}

.work-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(127, 0, 255, 0.1), transparent 50%);
    z-index: -1;
}

.section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    text-shadow: 0 0 15px var(--shadow-glow);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--highlight-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.experience-card {
    background: rgba(30, 30, 48, 0.5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.2);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px var(--shadow-glow);
    border: 1px solid rgba(127, 0, 255, 0.5);
}

.experience-card:hover::before {
    opacity: 0.05;
}

.card-icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 10px;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--highlight-secondary);
}

.experience-card p {
    color: var(--text-sub);
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 30, 48, 0.7);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid rgba(127, 0, 255, 0.3);
}

.learn-more-btn:hover {
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-glow);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, rgba(30, 30, 48, 0.7), rgba(20, 20, 30, 0.9));
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(127, 0, 255, 0.05), transparent 70%);
    z-index: -1;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 220px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--highlight-primary);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(54, 226, 236, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(54, 226, 236, 0.5);
}

.play-button i {
    margin-left: 5px; /* Slight offset for play icon */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 15px;
}

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

.overlay-card {
    position: relative;
}

.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--highlight-secondary);
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-sub);
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(127, 0, 255, 0.3);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.view-more-btn:hover {
    background: var(--highlight-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-glow);
}

.project-item:hover .project-image::before {
    opacity: 0.5;
    filter: blur(20px);
}

.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--highlight-secondary);
}

.project-info p {
    color: var(--text-sub);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.project-links {
    display: flex;
    gap: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(30, 30, 48, 0.7);
    border-radius: 5px;
    transition: var(--transition);
    border: 1px solid rgba(127, 0, 255, 0.3);
}

.project-link:hover {
    background: var(--highlight-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-glow);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--highlight-primary), transparent);
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--highlight-secondary);
}

.contact-info a {
    color: var(--text-sub);
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--highlight-primary), var(--highlight-secondary));
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--text-main);
}

.contact-info a:hover::after {
    width: 100%;
}

.footer-tagline {
    text-align: center;
    color: var(--text-sub);
    font-size: 1rem;
    margin-top: 30px;
}

/* Contact Panel */
.contact-panel {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(20, 20, 30, 0.9), rgba(10, 10, 15, 0.95));
    position: relative;
}

.contact-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(127, 0, 255, 0.05), transparent 70%);
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(30, 30, 48, 0.5);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--shadow-glow);
    border: 1px solid rgba(127, 0, 255, 0.5);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--highlight-secondary);
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--highlight-secondary);
}

.contact-text p {
    color: var(--text-sub);
}

.contact-text a {
    color: var(--text-sub);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--highlight-secondary);
}

.contact-form-container {
    background: rgba(30, 30, 48, 0.5);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(127, 0, 255, 0.3);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-secondary);
    box-shadow: 0 0 10px var(--shadow-glow);
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-glow);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 0 30px var(--shadow-glow);
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--highlight-secondary);
}

.form-success p {
    color: var(--text-sub);
    font-size: 1.1rem;
}

/* Responsive styles for contact panel */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Admin Login Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 30px var(--shadow-glow);
    border: 1px solid rgba(127, 0, 255, 0.3);
    
}



.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-sub);
}

.close-modal:hover {
    color: var(--highlight-secondary);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--highlight-secondary);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-sub);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(14, 14, 26, 0.6);
    border: 1px solid rgba(127, 0, 255, 0.3);
    border-radius: 5px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--highlight-primary);
    box-shadow: 0 0 10px var(--shadow-glow);
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, var(--highlight-primary), var(--highlight-secondary));
    border: none;
    border-radius: 5px;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-glow);
}

#login-message {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

#login-message.error {
    color: #ff4d4d;
}

#login-message.success {
    color: #4dff88;
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-item, .project-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .project-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    header .container {
        padding: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
        font-size: 4rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .project-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-link {
        width: 100%;
        justify-content: center;
    }
}