/* 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;
  }
}
.feature-box{
  background:#ffdd57;      /* yellow */
  padding:18px 22px;
  border-radius:10px;
  max-width:320px;
}

.feature-list{
  margin:0;
  padding:0;
  list-style:none;
}

.feature-list li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  font-weight:700;
  font-size:14px;
  color:#1f2937;
}

.feature-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#16a34a;          /* green tick */
  font-weight:900;
}

.branches{
  background: transparent;   /* transparent background */
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.mini-title{
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 5px;
}

.mini-title span{
  border-bottom: 3px solid #8c1b4f;
  padding-bottom: 4px;
}

.main-title{
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: 700;
}

.branch-list{
  max-width: 700px;
  margin: auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1200px;
  margin:auto;
}

/* Mobile */
@media (max-width:768px){
.branch-list{
grid-template-columns:1fr;
  }
}

.branch-btn{
  display: block;
  background: #8c1b4f;
  color: #fff;
  text-decoration: none;
  padding: 18px 20px;
  margin-bottom: 18px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;

  /* Shadow effect */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.branch-btn:hover{
  background: #6f123d;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Mobile Responsive */
@media (max-width:768px){
  .main-title{
    font-size: 24px;
  }
  .branch-btn{
    font-size: 16px;
    padding: 15px;
  }
}

.gallery-title{
text-align:center;
font-size:32px;
margin-bottom:30px;
font-weight:600;
}

.gallery{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery a{
  display:block;
  overflow:hidden;
  border-radius:12px;
}

.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.gallery img:hover{
  transform:scale(1.07);
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9999;
}

.lightbox:target{
  opacity:1;
  visibility:visible;
}

.lightbox img{
  max-width:90%;
  max-height:90vh;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:28px;
  font-size:44px;
  line-height:1;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  z-index:10000;
}

.lightbox-close:hover{
  transform:scale(1.1);
}

@media (max-width:991px){
  .gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:767px){
  .gallery{
    grid-template-columns:1fr;
    padding:0 15px;
  }

  .gallery img{
    height:auto;
  }

  .lightbox-close{
    top:12px;
    right:18px;
    font-size:38px;
  }
}
