/* ===== Sobha Projects - Main Stylesheet ===== */

/* Variables */
:root {
    --sobha-primary: #1a472a;
    --sobha-secondary: #2d5a3d;
    --sobha-gold: #c9a227;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif;
}
/* Navbar */
.navbar {
    background: #be8c00;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
}
.navbar-brand i {
    color: #ffffff;
}
.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: #ffffff !important;
     
}

/* Navbar Dropdown */
.navbar .dropdown-menu {
    background: #be8c00;
    border: 1px solid #be8c00;
    border-radius: 8px;
    padding: 0.5rem 0;
}
.navbar .dropdown-item {
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
}
.navbar .dropdown-item:hover {
    background: #be8c00;
    color: #fff;
}
.navbar .dropdown-item i {
    opacity: 0.8;
}

/* Hero Section */
.hero-with-image {
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 120px 0 120px 0;
}
.hero-with-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 107%;
    height: 100%;
    background: url('../images/banner-image.jpg') center/cover no-repeat;
    z-index: 0;
    animation: heroBgMove 20s ease-in-out infinite alternate;
}
@keyframes heroBgMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-7%);
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.hero-with-image .container {
    z-index: 2;
}
.hero-project-img {
    max-height: 320px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

.about-section{
    padding: 100px 0;
}

/* Footer Query Form */
.footer-query-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.footer-query-form-title {
    color: #c9a227 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-form-control {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer-form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer-form-control:focus {
    border-color: #c9a227 !important;
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25) !important;
    outline: 0 !important;
}
.footer-query-form .form-label {
    font-weight: 500;
    letter-spacing: 0.5px;
}
.footer-query-form .btn-warning {
    font-weight: 600;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    margin: 20px 0 0 0;
}
.footer-query-form .btn-warning:hover {
    background: #d4a82a;
    border-color: #d4a82a;
    color: #1a472a;
}

.conatct-section{
    padding: 100px 0;
}

.card-body .btn-primary {
    background: #be8c00;
    border: #be8c00 solid 1px;
    padding: 10px 20px 10px 20px;
}

.card-body h5 {
    color: #be8c00 !important;
    font-weight: 600;
}

.card-body i{
    color: #be8c00 !important;
}


.card-body .text-primary {
    color: #be8c00 !important;
}

.why-choose-us-section i{
    color: #be8c00 !important;
}