:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    background-image: url('https://readdy.ai/api/search-image?query=modern%20luxury%20home%20with%20large%20UPVC%20windows%2C%20bright%20natural%20light%20streaming%20through%2C%20elegant%20interior%20visible%2C%20professional%20architectural%20photography%2C%20high-end%20residential%20property%2C%20clean%20lines%2C%20minimalist%20design%2C%20bright%20daytime%2C%20blue%20sky%2C%20green%20garden%20visible%2C%20high%20resolution%2C%20photorealistic&width=1920&height=1080&seq=hero1&orientation=landscape');
    background-size: cover;
    background-position: center;
    height: 600px;
}

.hero-content {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 100%);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #1e40af !important;
}

.language-selector .dropdown-menu {
    min-width: 100px;
}

.btn-primary {
    background-color: #996a30;
    border-color: #664319;
}

.cst-clr {
    color: #996a30 !important;
}

.btn-primary:hover {
    background-color: #d4b723;
    border-color: #c4a302;
}

.text-primary {
    color: #e8142d !important;
}

.bg-primary-light {
    background-color: rgba(30, 64, 175, 0.1);
}

.btn-rounded {
    border-radius: 8px !important;
}

.card {
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.nav-link:hover {
    color: #996a30 !important;
}

.w-cbtn {
    width: 14rem;
}

.icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.navbar-brand {
    font-family: 'Pacifico', cursive;
    font-size: 1.75rem;
}

.footer-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile: apply border-5 and medium rounding */
.custom-border {
    border-width: 3px !important;
    border-style: solid;
    border-color: #dee2e6;
    /* Or your desired border color */
    border-radius: 0.375rem !important;
    padding: 0.5rem;
}
/* notification */
.notification-alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
    /* Hidden by default */
    position: fixed;
    /* For the fixed top-right notification */
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 250px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

.notification-alert.show {
    display: block;
    /* Show when 'show' class is added */
    animation: fadeInDown 0.5s ease-out forwards;
}

.notification-alert.hide {
    animation: fadeOutUp 0.5s ease-in forwards;
}

.notification-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
/* Desktop (md and up): remove border-5, apply rounded-pill */
@media (min-width: 768px) {
    .custom-border {
        border-width: 0 !important;
        border-radius: 50rem !important;
    }
    .dropdown .dropdown-menu {
        display: none;
    }

    .dropdown:hover>.dropdown-menu,
    .dropend:hover>.dropdown-menu {
        display: block;
        margin-top: 0.125em;
        margin-left: 0.125em;
    }
}
@media (max-width: 768px) {
    .ct-iframe iframe {
        width: 300px;
    }
}
/* --- Equal-size team photos --- */
.team-img {
  width: 100%;        /* span full card width           */
  height: 260px;      /* pick any uniform height (e.g. 260 px) */
  object-fit: cover;  /* crop to fill without distortion */
  object-position: center; /* keep faces centred          */
}

