*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body{
    background-color: black;
}
.one{
    background-color :green;
    color: gold;
    font-style: italic;
    padding-top: 20px;
    padding-bottom: 20px;
}
.value{
    color: gold;
}

div{
    font-style: italic;
    
}
.two{
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #cc0000;
    text-shadow:
        0 0 5px #00f7ff,
        0 0 10px #00f7ff,
        0 0 20px #00f7ff,
        0 0 40px #00e1ff,
        0 0 80px #00e1ff;
    margin-top: 17%;
    margin-bottom: 10%;
    font-size: 40px;
}
.About{
    background-color: black;
    color: gold;
    margin-top: 20px;
    
}
ul,li{
    margin-left: 60%;
}
hr{
    height: solid;
}
.profile-container {
    display: flex;
    align-items: flex-start;   /* TOP align with image */
    gap: 40px;                 /* Controls distance from image */
    padding: 40px 80px;
    background-color: black;
    color: green;
}

/* Image */
.profile-image img {
    width: 350px;
    border-radius: 20px;
    margin-top: 20px;
    margin: 40px;
}

/* Right content */
.profile-details {
    max-width: 900px;
    margin-top: 60px;
    padding-left: 15%;
    font-style: italic;

}

/* Remove default browser spacing */
.profile-details h1 {
    margin: 0;
    font-size: 80px;
}

.profile-details h3 {
    margin: 8px 0 16px;
}

.profile-details p {
    margin: 6px 0;
}
.p{
    background-color: black;
    color:gold;
}
.projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 100px;
            text-align: justify;
            position: relative;
            margin: 50px;
         }
.project-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 217, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .project-card:hover::before {
            left: 100%;
        }

        .project-card:hover {
            border-color: #00d9ff;
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
            transform: translateY(-10px);
        }

        .project-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #00ff88;
        }

        .project-card p {
            color: #a0a0a0;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid #00d9ff;
            border-radius: 20px;
            font-size: 12px;
            color: #00d9ff;
        }
        .section-title{
            color: gold;
            margin-bottom: 40px;
        }
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .certificate-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 110, 0.3);
            border-radius: 15px;
            padding: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 20px;
        }

        .certificate-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.2), transparent);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .certificate-card:hover {
            border-color: #ff006e;
            box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
            transform: translateY(-10px);
        }

        .certificate-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ff006e;
        }

        .certificate-card h3 {
            font-size: 18px;
            color: #00ff88;
            margin-bottom: 10px;
        }

        .certificate-issuer {
            font-size: 14px;
            color: #00d9ff;
            margin-bottom: 15px;
        }

        .certificate-card p {
            font-size: 13px;
            color: #a0a0a0;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .certificate-date {
            font-size: 12px;
            color: #666;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 0, 110, 0.2);
        }
        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content  {
            font-size: 18px;
            color: white;
            margin-bottom: 40px;
        }

        .contact-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff006e, #ff0099);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
            border: none;
            cursor: pointer;
            margin: 10px;
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(255, 0, 110, 0.8);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(0, 217, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00d9ff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .social-link:hover {
            border-color: #00d9ff;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
            transform: translateY(-5px);
        }