:root {
    --primary-color: #00f7ff;
    --secondary-color: #0056b3;
    --text-color: #ffffff;
    --bg-color: #0a192f;
    --card-bg: #112240;
    --nav-bg: rgba(10, 25, 47, 0.95);
    --neon-glow: 0 0 10px rgba(0, 247, 255, 0.5),
                 0 0 20px rgba(0, 247, 255, 0.3),
#about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 247, 255, 0.05) 0%,
        rgba(0, 247, 255, 0.02) 30%,
        transparent 70%);
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    position: relative;
    z-index: 1;
    background: rgba(17, 34, 64, 0.9);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.2),
                0 0 60px rgba(0, 247, 255, 0.1),
                inset 0 0 30px rgba(0, 247, 255, 0.15);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.glowing-box {
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3),
                0 0 40px rgba(0, 247, 255, 0.1),
                inset 0 0 20px rgba(0, 247, 255, 0.2);
    animation: boxGlow 4s infinite alternate;
    position: relative;
    overflow: hidden;
}

@keyframes boxGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 247, 255, 0.3),
                    0 0 40px rgba(0, 247, 255, 0.1),
                    inset 0 0 20px rgba(0, 247, 255, 0.2);
        border-color: rgba(0, 247, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 247, 255, 0.4),
                    0 0 50px rgba(0, 247, 255, 0.2),
                    inset 0 0 30px rgba(0, 247, 255, 0.3);
        border-color: rgba(0, 247, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 247, 255, 0.3),
                    0 0 40px rgba(0, 247, 255, 0.1),
                    inset 0 0 20px rgba(0, 247, 255, 0.2);
        border-color: rgba(0, 247, 255, 0.2);
    }
}

.about-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 247, 255, 0.1) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
    pointer-events: none;
}

.about-content:hover::after {
    opacity: 1;
}

.about-text-container {
    background: rgba(10, 25, 47, 0.8);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 800px;
    position: relative;
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.1);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.about-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        transparent
    );
}

.about-text-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        transparent
    );
}

.about-text-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.4);
}

.about-text {
    color: #e6e6e6;
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0 auto;
    text-align: left;
    opacity: 0.9;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    padding: 0 1rem;
}

.about-text:hover {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.glow-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin: 2rem auto 0.5rem;
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    background: rgba(0, 247, 255, 0.05);
    color: var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1),
                inset 0 0 10px rgba(0, 247, 255, 0.1);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 247, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    box-shadow: 0 0 20px var(--primary-color),
                0 0 40px rgba(0, 247, 255, 0.3),
                0 0 60px rgba(0, 247, 255, 0.1);
    transform: translateY(-3px);
    background: rgba(0, 247, 255, 0.15);
    letter-spacing: 3px;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin: 1.5rem 0;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3),
                 0 0 20px rgba(0, 247, 255, 0.2),
                 0 0 30px rgba(0, 247, 255, 0.1);
    letter-spacing: 2px;
    animation: pulseText 3s infinite;
    position: relative;
    display: inline-block;
}

@keyframes pulseText {
    0% {
        text-shadow: 0 0 10px rgba(0, 247, 255, 0.3),
                     0 0 20px rgba(0, 247, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 247, 255, 0.5),
                     0 0 30px rgba(0, 247, 255, 0.3),
                     0 0 45px rgba(0, 247, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 247, 255, 0.3),
                     0 0 20px rgba(0, 247, 255, 0.2);
    }
}0 30px rgba(0, 247, 255, 0.1);
    --border-color: #1e3251;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #00f7ff;
    text-shadow: 0 0 20px rgba(0, 247, 255, 0.7),
                 0 0 40px rgba(0, 247, 255, 0.5),
                 0 0 60px rgba(0, 247, 255, 0.3);
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(0, 247, 255, 0.1) 0%,
        rgba(0, 247, 255, 0.05) 20%,
        transparent 70%);
    transition: all 0.6s ease;
    z-index: -1;
    border-radius: 50%;
}

.logo:hover::before {
    width: 150%;
    height: 150%;
    animation: logoGlow 2s infinite;
}

@keyframes logoGlow {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
    50% {
        width: 150%;
        height: 150%;
        opacity: 0.2;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: var(--neon-glow);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(1, 65, 255, 0.03),
        rgba(1, 65, 255, 0),
        transparent 60%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-text {
    max-width: 800px;
}

.glowing-text {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3),
                 0 0 20px rgba(0, 247, 255, 0.3),
                 0 0 30px rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
}

.glowing-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(0, 247, 255, 0.1) 0%,
        rgba(0, 247, 255, 0.05) 20%,
        transparent 70%);
    transition: all 0.6s ease;
    z-index: -1;
    border-radius: 50%;
}

.glowing-text:hover {
    color: #00f7ff;
    text-shadow: 0 0 20px rgba(0, 247, 255, 0.7),
                 0 0 40px rgba(0, 247, 255, 0.5),
                 0 0 60px rgba(0, 247, 255, 0.3);
    transform: scale(1.02);
}

.glowing-text:hover::before {
    width: 200%;
    height: 200%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
    50% {
        width: 200%;
        height: 200%;
        opacity: 0.2;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
}

.subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.8);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-shadow: var(--neon-glow);
}

/* Home Section */
#home {
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.profile-image-container {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    animation: borderRotate 5s linear infinite;
}

.profile-image-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    filter: blur(10px);
    z-index: -1;
    opacity: 0.7;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.neon-glow {
    position: relative;
}

.neon-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 15px var(--primary-color),
                0 0 30px var(--primary-color),
                0 0 45px var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image:hover .neon-glow::after {
    opacity: 1;
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(0deg, var(--primary-color), transparent);
    }
    100% {
        background: linear-gradient(360deg, var(--primary-color), transparent);
    }
}

.about-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Skills Section */
#journey, #skills {
    padding: 100px 5%;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-shadow: var(--neon-glow);
}

.journey-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-column {
    padding: 2rem;
}

.column-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: var(--neon-glow);
}

.journey-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.journey-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.journey-card .year {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.journey-card .description {
    color: #8892b0;
    font-size: 0.95rem;
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skills-column {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.skill-bars {
    padding: 1rem;
}

.skill-bar {
    margin-bottom: 2rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.progress-line {
    position: relative;
    height: 6px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-line span {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: var(--neon-glow);
}

.progress-line span[data-percent="95"] {
    width: 95%;
}

.progress-line span[data-percent="90"] {
    width: 90%;
}

.progress-line span[data-percent="85"] {
    width: 85%;
}

/* Projects Section */
#projects {
    padding: 60px 5%;
    background-color: #f4f4f4;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3, .project-card p {
    padding: 1rem;
}

.visit-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin: 1rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.visit-btn:hover {
    background-color: #0056b3;
}

/* Certificates Section */
#certificates {
    padding: 60px 5%;
    background-color: #fff;
}

.certificates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.certificate-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.certificate-card h3, .certificate-card p {
    padding: 1rem;
}

/* Contact Section */
#contact {
    padding: 100px 5%;
    background-color: var(--bg-color);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.certificate-issuer{
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 1rem;    
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn i {
    font-size: 1.1rem;
}

.contact-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: var(--neon-glow);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .journey-container, .skills-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
}

/* Section Headings */
h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        flex: 0 0 200px;
    }

    .nav-links {
        display: none;
    }
}
