/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.header-title {
    font-size: 48px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 18px;
    font-weight: 300;
}

/* Privacy Policy Section */
.privacy-policy {
    background: #222;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s;
    position: relative;
}

.policy-content h2 {
    font-size: 28px;
    color: #ffffff;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 22px;
    color: #4CAF50;
    margin-top: 20px;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.6em;
    color: #ccc;
}

/* Sections */
section {
    padding: 40px 0;
    text-align: center;
}

.intro {
    background: url('https://source.unsplash.com/random/1920x1080') no-repeat center center/cover;
    color: #ffffff;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    position: relative;
}

.intro-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    animation: fadeIn 2s;
}

/* Skills Grid */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.skill-item {
    background: #222;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease-in-out;
}

.skill-item:hover {
    transform: scale(1.1);
    background: linear-gradient(145deg, #1e3c72, #2a5298);
}

.skill-item img {
    width: 60px;
    margin-bottom: 15px;
}

/* Projects */
.projects .project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Contact */
.contact-button {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #f64f59;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Effects */
.glitch {
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% { text-shadow: 2px 2px 0px #ff00c1, -2px -2px 0px #00fff6; }
    50% { text-shadow: -2px -2px 0px #ff00c1, 2px 2px 0px #00fff6; }
    100% { text-shadow: 2px 2px 0px #ff00c1, -2px -2px 0px #00fff6; }
}

.neon {
    color: #39ff14;
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
}

.hover-highlight:hover {
    color: #00c9ff;
    background: linear-gradient(135deg, #c471ed, #f64f59);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 30px;
}

.back-button a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.back-button a:hover {
    background: #4CAF50;
}
