/* =====================================================
   Shri Khatu Shyamji Enterprises - style.css
   Color Theme: #31476c (Primary Blue) & #fc7518 (Orange)
===================================================== */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  --primary: #31476c;
  --primary-dark: #1e2e47;
  --primary-light: #3e5a88;
  --accent: #fc7518;
  --accent-dark: #d95f0a;
  --accent-light: #ff8c3a;
  --white: #ffffff;
  --light: #f5f7fa;
  --gray: #6b7280;
  --dark: #111827;
  --border: #e2e8f0;
  --shadow: 0 8px 32px rgba(49, 71, 108, 0.12);
  --shadow-hover: 0 16px 48px rgba(49, 71, 108, 0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* === Section Spacing === */
section { padding: 80px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  background: rgba(252, 117, 24, 0.1);
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(252, 117, 24, 0.25);
}

.divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 14px auto 20px;
}

/* === Buttons === */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(252, 117, 24, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 117, 24, 0.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(252, 117, 24, 0.3);
}
.btn-call:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(252, 117, 24, 0.45);
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 9px 0;
  font-weight: 500;
}
.top-bar a { color: rgba(255,255,255,0.82); }
.top-bar a:hover { color: var(--accent); }
.top-bar .top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar .top-bar-item i { color: var(--accent); font-size: 0.85rem; }
.top-bar-divider { 
  width: 1px; height: 14px; 
  background: rgba(255,255,255,0.2); 
  margin: 0 14px; 
}
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  transition: var(--transition);
  margin-left: 5px;
}
.top-bar-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* =====================================================
   HEADER / NAVBAR
===================================================== */
.navbar-main {
  background: var(--white);
  padding: 1px 0;
  box-shadow: 0 2px 20px rgba(49, 71, 108, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-main.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(49, 71, 108, 0.18);
}

.navbar-brand-wrap { display: flex; align-items: center; gap: 14px; }
.navbar-logo {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--border);
}
.navbar-logo-fallback {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-main .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-main .nav-link:hover { color: var(--primary); }
.navbar-main .nav-link.active { color: var(--primary); }

.navbar-toggler {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2331476c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================================================
   HERO CAROUSEL
===================================================== */
.hero-carousel { position: relative;padding-top:0px;padding-bottom:0px; }
.hero-carousel .carousel-item { height: 620px; position: relative; }
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 28, 47, 0.82) 0%, rgba(49, 71, 108, 0.6) 50%, rgba(49, 71, 108, 0.25) 100%);
  z-index: 1;
}
.hero-carousel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-carousel .carousel-caption {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 15px;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  animation: fadeInDown 0.6s ease both;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  opacity: 1;
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* =====================================================
   ABOUT US
===================================================== */
.about-section { background: var(--light); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-badge-box {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  min-width: 130px;
}
.about-badge-box .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge-box .label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-content { padding-left: 20px; }
.about-content .section-title { text-align: left; }
.about-content .divider { margin: 14px 0; }
.about-content p { color: var(--gray); margin-bottom: 18px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.about-feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--primary);
}
.about-feature-item i {
  width: 32px; height: 32px;
  background: rgba(252, 117, 24, 0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* =====================================================
   SERVICES
===================================================== */
.services-section { background: var(--white); }
.blinds-section { background: var(--light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(49, 71, 108, 0.2);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(49, 71, 108, 0.7) 100%);
}
.service-icon-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(252, 117, 24, 0.4);
}
.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex; flex-direction: column;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card-text {
  color: var(--gray);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 18px;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(252, 117, 24, 0.07);
  pointer-events: none;
}

.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.72); }
.why-section .divider { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.why-section .section-badge {
  background: rgba(252, 117, 24, 0.2);
  color: var(--accent-light);
  border-color: rgba(252, 117, 24, 0.35);
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-5px);
  border-color: rgba(252, 117, 24, 0.4);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.why-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(252, 117, 24, 0.35);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-3deg); }
.why-card h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.68); font-size: 0.9rem; }

/* =====================================================
   COUNTER SECTION
===================================================== */
.counter-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.counter-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(49, 71, 108, 0.07);
}
.counter-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(252, 117, 24, 0.15);
  transform: translateY(-4px);
}
.counter-icon {
  width: 58px; height: 58px;
  background: rgba(49, 71, 108, 0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: var(--primary);
}
.counter-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-number span { color: var(--accent); }
.counter-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
}

/* =====================================================
   HOW IT WORKS
===================================================== */
.how-section { background: var(--light); }
.how-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.how-step-number {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(49, 71, 108, 0.28);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.how-step:hover .how-step-number { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.how-step-icon {
  width: 52px; height: 52px;
  background: rgba(252, 117, 24, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--accent);
}
.how-step h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.how-step p { color: var(--gray); font-size: 0.9rem; }

.how-arrow {
  position: absolute;
  top: 50px;
  right: -14px;
  color: var(--accent);
  font-size: 1.3rem;
  z-index: 2;
}

/* =====================================================
   GALLERY
===================================================== */
.gallery-section { background: var(--white); }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(49, 71, 108, 0.88) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  margin-bottom: 10px;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Gallery Lightbox */
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}
.lightbox-modal .modal-body {
  padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-modal img {
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-modal .btn-close {
  position: absolute;
  top: -40px; right: 0;
  filter: invert(1);
  opacity: 1;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-section { background: var(--light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(49, 71, 108, 0.2);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(252, 117, 24, 0.15);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.testimonial-avatar-fallback {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-role { font-size: 0.8rem; color: var(--gray); }

/* =====================================================
   FAQs
===================================================== */
.faq-section { background: var(--white); }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(49, 71, 108, 0.06);
  transition: var(--transition);
}
.accordion-item:hover { box-shadow: 0 6px 20px rgba(49, 71, 108, 0.12); }
.accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--primary);
  background: var(--white);
  padding: 18px 24px;
  border: none;
  box-shadow: none !important;
  transition: var(--transition);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2331476c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(252, 117, 24, 0.04);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fc7518'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  color: var(--gray);
  font-size: 0.92rem;
  padding: 0 24px 20px;
  line-height: 1.8;
}

/* =====================================================
   CONTACT
===================================================== */
.contact-section { background: var(--light); }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.contact-info-card .section-title { color: var(--white); font-size: 1.8rem; }
.contact-info-card p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(252, 117, 24, 0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-content h6 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-item-content a,
.contact-item-content span {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.contact-item-content a:hover { color: var(--accent-light); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}
.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-form-card p { color: var(--gray); margin-bottom: 24px; font-size: 0.9rem; }

.form-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--light);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(49, 71, 108, 0.1);
  background: var(--white);
  outline: none;
}
.form-control::placeholder { color: #adb5bd; }

/* Map */
.map-section { padding: 0; }
.map-section iframe {
  display: block;
  filter: grayscale(20%);
  border: none;
}

/* =====================================================
   FOOTER
===================================================== */
.footer-main {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
  overflow-x:hidden;
}
.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .brand-tagline { color: var(--accent); }
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom span { color: var(--accent); }

/* =====================================================
   FLOATING BUTTONS
===================================================== */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); color: var(--white); }
.float-btn.call-btn { background: linear-gradient(135deg, #31476c, #3e5a88); }
.float-btn.wa-btn { background: linear-gradient(135deg, #25D366, #128C7E); }

.float-btn .float-tooltip {
  position: absolute;
  right: 62px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn .float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.float-btn:hover .float-tooltip { opacity: 1; right: 66px; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(49, 71, 108, 0.35);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: pulse-ring 2s ease infinite;
}

/* Animate on scroll */
.aos-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.aos-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }
.aos-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991.98px) {
  section { padding: 60px 0; }
  .hero-carousel .carousel-item { height: 500px; }
  .about-content { padding-left: 0; margin-top: 40px; }
  .about-badge-box { right: 10px; }
  .how-arrow { display: none; }
}

@media (max-width: 767.98px) {
  section { padding: 50px 0; overflow-x:hidden; }
  .hero-carousel .carousel-item { height: 420px; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.92rem; }
  .hero-buttons { gap: 10px; }
  .top-bar .top-bar-item { font-size: 0.75rem; }
  .top-bar-divider { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge-box { position: static; margin-top: 16px; display: inline-block; }
  .about-img-wrap img { height: 300px; }
  .carousel-control-prev, .carousel-control-next { width: 38px; height: 38px; font-size: 0.8rem; }
  .contact-form-card, .contact-info-card { padding: 24px 18px; }
  .footer-main { padding: 50px 0 0; }
  .floating-buttons { bottom: 18px; right: 14px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.1rem; }
  .scroll-top { bottom: 18px; left: 14px; }
}

@media (max-width: 575.98px) {
  .hero-carousel .carousel-item { height: 380px; }
  .navbar-logo-fallback { width: 44px; height: 44px; font-size: 1rem; }
  .brand-name { font-size: 0.98rem; }
  .section-title { font-size: 1.6rem; }
}

/* =====================================================
   TESTIMONIAL AUTO-SCROLL SLIDER
===================================================== */
.testimonial-slider-wrap {
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 32s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-slide {
  width: 360px;
  flex-shrink: 0;
}

@keyframes testimonialScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive slide width */
@media (max-width: 767.98px) {
  .testimonial-slide { width: 300px; }
  .testimonial-track { gap: 16px; }
}
@media (max-width: 480px) {
  .testimonial-slide { width: 270px; }
}

/* Preloader */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  width: 70px; height: 70px;
  background: var(--accent);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease;
}
.preloader-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.cu-lg-wdth{
	width:120px;
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
}