/* =========================
   GLOBAL STYLES
========================= */
/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #0f172a;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.menu-toggle {
    display: none !important;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(to right, #0f172a, #f97316);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    text-align: center;
}

.subtitle {
    font-size: 18px;
    margin: 10px 0 20px;
    opacity: 0.9;
}

/* =========================
   BUTTONS & GENERAL COMPONENTS
========================= */
.btn {
    background: #f97316;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* =========================
   GRID & CARDS
========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* =========================
   SEO CONTENT & FEATURES
========================= */
.seo-content {
    padding: 60px 0;
    background: #ffffff;
}

.seo-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f97316;
}

/* =========================
   CHATBOX WIDGET
========================= */
#chatbox {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 999;
}

#messages {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

#input {
    width: 100%;
    border: none;
    border-top: 1px solid #ddd;
    padding: 10px;
    outline: none;
}

/* =========================
   MEDIA QUERIES
========================= */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
    }
}