/* ==========================================================================
   God Chosen Development Center - Master Stylesheet
   Combined styles from all pages with preserved unique classes
   ========================================================================== */

/* ==========================================================================
   1. FONTS & TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   2. SHAPE DIVIDERS
   ========================================================================== */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    margin-bottom: -2px;
}

.shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    margin-top: -2px;
}

/* ==========================================================================
   3. BACKGROUND PATTERNS
   ========================================================================== */
.geometric-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(180, 0, 254, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(232, 181, 30, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dots-pattern {
    background-image: radial-gradient(circle, rgba(180, 0, 254, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

.lines-pattern {
    background-image:
        linear-gradient(45deg, rgba(232, 181, 30, 0.1) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(254, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.zigzag-pattern {
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(180, 0, 254, 0.05) 10px, rgba(180, 0, 254, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(232, 181, 30, 0.05) 10px, rgba(232, 181, 30, 0.05) 20px);
}

.waves-pattern {
    background-image:
        radial-gradient(ellipse at center, rgba(180, 0, 254, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(232, 181, 30, 0.08) 20%, transparent 70%);
    background-size: 80px 40px, 120px 60px;
    background-position: 0 0, 40px 20px;
    animation: drift 20s ease-in-out infinite;
}

/* ==========================================================================
   4. GRADIENT BACKGROUNDS
   ========================================================================== */
.hero-bg {
    background: linear-gradient(135deg,
            #b400fe 0%,
            #e8b51e 33%,
            #fe0000 66%,
            #b400fe 100%);
    background-size: 400% 400%;
    animation: rainbow 12s ease infinite;
}

/* Card Gradients */
.card-gradient-1 {
    background: linear-gradient(135deg, #b400fe, #e8b51e);
}

.card-gradient-2 {
    background: linear-gradient(135deg, #fe0000, #e8b51e);
}

.card-gradient-3 {
    background: linear-gradient(135deg, #b400fe, #fe0000);
}

.card-gradient-4 {
    background: linear-gradient(135deg, #e8b51e, #b400fe);
}

.card-gradient-5 {
    background: linear-gradient(135deg, #fe0000, #b400fe);
}

.card-gradient-6 {
    background: linear-gradient(135deg, #b400fe, #009688);
}

/* Layered Backgrounds */
.layered-bg-1 {
    background:
        radial-gradient(circle at 20% 80%, rgba(180, 0, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 181, 30, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(254, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #faf0ff 0%, #fffbeb 100%);
}

.layered-bg-2 {
    background:
        radial-gradient(circle at 70% 30%, rgba(180, 0, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(254, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, #faf0ff 0%, #fff0f0 100%);
}

.layered-bg-3 {
    background:
        radial-gradient(ellipse at top left, rgba(180, 0, 254, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(232, 181, 30, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom right, #ffffff 0%, #f8fafc 100%);
}

/* ==========================================================================
   5. BLOB BACKGROUNDS
   ========================================================================== */
.blob-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blob 7s ease-in-out infinite;
    opacity: 0.7;
    will-change: transform;
}

.blob-1 {
    background: linear-gradient(45deg, #b400fe, #e8b51e);
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    animation: morph 10s ease-in-out infinite;
}

.blob-2 {
    background: linear-gradient(45deg, #fe0000, #e8b51e);
    top: 50%;
    right: 10%;
    width: 150px;
    height: 150px;
    animation: morph 12s ease-in-out infinite;
    animation-delay: 2s;
}

.blob-3 {
    background: linear-gradient(45deg, #b400fe, #fe0000);
    bottom: 20%;
    left: 20%;
    width: 180px;
    height: 180px;
    animation: morph 14s ease-in-out infinite;
    animation-delay: 4s;
}

/* ==========================================================================
   6. DEPTH LAYERS
   ========================================================================== */
.depth-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(600px circle at 25% 25%, rgba(180, 0, 254, 0.05), transparent),
        radial-gradient(400px circle at 75% 75%, rgba(232, 181, 30, 0.05), transparent);
    pointer-events: none;
    z-index: -1;
}

.depth-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(800px circle at 60% 40%, rgba(254, 0, 0, 0.03), transparent),
        radial-gradient(500px circle at 20% 80%, rgba(180, 0, 254, 0.03), transparent);
    pointer-events: none;
    z-index: -2;
    animation: drift 25s ease-in-out infinite;
}

/* ==========================================================================
   7. INTERACTIVE ELEMENTS
   ========================================================================== */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.card-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.card-hover:hover::before {
    left: 100%;
}

/* ==========================================================================
   8. ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   9. PARTICLE SYSTEM
   ========================================================================== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

/* ==========================================================================
   10. TEXT EFFECTS
   ========================================================================== */
.text-rainbow {
    background: linear-gradient(45deg, #b400fe, #e8b51e, #fe0000, #b400fe, #e8b51e);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 15s ease-in-out infinite;
}

/* ==========================================================================
   11. TEXTURE OVERLAYS
   ========================================================================== */
.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
}

/* ==========================================================================
   12. CUSTOM SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #b400fe, #e8b51e);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a000e5, #d19d0d);
}

/* ==========================================================================
   13. ENROLLMENT PAGE SPECIFIC STYLES
   ========================================================================== */
.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    position: relative;
}

.step-connector {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    top: 80px;
    background: linear-gradient(to bottom, #b400fe, #e8b51e);
    transform: translateX(-50%);
}

/* ==========================================================================
   14. CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.form-focus {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #ff1f69;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links.active {
    display: flex;
}

/* ==========================================================================
   15. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translateX(0px) translateY(0px);
    }

    25% {
        transform: translateX(20px) translateY(-10px);
    }

    50% {
        transform: translateX(-15px) translateY(-20px);
    }

    75% {
        transform: translateX(10px) translateY(-5px);
    }
}

@keyframes morph {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70%;
    }

    25% {
        transform: scale(1.1) rotate(90deg);
        border-radius: 30% 60% 70% 40%;
    }

    50% {
        transform: scale(0.9) rotate(180deg);
        border-radius: 50% 60% 30% 60%;
    }

    75% {
        transform: scale(1.05) rotate(270deg);
        border-radius: 60% 30% 60% 40%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes bounceGentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(180, 0, 254, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(180, 0, 254, 0.8), 0 0 30px rgba(180, 0, 254, 0.6);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes blob {

    0%,
    100% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================================================
   16. GLOBAL OPTIMIZATIONS
   ========================================================================== */
* {
    box-sizing: border-box;
}

img {
    height: auto;
    max-width: 100%;
}

/* ==========================================================================
   17. RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .blob-bg {
        width: 120px !important;
        height: 120px !important;
    }

    .shape-divider svg,
    .shape-divider-top svg {
        height: 80px;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        display: flex;
    }
}

/* ==========================================================================
   18. ACCESSIBILITY - REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile menu shows up to 1535px */
@media screen and (max-width: 1535px) {
    nav div.hidden {
        display: none !important;
    }

    nav button#mobile-menu-btn {
        display: block !important;
    }
}

/* Desktop menu shows at 1536px and above */
@media screen and (min-width: 1536px) {
    nav div.hidden {
        display: flex !important;
    }

    nav button#mobile-menu-btn {
        display: none !important;
    }
}



/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */