/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 20px 10%;
}

.logo h2 {
  font-size: 28px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffc107, #08de08, #2196f3, #ff00cc, #ffc107);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logo3dcolor 3s linear infinite;
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1), text-shadow 0.4s;
  cursor: pointer;
}
.logo h2:hover {
  transform: scale(1.15) rotateY(15deg);
  text-shadow: 0 4px 24px #2196f3, 0 2px 8px #ffc107;
  animation: logo3dcolor 1s linear infinite;
}

@keyframes logo3dcolor {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 

.navbar a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ffc107;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('banner.jpg') no-repeat center/cover;
  color: #fff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
#typeText{
  font-size: 40px;
  color: #333;
}

p{
  color: #333;
  font-size: 45px;
  transform: all 0.3s ease;
}
p{
  animation: textPluse 8s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes textPluse {
  0%{
    color: #333;
    transform: scale(1);
  }
  50%{
    color: #f4f4f4;
    transform: scale(1.2);
  }
  100%{
    color: #333;
    transform: scale(1);
  }
  }
  .services {
    background: #fffbe7;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 4px 18px rgba(255,193,7,0.12);
    text-align: center;
  }
  .sarvices h2 {
    color: #ffc107;
    font-size: 28px;
    margin-bottom: 15px;
  }
  .sarvices p {
    color: #444;
    font-size: 18px;
    margin-bottom: 10px;
  }

.hero .btn {
  padding: 12px 30px;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.hero .btn:hover {
  background: #e0a800;
}
/* Featured Properties Section */
.features-properties {
  padding: 60px 10%;
  background: #fefefe;
  text-align: center;
}

.features-properties h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.Property-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.Property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 2px 12px lab(6.75% -10.1 4.95 / 0.998);
  transition: transform 1.02s ease, box-shadow 0.9s ease;
  cursor: cell;
}

.Property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px hsl(115, 95%, 38%);
  transform: rotateY(30deg);
}

.Property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.Property-card h3 {
  font-size: 20px;
  margin: 15px 0 5px;
}

.Property-card p {
  color: #555;
  margin-bottom: 15px;
}

/* Services Section */
.services {
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.services ul {
  list-style: none;
}

.services li {
  font-size: 18px;
  margin: 12px 0;
  position: relative;
  padding-left: 20px;
}

.services li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #ffc107;
}

/* Agents Section */
.agents {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}

.agents h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.agents-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.agent-card {
  background: #fafafa;
  border-radius: 10px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}

.agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px #08de08d3;
}

.agent-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.agent-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.agent-card p {
  color: #555;
  margin: 5px 0;
}
p{
  font-size: 0.9rem;
  font-family: solid 1px;
}

/* Gallery Section */
.gallery {
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-images img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
  cursor: all-scroll;
}

.gallery-images img:hover {
  transform: scale(1.09);

  box-shadow: 0 8px 20px lab(88.15% -82.34 81.96);
}

/* Contact CTA Section */
.Contact-cta {
  padding: 60px 10%;
  background: #222;
  color: #fff;
  text-align: center;
}

.Contact-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.Contact-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.Contact-cta .btn {
  padding: 14px 32px;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.Contact-cta .btn:hover {
  background: #e0a800;
  transform: scale(1.05);
}

/* #myButton{
  font-size: 2px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: black;
  background-color: aqua;
} */
/* Responsive Media Queries */
@media (max-width: 768px) {
  .Property-cards,
  .agents-cards,
  .gallery-images {
    flex-direction: column;
    align-items: center;
  }
}


/* Footer */
.site-footer {
  padding: 25px 10%;
  background: hsl(0, 0%, 29%);
  color: #ccc;
  text-align: center;
  font-size: 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 768px) {
  .property-cards,
  .agent-cards,
  .gallery-images {
    flex-direction: column;
    align-items: center;
  }

  .site-header {
    flex-direction: column;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
  }
}
