﻿ 

body {
    font-family: 'Inter',sans-serif;
    background: #f4f6f9;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
}

.section {
    padding: 100px 0;
}

.gold {
    color: #f41917;
}

.btn-brand {
    background: #f41917;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
}

    .btn-brand:hover {
        background: #111;
        color: white;
    }

/* ===== TOP HEADER ===== */
.top-header {
    background: #111;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

    .top-header i {
        color: #fff;
        margin-right: 6px;
    }

    .top-header .social-icons a {
        color: #fff;
        margin-left: 12px;
        font-size: 15px;
        transition: .3s;
    }

        .top-header .social-icons a:hover {
            color: #b08d57;
        }

@media(max-width:768px) {
    .top-header .container {
        flex-direction: column;
        text-align: center;
    }

    .top-header .social-icons {
        margin-top: 5px;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 55px;
}

.navbar-toggler {
    border: none;
}

.nav-link {
    color: #111 !important;
    margin-left: 20px;
    font-weight: 500;
}

    .nav-link:hover {
        color: #b08d57 !important;
    }




/* ===== FOOTER ===== */
footer {
    position: relative;
    background: #111;
    color: white;
    padding: 80px 0 30px 0;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
}

footer .container {
    position: relative;
    z-index: 2;
}

/* ===== ENTERPRISE FOOTER ===== */

.footer-modern {
    position: relative;
    background: #0d0d0d;
    color: #ccc;
    padding: 80px 0 30px 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover no-repeat;
    opacity: 0.07;
}

.footer-modern .container {
    position: relative;
    z-index: 2;
}

/* TEXT */

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-heading {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        text-decoration: none;
        color: #bbb;
        font-size: 14px;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #e10600;
        }

/* SOCIAL */

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e10600;
    color: #e10600;
    margin-right: 10px;
    transition: .3s;
}

    .footer-social a:hover {
        background: #e10600;
        color: white;
    }

/* CONTACT ITEMS */

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

    .footer-contact-item i {
        color: #e10600;
    }

/* NEWSLETTER */

.footer-newsletter {
    display: flex;
    gap: 5px;
}

    .footer-newsletter input {
        flex: 1;
        padding: 6px 10px;
        border: none;
        border-radius: 4px;
    }

    .footer-newsletter button {
        background: #e10600;
        border: none;
        color: white;
        padding: 6px 10px;
        border-radius: 4px;
        transition: .3s;
    }

        .footer-newsletter button:hover {
            background: #c00500;
        }

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

    .footer-bottom p {
        font-size: 13px;
        color: #888;
        margin: 0;
    }
/* MEGA MENU */

.mega-menu .dropdown-menu {
    width: 720px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* TITLE */

.mega-title {
    font-weight: 700;
    margin-bottom: 15px;
}

/* ITEM */

.mega-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: .3s;
}

    .mega-item i {
        font-size: 20px;
        color: #e10600;
        margin-top: 4px;
    }

    .mega-item p {
        font-size: 12px;
        margin: 0;
        color: #777;
    }

    .mega-item:hover {
        background: #f6f6f6;
    }

/* DESKTOP HOVER */

@media (min-width:992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* MOBILE MENU */

@media (max-width:991px) {

    .mega-menu .dropdown-menu {
        width: 100%;
        transform: none;
        position: static;
        box-shadow: none;
    }

    .mega-item {
        padding: 8px 0;
    }
}

.nav-link i {
    color: #e10600;
    font-size: 14px;
}

.mega-title i {
    color: #e10600;
}

.mega-item i {
    color: #e10600;
}

 
