/* IMPORT FONTS (Crucial for that premium look) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0b1120; /* Deepest Navy */
    --accent-cyan: #06b6d4; /* Cyan - pops against dark */
    --accent-gold: #fbbf24;
    --text-light: #f1f5f9;
    --text-dim: #94a3b8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif; /* Much cleaner than default */
    background-color: var(--bg-dark);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
}

/* NAVBAR (Glass Effect) */
.navbar {
    background: rgba(11, 17, 32, 0.85) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* HERO SECTION (The Big Fix) */
header {
    /* Put your image here! */
    background: linear-gradient(to bottom, rgba(11, 17, 32, 0.9), rgba(11, 17, 32, 0.8)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 8rem; /* Give it space */
    padding-bottom: 8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* TYPOGRAPHY */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.5px; }
.text-primary { color: var(--accent-cyan) !important; }
.text-muted { color: var(--text-dim) !important; }

/* THE CARDS (Glassmorphism) */
.card {
    background: rgba(30, 41, 59, 0.7); /* Semi-transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* BUTTONS */
.btn-primary {
    background-color: var(--accent-cyan);
    border: none;
    color: #000; /* Black text on Cyan is high contrast */
    font-weight: 600;
    padding: 12px 24px;
}
.btn-primary:hover {
    background-color: #22d3ee;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5); /* Glow */
}

.btn-outline-primary {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}
.btn-outline-primary:hover {
    background-color: var(--accent-cyan);
    color: #000;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.my-float {
    margin-top: 16px;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Darker Green on Hover */
    transform: scale(1.1);
    color: #FFF;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}