/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #0b001a;
    color: #222;
    overflow-x: hidden;
}

/* =========================
   NAVBAR & LOGO
========================= */
.navbar {
    background: #f3e5f503 !important;
    backdrop-filter: blur(10px);
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b388ff;
}

.text-gradient {
    background: linear-gradient(181deg, #9c27b0f2, #1A237E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   HERO SECTION (GALAXY)
========================= */
.hero {
    min-height: 80vh;
    background: radial-gradient(circle at top, #3a0ca308, #2400469e, #10002b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
        animation: floatText 4s ease-in-out infinite;
    }

    .hero p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* =========================
   ANIMATIONS
========================= */
@keyframes floatText {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SECTIONS
========================= */
section {
    background: transparent;
}

.container {
    color: #222;
}

/* =========================
   SERVICE BOXES
========================= */
.service-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .service-box h5 {
        color: #5a189a;
        font-weight: 600;
    }

    .service-box:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(155, 89, 255, 0.3);
    }

/* =========================
   CARDS (TESTIMONIALS / WORKSHOPS)
========================= */
.card {
    border: none;
    border-radius: 16px;
    transition: all 0.4s ease;
}

    .card img {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(155, 89, 255, 0.3);
    }

/* =========================
   BUTTONS (GLOW EFFECT)
========================= */
.btn-primary,
.btn-success {
    background: linear-gradient(45deg, #9d4edd, #5a189a);
    border: none;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.6);
    transition: all 0.3s ease;
}

    .btn-primary:hover,
    .btn-success:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(199, 125, 255, 0.9);
    }

/* =========================
   FOOTER
========================= */
.footer {
    background: #10002b;
    color: #ffffff;
    padding: 10px 10px;
    margin-top: 10px;
    margin-bottom:5px;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
    z-index: 999;
}

    .whatsapp:hover {
        background: #1ebc59;
        color: #fff;
    }

/* =========================
   GALAXY STARS BACKGROUND
========================= */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.5;
    z-index: -1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
/* =========================
   BACKGROUND IMAGE
========================= */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/galaxy-bg.jpg") no-repeat center center / cover;
    opacity: 0.25; /* controls darkness/light */
    z-index: -2;
}
/* =========================
   LIGHT THEME (DEFAULT)
========================= */
body.light-theme {
    background-color: #f6f2ff;
    color: #2b2b2b;
}

/* =========================
   DARK THEME
========================= */
body.dark-theme {
    background-color: #0b001a;
    color: #ffffff;
}

    body.dark-theme .navbar {
        background: rgba(15, 5, 40, 0.9) !important;
    }

    body.dark-theme .service-box,
    body.dark-theme .card {
        background: #1a1033;
        color: #ffffff;
    }
/* =========================
   DARK THEME TEXT FIX
========================= */
body.dark-theme {
    color: #f2f2f2;
}

    body.dark-theme p,
    body.dark-theme h1,
    body.dark-theme h2,
    body.dark-theme h3,
    body.dark-theme h4,
    body.dark-theme h5,
    body.dark-theme h6,
    body.dark-theme li,
    body.dark-theme span {
        color: #f2f2f2 !important;
    }

    body.dark-theme .service-box,
    body.dark-theme .card {
        background: #1e1240;
        color: #ffffff;
    }

    body.dark-theme .navbar a {
        color: #ffffff !important;
    }




