/* ===============================
   GLOBAL STYLES
================================ */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
    --muted: #6c757d;
    --border-radius: 0.75rem;
}

/*body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: #212529;
    line-height: 1.6;
}*/

body {
    font-family: "Muli", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #626a70;
    background: #fff;
    overflow-x: hidden;
}

/* ===============================
   NAVBAR
================================ */
/* ===============================
   TRANSPARENT NAVBAR
================================ */
.btn-theme {
    color: #fff;
    background-color: #ff431e;
    border-color: #ff431e;
}

.btn-theme:hover {
    color: #fff;
    background-color: #ff431e;
    border-color: #ff431e;
}

.header-area {
  /*  padding: 10px 0px;*/
    background: #1b2639;
    transition: all 0.35s ease;
    z-index: 1030;
}

.navbar-theme {
    padding: 0px !important;
}

    /* Text colors */
    .navbar-theme .nav-link,
    .navbar-theme .navbar-brand {
        color: #ffffff;
        font-weight: 500;
    }

        .navbar-theme .nav-link:hover,
        .navbar-theme .nav-link.active {
            color: #ffd54f;
        }

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.8rem 2rem rgba(0,0,0,.12);
}

.dropdown-item {
    font-weight: 500;
    padding: 0.6rem 1.25rem;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #0d6efd;
    }

/* Buttons */
.btn-outline-light {
    border-radius: 0.65rem;
}

/* ===============================
   SCROLLED STATE
================================ */
.header-area.scrolled {
    background: #1b2639;
    box-shadow: 0 0.5rem 1.2rem rgba(0,0,0,.08);
}
    .header-area.scrolled .navbar-brand {
        color: #fff !important;
    }
    .header-area.scrolled .nav-link {
        color: #ffd54f !important;
    }

        .header-area.scrolled .nav-link:hover,
        .header-area.scrolled .nav-link.active {
            color: #ffd54f;
        }

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {
    .navbar-theme {
        background: #ffffff;
        padding: 0.75rem 1rem;
        border-radius: 0 0 1rem 1rem;
    }

        .navbar-theme .nav-link,
        .navbar-theme .navbar-brand {
            color: #212529;
        }

    .dropdown-menu {
        box-shadow: none;
    }
}

/* ===============================
   HERO / SEARCH
================================ */
/* ===============================
   HERO SECTION (theme STYLE)
================================ */
.hero-theme2 {
    color: #fff;
    position: relative;
    height: 100px;
    background: #6c757d;
    margin-top: 70px;
    margin-bottom: 70px;
    text-align: center;
    line-height: 70px !important;
}
.hero-theme {
    position: relative;
    min-height: 90vh;
    background: url('/images/hero-bg.jpg') center center / cover no-repeat;
    padding-top: 120px; /* Space for navbar */
}

    /* Dark overlay */
    .hero-theme::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }

    /* Content above overlay */
    .hero-theme .container {
        position: relative;
        z-index: 2;
    }

    /* Typography */
    .hero-theme h1 {
        font-size: 3.2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-theme p {
        font-size: 1.15rem;
    }

    /* Search form */
    .hero-theme .form-control,
    .hero-theme .form-select {
        border-radius: 0.75rem;
        padding: 0.9rem 1rem;
    }

    /* Button */
    .hero-theme .btn-primary {
        border-radius: 0.75rem;
        font-weight: 500;
    }
.frmstyle {
    border-radius: 1px;
    padding: 15px;
    background-color  : #fbfdff;
}

.img:before {
    background: linear-gradient(to bottom, transparent 17%, #464c63);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
}
/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
    .hero-theme {
        min-height: 70vh;
        padding-top: 100px;
    }

        .hero-theme h1 {
            font-size: 2.1rem;
        }

        .hero-theme p {
            font-size: 1rem;
        }
}


/* ===============================
   LISTING CARDS
================================ */
.card {
    border: none;
    border-radius: var(--border-radius);
    transition: all 0.25s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,.08);
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-text {
    font-size: 0.9rem;
    color: var(--muted);
}

.badge {
    font-weight: 500;
    padding: 0.45em 0.65em;
    border-radius: 0.5rem;
}

/* ===============================
   CATEGORY BUTTONS
================================ */
.btn-outline-secondary {
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-size: 0.9rem;
}

    .btn-outline-secondary:hover {
        background-color: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

/* ===============================
   FOOTER
================================ */
footer {
    font-size: 0.9rem;
}

    footer h5,
    footer h6 {
        margin-bottom: 1rem;
    }

    footer a:hover {
        text-decoration: underline;
    }

    footer hr {
        opacity: 0.2;
    }

/* ===============================
   BUTTONS
================================ */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--border-radius);
    padding: 0.55rem 1.2rem;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

/* ===============================
   UTILITIES
================================ */
.shadow-soft {
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.08);
}

.text-muted {
    color: var(--muted) !important;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    section.bg-light h1 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }
}
