/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
}

h1, h2, p, a {
    text-align: center;
}
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #121212;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00c6ff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.navbar:hover {
    background: #1a1a1a;
}

.navbar-logo img {
    width: 60px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
}

.navbar a {
    margin: 0 20px;
    text-decoration: none;
    color: #00c6ff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s ease;
}

.navbar a:hover {
    color: #008ac6;
    transform: translateY(-5px);
}

.navbar .social-links a {
    margin-left: 20px;
    font-size: 1.6rem;
    color: #00c6ff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .social-links a:hover {
    color: #008ac6;
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('pip.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0 20px #00c6ff, 0 0 30px #00c6ff;
    position: relative;
    overflow: hidden;
    animation: heroBackgroundAnimation 10s infinite alternate;
}

.hero-content {
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #fff;
}

.hero .highlight {
    color: #00c6ff;
    font-weight: bold;
    text-shadow: 0 0 10px #00c6ff, 0 0 30px #00c6ff;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero .btn {
    background: linear-gradient(45deg, #00c6ff, #008ac6);
    padding: 15px 30px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin: 10px;
}

.hero .btn:hover {
    background-color: #008ac6;
    transform: scale(1.1);
}

/* Animations */
@keyframes heroBackgroundAnimation {
    0% {
        background-position: center center;
    }
    100% {
        background-position: top left;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Buttons */
.btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #00c6ff, #008ac6);
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.4);
}

/* Sections */
section {
    padding: 50px 20px;
    margin: 20px 0;
}

/* Skills */
.skills-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(120deg, #1f1c2c, #928dab);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skills-box {
    position: relative;
    width: 120px;
    height: 120px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 120px;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.skills-box:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 40px rgba(0, 255, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.8);
    border-color: #ff00ff;
}

.skill-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    line-height: 70px;
    font-size: 14px;
    color: #00c6ff;
    text-align: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.skills-box:hover .skill-circle {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), inset 0 0 15px rgba(0, 0, 0, 0.9);
}

.skill-circle::after {
    content: attr(data-skill);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* Certificates */
.certificates {
    background: linear-gradient(135deg, rgba(20, 20, 50, 0.8), rgba(40, 40, 90, 0.9));
    padding: 2rem;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.certificates h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #ff007f;
}

.certificates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.certificate {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.certificate:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.certificate img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.certificate p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .certificates-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* Footer */
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 255, 204, 0.8));
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #00ff99;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
}

.contact p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 10px 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact a {
    color: #00ff99;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 204, 1);
}

/* Footer Section */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #00ff99;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer p {
    margin: 0;
    letter-spacing: 1px;
}

.footer p:hover {
    color: #00ff99;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
}


/*about me*/
/* Main container styling */
.about {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #f3f3f3;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    font-family: 'Arial', sans-serif;
}

/* Layout styling for content */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Photo container */
.about-photo {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #0078ff;
    box-shadow: 0 8px 30px rgba(0, 120, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 120, 255, 0.8);
}

/* Image adjustments */
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Aligns photo properly */
    border-radius: 50%;
}

/* Text styling */
.text-content {
    max-width: 600px;
    text-align: left;
}

.text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #0078ff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.text-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ddd;
}

.text-content p strong {
    color: #0078ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }
}

/* projects */

.projects {
    background: linear-gradient(135deg, rgba(20, 20, 50, 0.8), rgba(40, 40, 90, 0.9));
    padding: 2rem;
    color: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #ff007f;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.project h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ff007f;
}

.project .description {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff007f, #5900ff);
    transition: background 0.3s;
}

.btn:hover {
    background: linear-gradient(135deg, #5900ff, #ff007f);
}


