/* =============================================
   INVISIBLE GRILL WALA - style.css
   Color Theme: Blue (#1A3F7A) & Orange (#F47C20)
   Fonts: Rajdhani (headings) + Nunito (body)
============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #1A3F7A;
  --blue-dark: #102B5A;
  --blue-light: #2E5FA3;
  --orange: #F47C20;
  --orange-dark: #D96A10;
  --orange-light: #FFAD60;
  --white: #ffffff;
  --off-white: #F8FAFF;
  --light-gray: #EEF2F8;
  --gray: #6B7280;
  --dark: #111827;
  --text: #374151;
  --shadow-sm: 0 2px 12px rgba(26,63,122,0.08);
  --shadow-md: 0 6px 30px rgba(26,63,122,0.13);
  --shadow-lg: 0 16px 48px rgba(26,63,122,0.18);
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITY ===== */
.section-pad { padding: 90px 0; }
.section-bg-light { background: var(--off-white); }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(244,124,32,0.12), rgba(244,124,32,0.06));
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(244,124,32,0.25);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--blue);
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

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

.section-text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 13px 34px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(244,124,32,0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(244,124,32,0.4);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--blue-dark);
  padding: 9px 0;
  font-size: 0.82rem;
}

.top-bar-link {
  color: rgba(255,255,255,0.85);
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
}

.top-bar-link:hover { color: var(--orange); }

.top-bar-social {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.top-bar-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,63,122,0.15);
}

.navbar {
  padding: 1px 0;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(26,63,122,0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: 4px;
}

/* Nav links */
.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue) !important;
  background: rgba(26,63,122,0.06);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white !important;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(244,124,32,0.3);
  transition: var(--transition);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,124,32,0.4);
  color: white !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  background: none;
  padding: 4px;
}

.toggler-icon {
  font-size: 1.7rem;
  color: var(--blue);
}

/* ===== HERO CAROUSEL ===== */
#heroCarousel { }

.hero-slide {
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Placeholder gradient backgrounds for slides (replace with actual images) */
.hero-slide-1 {
  background-image: url('../images/banner1.webp'),
    linear-gradient(135deg, #0D2247 0%, #1A3F7A 50%, #F47C20 100%);
}

.hero-slide-2 {
  background-image: url('../images/banner2.webp'),
    linear-gradient(135deg, #102B5A 0%, #2E5FA3 50%, #F47C20 100%);
}

.hero-slide-3 {
  background-image: url('../images/banner4.webp'),
    linear-gradient(135deg, #0D2247 0%, #1A3F7A 60%, #D96A10 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgb(10 25 55 / 56%) 0%, rgba(10, 25, 55, 0.6) 60%, rgba(10, 25, 55, 0.25) 100%);
}

.hero-slide .container,
.hero-slide .row { height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  animation: heroFadeIn 0.8s ease-out forwards;
  text-align:center;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(244,124,32,0.2);
  border: 1px solid rgba(244,124,32,0.5);
  color: var(--orange-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.text-highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
  margin: 0 auto;
    margin-bottom: 30px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(244,124,32,0.4);
  transition: var(--transition);
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(244,124,32,0.5);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--blue);
  transform: translateY(-3px);
  border-color: white;
}

/* Carousel Controls */
.carousel-ctrl-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.carousel-ctrl-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
}

.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }

.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(--orange);
  transform: scale(1.3);
}

/* ===== ABOUT SECTION ===== */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img-main img {
  width: 100%;
  /* height: 440px; */
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(244,124,32,0.4);
  text-align: center;
  min-width: 110px;
}

.about-years {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-years-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-top: 4px;
}

.about-shape {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--orange);
  background: rgba(244,124,32,0.04);
  transform: translateX(4px);
}

.about-feature i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== SERVICE SECTION ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,63,122,0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,124,32,0.2);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  /*height: 200px;*/
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, var(--light-gray), var(--off-white));
}

.service-card:hover .service-img {
  transform: scale(1.07);
}

.service-img-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(26,63,122,0.3);
}

.service-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.6;
}

.btn-service-cta {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 9px 22px;
  border-radius: 50px;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-service-cta:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244,124,32,0.3);
}

.featured-service {
  border: 2px solid rgba(244,124,32,0.3);
}

.featured-service .service-name { color: var(--orange-dark); }

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,124,32,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.text-white-70 { color: rgba(255,255,255,0.75) !important; }

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(244,124,32,0.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(244,124,32,0.35);
}

.why-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.6;
}

.btn-why-cta {
  background: white;
  color: var(--blue);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-why-cta:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(244,124,32,0.4);
}

/* ===== COUNTER SECTION ===== */
.counter-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,63,122,0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.counter-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(26,63,122,0.25);
}

.counter-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HOW IT WORKS ===== */
.process-line {
  position: absolute;
  top: 56px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 14px, transparent 14px, transparent 24px);
  z-index: 0;
}

.process-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,63,122,0.08);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,124,32,0.2);
}

.process-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(26,63,122,0.07);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 18px;
}

.process-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(26,63,122,0.25);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 8px 24px rgba(244,124,32,0.35);
}

.process-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== GALLERY ===== */
.btn-gallery-filter {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  color: var(--gray);
  background: white;
  transition: var(--transition);
}

.btn-gallery-filter:hover,
.btn-gallery-filter.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-color: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(26,63,122,0.2);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, var(--light-gray), var(--off-white));
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,63,122,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 2rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,63,122,0.07);
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(244,124,32,0.15);
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,124,32,0.2);
}

.testi-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

.btn-testi-ctrl {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  color: var(--blue);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-testi-ctrl:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* ===== FAQ ===== */
.faq-contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  border: 1px solid rgba(26,63,122,0.1);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 28px;
}

.faq-contact-icon {
  font-size: 2rem;
  color: var(--blue);
}

.faq-phone {
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}

.faq-phone:hover { color: var(--orange-dark); }

.faq-accordion { }

.faq-item {
  background: white;
  border: 1px solid rgba(26,63,122,0.09) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  background: white;
  border: none;
  padding: 18px 22px;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--blue);
  background: rgba(26,63,122,0.03);
}

.faq-btn::after {
  filter: none;
  background-image: none;
  content: '\F4FE';
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  color: var(--orange);
}

.faq-btn:not(.collapsed)::after {
  content: '\F2EA';
  transform: none;
}

.faq-body {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 4px 22px 20px;
  background: white;
}

/* ===== CONTACT SECTION ===== */
.contact-info-wrap {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
}

.contact-info-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 28px;
  font-weight: 700;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(244,124,32,0.2);
  border: 1px solid rgba(244,124,32,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.contact-info-item p a {
  color: rgba(255,255,255,0.72);
}

.contact-info-item p a:hover {
  color: var(--orange);
}

.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.contact-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-3px);
}

.contact-social-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,63,122,0.07);
}

.contact-form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 26px;
  font-weight: 700;
}

.contact-input {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
  background: var(--off-white);
}

.contact-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,63,122,0.08);
  background: white;
  outline: none;
}

.contact-input::placeholder { color: #aab; }

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-success-msg {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803d;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a3f7a;
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-3px);
}

.footer-social.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
border-bottom: 1px dashed #ffffffbd;
    padding-bottom: 5px;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
}

.footer-links li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

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

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 5px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
  border-bottom: 1px dashed #ffffffbd;
    padding-bottom: 5px;
}

.footer-contact-list li i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-contact-list li a:hover { color: var(--orange); }

.footer-bottom {
  background: #d96a10;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #fff;
  margin: 0;
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  bottom: 80px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  overflow: hidden;
}

.float-btn .float-label {
  position: absolute;
  font-size: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}

.float-btn:hover {
  width: auto;
  padding: 0 20px 0 16px;
  border-radius: 50px;
  gap: 8px;
}

.float-btn:hover .float-label {
  font-size: 0.9rem;
  opacity: 1;
  position: relative;
}

.float-whatsapp {
  left: 20px;
  background: #25D366;
  color: white;
}

.float-whatsapp:hover {
  background: #1DA851;
  color: white;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.float-call {
  right: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
}

.float-call:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 8px 28px rgba(244,124,32,0.4);
}

/* Pulse animation for floating buttons */
.float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-ring 2.5s ease-out infinite;
  pointer-events: none;
}

.float-whatsapp::after {
  border: 2px solid #25D366;
}

.float-call::after {
  border: 2px solid var(--blue-light);
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,63,122,0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(244,124,32,0.4);
}

/* ===== FOOTER LOGO ===== */
.site-footer .logo-main { color: white; }
.site-footer .logo-sub { color: var(--orange); }
.site-footer .logo-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 4px 14px rgba(244,124,32,0.3);
}
.cu-lg-wdth{
	width:250px;
}
.breadcrumb-banner{
    position: relative;
    background: url('banner1.webp') center center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

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

.breadcrumb-content h1{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
	Color:#fff;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}

.breadcrumb-item a{
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active{
    color: #ffc107;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }

  .about-img-main img { /*height: 360px;*/ }

  .about-badge-box {
    bottom: -16px;
    left: -10px;
    padding: 14px 18px;
  }

  .process-line { display: none !important; }

  .contact-form-wrap { padding: 28px 24px; }
  .contact-info-wrap { padding: 28px 24px; }

  .hero-slide { height: 80vh; }
}
.hr-bnt{
		justify-content:center!important
	}
@media(max-width:768px)
{
	.hero-content{
		text-align:center!important;
		padding-left:10px;
		padding-right:10px;
	}
	.hr-bnt{
		justify-content:center!important
	}
}
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.jf-cntr{
		justify-content:center!important
	}
	
  .section-pad { padding: 56px 0;overflow-x:hidden }

  .hero-slide {
    height: 88vh;
    min-height: 520px;
  }

  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 0.9rem; }
  .btn-hero-primary, .btn-hero-secondary { font-size: 0.92rem; padding: 11px 22px; }

  .about-img-main img { /*height: 280px;*/ }
  .about-badge-box { bottom: -12px; left: -8px; }

  .gallery-img { height: 160px; }

  .footer-top { padding: 50px 0 36px; }

  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 72px; }
  .float-btn:hover { width: 50px; padding: 0; border-radius: 50%; }
  .float-btn:hover .float-label { display: none; }

  .service-img {/* height: 180px;*/ }
  .contact-form-wrap { padding: 22px 18px; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.7rem; }
  .top-bar {/* display: none;*/ }
  .counter-card { padding: 24px 12px; }
  .counter-num { font-size: 2rem; }
  .testimonial-card { padding: 22px 18px; }
  .faq-btn { font-size: 0.95rem; }
}

@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}
