:root {
  --primary-color: #ff1717;
  --secondary-color: #f8f9fa;
  /* --primary-color: #ff6b35; */
  --text-dark: #000000;
  --text-gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Roboto Serif", serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  width: 150px;
}
.navbar-brand img {
  width: 100%;
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/house-isolated-field-min.jpg") center/cover;
  height: max-content;
  display: flex;
  padding-top: 140px;
  padding-bottom: 40px;
  align-items: center;
  color: white;
  /* text-align: center; */
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ad0202;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.text-black {
  color: #000000;
}

/* hero form  */
.hero-contact-form {
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
}
.hero-form-control {
  width: 100%;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  outline: none;
}
.hero-form-control:focus {
  border: 2px solid var(--primary-color) !important;
}
.selection {
  width: 100%;
}
.hero-textarea {
  width: 100%;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--secondary-color);
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  /* font-size: 3rem; */
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.service-card p {
  text-align: justify;
}

/* clients section  */
.clients {
  padding: 80px 0;
  background-color: #000000;
}
.logo-carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #f8f9fa;
  padding: 20px 0;
  border-radius: 10px;
}

.logo-track {
  display: flex;
  width: calc(200px * 10); /* logo width * number of logos */
  animation: scroll 25s linear infinite;
}

/* Pause on hover */
/* .logo-carousel:hover .logo-track {
      animation-play-state: paused;
    } */

.logo-carousel img {
  width: 150px;
  height: auto;
  margin: 0 30px;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-carousel img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Properties Section */
.properties {
  padding: 80px 0;
}

.property-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
}

.property-info {
  padding: 25px;
}

.property-features {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  color: var(--text-gray);
}

.property-features span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--secondary-color);
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
.text-red {
  color: var(--primary-color);
}

/* industries section  */
.industries {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/industries-bg.jpg") center/cover;
  background-color: #000000;
}
.industries-icon {
  background-color: rgba(0, 0, 0, 0.7);
  width: max-content;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

/* faq section  */
.faq-section{
  padding: 80px 0;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.faq-question {
  padding: 15px 20px;
  font-size: 1.2em;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: #f0f0f0;
}
.faq-answer {
  padding: 0 20px 15px;
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  display: none;
}
.faq-answer.active {
  display: block;
}
.faq-question::after {
  content: "\25BC";
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  transform: rotate(180deg);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  color: var(--text-dark);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

/* testimonial section  */
.testimonial {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}
/* Owl Carousel Customizations */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  font-size: 2em;
  color: #333;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}
.owl-carousel .owl-nav button.owl-next {
  right: -30px;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
}
.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  transition: background 0.3s ease;
}
.owl-carousel .owl-dot.active span {
  background: #333;
}
.testimonial-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 10px;
  height: max-content;
}
.testimonial-item img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  border: 2px solid red;
  margin-bottom: 20px;
}
/* @media (max-width: 768px) {
        .testimonial-item {
          height: 300px;
        }
      } */

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 0 20px;
}
.footer-logo {
  width: 150px;
  height: auto;
}
.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .service-card {
    margin-bottom: 30px;
  }

  .property-features {
    flex-direction: column;
    gap: 10px;
  }
}
