/*
Theme Name: Real-Estate Theme 
Author: Abhradeep Biswas
Author URI: https://abhradeep.com
Description: A WordPress theme for RealEstate Manager made by Abhradeep for work assignment .
Version: 1.0
Text Domain: realestate-theme
*/

/* General Styles */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #2c3e50;
}

p {
  line-height: 1.8;
  color: #555;
}

/* Navbar Styles */
.navbar-dark {
  background-color: #2c3e50 !important;
}

.navbar-dark .navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(207, 224, 242, 0.8)
    ),
    url("https://img.freepik.com/free-photo/hand-presenting-model-house-home-loan-campaign_53876-104970.jpg?t=st=1740799014~exp=1740802614~hmac=c38ed8f31074f1d2f3f3291aa1fabab000291d982c305ab1f700b97881da7af9&w=1380")
      center/cover no-repeat;
  padding: 8rem 1rem;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  border-radius: 0;
}

.hero-section .hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-section .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-section .btn-primary {
  background-color: #3498db;
  border-color: #3498db;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-section .btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: 10px 10px 0 0;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
}

.card-text {
  color: #555;
}

/* Buttons */
.btn-success {
  background-color: #27ae60;
  border-color: #27ae60;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.btn-success:hover {
  background-color: #219653;
  border-color: #219653;
}

.btn-outline-primary {
  border-color: #3498db;
  color: #3498db;
}

.btn-outline-primary:hover {
  background-color: #3498db;
  border-color: #3498db;
  color: #fff;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-text {
  opacity: 0.55;
  margin: 0;
}

/* Modal Styles */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #3498db;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.modal-title {
  font-weight: 600;
}

.modal-footer {
  background-color: #f8f9fa;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 767.98px) {
  .testimonials-section .col-md-4 {
    margin-top: 1rem !important; /* Add margin-top for small devices */
  }
}
