:root {
  --brand: #ac2b0a;
  --sub: #cea213;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.topbar {
  background: #b48629;
  color: #fff;
  font-size: 16px;
}

.topbar a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;

}

.topbar i {
  color: #fff;
  /* gold-like icon */
}

/* Slightly smaller height */
.topbar .container {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .topbar {
    font-size: 13px !important;
    text-align: center;
  }

  .topbar .container {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

.classy-navbar .nav-brand {
  font-size: 20px !important;
  font-weight: 500;
  color: #a00303 !important;
  ;
  display: inline-block;
  margin-right: 30px;
}

/* default */
.site-logo {
  height: 70px !important;
  width: auto !important;
}

/* laptop/desktop only */
@media (min-width: 992px) {
  .site-logo {
    height: 130px !important;
    width: auto !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* Increase dropdown box width */
.classynav .dropdown {
  min-width: 250px !important;
  /* You can increase if needed */
}

/* Make inner links stay in one line */
.classynav .dropdown li a {
  white-space: nowrap;
}

.breakpoint-on .dd-trigger {
  height: 31px;
  width: 31px;
  background-color: #a00303 !important;
  top: 7px;
  right: 15px;
  left: auto;
  display: block;
  border-radius: 2px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-slider {
  cursor: grab;
}

.hero-slider:active {
  cursor: grabbing;
}


.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.7s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 10;
  /* brings buttons on top always */
}

.slide-content .btn {
  position: relative;
  z-index: 15;
}



.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.slide-content h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.slide-content .btn {
  padding: 12px 28px;
  background: #d69315;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.slide-content .btn:hover {
  background: #131210;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #fff;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
}

.dot.active {
  background-color: #b48629;
  width: 10px;
  height: 10px;
  opacity: 1;
  transform: scale(1.3);
}

/* === ARROWS === */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c79a2d;
  padding: 12px 18px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  transition: 0.3s;
  color: white;
  user-select: none;
}

.arrow:hover {
  background: #131210;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .hero-slider {
    height: 60vh;
  }

  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .slide-content p {
    display: none;
    /* hide paragraph */
  }

  .slide-content .btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .arrow.left {
    left: 16px !important;
    font-size: 14px;
  }

  .arrow.right {
    right: 16px !important;
    font-size: 14px;
  }

}

.about-section {
  padding: 70px 0;
  background: #fdf7e7;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* LEFT IMAGES */
.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-images .img-big {
  width: 70%;
  height: 260px;
  /* ✅ makes it rectangle */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  margin: auto;
}

.img-small-wrapper {
  display: flex;
  gap: 15px;
}

.img-small {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: 0.4s ease;
}

/* ✅ IMAGE HOVER ANIMATION */
.about-images img:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* RIGHT CONTENT */
.about-content {
  flex: 1;
  animation: fadeRight 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #a00303;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #333;
}

.about-content ul {
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.about-content ul li {
  margin-bottom: 8
}

.about-icons {
  list-style: none;
  padding: 0;
}

.about-icons li {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.about-icons li i {
  color: #d4af37;
  /* Gold Color */
  margin-right: 10px;
  font-size: 20px;
}

/* ✅ Tablet Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-images .img-big {
    width: 90%;
    height: 220px;
  }

  .img-small-wrapper {
    width: 90%;
    justify-content: center;
  }

  .img-small {
    width: 45%;
    height: 130px;
  }

  .about-content {
    width: 90%;
  }

  .about-content h3 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 600px) {
  .about-section {
    padding: 40px 10px;
  }

  /* Hide the 2nd & 3rd images */
  .img-small-wrapper {
    display: none;
  }

  /* Hide the 2nd paragraph inside about-content */
  .about-content p:nth-of-type(2) {
    display: none;
  }

  /* .img-small-wrapper {
    flex-direction: column;
    gap: 12px;
  } */

  /* .img-small {
    width: 90%;
    height: 150px;
  } */

  .about-images .img-big {
    width: 100%;
    height: 200px;
  }

  .about-content h3 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 24px;
  }

  .about-icons li {
    font-size: 16px;
  }
}

.mv-section {
  padding: 80px 0;
  background: #faf5e6;
  animation: fadeMV 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeMV {
  to {
    opacity: 1;
  }
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 0 20px;
}

/* BOX STYLING */
.mv-box {
  flex: 1;
  background: #a00303;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border-left: 8px solid #d4af37;
}

.mv-box i {
  font-size: 50px;
  color: #d4af37;
  margin-bottom: 15px;
}

.mv-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
}

.mv-box p {
  font-size: 17px;
  line-height: 26px;
  color: #fffbfb;
}

/* Hover effect */
.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ✅ RESPONSIVE TABLET */
@media (max-width: 992px) {
  .mv-container {
    flex-direction: column;
  }

  .mv-box {
    width: 100%;
  }
}

/* ✅ RESPONSIVE MOBILE */
@media (max-width: 600px) {
  .mv-section {
    padding: 50px 10px;
  }

  .mv-box {
    padding: 30px 20px;
  }

  .mv-box h3 {
    font-size: 22px;
  }

  .mv-box p {
    font-size: 15px;
    line-height: 24px;
  }

  .mv-box i {
    font-size: 40px;
  }
}


.why-choose-section {
  padding: 70px 0;
  background: #fff;
}

.why-choose-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #a00303;
  margin-bottom: 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.why-box {
  background: #ffffff;
  border: 1px solid #e6d9c0;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.why-box:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.why-box i {
  font-size: 38px;
  color: #d4af37;
  margin-bottom: 12px;
}

.why-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.why-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-box {
    padding: 20px;
  }
}

.services-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.service-row.show {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate layout */
.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image img {
  width: 500px;
  height: 330px;
  border-radius: 12px;
  object-fit: cover;
}

.service-content {
  max-width: 500px;
}

.service-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-row {
    flex-direction: column !important;
    text-align: center;
  }

  .service-image img {
    width: 100%;
    height: 250px;
  }
}

/* Fade Animations */
.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.service-row.show.fade-left,
.service-row.show.fade-right {
  transform: translateX(0);
}

.contact-section {
  padding: 60px 20px;
  background: #fafafa;
}

.contact-details-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 35px;
}

.contact-details-container h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-details-container h4 {

  color: #c79a2d;
}

.contact-details-container p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-details-container h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.contact-list li {
  font-size: 17px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-list i {
  margin-right: 8px;
  color: #c79a2d;
  font-size: 18px;
}

.contact-list a {
  text-decoration: none;
  color: inherit;
}

.contact-btn {
  margin-top: 18px;
  display: inline-block;
  background: #a00303;
  padding: 12px 22px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
}

.contact-btn:hover {
  color: #d4af37 !important;
  /* text remains white */

}

.contact-btn i {
  margin-right: 6px;
}

.contact-map-full {
  width: 100%;
  height: 450px;
  margin-top: 20px;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

@media(max-width: 768px) {
  .contact-map-full {
    height: 260px;
  }
}

.branches-section {
  padding: 50px 0;
  background: #f8f8f8;
  text-align: center;
}

.branch-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.branch-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid goldenrod;
  border-top: 1px solid goldenrod;
  border-bottom: 4px solid goldenrod;
  border-right: 1px solid goldenrod;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.branch-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.branch-box i {
  font-size: 28px;
  color: #c79a2d;
  margin-bottom: 10px;
}

.branch-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.branch-box h5 {

  font-size: 16px;


}

.branch-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-box ul li {
  font-size: 13px;
  padding-top: 10px;
  color: #555;
  line-height: 1.6;
}



.testimonial-section {
  background: #fdf7e7;
  padding: 70px 20px;
  text-align: center;
}

.test-title {
  font-size: 32px;
  font-weight: 700;
  color: #a00303;
  margin-bottom: 40px;
}

.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: 0.7s ease;
  font-size: 18px;
  line-height: 28px;
  color: #444;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.stars {
  font-size: 22px;
  color: #f1bf1a;
  margin: 12px 0;
}

h4 {
  margin-top: 8px;
  font-weight: 600;
  color: #a00303;
}

/* Arrows - Desktop only */
.test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  background: #a00303;
  color: #fff;
  border-radius: 50%;
  transition: 0.3s ease;
}

.test-arrow.left {
  left: -80px;
}

.test-arrow.right {
  right: -80px;
}

.test-arrow:hover {
  background: #c80606;
}

/* Hide arrows in mobile */
/* @media (max-width: 768px) {
  .test-arrow { display: none; }
 
} */



@media (max-width: 768px) {
  .test-arrow.right {
    right: -12px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .test-arrow.left {
    left: -12px;
    font-size: 12px;
  }
}

/* Dots */
.test-dots {
  margin-top: 18px;
}

.t-dot {
  height: 10px;
  width: 10px;
  background: #c8c8c8;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.t-dot.active,
.t-dot:hover {
  height: 12px;
  width: 12px;
  background: #a00303;
}

/* Stop autoplay on hover */
.testimonial:hover {
  animation-play-state: paused;
}

.photo-gallery {
  padding: 70px 20px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 15px;
}

.gallery-item {
  position: relative;
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform .4s ease;
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

/* Responsive */
@media(max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media(max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }
}


.gallery-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
}

/* Hidden image but used for SEO + loading */
.gallery-banner .banner-bg-img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  filter: brightness(0.65);
}

.gallery-banner {
  position: relative;
  width: 100%;
  height: 430px !important;
  min-height: 430px !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  filter: brightness(0.65);
}

.gallery-banner .banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.gallery-banner h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

.gallery-banner p {
  font-size: 18px;
  letter-spacing: 1px;
  max-width: 700px;
  padding: 10px;
  color: #fff !important;
}

/* Responsive */
@media(max-width: 768px) {
  .gallery-banner {
    height: 220px;
  }

  .gallery-banner h2 {
    font-size: 25px;

  }

  .gallery-banner p {
    font-size: 15px;
  }
}

@media(max-width: 480px) {
  .gallery-banner {
    height: 180px;
  }

  .gallery-banner h2 {
    font-size: 26px;
  }

  .gallery-banner p {
    font-size: 14px;
  }
}