.btn.btn2{
    background-color: #b21c11;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}
.navbar .navbar-brand img {
    width: 200px;
    height: 100%;
}
ul li.nav-item.btn-section{
    margin-left: 10px;
}
.navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    padding: 0;
}
header{
    padding: 15px 0;
}
ul li.nav-item.dropdown a.dropdown-toggle{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    padding: 0;
}
.landing-hero {
     position: relative;
     min-height: 90vh;
     display: flex;
     background-image: url('../images/image-1.webp');
     background-size: cover;
     background-position: center;
     overflow: hidden;
 }

/* Dark gradient overlay for readability */
.landing-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(0,0,0,0.75) 0%,
            rgba(0,0,0,0.55) 40%,
            rgba(0,0,0,0.15) 100%
    );
}

/* Content above overlay */
.landing-hero .container {
    position: relative;
    z-index: 2;
}

/* Typography */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 520px;
    opacity: 0.95;
}

/* Floating image */
.hero-img {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    transform: translateY(10px);
    transition: 0.4s ease;
    width: 100%;
}

.hero-img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Buttons look premium */
.btn-primary {
    background: #c8a96a;
    border: none;
}

.btn-primary:hover {
    background: #b89555;
}

/* Mobile */
@media (max-width: 991px) {
    .landing-hero {
        text-align: center;
        padding: 80px 0;
        min-height: auto;
    }

    .hero-subtitle {
        margin: auto;
    }
}

.main-footer {
    background: #0b0b0b;
    font-size: 14px;
}

/* Logo */
.footer-logo {
    max-width: 210px;
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bfbfbf;
    text-decoration: none;
    transition: .25s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Social icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 50%;
    border: 1px solid #444;
    color: #ccc;
    transition: .25s;
    font-size: 16px;
}

.footer-social a:hover {
    background: #c8a96a;
    border-color: #c8a96a;
    color: #fff;
}

/* Contact */
.footer-contact p {
    color: #bfbfbf;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #c8a96a;
    margin-top: 3px;
}

.footer-contact a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

/* Bottom bar */
.footer-bottom {
    background: #e9e9e9;
    color: #333;
    padding: 14px 10px;
    font-size: 13px;
}
@media only screen and (max-width: 1200px) {
    ul li.nav-item.btn-section {
        margin-left: 10px;
    }
}