

/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --primary-bg: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --accent-gradient: linear-gradient(90deg, #ff8c00, #ff007f);
    --light-color: #ffffff;
    --text-color: #f0f0f0;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.1);
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Cosmic Particle Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 127, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    z-index: -1;
    animation: particleMove 20s infinite alternate;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    background: var(--accent-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--light-color);
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

/* Enhanced Glassmorphism Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
    transition: all 0.5s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card:hover::before {
    transform: rotate(30deg) translate(20%, 20%);
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    border-radius: 20px;
}

.gradient-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff8c00, #ff007f, #ff8c00);
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 22px;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border:hover::after {
    opacity: 1;
}

/* --- HEADER --- */
.header {
    background: rgba(13, 12, 41, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { 
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-links { 
    list-style: none; 
    display: flex; 
}

.nav-links li { 
    margin-left: 30px; 
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--heading-font);
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8c00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.nav-links a:hover::after { 
    width: 100%; 
}

.hamburger { 
    display: none; 
    font-size: 1.8rem; 
    cursor: pointer; 
    color: var(--light-color);
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.2);
    color: #ff8c00;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-content { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    align-items: center; 
    gap: 3rem; 
}

.parent-logo { 
    height: 160px; 
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.5));
}

.main-heading { 
    font-family: var(--heading-font); 
    font-size: 1.8rem; 
    color: var(--light-color); 
    line-height: 1.2; 
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.neon-glow {
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff007f,
        0 0 30px #ff007f;
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff007f, 0 0 30px #ff007f; }
    to { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff007f, 0 0 40px #ff007f; }
}

.tagline { 
    font-size: 1.4rem; 
    margin: 1rem 0; 
    font-weight: 600; 
    background: var(--accent-gradient); 
    color: transparent; 
    -webkit-background-clip: text; 
    background-clip: text;
}

.address { 
    font-size: 1rem; 
    color: #ccc; 
    margin-bottom: 2.5rem; 
    max-width: 450px; 
}

.hero-image { 
    position: relative; 
    text-align: center; 
}

/* Glowing Aura Effect */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 0, 127, 0.3) 0%, rgba(255, 140, 0, 0.2) 50%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    z-index: -1;
}

.hero-logo-main {
    max-width: 90%;
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float { 
    0% { transform: translateY(0px); } 
    50% { transform: translateY(-25px); } 
    100% { transform: translateY(0px); } 
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

/* --- ABOUT SECTION --- */
.about-section { 
    padding: 6rem 0; 
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.vision-mission { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2.5rem; 
    margin-top: 3rem; 
}

.vision-mission h3 { 
    color: #ff8c00; 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
}

.vision-mission h3 i { 
    margin-right: 15px; 
    font-size: 1.6rem; 
}

.vision-mission ul { 
    list-style: none; 
}

.vision-mission li { 
    margin-bottom: 0.8rem; 
    display: flex; 
    align-items: flex-start; 
}

.vision-mission li i { 
    color: #ff007f; 
    margin-right: 12px; 
    margin-top: 6px; 
}

/* --- PRODUCTS SECTION --- */
.products-section { 
    padding: 6rem 0; 
    background: rgba(0,0,0,0.2); 
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    z-index: -1;
}

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2.5rem; 
}

/* Holographic Product Cards */
.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
    padding: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.1) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.product-card img { 
    max-width: 100%; 
    height: 200px; 
    object-fit: contain; 
    margin-bottom: 1.5rem; 
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.3));
}

.product-card:hover img { 
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 0, 127, 0.5));
}

.product-card h3 { 
    color: var(--light-color); 
    font-size: 1.3rem; 
    transition: all 0.3s ease;
}

.product-card:hover h3 {
    color: #ff8c00;
}

.much-more { 
    text-align: center; 
    font-size: 1.8rem; 
    margin-top: 4rem; 
    font-family: var(--heading-font); 
    font-weight: 600; 
    background: var(--accent-gradient); 
    color: transparent; 
    -webkit-background-clip: text; 
    background-clip: text;
    position: relative;
}

.much-more::after {
    content: '✨';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* --- PLAN SECTION --- */
.plan-section { 
    padding: 6rem 0; 
    background: rgba(0,0,0,0.1);
}

.package-container { 
    display: flex; 
    justify-content: center; 
    gap: 3rem; 
    flex-wrap: wrap; 
}

.package-card { 
    background: linear-gradient(145deg, rgba(36, 36, 62, 0.8), rgba(15, 12, 41, 0.8)); 
    border: 2px solid transparent; 
    border-image: var(--accent-gradient) 1; 
    border-radius: 20px; 
    padding: 2.5rem; 
    max-width: 450px; 
    width: 100%; 
    text-align: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); 
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover { 
    transform: scale(1.03); 
}

.package-header h3 { 
    font-size: 2rem; 
    background: var(--accent-gradient); 
    color: transparent; 
    -webkit-background-clip: text; 
    background-clip: text; 
    margin-bottom: 1rem;
}

.package-header .price { 
    font-size: 1.3rem; 
    margin: 0.5rem 0 1.5rem 0; 
}

.package-header .price span { 
    text-decoration: line-through; 
    color: #999; 
    margin-right: 10px; 
}

.package-img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px; 
    margin-bottom: 1.5rem; 
    transition: transform 0.3s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-card h4 { 
    font-size: 1.2rem; 
    margin-bottom: 1rem; 
    color: var(--light-color); 
}

.package-card ul { 
    list-style: none; 
    text-align: left; 
    margin-bottom: 1.5rem; 
}

.package-card ul li { 
    margin-bottom: 0.5rem; 
    display: flex;
    align-items: center;
}

.package-card ul i { 
    background: var(--accent-gradient); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-right: 10px; 
    font-size: 1.2rem;
}

.voucher { 
    background: var(--accent-gradient); 
    color: var(--light-color); 
    padding: 12px; 
    border-radius: 10px; 
    font-weight: bold; 
    margin-top: 1rem; 
    transition: all 0.3s ease;
}

.package-card:hover .voucher {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
}

/* --- INCOME SECTION --- */
.income-section { 
    padding: 6rem 0; 
    background: rgba(0,0,0,0.2); 
}

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

.income-card { 
    text-align: center; 
    padding: 2.5rem 2rem; 
    border-radius: 15px; 
    transition: all 0.4s ease; 
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border); 
    position: relative;
    overflow: hidden;
}

.income-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.income-card:hover::before {
    transform: scaleX(1);
}

.income-card:hover { 
    transform: translateY(-10px); 
    background: rgba(255, 255, 255, 0.1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.income-icon { 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
    background: var(--accent-gradient); 
    color: transparent; 
    -webkit-background-clip: text; 
    background-clip: text; 
    transition: all 0.3s ease;
}

.income-card:hover .income-icon {
    transform: scale(1.2);
}

.income-card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 0.5rem; 
    color: var(--light-color); 
}

.income-value { 
    font-size: 2.5rem; 
    font-weight: bold; 
    font-family: var(--heading-font); 
    background: var(--accent-gradient); 
    color: transparent; 
    -webkit-background-clip: text; 
    background-clip: text; 
    margin: 1rem 0;
}

/* --- REWARDS TIMELINE --- */
.rewards-section { 
    padding: 6rem 0; 
    position: relative;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.rewards-timeline { 
    position: relative; 
    max-width: 800px; 
    margin: auto; 
}

.rewards-timeline::after { 
    content: ''; 
    position: absolute; 
    width: 4px; 
    background: var(--accent-gradient); 
    top: 0; 
    bottom: 0; 
    left: 50%; 
    margin-left: -2px; 
    border-radius: 2px; 
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5); 
}

.timeline-item { 
    padding: 10px 40px; 
    position: relative; 
    width: 50%; 
}

.timeline-item:nth-child(odd) { 
    left: 0; 
}

.timeline-item:nth-child(even) { 
    left: 50%; 
}

.timeline-item::after { 
    content: ''; 
    position: absolute; 
    width: 20px; 
    height: 20px; 
    right: -12px; 
    background-color: #302b63; 
    border: 4px solid #ff8c00; 
    top: 35px; 
    border-radius: 50%; 
    z-index: 1; 
    transition: transform 0.3s ease; 
}

.timeline-item:hover::after { 
    transform: scale(1.3); 
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
}

.timeline-item:nth-child(even)::after { 
    left: -10px; 
}

.timeline-content { 
    padding: 20px 30px; 
    background: var(--glass-bg); 
    position: relative; 
    border-radius: 10px; 
    border: 1px solid var(--glass-border); 
    transition: all 0.3s ease; 
}

.timeline-item:hover .timeline-content { 
    border-color: rgba(255, 140, 0, 0.5); 
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.2); 
    transform: scale(1.05);
}

.timeline-content h4 { 
    color: #ff8c00; 
    font-size: 1.3rem; 
    margin-bottom: 0.5rem;
}

/* --- TERMS & FOOTER --- */
.terms-section { 
    padding: 6rem 0; 
    background: rgba(0,0,0,0.2); 
}

.terms-list { 
    max-width: 800px; 
    margin: auto; 
    background: var(--glass-bg); 
    padding: 2.5rem; 
    border-radius: 15px; 
    list-style-type: decimal; 
    padding-left: 4rem; 
    border: 1px solid var(--glass-border); 
    position: relative;
}

.terms-list li { 
    margin-bottom: 1rem; 
    color: #ccc; 
    transition: all 0.3s ease;
    padding-left: 1rem;
}

.terms-list li:hover {
    color: var(--light-color);
    transform: translateX(10px);
}

.footer { 
    padding: 5rem 0 3rem 0; 
    text-align: center; 
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom center, rgba(255, 0, 127, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.footer h2 { 
    font-size: 2.5rem; 
    margin-bottom: 2.5rem; 
    background: var(--accent-gradient); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    position: relative;
}

.footer h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 15px auto;
    border-radius: 2px;
}

.contact-info { 
    display: flex; 
    justify-content: center; 
    gap: 2.5rem; 
    flex-wrap: wrap; 
    margin-bottom: 2.5rem; 
}

.contact-info a { 
    color: var(--light-color); 
    text-decoration: none; 
    font-size: 1.2rem; 
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info a:hover { 
    color: #ff8c00; 
    transform: translateY(-5px);
}

.contact-info i { 
    margin-right: 10px; 
    color: #ff8c00; 
    font-size: 1.4rem;
}

.social-media a { 
    color: var(--light-color); 
    font-size: 1.8rem; 
    margin: 0 15px; 
    transition: all 0.3s ease; 
    display: inline-block;
}

.social-media a:hover { 
    color: #ff007f; 
    transform: translateY(-5px) scale(1.2);
}

.copyright { 
    margin-top: 3rem; 
    font-size: 0.9rem; 
    color: #888; 
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255,140,0,0.8) 0%, rgba(255,0,127,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .section-title { font-size: 2.5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { order: 2; }
    .hero-image { order: 1; margin-bottom: 3rem; }
    .main-heading { font-size: 3.2rem; }
    .address { margin: 1.5rem auto; }
    .vision-mission { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 70%; 
        height: 100vh; 
        background: #1a183e; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        transition: right 0.5s ease-in-out; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.2); 
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 1.5rem 0; }
    .hamburger { display: block; z-index: 1001; }
    .rewards-timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; text-align: left; }
    .timeline-item::after { left: 20px; top: 45px; }
    .contact-info { flex-direction: column; gap: 1.5rem; }
    .main-heading { font-size: 2.5rem; }
    .tagline { font-size: 1.5rem; }
    .package-container { flex-direction: column; align-items: center; }
    .package-card { max-width: 100%; }
}

@media (max-width: 576px) {
    .section-title { font-size: 2rem; }
    .main-heading { font-size: 2rem; }
    .tagline { font-size: 1.2rem; }
    .btn { padding: 12px 25px; }
    .card { padding: 1.5rem; }
    .product-card { padding: 1.5rem; }
    .income-card { padding: 1.5rem 1rem; }
    .terms-list { padding: 1.5rem 1.5rem 1.5rem 3rem; }
}