@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0110;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 3D PARALLAX HERO SCENE */
.parallax-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    perspective: 1000px;
    overflow: hidden;
    background: #0b0110;
    z-index: 1;
}

.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.scene img {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
}

#bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.6);
}

#decoration1 {
    top: -5%;
    left: -5%;
    width: 50vw;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 0, 204, 0.5));
}

#decoration2 {
    top: -5%;
    right: -5%;
    width: 50vw;
    z-index: 1;
    transform: scaleX(-1);
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
}

#splash {
    top: 50%;
    left: 50%;
    width: 80vw;
    max-width: 1000px;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.8;
}

#holi-text {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    max-width: 600px;
    z-index: 3;
    filter: drop-shadow(0 0 30px #ff00cc);
}

#baloon1 {
    top: 20%;
    left: 10%;
    width: 12vw;
    z-index: 5;
}

#baloon2 {
    top: 30%;
    right: 15%;
    width: 10vw;
    z-index: 5;
}

#baloon3 {
    bottom: 20%;
    left: 25%;
    width: 8vw;
    z-index: 5;
}

#color1 {
    bottom: -10%;
    left: 5%;
    width: 25vw;
    z-index: 6;
    filter: drop-shadow(0 -10px 40px rgba(255, 0, 204, 0.6));
}

#color2 {
    bottom: -10%;
    right: 5%;
    width: 22vw;
    z-index: 6;
    filter: drop-shadow(0 -10px 40px rgba(0, 247, 255, 0.6));
}

#watergun1 {
    bottom: 5%;
    left: 15%;
    width: 20vw;
    z-index: 7;
}

#watergun2 {
    bottom: 10%;
    right: 15%;
    width: 20vw;
    z-index: 7;
    transform: scaleX(-1);
}

/* HERO TEXT CONTENT */
.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.subhead {
    font-size: 1.2rem;
    color: #00f7ff;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #ddd);
    -webkit-background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-desc {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff00cc, #00f7ff);
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.4);
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 247, 255, 0.6);
    border-color: #fff;
}

/* CONTENT SECTIONS */
.content-sections {
    position: relative;
    background: #0b0110;
    z-index: 20;
}

.sec {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sec-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    background: rgba(11, 1, 16, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glow-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ff00cc, #00f7ff, #ffee00);
    -webkit-background-clip: text;
    color: transparent;
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 0, 204, 0.3));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.6));
    }
}

.sec p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* VISION CARDS */
.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(255, 0, 204, 0.3);
    border-color: #ff00cc;
}

.card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
}

/* DECORATIVE IMAGES IN SECTIONS (The OP 3D feel) */
.sec-img {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.s-b1 {
    top: 10%;
    right: 5%;
    width: 150px;
}

.s-c1 {
    bottom: 10%;
    left: -5%;
    width: 300px;
    transform: rotate(-20deg);
}

.s-splash {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    opacity: 0.1;
}

.s-w1 {
    top: 20%;
    left: -5%;
    width: 250px;
    transform: rotate(30deg);
}

.s-w2 {
    bottom: 20%;
    right: -5%;
    width: 250px;
    transform: rotate(-30deg) scaleX(-1);
}

.s-b2 {
    top: 20%;
    left: 15%;
    width: 120px;
}

.s-b3 {
    bottom: 30%;
    right: 10%;
    width: 100px;
}

.s-c2 {
    bottom: 5%;
    right: 5%;
    width: 200px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px;
    background: #050008;
    border-top: 1px solid rgba(255, 0, 204, 0.3);
}

footer h2 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff00cc, #00f7ff);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 3px;
}