/* =========================
   Palette & Base
========================= */
:root{
  --primary:#1a73e8;      /* modern blue */
  --primary-600:#1665cc;
  --accent:#f39c12;       /* gold/orange */
  --accent-600:#e67e22;
  --dark:#2c3e50;
  --muted:#7f8c8d;
  --light:#f5f7fa;
  --card:#ffffff;
  --line:rgba(0,0,0,0.08);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color:var(--dark);
  background:var(--light);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}

/* Layout helpers */
.container{max-width:1200px;margin:0 auto;padding:0 2rem}
.section{padding:4.5rem 0}
.section.light {
  margin-top: -50px;   /* overlaps hero slightly */
  border-radius: 20px 20px 0 0; /* rounded top for nice transition */
  background: #fff;
  position: relative;
  z-index: 2;
}

.section.alt{background:linear-gradient(180deg,#ffffff, #f2f6ff)}
.section-head{text-align:center;margin-bottom:2.5rem}
.section-head h2{font-size:2.2rem;font-weight:700;letter-spacing:-0.5px}
.section-head p{color:var(--muted);margin-top:0.5rem}
.center{display:flex;justify-content:center;margin-top:1.5rem}

/* =========================
   Header & Navigation
========================= */
.header{
  position:fixed; top:0; left:0; right:0;
  background:rgba(255,255,255,0.9);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
  z-index:1000; transition:all .3s ease;
}
.nav-container{
  max-width:1200px;margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 2rem;
}
.logo{
  font-weight:800; font-size:1.6rem; text-decoration:none;
  color:var(--dark); letter-spacing:-.5px;
}
.nav-menu{display:flex; list-style:none; gap:2rem; align-items:center}
.nav-item a{
  text-decoration:none; color:#333; font-weight:600;
  position:relative; transition:.25s ease; padding:.25rem 0;
}
.nav-item a:hover{color:var(--primary)}
.nav-item a.active{color:var(--primary)}
.nav-item a.active::after{
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:100%;
  background:var(--primary);
}
.cta-button{
  background:linear-gradient(135deg,var(--primary),var(--primary-600));
  color:#fff; padding:.75rem 1.25rem; border-radius:999px; text-decoration:none;
  font-weight:700; transition:.25s ease; white-space:nowrap;
}
.cta-button:hover{transform:translateY(-2px); box-shadow:0 12px 26px rgba(26,115,232,.25)}
.mobile-menu-btn{display:none; flex-direction:column; gap:4px; cursor:pointer}
.mobile-menu-btn span{width:26px; height:3px; background:#333; display:block; border-radius:3px}

/* =========================
   Page Content
========================= */
.page-content{margin-top:80px; min-height:100vh; display:none}
.page-content.active{display:block; animation:fadeIn .5s ease-in-out}

/* =========================
   Hero
========================= */
/* .hero{
  height:86vh; min-height:520px;
  background: radial-gradient(1200px 600px at 80% 10%, rgba(26,115,232,.25), transparent 50%),
              radial-gradient(900px 600px at 10% 80%, rgba(243,156,18,.18), transparent 40%),
              linear-gradient(135deg, rgba(44,62,80,.85), rgba(26,115,232,.55));
  color:#fff; display:flex; align-items:center; justify-content:center; text-align:center;
  position:relative; overflow:hidden; padding:2rem;
} */

.hero {
  /* min-height: 100vh; */
  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(250,204,21,0.7)),
              url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  position: relative;
    height: 100vh;       /* instead of 100vh */
  padding: 120px 20px;
}

.hero-content {
  max-width: 700px;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-divider {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: var(--light);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}


.hero-content{max-width:820px; animation:fadeInUp 1s ease-out}
.hero h1{font-size:3.2rem; font-weight:800; letter-spacing:-1.5px; margin-bottom:1rem}
.hero p{font-size:1.15rem; opacity:.95; margin-bottom:2rem}
.hero-buttons{display:flex; gap:1rem; justify-content:center; flex-wrap:wrap}
.btn-primary,.btn-secondary{
  padding:1rem 2rem; border-radius:999px; font-weight:700; text-decoration:none;
  transition:.25s ease; display:inline-block
}
.btn-primary{background:linear-gradient(135deg,#e74c3c,#c0392b); color:#fff}
.btn-secondary{background:transparent; color:#fff; border:2px solid #fff}
.btn-primary:hover,.btn-secondary:hover{transform:translateY(-3px); box-shadow:0 16px 38px rgba(0,0,0,.25)}

.floating-elements{position:absolute; inset:0; overflow:hidden}
.floating-element{
  position:absolute; width:20px; height:20px; background:rgba(255,255,255,.12);
  border-radius:50%; animation:float 6s ease-in-out infinite;
}
.floating-element:nth-child(1){top:20%; left:10%}
.floating-element:nth-child(2){top:80%; left:20%; animation-delay:1s}
.floating-element:nth-child(3){top:40%; right:10%; animation-delay:2s}
.floating-element:nth-child(4){top:60%; right:30%; animation-delay:3s}

/* =========================
   Stats
========================= */
.stats{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem; margin-top:2rem;
}
.stat{
  text-align:center; padding:2rem; background:#fff; border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08); transition:.25s ease;
}
.stat:hover{transform:translateY(-6px); box-shadow:0 18px 46px rgba(0,0,0,.12)}
.stat h3{font-size:2rem; color:var(--primary); margin-bottom:.35rem}

/* =========================
   About
========================= */
.about-hero{background:linear-gradient(135deg,#2c3e50,#34495e); color:#fff; padding:6rem 0 4rem; text-align:center}
.about-hero .lead{opacity:.9; font-size:1.2rem}
.about-content{padding:4rem 0; background:#f8f9fa}
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:3rem; margin:2rem 0}
.about-grid h2{font-size:1.8rem; margin-bottom:.75rem}
.accent{color:var(--primary); margin-top:1rem; margin-bottom:.75rem}
.tick-list{list-style:none; color:var(--dark)}
.tick-list li{margin:.5rem 0; padding-left:28px; position:relative}
.tick-list li::before{content:"✔"; position:absolute; left:0; color:var(--accent)}
.team-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; margin-top:1.5rem}
.team-card{
  background:#fff; border-radius:16px; overflow:hidden; text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.08); transition:.25s ease;
}
.team-card:hover{transform:translateY(-6px)}
.team-card img{aspect-ratio:4/3; object-fit:cover; width:100%}
.team-card h4{margin:.75rem 0 .25rem}
.team-card span{color:var(--muted); font-size:.95rem}

/* =========================
   Properties
========================= */
.properties-hero{background:linear-gradient(135deg,#8e44ad,#3498db); color:#fff; padding:6rem 0 4rem; text-align:center}
.properties-hero .lead{opacity:.9}
.properties-filters{background:#fff; padding:1.5rem 0; box-shadow:0 2px 10px rgba(0,0,0,.06)}
.filters{display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap}
.filter-btn{
  background:#ecf0f1; border:none; padding:.7rem 1.1rem; border-radius:999px; cursor:pointer; transition:.2s ease; font-weight:700
}
.filter-btn:hover,.filter-btn.active{background:var(--primary); color:#fff}
.properties-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem; padding-top:1rem;
}
.property-card{
  background:#fff; border-radius:20px; overflow:hidden; cursor:pointer;
  box-shadow:0 15px 40px rgba(0,0,0,.08); transition:.25s ease;
}
.property-card:hover{transform:translateY(-8px); box-shadow:0 25px 60px rgba(0,0,0,.12)}
.property-image{height:240px; background:linear-gradient(45deg,#667eea 0%, #764ba2 100%); position:relative; overflow:hidden}
.property-image::before{
  content:'🏠'; position:absolute; inset:0; margin:auto; width:max-content; height:max-content; top:50%; left:50%; transform:translate(-50%,-50%);
  font-size:3.5rem; opacity:.25;
}
.property-image.cover{background-size:cover; background-position:center}
.price-tag{
  position:absolute; top:1rem; right:1rem;
  background:rgba(231,76,60,.95); color:#fff; font-weight:800; padding:.45rem .9rem; border-radius:999px; font-size:.95rem;
}
.property-info{padding:1.25rem 1.25rem 1.5rem}
.property-info h3{font-size:1.2rem; margin-bottom:.35rem}
.muted{color:var(--muted)}
.property-features{display:flex; gap:.6rem; flex-wrap:wrap; margin:.75rem 0}
.feature{background:#f1f5ff; border:1px solid #e3ebff; padding:.35rem .6rem; border-radius:999px; font-size:.9rem}
.chips{margin-top:.5rem}
.chip{background:var(--primary); color:#fff; padding:.25rem .65rem; border-radius:999px; font-size:.8rem; text-transform:uppercase; margin-right:.35rem}

/* =========================
   Services
========================= */
.services-hero{background:linear-gradient(135deg,#e74c3c,#f39c12); color:#fff; padding:6rem 0 4rem; text-align:center}
.services-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem; padding-top:1rem;
}
.service-card{
  background:#fff; padding:2rem 1.5rem; border-radius:18px; text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08); transition:.25s ease;
}
.service-card:hover{transform:translateY(-8px) rotateY(2deg); box-shadow:0 25px 60px rgba(0,0,0,.12)}
.service-icon{
  width:72px; height:72px; border-radius:50%; margin:0 auto 1rem;
  display:flex; align-items:center; justify-content:center; font-size:1.8rem;
  background:linear-gradient(135deg,var(--primary),var(--primary-600)); color:#fff;
}
.service-card h3{margin:.5rem 0 0.25rem}
.bullet{list-style:disc inside; color:var(--muted); margin-top:.5rem}
.bullet li{margin:.25rem 0}

/* =========================
   Testimonials
========================= */
.testimonials-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem;
}
.testimonial{
  background:#fff; border-radius:16px; padding:1.25rem 1.25rem 1.5rem;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.testimonial p{font-style:italic}
.author{display:flex; align-items:center; gap:.75rem; margin-top:1rem}
.author img{border-radius:50%}

/* =========================
   Contact
========================= */
.contact-hero{background:linear-gradient(135deg,#27ae60,#2ecc71); color:#fff; padding:6rem 0 4rem; text-align:center}
.contact-content{padding:3rem 0}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; margin-top:1.5rem}
.contact-item{
  display:flex; align-items:center; gap:1rem; margin-bottom:1rem;
  padding:1rem; background:#fff; border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,.06); transition:.25s ease;
}
.contact-item:hover{transform:translateX(6px)}
.contact-icon{
  width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.3rem;
  background:linear-gradient(135deg,var(--primary),var(--primary-600));
}
.contact-form{
  background:#fff; padding:2rem; border-radius:18px; box-shadow:0 15px 40px rgba(0,0,0,.08)
}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block; margin-bottom:.4rem; color:var(--dark); font-weight:600}
.form-group input,.form-group textarea,.form-group select{
  width:100%; padding:1rem; border:2px solid #ecf0f1; border-radius:12px; font-size:1rem; transition:.2s ease;
  background:#fff;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(26,115,232,.15)
}
.submit-btn{
  background:linear-gradient(135deg,var(--primary),var(--primary-600)); color:#fff;
  padding:1rem 1.25rem; border:none; border-radius:999px; font-size:1rem; font-weight:800; cursor:pointer; transition:.25s ease; width:100%;
}
.submit-btn:hover{transform:translateY(-2px); box-shadow:0 14px 36px rgba(26,115,232,.25)}
.map-wrap{margin-top:1rem; border-radius:14px; overflow:hidden; box-shadow:0 10px 26px rgba(0,0,0,.08)}
.map-wrap iframe{width:100%; height:260px; border:0}

/* =========================
   Footer
========================= */
.footer{background:#2c3e50; color:#fff; padding:3rem 0 2rem; margin-top:2rem}
.footer-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:2rem; margin-bottom:2rem
}
.footer-section h3{margin-bottom:1rem; color:var(--accent)}
.footer-section ul{list-style:none}
.footer-section li{margin:.45rem 0}
.footer-section a{color:#cfd8dc; text-decoration:none; transition:.2s ease}
.footer-section a:hover{color:#fff; padding-left:6px}
.footer .muted{color:#bdc3c7}
.socials{margin-top:1rem; display:flex; gap:.8rem; font-size:1.3rem}
.footer-bottom{border-top:1px solid #34495e; padding-top:1.25rem; text-align:center; color:#bdc3c7}
.footer-bottom a{color:#64b5f6}

/* =========================
   Animations
========================= */
@keyframes fadeIn{from{opacity:0} to{opacity:1}}
@keyframes fadeInUp{from{opacity:0; transform:translateY(30px)} to{opacity:1; transform:translateY(0)}}
@keyframes float{0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-18px) rotate(180deg)}}

/* =========================
   Responsive
========================= */
@media (max-width:1024px){
  .hero h1{font-size:2.7rem}
}
@media (max-width:900px){
  .about-grid,.contact-grid{grid-template-columns:1fr}
}
@media (max-width:768px){
  .nav-menu{
    display:none; position:absolute; top:100%; left:0; width:100%; background:#fff;
    flex-direction:column; padding:1rem 1.25rem; gap:.5rem; border-bottom:1px solid var(--line);
    box-shadow:0 10px 24px rgba(0,0,0,.08)
  }
  .nav-menu.active{display:flex}
  .mobile-menu-btn{display:flex}
  .hero{min-height:520px}
  .hero h1{font-size:2.25rem}
  .hero p{font-size:1rem}
  .filters{justify-content:center}
}
@media (max-width:420px){
  .cta-button{display:none}
  .property-features{gap:.4rem}
  .feature{font-size:.85rem}
}


.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }


#projects-page .projects-hero .container{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  /* background-color: red; */
  text-align: center;
}


/* Container Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.project-card p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 220px; /* Fixed height */
  overflow: hidden;
  border-radius: 12px;
}

/* Slides */
.slides img {
  width: 100%;
  height: 220px; /* Fixed height */
  object-fit: contain; /* keeps images proportional */
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.slides img:hover {
  transform: scale(1.05);
}

/* Prev/Next buttons */
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider button:hover {
  background: rgba(0, 0, 0, 0.6);
}
.slider .prev {
  left: 10px;
}
.slider .next {
  right: 10px;
}


/* Project Description */
.project-card p {
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  text-align: justify;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.3s ease, color 0.3s ease;
}

.project-card:hover p {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  color: #222;
}


.card-footer {
  background: #fafafa;
  padding: 1rem;
  border-top: 1px solid #eee;
  border-radius: 0 0 16px 16px;
}

.card-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  text-align: center;
}

.section.split {
  padding: 80px 0;
  background-color: #fff;
}

.split-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.split-text {
  flex: 1 1 50%;
}

.split-image {
  flex: 1 1 50%;
  text-align: center;
}

.split-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li::before {
  content: "✔️";
  margin-right: 8px;
  color: green;
}

.section.split {
  padding: 80px 0;
  background-color: #fff;
}

.split-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.split-text {
  flex: 1 1 50%;
}

.split-image {
  flex: 1 1 50%;
  text-align: center;
}

.split-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li::before {
  content: "✔️";
  margin-right: 8px;
  color: green;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item .answer {
    display: none;
    margin-top: 0.5rem;
    color: #555;
}

/* Reviews Section */
.review-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form input,
.review-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

.review-form .rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.review-form .star.selected {
    color: #f1c40f;
}

.review-form button {
    padding: 0.8rem 1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.review-form button:hover {
    background: #2980b9;
}

.reviews-list {
    max-width: 800px;
    margin: 2rem auto;
}

.review-card {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.review-card .review-stars {
    color: #f1c40f;
}


/* FAQ Section */
.faq-section {
    background: #f9f9f9;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.faq-item .question {
    font-weight: 600;
    font-size: 1.1rem;
    color: #34495e;
}

.faq-item .answer {
    display: none;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    background: #fff;
    padding: 4rem 0;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.review-form {
    max-width: 700px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form input,
.review-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    transition: border 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #3498db;
    outline: none;
}

.review-form .rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.review-form .star.selected {
    color: #f1c40f;
}

.review-form button {
    padding: 1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.review-form button:hover {
    background: #2980b9;
}

.reviews-list {
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: #f9f9f9;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.review-card .review-stars {
    color: #f1c40f;
    margin-bottom: 0.5rem;
}

.reviews-slider {
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
}

.review-card {
    background: #f9f9f9;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.review-card .review-stars {
    color: #f1c40f;
    margin: 0.5rem 0;
}

.reviews-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.review-card {
  flex: 0 0 300px; /* width of each card */
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.reviews-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 300px; /* width of each card */
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.slider-arrow.left { left: 0.5rem; }
.slider-arrow.right { right: 0.5rem; }





