/* =========================================
   ARIHANT ENTERPRISES - STYLE.CSS
   Color Theme: Greyish Blue
   ========================================= */

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

/* --- CSS Variables --- */
:root {
  --primary: #4A6FA5;
  --primary-dark: #2E4E7E;
  --primary-light: #6F93C7;
  --secondary: #8FAABF;
  --accent: #C9A84C;
  --dark: #1C2535;
  --dark-alt: #2C3A4F;
  --grey: #6B7A8D;
  --light-grey: #EDF1F7;
  --white: #FFFFFF;
  --bg: #F5F8FC;
  --text: #2C3A4F;
  --text-muted: #7A8EA5;
  --border: #D8E2EE;
  --shadow: 0 8px 32px rgba(74, 111, 165, 0.12);
  --shadow-hover: 0 16px 48px rgba(74, 111, 165, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

/* --- Utility --- */
.section-pad {
  padding: 90px 0;
}

.bg-light-grey {
  background: var(--bg);
}

.bg-dark {
  background: var(--dark);
}

.text-accent {
  color: var(--accent);
}

.text-primary {
  color: var(--primary) !important;
}

.section-badge {
  display: inline-block;
  background: rgba(74, 111, 165, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(74, 111, 165, 0.2);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 50px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
  margin: 16px auto 20px;
}

.divider-left {
  margin: 16px 0 20px;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(74, 111, 165, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 111, 165, 0.45);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  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);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(74, 111, 165, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 111, 165, 0.45);
  color: var(--white);
}

/* =========================================
   TOP BAR
   ========================================= */
#topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}

#topbar a {
  color: rgba(255, 255, 255, 0.8);
}

#topbar a:hover {
  color: var(--accent);
}

#topbar .topbar-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#topbar .topbar-info i {
  color: var(--primary-light);
  font-size: 12px;
}

.topbar-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.7) !important;
  font-size: 12px;
  margin-left: 5px;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
#mainHeader {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(74, 111, 165, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

#mainHeader.scrolled {
  box-shadow: 0 4px 30px rgba(74, 111, 165, 0.18);
}

.navbar-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(74, 111, 165, 0.35);
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  display: block;
}

.logo-text .brand-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px !important;
  position: relative;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1.5px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
#heroCarousel {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-alt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.hero-slide:hover .hero-bg {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.9s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--accent);
  width: 48px;
}

/* =========================================
   ABOUT US
   ========================================= */
#about {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}

.about-img-main:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(74, 111, 165, 0.4);
  z-index: 2;
}

.about-experience-badge .exp-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-experience-badge .exp-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.about-feature-item i {
  width: 32px;
  height: 32px;
  background: rgba(74, 111, 165, 0.1);
  color: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* =========================================
   SERVICES
   ========================================= */
#services {
  background: var(--bg);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74, 111, 165, 0.08);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(74, 111, 165, 0.3);
}

.service-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.65;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
#why-choose {
  background: var(--white);
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 3px 16px rgba(74, 111, 165, 0.07);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(74, 111, 165, 0.12), rgba(74, 111, 165, 0.06));
  border: 2px solid rgba(74, 111, 165, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(74, 111, 165, 0.35);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================================
   COUNTER SECTION
   ========================================= */
#counter {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 60%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

#counter::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

#counter::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.counter-item {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.counter-item .counter-icon {
  font-size: 36px;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: block;
}

.counter-item .count-num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.counter-item .count-suffix {
  color: var(--accent);
  font-size: 36px;
  font-family: var(--font-heading);
}

.counter-item .count-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.counter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
#how-it-works {
  background: var(--bg);
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 3px 16px rgba(74, 111, 165, 0.07);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(74, 111, 165, 0.4);
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(74, 111, 165, 0.05));
  border: 2px solid rgba(74, 111, 165, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 18px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.step-connector {
  position: absolute;
  top: 60px;
  right: -14%;
  width: 28%;
  height: 2px;
  border-top: 2px dashed rgba(74, 111, 165, 0.25);
}

/* =========================================
   GALLERY
   ========================================= */
#gallery {
  background: var(--white);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: 0 3px 14px rgba(74, 111, 165, 0.08);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 37, 53, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
#testimonials {
  background: var(--bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(74, 111, 165, 0.08);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.quote-icon {
  font-size: 48px;
  color: rgba(74, 111, 165, 0.15);
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.author-info .author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-info .author-loc {
  font-size: 12.5px;
  color: var(--text-muted);
}

.star-rating {
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 12px;
}

/* =========================================
   FAQs
   ========================================= */
#faqs {
  background: var(--white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(74, 111, 165, 0.05);
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: var(--primary-light);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  padding: 18px 22px;
  gap: 12px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(74, 111, 165, 0.04);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234A6FA5' 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");
}

.faq-accordion .accordion-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 22px 18px;
}

.faq-img-wrap {
  position: sticky;
  top: 100px;
}

.faq-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.faq-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.faq-cta-box h5 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--white);
}

.faq-cta-box p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* =========================================
   CONTACT
   ========================================= */
#contact {
  background: var(--bg);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 111, 165, 0.25);
  color: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--primary);
  color: var(--white);
}

.contact-info-item .info-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.contact-info-item .info-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  font-weight: 500;
  display: block;
}

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

.contact-info-item .info-value a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-form-card>p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 28px;
}

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

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14.5px;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.12);
  outline: none;
}

textarea.form-control {
  resize: none;
  min-height: 110px;
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 70px;
  overflow-x: hidden;
}

.footer-brand .logo-wrap {
  margin-bottom: 18px;
}

.footer-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 18px;
}

.footer-brand .brand-tagline {
  opacity: 0.55;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 10px;
  color: var(--primary-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact-item i {
  color: var(--primary-light);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}

.float-btn-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.float-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn .tooltip-text {
  position: absolute;
  right: 62px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .tooltip-text {
  opacity: 1;
}

.float-btn .tooltip-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

/* Pulse animation for floating buttons */
.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse-ring 2.5s ease infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* =========================================
   BACK TO TOP
   ========================================= */
#backToTop {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(74, 111, 165, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 9999;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 111, 165, 0.5);
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
}

.preloader-logo span {
  color: var(--accent);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: preload 1.8s ease forwards;
}

@keyframes preload {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* =========================================
   ANIMATIONS & SCROLL
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   RESPONSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

  .about-experience-badge {
    bottom: -14px;
    right: -10px;
    padding: 16px 18px;
  }

  .step-connector {
    display: none;
  }

  .counter-divider {
    display: none !important;
  }

  .hero-slide {
    min-height: 75vh;
  }

  .contact-info-card {
    margin-bottom: 24px;
  }

  .faq-img-wrap {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 55px 0;
	        overflow-x: hidden;
  }

  .hero-slide {
    min-height: 65vh;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 44px);
  }

  .hero-stats {
    gap: 20px;
  }
.cu-jf-cntr{
	justify-content:center!important;
}
  .cu-ds-nn {
    display: none !important;
  }

  .about-experience-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }

  .about-img-wrap {
    margin-bottom: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-info-card {
    padding: 28px 22px;
  }

  .float-btns {
    bottom: 20px;
    right: 16px;
  }
}

@media (max-width: 575px) {
  .hero-stat .stat-num {
    font-size: 24px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 11px 22px;
    font-size: 14px;
  }
}
@media(max-width:424px)
{
.cu-fn-12{
	font-size:10px!important;
}
}
@media(max-width:374px)
{
	.navbar-brand{
		margin-right:0px!important;
	}
}