/* ============================================================
   SalujaEstate.com - Main Stylesheet
   Theme: White | Dark Blue (#0a1f44) | Gold (#c9a24b)
   ============================================================ */
:root {
  --se-white: #ffffff;
  --se-dark: #0a1f44;
  --se-dark-2: #0e2653;
  --se-gold: #c9a24b;
  --se-gold-2: #b48a35;
  --se-muted: #6b7280;
  --se-bg: #f7f9fc;
  --se-border: #e6eaf0;
  --se-shadow: 0 10px 30px rgba(10, 31, 68, 0.08);
  --se-shadow-lg: 0 20px 50px rgba(10, 31, 68, 0.14);
  --se-transition: all 0.35s cubic-bezier(.2,.7,.3,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  color: #1b2540;
  background: var(--se-white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', 'Poppins', serif; font-weight: 700; color: var(--se-dark); }
a { color: var(--se-dark); text-decoration: none; transition: var(--se-transition); }
a:hover { color: var(--se-gold); }
.text-gold { color: var(--se-gold) !important; }
.bg-dark-blue { background-color: var(--se-dark) !important; color: #fff; }
.bg-soft { background-color: var(--se-bg); }
/* Buttons */
.btn { border-radius: 6px; padding: .7rem 1.4rem; font-weight: 500; letter-spacing: .3px; transition: var(--se-transition); }
.btn-gold { background: var(--se-gold); color: #fff; border: 1px solid var(--se-gold); }
.btn-gold:hover { background: var(--se-gold-2); border-color: var(--se-gold-2); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(201,162,75,.35); }
.btn-outline-gold { background: transparent; color: var(--se-gold); border: 1px solid var(--se-gold); }
.btn-outline-gold:hover { background: var(--se-gold); color: #fff; }
.btn-dark-blue { background: var(--se-dark); color: #fff; border: 1px solid var(--se-dark); }
.btn-dark-blue:hover { background: var(--se-dark-2); color: #fff; transform: translateY(-2px); }
.btn-outline-light-2 { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline-light-2:hover { background: #fff; color: var(--se-dark); }
/* Section base */
section { padding: 90px 0; position: relative; }
.section-title { margin-bottom: 55px; }
.section-title .eyebrow {
  display: inline-block;
  color: var(--se-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title h2 { font-size: clamp(1.9rem, 2.6vw, 2.6rem); line-height: 1.15; margin-bottom: 12px; }
.section-title p { color: var(--se-muted); max-width: 620px; margin: 0 auto; }
.section-title .divider {
  width: 60px; height: 3px; background: var(--se-gold);
  margin: 14px auto 20px; border-radius: 3px;
}
/* ============ Navbar ============ */
.navbar-se {
  padding: 18px 0;
  background: transparent;
  transition: var(--se-transition);
  z-index: 1050;
}
.navbar-se.solid,
.navbar-se.subpage {
  background: rgba(10,31,68,.97);
  backdrop-filter: saturate(140%) blur(8px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.navbar-se .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
}
.navbar-se .navbar-brand span { color: var(--se-gold); }
.navbar-se .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  padding: .5rem 1rem !important;
  position: relative;
}
.navbar-se .nav-link.active,
.navbar-se .nav-link:hover { color: var(--se-gold) !important; }
.navbar-se .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 2px; background: var(--se-gold);
  transition: var(--se-transition); transform: translateX(-50%);
}
.navbar-se .nav-link.active::after,
.navbar-se .nav-link:hover::after { width: 22px; }
.navbar-se .navbar-toggler { border: 1px solid rgba(255,255,255,.4); }
.navbar-se .navbar-toggler-icon { filter: invert(1); }
.nav-cta .btn { padding: .55rem 1.1rem; font-size: .9rem; }
/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(10,31,68,.85), rgba(10,31,68,.55)),
              url('../img/photo-1600585154340-be6161a56a0c.avif') center/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,31,68,.9));
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--se-gold); }
.hero p.lead {
  max-width: 640px;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
/* Hero search card */
.search-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--se-shadow-lg);
  padding: 22px;
  color: #1b2540;
  margin-top: 34px;
}
.search-card .nav-tabs {
  border-bottom: 1px solid var(--se-border);
  margin-bottom: 18px;
}
.search-card .nav-tabs .nav-link {
  border: none; color: var(--se-muted); font-weight: 500; padding: .5rem 1rem;
  border-radius: 0;
}
.search-card .nav-tabs .nav-link.active {
  color: var(--se-dark); border-bottom: 2px solid var(--se-gold); background: transparent;
}
.search-card .form-control, .search-card .form-select {
  border: 1px solid var(--se-border); padding: .75rem .9rem; border-radius: 8px;
}
.search-card .form-control:focus, .search-card .form-select:focus {
  border-color: var(--se-gold); box-shadow: 0 0 0 .2rem rgba(201,162,75,.15);
}
/* Sub-page hero */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, rgba(10,31,68,.85), rgba(10,31,68,.7)),
              url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.page-hero .breadcrumb {
  justify-content: center; background: transparent; margin: 0;
}
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb-item.active { color: var(--se-gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
/* ============ Property Card ============ */
.property-card {
  background: #fff;
  border: 1px solid var(--se-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--se-transition);
  height: 100%;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--se-shadow-lg); border-color: transparent; }
.property-media { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.property-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.property-card:hover .property-media img { transform: scale(1.08); }
.property-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--se-gold); color: #fff; padding: 5px 12px;
  font-size: .75rem; font-weight: 600; letter-spacing: .5px;
  border-radius: 4px; text-transform: uppercase;
}
.property-badge.rent { background: #16a34a; }
.property-badge.commercial { background: #2563eb; }
.property-actions {
  position: absolute; top: 14px; right: 14px;
  display: flex; gap: 8px;
}
.property-actions .icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none; color: var(--se-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--se-transition);
}
.property-actions .icon-btn:hover { background: var(--se-gold); color: #fff; }
.property-actions .icon-btn.active { background: var(--se-gold); color: #fff; }
.property-body { padding: 22px; }
.property-body .price { color: var(--se-gold); font-weight: 700; font-size: 1.35rem; margin-bottom: 6px; }
.property-body h5 { font-size: 1.15rem; margin-bottom: 6px; }
.property-body h5 a { color: var(--se-dark); }
.property-body h5 a:hover { color: var(--se-gold); }
.property-body .location { color: var(--se-muted); font-size: .9rem; margin-bottom: 15px; }
.property-body .location i { color: var(--se-gold); margin-right: 5px; }
.property-features {
  display: flex; justify-content: space-between; gap: 8px;
  padding-top: 15px; border-top: 1px dashed var(--se-border);
  color: var(--se-muted); font-size: .88rem;
}
.property-features span i { color: var(--se-gold); margin-right: 4px; }
/* ============ Why Choose Us ============ */
.feature-card {
  background: #fff; border: 1px solid var(--se-border);
  padding: 34px 26px; border-radius: 12px;
  text-align: center; height: 100%; transition: var(--se-transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--se-shadow); border-color: transparent; }
.feature-card .icon-wrap {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(201,162,75,.12); color: var(--se-gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px; transition: var(--se-transition);
}
.feature-card:hover .icon-wrap { background: var(--se-gold); color: #fff; }
.feature-card h5 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: var(--se-muted); font-size: .93rem; margin: 0; }
/* ============ Services ============ */
.service-card {
  position: relative; padding: 34px 28px;
  border-radius: 12px; background: #fff;
  border: 1px solid var(--se-border);
  transition: var(--se-transition); height: 100%;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 3px; width: 0; background: var(--se-gold);
  transition: var(--se-transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--se-shadow); }
.service-card:hover::after { width: 100%; }
.service-card .service-icon {
  font-size: 2.1rem; color: var(--se-gold); margin-bottom: 16px;
}
.service-card h5 { margin-bottom: 10px; }
.service-card p { color: var(--se-muted); margin-bottom: 14px; font-size: .93rem; }
.service-card a.link { color: var(--se-dark); font-weight: 600; font-size: .9rem; }
.service-card a.link i { margin-left: 6px; transition: var(--se-transition); }
.service-card a.link:hover { color: var(--se-gold); }
.service-card a.link:hover i { margin-left: 10px; }
/* ============ Projects Gallery ============ */
.project-item {
  position: relative; overflow: hidden; border-radius: 12px;
  aspect-ratio: 4/3;
}
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-item:hover img { transform: scale(1.1); }
.project-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,31,68,.9));
  display: flex; align-items: flex-end; padding: 22px;
  opacity: 0; transition: var(--se-transition); color: #fff;
}
.project-item:hover .overlay { opacity: 1; }
.project-item .overlay h5 { color: #fff; margin: 0; }
.project-item .overlay small { color: var(--se-gold); letter-spacing: 2px; text-transform: uppercase; font-size: .7rem; }
/* ============ Testimonials ============ */
.testimonial-card {
  background: #fff; border-radius: 14px; padding: 34px;
  box-shadow: var(--se-shadow); text-align: center;
  margin: 20px 10px 40px;
}
.testimonial-card .quote { color: var(--se-gold); font-size: 1.6rem; margin-bottom: 14px; }
.testimonial-card p { color: #374151; font-style: italic; margin-bottom: 22px; }
.testimonial-card .avatar {
  width: 68px; height: 68px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 12px; border: 3px solid var(--se-gold);
}
.testimonial-card h6 { margin: 0; color: var(--se-dark); }
.testimonial-card small { color: var(--se-muted); }
/* ============ Stats ============ */
.stats-section {
  background: linear-gradient(135deg, rgba(10,31,68,.9), rgba(10,31,68,.85)),
              url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
  color: #fff;
}
.stat-item { text-align: center; padding: 20px; }
.stat-item .stat-icon { color: var(--se-gold); font-size: 2rem; margin-bottom: 12px; }
.stat-item .stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-item .stat-label { color: rgba(255,255,255,.8); margin-top: 8px; font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; }
/* ============ Blog ============ */
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--se-border); transition: var(--se-transition); height: 100%; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--se-shadow); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .blog-media img { transform: scale(1.08); }
.blog-body { padding: 24px; }
.blog-body .meta { color: var(--se-muted); font-size: .82rem; margin-bottom: 8px; }
.blog-body .meta i { color: var(--se-gold); margin-right: 5px; }
.blog-body h5 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body p { color: var(--se-muted); font-size: .93rem; margin-bottom: 12px; }
.blog-body a.read-more { color: var(--se-dark); font-weight: 600; font-size: .9rem; }
.blog-body a.read-more:hover { color: var(--se-gold); }
/* ============ Newsletter ============ */
.newsletter {
  background: linear-gradient(135deg, var(--se-dark), var(--se-dark-2));
  color: #fff; border-radius: 16px; padding: 50px 40px;
}
.newsletter h3 { color: #fff; }
.newsletter .form-control {
  border-radius: 8px 0 0 8px; padding: .9rem 1.1rem; border: none;
}
.newsletter .btn { border-radius: 0 8px 8px 0; padding: .9rem 1.5rem; }
/* ============ Footer ============ */
.footer {
  background: #061633; color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer h6 {
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; font-size: .95rem;
  margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.footer h6::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 35px; height: 2px; background: var(--se-gold);
}
.footer .brand-tag {
  font-family: 'Playfair Display', serif; color: #fff; font-size: 1.6rem; font-weight: 700; margin-bottom: 14px;
}
.footer .brand-tag span { color: var(--se-gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,.75); font-size: .93rem; }
.footer ul li a:hover { color: var(--se-gold); padding-left: 4px; }
.footer .contact-item { display: flex; gap: 12px; margin-bottom: 12px; font-size: .92rem; }
.footer .contact-item i { color: var(--se-gold); margin-top: 4px; }
.footer .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; margin-right: 8px;
}
.footer .social a:hover { background: var(--se-gold); color: #fff; transform: translateY(-3px); }
.footer .copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; margin-top: 45px; font-size: .88rem; text-align: center;
}
/* ============ Back To Top ============ */
#backToTop {
  position: fixed; right: 22px; bottom: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--se-gold); color: #fff; border: none;
  display: none; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 10px 20px rgba(201,162,75,.35);
  transition: var(--se-transition);
}
#backToTop:hover { background: var(--se-gold-2); transform: translateY(-3px); }
/* ============ Preloader ============ */
#preloader {
  position: fixed; inset: 0; background: #fff;
  display: flex; align-items: center; justify-content: center; z-index: 9999;
  transition: opacity .5s ease;
}
.preloader-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 4px solid var(--se-border); border-top-color: var(--se-gold);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* ============ Filter Bar ============ */
.filter-bar {
  background: #fff; padding: 22px; border-radius: 12px;
  box-shadow: var(--se-shadow); margin-bottom: 30px;
}
.filter-bar .form-control, .filter-bar .form-select { border-radius: 8px; }
/* ============ Property Details ============ */
.gallery-main img { width: 100%; border-radius: 12px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs img { border-radius: 8px; cursor: pointer; opacity: .75; transition: var(--se-transition); }
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; box-shadow: 0 0 0 3px var(--se-gold); }
.info-block { background: #fff; border: 1px solid var(--se-border); border-radius: 12px; padding: 26px; margin-bottom: 24px; }
.info-block h4 { margin-bottom: 18px; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; }
.spec-grid .spec { background: var(--se-bg); padding: 16px; border-radius: 10px; text-align: center; }
.spec-grid .spec i { color: var(--se-gold); font-size: 1.3rem; margin-bottom: 6px; display: block; }
.spec-grid .spec .label { color: var(--se-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.spec-grid .spec .value { font-weight: 600; color: var(--se-dark); }
.amenities-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.amenities-list li { list-style: none; color: var(--se-dark); }
.amenities-list li i { color: var(--se-gold); margin-right: 8px; }
.agent-card { text-align: center; }
.agent-card .avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 3px solid var(--se-gold); }
/* ============ About Team ============ */
.team-card { text-align: center; }
.team-card .photo { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.team-card .photo img { width: 100%; height: 320px; object-fit: cover; transition: transform .7s ease; }
.team-card:hover .photo img { transform: scale(1.06); }
.team-card .social-overlay {
  position: absolute; left: 0; right: 0; bottom: -60px;
  padding: 12px; background: rgba(10,31,68,.85);
  display: flex; justify-content: center; gap: 10px;
  transition: var(--se-transition);
}
.team-card:hover .social-overlay { bottom: 0; }
.team-card .social-overlay a { color: #fff; }
.team-card .social-overlay a:hover { color: var(--se-gold); }
/* ============ Contact ============ */
.contact-card {
  background: #fff; border: 1px solid var(--se-border); border-radius: 12px;
  padding: 30px 26px; text-align: center; height: 100%; transition: var(--se-transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--se-shadow); }
.contact-card .icon-wrap {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(201,162,75,.12); color: var(--se-gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.contact-card h6 { color: var(--se-dark); margin-bottom: 6px; }
.contact-card p { color: var(--se-muted); margin: 0; font-size: .93rem; }
/* Alerts */
.form-alert { display: none; margin-top: 12px; }
/* Accordion */
.accordion-item { border: 1px solid var(--se-border); border-radius: 10px !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { font-weight: 600; color: var(--se-dark); }
.accordion-button:not(.collapsed) { background: rgba(201,162,75,.08); color: var(--se-dark); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--se-gold); }
/* Map */
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: var(--se-shadow); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
/* Utility */
.divider-line { height: 1px; background: var(--se-border); margin: 20px 0; }


.partner-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:40px 0;
    background:#fff;
}

.partner-wrapper .container{
    overflow:hidden;
    position:relative;
}

.brand-slider{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.brand-slider:hover{
    animation-play-state:paused;
}

.slide-item{
    flex:0 0 180px;
    width:180px;
    margin:0 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide-item img{
    max-width:100%;
    max-height:70px;
    object-fit:contain;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
.partner-wrapper::before,
.partner-wrapper::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.partner-wrapper::before{
    left:0;
    background:linear-gradient(to right,#fff 0%,transparent 100%);
}

.partner-wrapper::after{
    right:0;
    background:linear-gradient(to left,#fff 0%,transparent 100%);
}

/* Continuous scrolling animation */
@keyframes crawl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Assumes you duplicated the items inside once for infinite layout */
    }
}

.top-bar { background: var(--primary); color: var(--white); padding: 8px 0; font-size: 0.82rem; }
.top-bar a { color: var(--gold); font-weight: 600; }