/*====================================================
  Project Name   : Bollineni Bion
  Description    : Realestate website and landing page
  Author         : Rohit Suryavanshi | https://rohitwebco.com/
  Company        : Bollineni
  Version        : 1.0.0
  Created Date   : 05 Feb 2026
  Last Updated   : 05 Feb 2026
  Copyright      : © 2026 Bollineni. All rights reserved.
  License        : 
=====================================================*/
@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');




:root {
  --primary-color: #7bb932;
  --primary-color-yelllow: #f7ff58;
  --primary-color-blue-medium: #1f82bf;
  --primary-color-blue-light: #4CC7F3;
  --primary-color-gold-dark: #977124;
  --primary-color-gold-medium: #BB9331;
  --primary-color-gold-light: #ECC962;
  --button-color: #dc3545;
  --color-white: #ffffff;
  --color-dark: #101316;
  --color-dark-medium: rgb(91, 91, 91);
  --font-primary: "Poppins", sans-serif;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: #333;
    margin: 0;
    padding: 0;
    /* background-color: #f4f4f4; */
}

/* Keep emphasis subtle – avoid heavy bold site-wide */
strong, b {
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--font-primary);
  font-size: 15px;
  /* line-height: 1.; */
}

a {
  text-decoration: none;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.preloader-spinner {
  margin-bottom: 12px;
}

.preloader-spinner .spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary-color);
  animation: preloader-spin 0.8s linear infinite;
  margin: 0 auto;
}

.preloader-text h3 {
  font-size: 20px;
  margin: 8px 0 4px;
  color: var(--color-dark);
}

.preloader-text p {
  margin: 0;
  font-size: 14px;
  color: var(--color-dark-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* body header / navigation */
.body__header {
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header__top {
  background-color: #0d2618;
  padding: 8px 0;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease;
}

.body__header.body__header--scrolled .header__top {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.header__top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.header__contact-link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.header__contact-link:hover {
  color: var(--primary-color);
}

.header__contact-link i {
  font-size: 12px;
  opacity: 0.9;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.header__social-link:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}

.body__header .body__header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.header__logo a {
  display: block;
  line-height: 0;
}

.header__logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.header__logo a:hover img {
  transform: scale(1.02);
}

.header__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.header__nav .main__nav-list {
  display: inline-block;
  margin: 0;
}

.main__nav-link {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark);
  padding: 10px 16px;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.main__nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(123, 185, 50, 0.08);
}

.main__nav-link--active {
  color: var(--primary-color);
  background-color: rgba(123, 185, 50, 0.08);
}

.header__hamburger {
  padding: 10px 12px;
  cursor: pointer;
  color: var(--color-dark);
  font-size: 22px;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.header__hamburger:hover {
  color: var(--primary-color);
  background-color: rgba(123, 185, 50, 0.08);
}

/* Breadcrumb */
.breadcrumb-wrap {
  background-color: #f8faf6;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--font-size-sm);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #999;
  font-weight: 400;
}

.breadcrumb__link {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb__link:hover {
  color: var(--primary-color);
}

.breadcrumb__item--current {
  color: var(--color-dark);
  font-weight: 500;
}

/* Page banner – small banner with blurred image (inner pages) */
.page-banner {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.08);
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 38, 24, 0.55);
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .page-banner {
    height: 240px;
  }
  .page-banner__title {
    font-size: 2rem;
  }
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.25s ease, transform 0.2s ease;
  z-index: 999;
}

.back-to-top.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #6aa52b;
  color: var(--color-white);
  transform: translateY(-2px);
}

.back-to-top:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.back-to-top i {
  font-size: 18px;
}