/* =============================================
   BHAIYAJI SHIFTINGWALE - PREMIUM CSS
   ============================================= */

:root {
  --orange: #C41E24;
  --dark-blue: #1B2A4A;
  --accent: #E8353B;
  --bg: #F8F9FB;
  --text: #2E2E2E;
  --white: #ffffff;
  --light-grey: #F0F2F5;
  --card-shadow: 0 8px 32px rgba(30, 42, 56, 0.10);
  --orange-glow: 0 0 24px rgba(196, 30, 36, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Utility ---- */
.text-orange {
  color: var(--orange) !important;
}

.bg-light-grey {
  background: var(--light-grey);
}

.section-pad {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.12), rgba(232, 53, 59, 0.18));
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(196, 30, 36, 0.2);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: #6b7280;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #A01820 100%);
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 36, 0.35);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 36, 0.5);
  background: linear-gradient(135deg, #D42832 0%, var(--orange) 100%);
}

.btn-glow {
  animation: glowPulse 2.5s infinite alternate;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 4px 15px rgba(196, 30, 36, 0.35);
  }

  100% {
    box-shadow: 0 6px 30px rgba(196, 30, 36, 0.6);
  }
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #b61c23 !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ========================
   NAVBAR
   ======================== */
#mainNavbar {
  background: #ffffff;
  padding: 0px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#mainNavbar.scrolled {
  background: #ffffff;
  padding: 1px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.brand-orange {
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ---- Logo Image ---- */
.navbar-logo {
  height: 85px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* Ensure logo is visible on transparent navbar */
  filter: brightness(1);
  transition: opacity 0.3s ease;
}

.navbar-logo:hover {
  opacity: 0.88;
}

/* Slightly smaller when navbar is scrolled (dark bg) */
#mainNavbar.scrolled .navbar-logo {
  height: 65px;
}

/* Mobile panel logo */
.navbar-logo-mobile {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Responsive logo sizes */
@media (max-width: 991px) {
  .navbar-logo {
    height: 46px;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 65px;
    max-width: 160px;
  }

  .navbar-logo-mobile {
    height: 36px;
  }
}

/* ---- Custom Mobile Hamburger Toggler ---- */
.navbar-toggler-custom {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 44px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  margin-left: auto;
}

.navbar-toggler-custom:focus {
  outline: none;
}

.navbar-toggler-custom .toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #162236;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-toggler-custom {
    display: flex;
  }
}

.navbar-toggler-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-custom.open .toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-custom.open .toggler-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom.open .toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-nav .nav-link {
  color: black !important;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: #a61921 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Mobile Offcanvas */
.mobile-offcanvas {
  background: var(--dark-blue);
  max-width: 300px;
}

.mobile-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 12px 8px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.mobile-nav .nav-link:hover {
  color: var(--orange) !important;
}

.brand-icon-sm {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.mobile-contact-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.mobile-contact-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.mobile-contact-info a {
  color: rgba(255, 255, 255, 0.75);
}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
  position: relative;
  background: url('images/hero.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 42, 56, 0.88) 0%, rgba(30, 42, 56, 0.65) 60%, rgba(196, 30, 36, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(196, 30, 36, 0.2);
  border: 1px solid rgba(196, 30, 36, 0.4);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 500px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.trust-item i {
  font-size: 1.1rem;
}

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.8s ease 0.4s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card-header {
  background: linear-gradient(135deg, var(--orange), #A01820);
  color: #fff;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
}

.hero-form .form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 5px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 0.92rem;
  z-index: 2;
}

.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
  padding-left: 38px !important;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-icon-wrap .form-control:focus,
.input-icon-wrap .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.15);
  outline: none;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  font-size: 0.92rem;
  padding: 10px 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.12);
  outline: none;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1.8s infinite;
}

.scroll-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ========================
   ABOUT SECTION
   ======================== */
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--orange), #A01820);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(196, 30, 36, 0.4);
}

.badge-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  padding: 7px 0;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Counters */
.counter-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border-bottom: 3px solid var(--orange);
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.04), transparent);
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 42, 56, 0.15);
}

.counter-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.counter-number {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-blue);
  line-height: 1;
  display: inline-block;
}

.counter-suffix {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  display: inline-block;
}

.counter-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 6px;
}

/* ========================
   SERVICES SECTION
   ======================== */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  border: 1px solid rgba(196, 30, 36, 0);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 42, 56, 0.16);
  border-color: rgba(196, 30, 36, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.12), rgba(232, 53, 59, 0.18));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin: 0 auto 22px;
  transition: all 0.35s ease;
  border: 2px solid rgba(196, 30, 36, 0.15);
}

.service-card:hover .service-icon-wrap {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  border-color: var(--orange);
  box-shadow: var(--orange-glow);
}

.service-card h4 {
  font-size: 1.05rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.service-card:hover .service-read-more {
  gap: 8px;
}

/* ========================
   WHY CHOOSE US
   ======================== */
.why-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #152030 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
  height: 100%;
}

.why-card:hover {
  background: rgba(196, 30, 36, 0.12);
  border-color: rgba(196, 30, 36, 0.35);
  transform: translateY(-6px);
}

.why-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.2), rgba(232, 53, 59, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0 auto 16px;
  border: 1.5px solid rgba(196, 30, 36, 0.3);
  transition: all 0.35s ease;
}

.why-card:hover .why-icon {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--orange-glow);
  transform: scale(1.1);
}

.why-card h5 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin: 0;
}

/* ========================
   LOCATION SECTION
   ======================== */
.location-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.location-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--orange);
  box-shadow: 0 12px 35px rgba(30, 42, 56, 0.14);
}

.loc-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.location-card h6 {
  color: var(--dark-blue);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.location-card p {
  color: #9ca3af;
  font-size: 0.78rem;
  margin: 0;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 42, 56, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-overlay i {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ========================
   TESTIMONIALS
   ======================== */

/* Section background accent */
#testimonials {
  background: linear-gradient(180deg, #fff 0%, #f8f6ff 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 300px;
  color: rgba(196, 30, 36, 0.05);
  position: absolute;
  top: -40px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* Carousel wrapper " give space for arrows on sides */
#testimonialCarousel {
  position: relative;
  padding: 0 60px;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 10px 50px rgba(30, 42, 56, 0.10);
  border: 1px solid rgba(196, 30, 36, 0.12);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(30, 42, 56, 0.14);
}

/* Stars */
.testimonial-card .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 1.05rem;
}

/* Quote text */
.testi-text {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  padding-top: 12px;
}

.testi-text::before {
  content: '\201C';
  font-size: 6rem;
  color: rgba(196, 30, 36, 0.10);
  font-family: Georgia, serif;
  position: absolute;
  top: -28px;
  left: -8px;
  line-height: 1;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(196, 30, 36, 0.35);
}

.testi-author-info {
  text-align: left;
}

.testi-author strong {
  display: block;
  color: var(--dark-blue);
  font-size: 1rem;
  font-weight: 700;
}

.testi-author span {
  font-size: 0.82rem;
  color: #9ca3af;
  display: block;
  margin-top: 2px;
}

/* Carousel nav arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  top: 50%;
  transform: translateY(-60%);
  opacity: 1;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(30, 42, 56, 0.14);
  border: 1.5px solid rgba(196, 30, 36, 0.15);
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(196, 30, 36, 0.4);
}

.carousel-control-prev:focus .carousel-arrow,
.carousel-control-next:focus .carousel-arrow {
  background: var(--orange);
  color: #fff;
}

/* Carousel indicators (dots) */
.carousel-indicators {
  position: relative;
  bottom: 0;
  margin-top: 20px;
  margin-bottom: 0;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(196, 30, 36, 0.25);
  border: none;
  transition: all 0.3s ease;
  opacity: 1;
}

.carousel-indicators .active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(196, 30, 36, 0.5);
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 991px) {
  #testimonialCarousel {
    padding: 0 50px;
  }

  .testimonial-card {
    padding: 36px 36px;
  }

  .testi-text {
    font-size: 0.98rem;
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #testimonialCarousel {
    padding: 0 44px;
  }

  .testimonial-card {
    padding: 28px 22px;
    border-radius: 18px;
    margin: 0 0 16px;
  }

  .testi-text {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .testi-text::before {
    font-size: 4.5rem;
    top: -22px;
  }

  .testi-avatar {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .testi-author strong {
    font-size: 0.92rem;
  }

  .testi-author span {
    font-size: 0.78rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }

  #testimonials::before {
    font-size: 180px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  #testimonialCarousel {
    padding: 0 36px;
  }

  .testimonial-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .testi-text {
    font-size: 0.88rem;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-item {
  background: #fff;
  border-radius: 12px !important;
  margin-bottom: 12px;
  border: 1px solid rgba(196, 30, 36, 0.12) !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 42, 56, 0.06);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(30, 42, 56, 0.12);
}

.faq-btn {
  background: #fff !important;
  color: var(--dark-blue) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
  border: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--orange) !important;
  background: rgba(196, 30, 36, 0.04) !important;
}

.faq-btn::after {
  filter: brightness(0.4) sepia(1) saturate(5) hue-rotate(0deg);
}

.faq-btn:not(.collapsed)::after {
  filter: brightness(0.5) sepia(1) saturate(8) hue-rotate(-15deg);
}

.faq-body {
  padding: 0 22px 20px;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-info-card {
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  
}

.contact-info-card h4 {
  color: #fff;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(196, 30, 36, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(196, 30, 36, 0.25);
}

.contact-info-item strong {
  color: #e5e7eb;
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-item a:hover {
  color: var(--orange);
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--card-shadow);
  height: 100%;
  border: 1px solid rgba(196, 30, 36, 0.1);
}

.contact-form-card h4 {
  color: var(--dark-blue);
  font-size: 1.3rem;
}

.contact-form-card .form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #4b5563;
}

/* Validation Styles */
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545 !important;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Social Buttons */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(196, 30, 36, 0.4);
}

/* ========================
   ENQUIRY CTA SECTION
   ======================== */
.enquiry-cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #152030 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.enquiry-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 30, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.enquiry-icon {
  width: 72px;
  height: 72px;
  background: rgba(196, 30, 36, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  margin: 0 auto;
  border: 2px solid rgba(196, 30, 36, 0.3);
  animation: rotateFloat 6s ease-in-out infinite;
}

@keyframes rotateFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.enquiry-cta-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 14px;
}

.enquiry-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: #0f1c29;
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-heading {
  color: var(--orange);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-links i {
  font-size: 0.85rem;
  color: var(--orange);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--orange);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========================
   FLOATING BUTTONS
   ======================== */
.float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 999;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  bottom: 140px;
  right: 20px;
}

.call-btn {
  background: var(--orange);
  color: #fff;
  bottom: 80px;
  right: 20px;
}

.enquiry-sticky-btn {
  background: var(--dark-blue);
  color: #fff;
  bottom: 200px;
  right: 20px;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(196, 30, 36, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  background: #A01820;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #fff;
  color: var(--text);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-size: 0.92rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s ease;
  border-left: 4px solid var(--orange);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================
   ANIMATIONS (IntersectionObserver)
   ======================== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ========================
   RESPONSIVE " COMPREHENSIVE FIX
   ======================== */

/* Tablet: max 991px */
@media (max-width: 991px) {
  .hero-form-card {
    margin-top: 30px;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  #mainNavbar {
    padding: 12px 0;
    background: #ffffff !important;
    border-bottom: 1px solid #eee;
  }

  .navbar-toggler-custom {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
  }

  .navbar-toggler-custom .toggler-bar {
    background-color: #162236 !important;
  }

  .about-img {
    height: 320px;
  }

  .page-hero {
    padding: 110px 0 60px;
  }

  .contact-info-card,
  .contact-form-card {
    height: auto;
  }

  .loc-form-card {
    margin-top: 20px;
  }
}

/* Mobile: max 768px */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .section-pad {
    padding: 55px 0;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .section-desc {
    font-size: 0.93rem;
  }

  .btn-orange,
  .btn-outline-white {
    padding: 11px 22px;
    font-size: 0.9rem;
  }

  /* HERO */
  .hero-section {
    min-height: 100svh;
    padding-top: 80px;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }

  .trust-item {
    font-size: 0.82rem;
  }

  .hero-form-card {
    margin-top: 28px;
    border-radius: 14px;
  }

  .form-card-header {
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  /* NAVBAR - white on mobile */
  #mainNavbar {
    padding: 1px 0;
    background: #ffffff !important;
    border-bottom: 1px solid #eee;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero p.fs-5 {
    font-size: 0.95rem !important;
  }

  /* ABOUT */
  .about-img {
    height: 240px;
  }

  .about-experience-badge {
    padding: 10px 16px;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .value-item {
    gap: 10px;
  }

  .cert-badge {
    padding: 16px 12px;
  }

  .milestone-card {
    padding: 20px 14px;
  }

  .milestone-year {
    font-size: 1.5rem;
  }

  .mission-card {
    padding: 28px 22px;
  }

  /* COUNTERS */
  .counter-card {
    padding: 22px 14px;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-suffix {
    font-size: 1.4rem;
  }

  .counter-label {
    font-size: 0.78rem;
  }

  /* SERVICES */
  .service-card {
    padding: 26px 20px;
  }

  .service-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h4 {
    font-size: 1rem;
  }

  .service-detail-body {
    padding: 18px;
  }

  /* WHY CARDS */
  .why-card {
    padding: 20px 14px;
  }

  .why-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .why-card h5 {
    font-size: 0.88rem;
  }

  .why-card p {
    font-size: 0.78rem;
  }

  /* LOCATION */
  .area-card {
    padding: 20px 14px;
  }

  .area-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .area-card h5 {
    font-size: 0.92rem;
  }

  .route-card {
    padding: 14px 16px;
    gap: 10px;
  }

  .route-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .map-container iframe {
    height: 260px !important;
  }

  .location-card {
    padding: 18px 12px;
  }

  /* GALLERY */
  .gallery-img {
    height: 155px;
  }

  .gallery-filter-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 24px 18px;
    margin: 0 0 16px;
  }

  .testi-text {
    font-size: 0.92rem;
  }

  .testi-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .carousel-control-prev {
    left: -5px;
  }

  .carousel-control-next {
    right: -5px;
  }

  /* CONTACT */
  .contact-info-card {
    padding: 24px 18px;
    margin-bottom: 20px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .info-highlight {
    padding: 22px 18px;
  }

  .ci-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .contact-info-item {
    gap: 12px;
    margin-bottom: 16px;
  }

  /* FAQ */
  .faq-compact .accordion-button {
    font-size: 0.85rem !important;
    padding: 12px 14px !important;
  }

  /* CTA */
  .enquiry-cta-section {
    padding: 60px 20px;
  }

  .enquiry-cta-section h2 {
    font-size: 1.5rem;
  }

  .enquiry-sub {
    font-size: 0.9rem;
  }

  .enquiry-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  /* FOOTER */
  .footer-top {
    padding: 60px 0 30px;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .site-footer .col-md-6 {
    margin-bottom: 20px;
  }

  /* FLOATING BUTTONS */
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .whatsapp-btn {
    bottom: 125px;
    right: 40px;
  }

  .call-btn {
    bottom: 72px;
    right: 40px;
  }

  .enquiry-sticky-btn {
    bottom: 178px;
    right: 14px;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* TOAST */
  .toast-notification {
    left: 14px;
    right: 14px;
    bottom: 18px;
    font-size: 0.85rem;
    padding: 12px 16px;
  }

  /* SERVICE PAGE */
  .svc-main-img {
    max-height: 260px;
  }

  .svc-hero-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .process-step {
    padding: 20px 14px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .step-num {
    font-size: 2.5rem;
  }

  .related-svc-card {
    padding: 16px 10px;
  }

  .rs-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .pricing-card {
    padding: 22px 16px;
  }

  /* SEO LOCATION PAGES */
  .loc-hero {
    padding: 100px 0 50px;
  }

  .loc-form-card {
    margin-top: 24px;
    border-radius: 16px;
  }

  .loc-form-body {
    padding: 18px 16px;
  }

  .loc-form-header {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .area-highlight-card {
    padding: 18px 14px;
  }

  .seo-content-section h2 {
    font-size: 1.25rem;
  }

  .seo-content-section h3 {
    font-size: 1.05rem;
  }

  .seo-content-section p,
  .seo-content-section ul {
    font-size: 0.88rem;
  }
}

/* Small mobile: max 480px */
@media (max-width: 480px) {
  .hero-section {
    min-height: 100svh;
  }

  .section-pad {
    padding: 44px 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .enquiry-cta-section h2 {
    font-size: 1.25rem;
  }

  /* Stack all button groups */
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Counters */
  .counter-number {
    font-size: 1.8rem;
  }

  .counter-suffix {
    font-size: 1.2rem;
  }

  .counter-card {
    padding: 18px 10px;
  }

  /* Gallery */
  .gallery-img {
    height: 135px;
  }

  .gallery-filter-btn {
    padding: 5px 10px;
    font-size: 0.76rem;
  }

  /* Footer */
  .footer-top {
    padding: 50px 0 20px;
  }

  .footer-brand {
    gap: 8px;
    justify-content: center;
  }

  .site-footer {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a,
  .footer-contact li {
    justify-content: flex-start;
    font-size: 0.88rem;
  }

  /*.footer-contact li { flex-direction: column; align-items: center; gap: 5px; }*/
  .footer-contact li {
    gap: 5px;
  }

  .footer-contact li i {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    padding: 25px 0;
  }

  .footer-bottom .container {
    gap: 15px !important;
  }

  /* Offcanvas width */
  .mobile-offcanvas {
    max-width: 88vw;
  }

  /* Why cards */
  .why-card {
    padding: 16px 10px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .why-card h5 {
    font-size: 0.82rem;
  }

  /* Process steps */
  .process-step {
    padding: 16px 12px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
  }

  .step-num {
    font-size: 2rem;
    top: 10px;
    right: 12px;
  }

  .process-step h5 {
    font-size: 0.9rem;
  }

  .process-step p {
    font-size: 0.78rem;
  }

  /* Milestone */
  .milestone-year {
    font-size: 1.3rem;
  }

  .milestone-card {
    padding: 16px 10px;
  }

  .milestone-desc {
    font-size: 0.8rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 14px;
  }

  .testi-text {
    font-size: 0.88rem;
  }

  /* Contact */
  .contact-info-card,
  .contact-form-card {
    padding: 18px 14px;
  }

  /* Pricing cards (warehousing page) */
  .pricing-card {
    padding: 18px 14px;
  }

  /* Toast */
  .toast-notification {
    left: 10px;
    right: 10px;
  }

  /* Area highlight */
  .area-highlight-card {
    padding: 14px 12px;
  }

  .area-highlight-card h5 {
    font-size: 0.88rem;
  }

  /* SEO location form */
  .loc-form-body {
    padding: 14px 14px;
  }

  .loc-hero {
    padding: 90px 0 44px;
  }
}

/* Extra small: max 360px */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .btn-orange,
  .btn-outline-white {
    font-size: 0.8rem;
    padding: 9px 16px;
  }

  .navbar-brand .brand-orange {
    font-size: 0.95rem;
  }

  .gallery-img {
    height: 115px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .whatsapp-btn {
    bottom: 116px;
    right: 10px;
  }

  .call-btn {
    bottom: 68px;
    right: 10px;
  }

  .scroll-top-btn {
    bottom: 16px;
    right: 10px;
  }

  .counter-number {
    font-size: 1.5rem;
  }

  .section-pad {
    padding: 36px 0;
  }
}


/* ============================================================
   CUSTOM HAMBURGER BUTTON
   ============================================================ */
.navbar-toggler-custom {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  flex-shrink: 0;
}

.navbar-toggler-custom:hover {
  background: rgba(196, 30, 36, 0.2);
  border-color: var(--orange);
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #162236;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

/* Hamburger → X animation */
.navbar-toggler-custom.open .toggler-bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.navbar-toggler-custom.open .toggler-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler-custom.open .toggler-bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar-toggler-custom {
    display: flex;
  }
}


/* ============================================================
   SERVICES DROPDOWN (Desktop)
   ============================================================ */
.services-dropdown {
  position: relative;
}

.services-menu {
  position: absolute;
  list-style: none;
  background: var(--dark-blue);
  border: 1px solid rgba(196, 30, 36, 0.25);
  border-radius: 14px;
  padding: 10px 0;
  min-width: 270px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  /* Fade-down animation */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100;
}

.services-dropdown.show .services-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Dropdown items */
.services-menu li a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 2px 8px;
  width: calc(100% - 16px);
  text-decoration: none;
}

.services-menu li a i {
  color: var(--orange);
  width: 20px;
  flex-shrink: 0;
}

.services-menu li a:hover {
  background: rgba(196, 30, 36, 0.15);
  color: var(--orange);
  transform: translateX(4px);
}

/* Chevron rotation when open */
.nav-services-toggle .fa-chevron-down {
  transition: transform 0.3s ease;
}

.services-dropdown.show .nav-services-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

/* Remove Bootstrap's default dropdown arrow */
.navbar-nav .nav-link::after {
  display: none !important;
}

/* On mobile (< 992px) " hide desktop dropdown, show mobile panel instead */
@media (max-width: 991px) {
  .services-dropdown .services-menu {
    display: none !important;
  }

  .nav-services-toggle .fa-chevron-down {
    display: none;
  }
}


/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* ============================================================
   MOBILE MENU PANEL (Slide from right)
   ============================================================ */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.mobile-menu-panel.open {
  transform: translateX(0);
}

/* Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  background: #ffffff;
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1.5px solid #eee;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

/* Body */
.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0 20px;
  display: flex;
  flex-direction: column;
}

/* Nav list */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  color: #333 !important;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mobile-nav-link i {
  font-size: 1rem;
  color: var(--orange);
  width: 20px;
  text-align: center;
}

.mobile-nav-link:hover {
  color: var(--orange) !important;
  background: rgba(196, 30, 36, 0.08);
  padding-left: 28px;
}

/* Mobile accordion (Services) */
.mobile-accordion-item {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  background: transparent;
  border: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 52px;
}

.mobile-accordion-btn:hover {
  background: rgba(196, 30, 36, 0.08);
  color: var(--orange);
}

.mobile-acc-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-acc-left i {
  font-size: 1rem;
  color: var(--orange);
  width: 20px;
  text-align: center;
}

.mobile-acc-icon {
  font-size: 0.85rem;
  color: #999;
  transition: transform 0.3s ease;
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  background: #f9f9f9;
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 48px;
  color: #555;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #eee;
}

.mobile-submenu li a i {
  color: var(--orange);
  font-size: 0.88rem;
  width: 16px;
}

.mobile-submenu li a:hover {
  color: var(--orange);
  background: rgba(196, 30, 36, 0.1);
  padding-left: 56px;
}

/* CTA button */
.mobile-menu-cta {
  padding: 16px 18px 8px;
}

/* Contact info */
.mobile-contact-info {
  padding: 12px 18px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-contact-link i {
  color: var(--orange);
  width: 16px;
}

.mobile-contact-link:hover {
  color: var(--orange);
}


/* ============================================================
   BANNER SLIDER
   ============================================================ */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark-blue);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide.exit {
  opacity: 0;
  z-index: 0;
}

/* Dark overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 28, 41, 0.90) 0%,
      rgba(15, 28, 41, 0.70) 55%,
      rgba(196, 30, 36, 0.15) 100%);
  z-index: 1;
}

/* Slide content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 90px 0 40px;
}

/* Slide text */
.slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(196, 30, 36, 0.18);
  border: 1px solid rgba(196, 30, 36, 0.4);
  color: var(--accent);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease both;
}

.slide.active .slide-badge {
  animation: fadeInDown 0.7s ease 0.2s both;
}

.slide-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
  animation: fadeInDown 0.8s ease both;
}

.slide.active .slide-title {
  animation: fadeInDown 0.8s ease 0.35s both;
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
  animation: fadeInDown 0.8s ease both;
}

.slide.active .slide-desc {
  animation: fadeInDown 0.8s ease 0.5s both;
}

.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  animation: fadeInUp 0.8s ease both;
}

.slide.active .slide-btns {
  animation: fadeInUp 0.8s ease 0.65s both;
}

.slide-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease both;
}

.slide.active .slide-trust {
  animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(196, 30, 36, 0.45);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(196, 30, 36, 0.6);
}

.slider-dot:hover {
  background: var(--accent);
}

/* Autoplay Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--accent));
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(196, 30, 36, 0.6);
}


/* ============================================================
   SLIDER RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .banner-slider {
    height: auto;
    min-height: 100svh;
  }

  .slide-content {
    padding: 85px 0 80px;
    align-items: center;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .banner-slider {
    min-height: 100svh;
  }

  .slide-content {
    padding: 80px 0 70px;
  }

  .slide-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .slide-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .slide-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }

  .slide-btns {
    gap: 10px;
    margin-top: 20px;
  }

  .slide-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .slide-trust {
    gap: 14px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .hero-form-card {
    margin-top: 20px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 1.45rem;
  }

  .slide-badge {
    font-size: 0.72rem;
  }

  .slider-arrow {
    display: none;
  }

  /* Hide arrows on very small screens, use swipe only */
}

/* Override hero-section if still exists elsewhere */
.hero-section {
  position: relative;
  background: url('images/hero.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  text-align: center;
}

.breadcrumb-item a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .breadcrumb {
    font-size: 14px;
  }
}