body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
                url('../uploads/banner.jpg') center center/cover no-repeat;
    height: 350px;
}

.card.property-card img {
    height: 200px;
    object-fit: cover;
}

.card.property-card {
    transition: transform 0.2s ease;
}
.card.property-card:hover {
    transform: translateY(-5px);
}
.hero-section {
    min-height: 500px;
    background: #fff8f3;
    padding: 60px 0;
}

.hero-image {
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    .hero-image {
        margin-top: 30px;
    }
}








/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
.navbar-brand img {
    height: 80px;
    width: auto;
}
.navbar .btn-warning {
    background-color: #ffc107;
    border: none;
    transition: background-color 0.3s ease;
}

.navbar .btn-warning:hover {
    background-color: #e0a800;
    color: #000;
}


.hero-section {
    min-height: 700px;
    padding: 80px 0;
    background: #fff8f3;
    position: relative;
}

.hero-image {
    max-height: 500px;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-image {
        max-height: 300px;
        margin-top: 30px;
    }
}

/* 🌟 Service Card Hover */
.service-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ✨ Icon animation on hover */
.icon-hover {
    transition: transform 0.4s ease;
    display: inline-block;
}
.service-card:hover .icon-hover {
    transform: scale(1.3) rotate(5deg);
}



/* ✨ Fade In Animation */
.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 🧊 3D Tilt on Hover */
.service-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* 🎯 Icon Bounce/Scale */
.icon-hover {
    transition: transform 0.4s ease;
    display: inline-block;
}
.service-card:hover .icon-hover {
    transform: scale(1.3) rotate(5deg);
}


/* 🌌 Service Card with Image Background */
.service-card {
  height: 400px;
  border: none;
  border-radius: 16px;
  position: relative;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 1;
}

.service-card .card-body {
  position: relative;
  z-index: 2;
  padding-top: 60px;
   /*color: white; /* or remove this line if you want it to inherit from the body */*/
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}
/* 🌟 Modern Section Heading */
.section-heading .subtitle {
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.section-heading h2 {
  font-weight: 700;
  color: #222;
}

.section-heading .underline {
  width: 60px;
  height: 3px;
  background: #ffc107; /* Yellow or your brand color */
  border-radius: 3px;
}
.section-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.section-heading.animate {
  opacity: 1;
  transform: translateY(0);
}


.hero-banner .container {
  z-index: 2;
  position: relative;
}
.hero-banner {
  height: 90vh;
  background: linear-gradient(-45deg, #ffa600, black, #ffecb3, #ffc107);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  position: relative;
  display: flex;
  align-items: center;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Modern Section Header Styles */
.section-heading .subtitle {
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.section-heading h2 {
  font-weight: 700;
  color: #222;
}

.section-heading .underline {
  width: 60px;
  height: 3px;
  background: #ffc107;
  border-radius: 3px;
}

.highlight {
  color: #ffc107;
  text-shadow: 1px 1px 8px rgba(255, 193, 7, 0.3);
}

/* Property card adjustments (optional) */
.property-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-black:hover {
  background-color: #333;
  color: #fff;
}
/* 🖤 Modern Filter Tabs */
.filter-tabs .btn-tab {
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  margin: 0 5px;
  transition: background 0.3s ease;
}

.filter-tabs .btn-tab:hover,
.filter-tabs .btn-tab.active {
  background-color: #ffc107;
  color: #000;
}

/* 🏡 Property Cards Styling */
.property-card img {
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.property-card .card-body {
  padding: 1rem;
}

.property-card .btn {
  border-radius: 30px;
}

/* Pagination Modern Look */
.pagination .page-link {
  color: #000;
  border-radius: 50px;
  margin: 0 3px;
  border: 1px solid #ccc;
}

.pagination .page-item.active .page-link {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
/* 🔖 Property Badge Tag */
.badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffc107;
  color: #000;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  text-transform: uppercase;
}
/* 🔍 Zoom effect on card hover */
.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.property-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
/* 🎖 Featured Ribbon */
.ribbon {
  width: 150px;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  text-align: center;
  line-height: 25px;
  font-size: 0.75rem;
  position: absolute;
  z-index: 3;
  transform: rotate(-45deg);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.ribbon-top-left {
  top: 15px;
  left: -35px;
}
/* 🌟 Modern Take the Next Step Section */
.next-step-section {
  background: linear-gradient(to bottom right, #fdfdfd, #f7f7f7);
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.next-step-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.next-step-section p {
  font-size: 1rem;
  color: #555;
}

.next-step-section ul {
  padding-left: 0;
}

.next-step-section li {
  font-size: 1.1rem;
  color: #333;
  transition: transform 0.3s ease;
}

.next-step-section li:hover {
  transform: translateX(5px);
}

/* ✉️ Form Styling */
.next-step-section .form-control {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 16px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.next-step-section .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* 🖱️ Button Styling */
.next-step-section .btn-dark {
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  background: #000;
  color: #fff;
  border: none;
}

.next-step-section .btn-dark:hover {
  background-color: #222;
  transform: scale(1.02);
}

/* 📱 Responsive Touches */
@media (max-width: 768px) {
  .next-step-section h2 {
    font-size: 2rem;
    text-align: center;
  }
  .next-step-section ul {
    text-align: center;
  }
  .next-step-section .btn-dark {
    width: 100%;
  }
}
/* 🎈 Floating Animation */
@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.hero-image-floating {
  animation: floatY 2s ease-in-out infinite;
}
.about-hero {
  min-height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.carousel-item img {
  object-fit: cover;
  border: 3px solid #eee;
}
.carousel .blockquote {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}
.about-hero-section {
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.3);
}

.image-container img {
  transition: transform 0.4s ease;
}

.image-container:hover img {
  transform: scale(1.03);
}
.principle-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  background: #fff;
}

.principle-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.principle-card i {
  transition: transform 0.3s ease;
}

.principle-card:hover i {
  transform: scale(1.2);
}




/* 🌐 Fullscreen Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🫀 Logo Beating Animation */
.beat-loader {
  width: 200px;
  animation: beat 10s infinite ease-in-out;
}

/* 📝 Loading Text Pulse */
.loading-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: #000;
  animation: beat 8s infinite ease-in-out;
}

/* 🫀 Pulse Keyframes */
@keyframes beat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
.card textarea {
  resize: none;
}

.list-group-item {
  font-size: 0.95rem;
}
#tsparticles {
  pointer-events: none;
  opacity: 0.8;
}

.image-only-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.image-only-card img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* WhatsApp Floating Bubble */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #25d366;
  color: #fff;
  transform: scale(1.1);
}

/* Floating Animation */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.animate-float {
  animation: floatUpDown 3s ease-in-out infinite;
}
