/* =========================
   1. ROOT VARIABLES (LOAD FIRST)
========================= */
:root {
    --primary: #ff6b00;
    --primary-gradient: linear-gradient(135deg, #ff6b00, #ff9a3c);

    --bg: #f8fafc;
    --text: #1e293b;
    --card: #ffffff;
    --border: #e2e8f0;

    --shadow-sm: 0 4px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
    --radius: 16px;
    --muted: #64748b;
	--shadow: 0 8px 25px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --card-border-radius: 0.5rem;
      --card-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      --card-margin-bottom: 5.5rem;
}
/* DARK MODE */
body.dark {
    --bg: #0f172a;
    --text: #f1f5f9;
    --card: #1e293b;
    --border: #334155;
}

/* =========================
   2. BASE / RESET
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
	margin-top:70px;
}

a {
    text-decoration: none;
}

/* =========================
   3. APP NAVBAR (MOBILE-FIRST)
========================= */
.app-navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 16px;
    border-radius: 50px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

body.dark .app-navbar {
    background: rgba(30,41,59,0.75);
}

/* Logo */
.app-logo span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

/* Actions */
.app-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-actions i {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.app-actions i:hover {
    color: var(--primary);
}
/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MENU HEADER */
.menu-header {
    margin-bottom: 20px;
}

.menu-header h5 {
    margin: 0;
    font-weight: 600;
}

/* CLOSE BUTTON */
.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text);
}

/* IMPROVED MENU ANIMATION */
.app-menu {
    transform: translateX(100%);
}

.app-menu.active {
    transform: translateX(0);
}
/* Theme Toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Menu Button */
.menu-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   4. SIDE DRAWER MENU
========================= */
.app-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;

    background: var(--card);
    padding: 30px 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);

    transition: 0.4s ease;
    z-index: 1000;
}

.app-menu.active {
    right: 0;
}

.app-menu ul {
    list-style: none;
    padding: 0;
}

.app-menu li {
    margin-bottom: 18px;
}

.app-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.app-menu a:hover {
    background: var(--primary);
    color: #fff;
}

.app-menu a i {
    color: var(--primary);
}

/* =========================
   5. HERO SECTION
========================= */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;

   background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

/* =========================
   6. BUTTONS
========================= */
.btn-premium {
    background: var(--primary-gradient);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
}

.btn-premium:hover {
    transform: translateY(-3px);
}

/* =========================
   7. CARDS
========================= */
.card-glass,
.card-custom {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.card-glass:hover,
.card-custom:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* =========================
   8. SECTIONS
========================= */
.section {
    padding: 60px 16px;
}

/* =========================
   9. STEPS
========================= */
.step {
    text-align: center;
}

.step .circle {
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* =========================
   10. CTA
========================= */
.cta {
    background: var(--primary-gradient);
    color: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
}

/* =========================
   11. FOOTER
========================= */
/* =========================
   FOOTER BASE
========================= */
.footer {
    background: #0f172a;
    color: #cbd5f5;
    padding: 50px 20px 20px;
    font-size: 14px;
}

/* Titles */
.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.footer-text {
    line-height: 1.6;
    color: #94a3b8;
}

/* Links with icons */
.footer-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #cbd5f5;
}

.footer-link svg {
    min-width: 18px;
    margin-top: 3px;
    color: #ff6b00;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}

/* =========================
   HOVER EFFECT
========================= */
.footer-link:hover {
    color: #ffffff;
    transition: 0.3s;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .footer {
        text-align: center;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-link span {
        text-align: center;
    }

    .footer-title {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
/* =========================
   12. MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    .hero {
        height: 75vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .app-navbar {
        padding: 8px 12px;
    }

    .section {
        padding: 50px 12px;
    }

    .card-glass,
    .card-custom {
        padding: 16px;
    }

    .btn-premium {
        width: 100%;
    }
}

/* =========================
   13. EXTRA SMALL DEVICES
========================= */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.5rem;
    }

    .app-logo span {
        font-size: 16px;
    }

    .app-actions i {
        font-size: 16px;
    }
}

