/*
Theme Name: BN Global Education Theme
Theme URI: http://bnglobaleducationcentre.com
Author: BN Global
Description: Custom theme for BN Global Education Centre with Tailwind and Glassmorphism.
Version: 1.0
*/

/* --- PASTE YOUR CUSTOM CSS BELOW --- */

:root {
    --bg-dark: #050011;
    --primary: #FF7120;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.02);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}

/* --- 3D CUBE --- */
.scene { width: 250px; height: 250px; perspective: 1000px; }
.cube {
    width: 100%; height: 100%; position: relative;
    transform-style: preserve-3d; animation: rotateCube 15s infinite linear;
}
.cube-face {
    position: absolute; width: 250px; height: 250px;
    border: 2px solid rgba(255, 113, 32, 0.5);
    background: rgba(5, 0, 17, 0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 60px; color: white;
    box-shadow: 0 0 30px rgba(255, 113, 32, 0.2);
    backdrop-filter: blur(5px);
}
.front  { transform: rotateY(0deg) translateZ(125px); }
.back   { transform: rotateY(180deg) translateZ(125px); }
.right  { transform: rotateY(90deg) translateZ(125px); }
.left   { transform: rotateY(-90deg) translateZ(125px); }
.top    { transform: rotateX(90deg) translateZ(125px); }
.bottom { transform: rotateX(-90deg) translateZ(125px); }

@keyframes rotateCube {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

/* --- GLASS COMPONENTS --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: rgba(255, 113, 32, 0.1);
    border: 1px solid rgba(255, 113, 32, 0.5);
    color: white;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #FF7120;
    box-shadow: 0 0 20px rgba(255, 113, 32, 0.4);
}

/* --- FLOATING SYMBOLS --- */
.floating-symbol {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    pointer-events: none;
    animation: float 6s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- MODAL --- */
.modal-overlay {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    z-index: 100;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.5));
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }