/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
html, body {
  overflow-x: hidden;
}


html, body{
  overflow-x: hidden;
}
body {
  background: #fff;
}

/* ========== TOP BAR ========== */
.top-bar {
  font-weight: 600;
  height: 50px;
  background: #fff;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  flex-wrap: wrap;
  font-size: 14px;
}

.top-bar-left span {
  margin-right: 20px;
}

.top-bar i {
  color: rgb(37, 37, 37);
  margin-right: 6px;
}

.top-bar .orange {
  color: #e37c1e;
}

.top-bar-right a {
  color: #e37c1e;
  margin-left: 10px;
  transition: 0.3s;
}

.top-bar-right i:hover {
  color: #e37c1e;
}

/* ========== HEADER ========== */
header {
  background: #141414;
  color: white;
  position: relative;
  z-index: 9999; /* ensures it stays above banner */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: relative;
}

/* ========== LOGO ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 60px;
  overflow: hidden;  /* Cut extra size if logo misbehaves */

}

.logo-img {
  height: 45px !important;     /* ✅ Force small size */
  width: auto !important;      /* ✅ Keep proportions */
  object-fit: contain !important;
  flex-shrink: 0;              /* ✅ Prevent stretching */
  display: block;
}


.logo-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logo-text p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}



@media (max-width: 768px) {
  .logo-icon img {
    height: 50px;
  }

  .logo-text h2 {
    font-size: 20px;
  }
}




/* ========== NAV LINKS ========== */
.nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e37c1e;
}

.nav-links i.fa-plus {
  font-size: 10px;
  margin-left: 4px;
  color: #e37c1e;
}

/* ========== DROPDOWN MENU ========== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #1d1d1d;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 10000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #fff;
  display: block;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #e37c1e;
}

/* ========== APPOINTMENT BUTTON ========== */
.btn-appointment {
  background: #e37c1e;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  background: #e37c1e;
  transform: translateY(-2px);
}

/* ========== MOBILE MENU ========== */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}



@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== BANNER ========== */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  padding: 80px 5% 0;
  background: #1a1a1a;
  overflow: visible;
  color: #fff;
  font-family: "Poppins", sans-serif;
  flex-wrap: wrap;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* Text */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 45%;
  animation: fadeInUp 1s ease forwards;
  min-width: 300px;
}

.banner-content .intro {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 1000;
  line-height: 1.5;
  color: #000;
  margin-bottom: 20px;
}

.banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
  max-width: 90%;
}

.banner-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #000;
  color: #fff;
}

/* Image */
.banner-image {
  position: absolute;
  bottom: -70px;
  right: -5%;
  width: 70%;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.banner-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1.3s ease-out forwards;
  animation-delay: 0.3s;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.emptydiv {
  height: 50px;
  width: 100%;
  position: relative;
  z-index: 0;
}
.close-menu {
  display: none !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Animations */
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   🧭 RESPONSIVE FIXES FOR ALL SECTIONS
========================================= */

/* ---------- Large Tablets (max 1200px) ---------- */
@media (max-width: 1200px) {
  .nav-container {
    padding: 15px 4%;
  }
  .banner-title {
    font-size: 3rem;
  }
  .banner-text {
    font-size: 1.05rem;
  }
}

/* ---------- Tablets (max 992px) ---------- */
@media (max-width: 992px) {
  /* TOP BAR */
  .top-bar {
    flex-direction: column;
    text-align: center;
    height: auto;
    gap: 5px;
    padding: 10px 20px;
  }
  .top-bar-left span {
    display: block;
    margin: 4px 0;
  }
  .top-bar-right {
    margin-top: 5px;
  }

  /* NAVIGATION */

  /* ========== MOBILE MENU ========== */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
    background: #2a2a2a;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 1000;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0d0d0d;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px;
    transition: left 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .close-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s, color 0.3s;
  }
  .nav-links.active .close-menu {
    display: block !important;
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

 
  .close-menu:hover {
    color: #e37c1e;
    transform: rotate(90deg);
  }

  .nav-links ul {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0;
    margin-top: 40px;
  }

  .nav-links ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links ul li a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links ul li a:hover {
    color: #e37c1e;
  }

  .nav-links ul li i.fa-plus {
    color: #e37c1e;
    font-size: 18px;
    margin-left: 8px;
    transition: transform 0.3s, color 0.3s;
  }

  .nav-links ul li i.fa-plus.rotate {
    transform: rotate(45deg);
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    gap: 10px;
    animation: fadeIn 0.4s ease;
  }

  .dropdown-menu.open {
    display: flex;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .btn-appointment {
    display: none;
  }
}


}


  /* BANNER SECTION */
  @media (max-width: 992px) {
  /* Hide the empty div on smaller screens */
  .emptydiv {
    display: none;
  }

  /* Banner container */
  .banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    background: #f58220; /* Orange background */
    padding: 80px 5% 60px;
    min-height: auto;
  }

  /* Remove overlay shape */
  .overlay {
    display: none;
  }

  /* Text section */
  .banner-content {
    max-width: 100%;
    margin-bottom: 40px;
    color: #fff;
  }

  .banner-content .intro {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    border-left: 3px solid #000;
    padding-left: 10px;
  }

  .banner-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 20px;
  }

  .banner-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
    max-width: 100%;
  }

  /* Button */
  .banner-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .banner-btn:hover {
    background: #fff;
    color: #000;
  }

  /* Image below text */
  .banner-image {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
    z-index: 2;
  }

 .banner-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease-in-out;
}

/* When visible */
.banner-image.visible img {
  opacity: 1;
  transform: translateX(0);
}

}



/* ---------- Mobile (max 576px) ---------- */
@media (max-width: 576px) {
  .logo-text h2 {
    font-size: 20px;
  }

  .logo-icon i {
    font-size: 36px;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-text {
    font-size: 0.9rem;
  }

  .banner-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* why choose us   */

.why-choose-us {
  padding: 100px 5%;
  background: #fff;
}

.why-choose-us .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* ===== Left Section ===== */
.why-left {
  flex: 1 1 45%;
}

.why-left h4 {
  color: #f97316;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-left .line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #f97316;
}

.why-left h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 15px 0;
  color: #111;
}

.why-left p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ===== Badge + Features Row ===== */
.why-bottom {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== Award Box ===== */
.award-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 45%;
  max-width: 250px;
  justify-content: center;
  text-align: center;
}

.award-box i {
  font-size: 2rem;
  color: #f97316;
}

.award-text h3 {
  margin: 0;
  font-weight: 600;
  color: #111;
}

/* ===== Features Side ===== */
.features-side {
  flex: 1 1 55%;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-list li {
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.features-list i {
  color: #f97316;
}

.learn-btn {
  background: #111;
  color: #fff;
  padding: 12px 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  background: #f97316;
  transform: translateY(-2px);
}

/* ===== Right Section ===== */
.why-right {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.card a {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.card a:hover {
  text-decoration: underline;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .why-choose-us .container {
    flex-direction: column;
  }

  .why-left, .why-right {
    flex: 1 1 100%;
  }

  .why-bottom {
    flex-direction: column;
  }

  .award-box {
    max-width: 100%;
    justify-content: flex-start;
  }

  .why-left h1 {
    font-size: 2.2rem;
  }
}
/*about sec home*/
/* About section layout + safe defaults */
/* ==== Section Layout ==== */
.about-section {
  position: relative;
  padding: 100px 6%;
  background: #fff;
  overflow: hidden;
  color: #111;
}

.about-section .container {
  max-width: 1200px;
  margin: auto;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* ==== Images ==== */
.image-wrapper {
  position: relative;
  display: inline-block;
}

/* Main Image */
.img-main {
  width: 88%;
  aspect-ratio: 3.5 / 4; /* taller, portrait-like */
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

/* Smaller Overlay Image */
.img-overlay {
  position: absolute;
  top: 50%;
  right: -30px; /* previously -60px, now pulled inside */
  transform: translateY(-50%) translateX(-60px);
  width: 46%;
  aspect-ratio: 3.7 / 4; /* same taller proportion */
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.9s ease;
}

/* Animation */
.about-images.active .img-main {
  opacity: 1;
  transform: translateX(0);
}
.about-images.active .img-overlay {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==== Text Content ==== */
.section-tag {
  color: #f37c18;
  font-weight: 700;
}

.title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 10px 0 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.title.active {
  opacity: 1;
  transform: translateY(0);
}

.about-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ==== ✅ Right Section Split ==== */
.right-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  position: relative;
}

/* Left Paragraph Side */
.text-side {
  flex: 1;
  padding-right: 20px;
}

/* Vertical Divider between text & stats */
.right-inner .vertical-divider {
  width: 1.5px;
  background: #ccc;
  align-self: stretch;
}

/* Right Stats Side */
.stats-container {
  flex: 0 0 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==== Stats Section ==== */
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f37c18;
  line-height: 1;
  transition: transform 0.4s ease;
}

.stat-number.animated {
  transform: scale(1.1);
}

.stat-text {
  font-weight: 600;
  color: #111;
}

.stats-right {
  flex: 1;
}

.stat-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-desc {
  color: #777;
  max-width: 320px;
  font-size: 0.95rem;
}

/* ==== Read More Button ==== */
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  margin-top: 40px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-read:hover {
  background: #f37c18;
  transform: translateY(-3px);
}

.btn-read i {
  transition: transform 0.3s ease;
}
.btn-read:hover i {
  transform: translateX(6px);
}

.horizontal-divider {
  height: 1.5px;
  background: #ccc;
  width: 150%;              /* full width of right section */
   margin-left: -40px;
  position: relative;
  left: 0;                  /* aligns with the vertical divider */
  border-radius: 2px;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .row {
    grid-template-columns: 1fr;
  }

  .image-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }

  .img-main {
    width: 75%;
    aspect-ratio: 3 / 4;
  }

  .img-overlay {
    width: 42%;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* ✅ Stack right section vertically on smaller screens */
  .right-inner {
    flex-direction: column;
    gap: 25px;
  }

  .right-inner .vertical-divider {
    display: none;
  }
}

/* rentals home section */
/* ==== RENTAL SECTION ==== */
.rental-section {
  background-color: #0f1115; /* dark backdrop for contrast */
  color: #fff;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

/* Subtle tech grid pattern */
.rental-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* Soft glowing brand light */
.rental-section::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(243,124,24,0.12), transparent 70%);
  animation: slowGlow 25s linear infinite;
  z-index: 0;
  transform-origin: center;
}

@keyframes slowGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Center container */
.rental-container {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.rental-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: #f37c18;
  letter-spacing: 1px;
}

.rental-header p {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ==== GRID ==== */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* ==== CARD ==== */
.rental-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rental-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(243,124,24,0.25);
}

/* Card Image */
.rental-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.rental-card:hover .rental-img img {
  transform: scale(1.05);
}

/* Card Heading */
.rental-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f37c18;
  margin-bottom: 8px;
}

/* Card Text */
.rental-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Rent Button */
.rent-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #f37c18;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rent-btn:hover {
  background: #222;
  transform: translateY(-3px);
}

/* Floating Icon (optional) */
.rental-icon {
  font-size: 2.2rem;
  color: #f37c18;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}

/* ==== ANIMATIONS ==== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .rental-card {
    padding: 20px;
  }
  .rental-img img {
    height: 160px;
  }
}

/* ==== SCROLL ANIMATIONS ==== */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==== CARD ANIMATION FIX ==== */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hide cards initially */
.rental-card {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease-out;
}

/* Animate cards when visible */
.rental-card.visible {
  animation: slideInRight 0.9s ease forwards;
}

/* Add delay for each card */
.rental-card:nth-child(1).visible { animation-delay: 0.2s; }
.rental-card:nth-child(2).visible { animation-delay: 0.4s; }
.rental-card:nth-child(3).visible { animation-delay: 0.6s; }
.rental-card:nth-child(4).visible { animation-delay: 0.8s; }

/* ==== HEADER ANIMATION ==== */
.rental-header {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease-out;
}

.rental-header.visible {
  animation: slideInLeft 0.9s ease forwards;
}

/* testimonials home */

.testimonials {
  background: linear-gradient(120deg, #fff 0%, #fff7f3 100%);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1300px;
  margin: auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}
.testimonials-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #ff6f43;
  border-radius: 2px;
}
.testimonials-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* === SLIDER === */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 30px;
  animation: scrollSlider 25s linear infinite;
}

.testimonial-slider:hover .slider-track {
  animation-play-state: paused;
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CARD === */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 370px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* === CARD TOP === */
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff6f43;
}
.client-info {
  flex: 1;
  margin-left: 15px;
}
.client-info h4 {
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
}
.client-info span {
  color: #888;
  font-size: 0.9rem;
}
.quote-icon {
  color: #ff6f43;
  font-size: 1.5rem;
  opacity: 0.8;
}

/* === TEXT === */
.testimonial-text {
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin: 20px 0;
}

/* === STARS === */
.stars {
  color: #ffb400;
  font-size: 1.1rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .slider-track {
    animation: scrollSlider 35s linear infinite;
  }
  .testimonial-card {
    width: 80%;
    margin: 0 auto;
  }
}

