* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*body {*/
/*    font-family: 'Poppins', sans-serif;*/
/*    line-height: 1.6;*/
/*    background-color: #f7f9fc;*/
/*    color: #0b214a;*/
/*}*/

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    /*padding:9px 1px;*/
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 900;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0b214a;
    gap: 0.3rem;
}

.logo-img {
    width: 50px;
    height: 50px;
}

.logo small {
    font-weight: 300;
    font-size: 0.85rem;
    color: #5e5e5e;
    line-height: 1.1;
}

/* Nav Menu */
nav {
    flex-grow: 1;
    margin-left: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
}


.colorHover {
    transition: color 0.3s ease; 
}

.colorHover:hover{
    font-weight:500;
    color :#D9AA36;
}
.backgroundHover {
    display: flex;
    align-items: flex-end;   
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}
.backgroundHover:hover {
    background-color: #EBD49A;
    border-radius: 4px;
}

#signInBtn {
    padding: 7px 14px;
    border-radius: 7px;
    border: 1px solid #e2e2e2;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight:500;
}
#signInBtn:hover {
    background-color: #D9AA36;
    color: black;
    font-weight:500;
}
.dropdown,
.dropdown-mega {
    position: absolute;
    background: white;
    min-width: 430px;
    border-radius: 10px;
    padding: 1rem;
    opacity: 0;
}

.nav-menu > li:hover > .dropdown,
.nav-menu > li:hover > .dropdown-mega {
    opacity: 1;
    visibility: visible;
}
.dropdown a {
    display: block;
    /*padding: 0.5rem 0;*/
    visibility:none;
    margin:0.5rem 0;
    padding-left:10px;
    text-align:left;
    transition: background-color 0.2s ease, color 0.2s ease;

}

.dropdown a:hover {
    background-color: #EBD49A;
    border-radius:5px ;
    text-decoration:none;
}
.dropdown a:hover .dropDownHeading{
      color: #D9AA36;
    transition: color 0.2s ease; 
}
.dropdown a:hover .dropDownText {
  color: #8F9290;
}
.dropDownHeading{
    font-weight:500;
}
.dropDownText{
    color:#8F9290;
    font-size:14px;
}
.dropdown-mega {
    width: 50vvw;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0rem;
}
.meagDropDownHeading{
    color:#DAAD3D;
}
.mega-col a {
    font-weight:500;
    display: inline-block;
    padding: 3px 13px;
    transition: all 0.2s ease;
}

.mega-col a:hover {
 border-radius: 4px;
    background-color: #EBD49A;
    color: #b99730;
    
}

/* Header Right Controls */
.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switcher {
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    color: #0b214a;
}

.btn {
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    padding: 0.5rem 1.3rem;
    transition: all 0.3s ease;
}

.btn-signin {
    background: white;
    color: #0b214a;
    border: 2px solid #0b214a;
}

.btn-signin:hover {
    background: #0b214a;
    color: white;
}

.btn-list {
    background: #b99730;
    color: white;
}

.btn-list:hover {
    background: #8b761e;
}

/* HERO */
.hero {
    background: linear-gradient(180deg, rgba(11,33,74,0.85), rgba(11,33,74,0.85)),
        url('https://images.unsplash.com/photo-1501183638714-3c2bcd3b1f9d?auto=format&fit=crop&w=1500&q=80')
        no-repeat center center/cover;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    max-width: 600px;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: #b99730;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: white;
    color: #0b214a;
}
section {
    padding: 2rem 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #7a8fab;
    font-weight: 500;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Featured Properties Section */
.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.property-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.property-card:hover {
    box-shadow: 0 7px 15px rgb(0 0 0 / 0.2);
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b214a;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.property-content {
    padding: 1rem 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #0b214a;
}

.property-location {
    font-size: 0.9rem;
    color: #7a8fab;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-type {
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    width: max-content;
    margin-bottom: 0.2rem;
    border: 1px solid #6c6c6c;
}

.property-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b214a;
    margin-bottom: 0.6rem;
}

.property-info {
    font-size: 0.9rem;
    color: #7a8fab;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

/*.btn-view {*/
/*    background-color: transparent;*/
/*    border: 1.5px solid #b99730;*/
/*    color: #b99730;*/
/*    border-radius: 6px;*/
/*    padding: 0.5rem;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    width: 100%;*/
/*}*/

/*.btn-view:hover {*/
/*    background-color: #b99730;*/
/*    color: white;*/
/*}*/

/* Services Section */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #b99730;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0b214a;
}

.service-desc {
    font-weight: 500;
    color: #7a8fab;
    flex-grow: 1;
}

.explore-link {
    margin-top: 1rem;
    color: #b99730;
    font-weight: 600;
    text-decoration: none;
}

/* Testimonials Section */
/*.testimonials-section {*/
/*    max-width: 1100px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.testimonial-cards {*/
/*    display: flex;*/
/*    justify-content:center;*/
/*    gap: 1rem;*/
/*    transition: transform 0.4s ease-in-out;*/
/*}*/

/*.testimonial-card {*/
/*    padding:22px 37px;*/
/*    background: white;*/
/*    border-radius: 10px;*/
/*    flex: 0 0 330px;*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*}*/

/*.stars {*/
/*    color: #b99730;*/
/*    font-size: 1.1rem;*/
/*    margin-bottom: 0.8rem;*/
/*}*/

/*.testimonial-text {*/
/*    font-style: italic;*/
/*    font-size: 0.9rem;*/
    /*margin-bottom: 2rem;*/
/*    color: #555;*/
/*    min-height: 90px;*/
/*}*/

/*.client-name {*/
/*    font-weight: 700;*/
    /*margin-bottom: 0.3rem;*/
/*    color: #0b214a;*/
/*}*/

/*.client-location {*/
/*    color: #b99730;*/
/*    font-size: 0.85rem;*/
/*}*/

/* testimonial arrows */
/*.slider-arrow {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    background-color: rgba(11, 33, 74, 0.7);*/
/*    border: none;*/
/*    color: white;*/
/*    font-size: 1.8rem;*/
/*    padding: 0.3rem 0.7rem;*/
/*    cursor: pointer;*/
/*    border-radius: 5px;*/
/*    transform: translateY(-50%);*/
/*    user-select: none;*/
/*    z-index: 10;*/
/*}*/

/*.arrow-left {*/
/*    left:0px;*/
/*}*/

/*.arrow-right {*/
/*    right: 0px;*/
/*}*/

/* Office Locations */
.office-locations {
    padding-bottom: 6rem;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    background: white;
    border-radius: 10px;
    /*box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);*/
    padding: 2rem;
    display: flex;
    flex-direction: column;
    /*gap: 0.5rem;*/
}

.office-card h3 {
    color: #0b214a;
    margin-bottom: 0.7rem;
}

.office-card p {
    color: #7a8fab;
        font-size: 15px;
    font-weight: 400;
}

.office-card button {
    margin-top: auto;
}

/* Footer */

footer {
    background-color: #003366;
    color: white;
    padding: 3rem 1rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: #D9A63B;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p,
.footer-col a,
.footer-col li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: white;
}

.footer-col a:hover {
    color: #b99730;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    filter: brightness(0) invert(0.6) sepia(1) saturate(4) hue-rotate(35deg);
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: none;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    outline: none;
}

.newsletter button {
    width: 100%;
    background-color: #b99730;
    color: white;
    padding: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #8b761e;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive */

@media (max-width: 780px) {
    nav {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        background: white;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 33, 74, 0.15);
    }

    header.sticky-navigation nav {
        display: flex;
    }

    .dropdown,
    .dropdown-mega {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
    }

    .nav-menu > li:hover > .dropdown,
    .nav-menu > li:hover > .dropdown-mega {
        display: block;
    }
}
