/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    background-color: #f8f9fa;
    color: #333;
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(0,0,0,0.5) !important;
    padding: 15px 0;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: #000 !important;
}

.navbar-brand h5 {
    font-weight: 700;
    color: #fff !important;
}

/* ===== Hero Section ===== */
section.hero {
    position: relative;
}

.bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.bg-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.hero-slider-content h1 {
    font-size: 45px;
    font-weight: 700;
}

.hero-slider-content p {
    font-size: 18px;
    margin-top: 20px;
}

/* ===== Buttons ===== */
.btn-brand-02 {
    background: #ff6a00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    transition: 0.2s ease;
}

.btn-brand-02:hover {
    background: #ff8800;
    color: #fff;
}

/* ===== Section Headers ===== */
.section-heading h1,
.section-heading h2,
.section-heading h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading p {
    margin-bottom: 10px;
}

/* ===== Privacy Policy Styling ===== */
.promo-section {
    background: #fff;
}

.promo-section h1 {
    margin-top: 40px;
    font-size: 28px;
    font-weight: 700;
}

.promo-section ul {
    margin-left: 20px;
}

.promo-section li {
    margin-bottom: 10px;
}

/* ===== Contact Section ===== */
.contact-us-section {
    background: #ffffff;
}

.contact-us-form {
    background: #f4f4f4;
    border-radius: 10px;
}

.contact-us-form input,
.contact-us-form textarea {
    border-radius: 8px;
}

/* ===== Footer ===== */
.footer-1 {
    background: #111;
    color: #fff;
}

.newsletter-wrap {
    background: #222;
    border-radius: 15px;
}

.newsletter-form input {
    border-radius: 30px;
    padding: 12px 20px;
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}
