/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

/* WHY SECTION */
.why-section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Grid Layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC = 4 column */
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: #e63946;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 26px;
  }
}

.review-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.review-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.review-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.review-container {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 33.33%;
  box-sizing: border-box;
  padding: 25px;
  background: #ffffff;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-card p {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.review-card h4 {
  color: #e63946;
  font-size: 15px;
  margin-top: 5px;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* Arrow Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e63946;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.prev:hover,
.next:hover {
  background: #c82333;
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

/* Responsive */
@media (max-width: 992px) {
  .review-card {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .review-card {
    min-width: 100%;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }
}
.main-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #e63946;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e63946;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #e63946;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #222;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e63946;
  transform: translateY(-5px);
}
.bottom-contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 999;
}

.bottom-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  animation: pulse 2s infinite;
}

/* Call Button */
.call-btn {
  background: #e63946;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25D366;
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .bottom-contact a {
    padding: 10px 16px;
    font-size: 13px;
  }
}

