:root {
    --primary: #ffd6e7;
    --secondary: #ffecf8;
    --accent: #ff69b4;
    --text: #4a4a4a;
    --card-bg: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #ffd6e7, #e5b3ff);
    color: var(--text);
    min-height: 100vh;
}

.sparkle {
    position: absolute;
    pointer-events: none;
    animation: sparkle 2s linear infinite;
}

@keyframes sparkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    background: linear-gradient(45deg, #ff69b4, #b469ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text);
    position: relative;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd6e7, #e5b3ff);
    padding: 12rem 2rem 6rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: floating 3s ease-in-out infinite;
    background: linear-gradient(45deg, #ff69b4, #b469ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    animation: floatAnimation 15s infinite linear;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg) scale(0.8);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

button {
    cursor: pointer;
}

.achievements {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.9);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1rem;
}

.projects {
    padding: 6rem 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    transition: bottom 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card:hover .project-info {
    bottom: 0;
}

.project-info a {
    text-decoration: none;
    color: #333;
}

.contact {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--accent);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.team-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent);
    transform: translateZ(50px);
}

.team-card h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateZ(30px);
}

.team-card p {
    color: var(--text);
    transform: translateZ(20px);
}

.team-card a {
    text-decoration: none;
    color: #555454;
    transform: 0.3s;
}

.team-card a:hover {
    color: #8a8a8a
}

.cta-button {
    background: linear-gradient(45deg, #ff69b4, #b469ff);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.about {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e5b3ff, #ffd6e7);
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    position: relative;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff69b4, #b469ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text);
}

.about-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.feature-card {
    flex: 1;
    margin: 0 1rem;
    padding: 1.5rem;
    background: var(--secondary);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card p {
    font-size: 0.9rem;
}

::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #afafaf; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #979797; 
  }