/* =============================================
   ALL SPORTS BIRDS NET PVT. LTD. — STYLESHEET
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #1a6fc4;
  --primary-dark: #1358a0;
  --primary-light: #e8f1fb;
  --accent: #f4a012;
  --accent-dark: #d98c0a;
  --dark: #111827;
  --dark-2: #1f2937;
  --text: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(26,111,196,0.18);
  --transition: all 0.3s ease;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

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

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

/* ---- SECTION SHARED ---- */
.section-pad { padding: 80px 0; }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  border-left: 4px solid var(--primary);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--dark);
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-subtitle, .section-desc {
  color: var(--text-light);
  font-size: 15px;
  max-width: 580px;
}
.section-subtitle { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-main {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  display: inline-block;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-main:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,0.25);
}
.btn-cta {
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
}
.btn-cta:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,160,18,0.3);
}
.btn-primary-hero {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary-hero:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-hero {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-hero:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* =====================
   TOP BAR
   ===================== */
.topbar {
  background: var(--dark-2);
  padding: 8px 0;
  border-bottom: 2px solid var(--primary);
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--accent); }
.topbar-left a i { color: var(--primary); font-size: 12px; }
.topbar-right {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.topbar-right a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-right a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* =====================
   HEADER / NAVBAR
   ===================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  z-index: 999;
}
.navbar { padding: 12px 0; }
.brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,111,196,0.3);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.3px;
}
.brand-sub {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-link {
  color: var(--text) !important;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 28px); }
.nav-link:hover { color: var(--primary) !important; }
.navbar-toggler {
  border-color: var(--primary);
  padding: 6px 10px;
}
.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='%231a6fc4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================
   HERO CAROUSEL
   ===================== */
.hero-section { position: relative; }
.hero-slide { position: relative; height: 90vh; min-height: 500px; max-height: 750px; overflow: hidden; }
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
  position: absolute;
  top: 0;
  left: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}
.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 5%;
  text-align: left;
  z-index: 2;
}
.caption-inner { max-width: 620px; }
.badge-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.carousel-caption h1 {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.carousel-caption h1 span { color: var(--accent); }
.carousel-caption p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  opacity: 0.6;
}
.carousel-indicators button.active {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}
.carousel-control-prev, .carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(26,111,196,0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  margin: 0 16px;
  transition: var(--transition);
}
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--primary); }

/* =====================
   MARQUEE
   ===================== */
.marquee-section {
  background: var(--primary);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  gap: 0;
}
.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.marquee-content span i { color: var(--accent); font-size: 13px; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-section { background: var(--white); }
.about-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 380px;
}
.about-small-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge-box {
  position: absolute;
  top: 20px;
  left: -16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.about-feature:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.about-feature i { color: var(--primary); font-size: 20px; }

/* =====================
   SERVICES SECTION
   ===================== */
.services-section { background: var(--bg-section); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.service-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,24,39,0.5) 100%);
}
.service-body { padding: 20px 18px 22px; }
.service-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition);
  border: 1px solid rgba(26,111,196,0.15);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-body p { color: var(--text-light); font-size: 14px; margin-bottom: 14px; }
.service-link {
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.service-link:hover { color: var(--accent); gap: 9px; }

/* =====================
   COUNTER SECTION
   ===================== */
.counter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(26,111,196,0.12);
}
.counter-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(244,160,18,0.08);
}
.counter-box { padding: 20px 10px; position: relative; z-index: 1; }
.counter-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
}
.counter-num {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-label {
  font-family: var(--font-head);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =====================
   WHY CHOOSE US
   ===================== */
.why-section { background: var(--white); }
.why-img-wrap { position: relative; }
.why-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 440px;
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.why-badge i { font-size: 20px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.why-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateX(6px);
}
.why-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.why-text h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-text p { color: var(--text-light); font-size: 13.5px; margin: 0; }

/* =====================
   GALLERY SECTION
   ===================== */
.gallery-section { background: var(--bg-section); }
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.gf-btn {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,111,196,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 8px;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover i { color: var(--white); font-size: 28px; }
.gallery-hover span {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 8px 60px rgba(0,0,0,0.5); }
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.lb-close:hover { background: var(--primary); }

/* =====================
   FAQ SECTION
   ===================== */
.faq-section { background: var(--white); }
.faq-img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item .accordion-button {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 20px;
  box-shadow: none;
  border-radius: var(--radius) !important;
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
  border-bottom: 1px solid rgba(26,111,196,0.15);
}
.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a6fc4'%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(--text-light);
  font-size: 14.5px;
  padding: 16px 20px;
  background: var(--bg-light);
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section { background: var(--bg-section); }
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--white);
  height: 100%;
  box-shadow: var(--shadow-md);
}
.contact-info-card h5 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-text span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.ci-text a, .ci-text p {
  color: var(--white);
  font-size: 14px;
  margin: 0;
}
.ci-text a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--accent); color: var(--dark); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h5 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.form-label {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 6px;
}
.custom-input {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--bg-light);
}
.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
  background: var(--white);
  outline: none;
}

/* =====================
   AREA MARQUEE
   ===================== */
.area-marquee-section {
  background: var(--bg-light);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 12px 0;
}
.area-label {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.area-content span {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px;
  border-right: 1px solid var(--border);
}
.area-content { animation-duration: 38s; }

/* =====================
   MAP SECTION
   ===================== */
.map-section { padding: 40px 0 0; background: var(--white); }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
}
.map-header {
  background: var(--dark-2);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-header i { color: var(--accent); }
.map-wrapper iframe { display: block; }

/* =====================
   FOOTER
   ===================== */
.site-footer { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 18px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-areas strong { color: rgba(255,255,255,0.8); font-size: 13px; display: block; margin-bottom: 4px; }
.footer-areas p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  background: rgba(0,0,0,0.25);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); font-size: 13px; }

/* =====================
   FLOATING BUTTONS
   ===================== */
.float-left-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  transition: all 0.35s ease;
  overflow: hidden;
  max-width: 46px;
  white-space: nowrap;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
}
.float-btn i { font-size: 18px; flex-shrink: 0; }
.float-btn span { opacity: 0; max-width: 0; overflow: hidden; transition: all 0.35s ease; margin-left: 0; }
.float-btn:hover {
  max-width: 140px;
  padding-right: 18px;
}
.float-btn:hover span { opacity: 1; max-width: 80px; margin-left: 8px; }
.float-call { background: var(--primary); }
.float-call:hover { background: var(--primary-dark); color: var(--white); }
.float-wa { background: #25d366; }
.float-wa:hover { background: #1da851; color: var(--white); }
.float-mail { background: #ea4335; }
.float-mail:hover { background: #c93425; color: var(--white); }

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1050;
  box-shadow: 0 4px 16px rgba(26,111,196,0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 991.98px) {
  .section-pad { padding: 60px 0; }
  .hero-slide { height: 70vh; min-height: 420px; }
  .carousel-caption { padding: 0 5%; justify-content: center; text-align: center; }
  .hero-btns { justify-content: center; }
  .about-img-wrap { padding-bottom: 50px; padding-right: 50px; }
  .why-img-wrap { margin-bottom: 10px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 48px 0; }
  .hero-slide { height: 60vh; min-height: 380px; }
  .carousel-caption h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .btn-primary-hero, .btn-outline-hero { font-size: 15px; padding: 11px 24px; }
  .about-small-img { width: 130px; height: 100px; }
  .about-badge-box { left: -8px; }
  .counter-num { font-size: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-card { padding: 24px 18px; }
  .contact-info-card { padding: 24px 20px; margin-bottom: 0; }
  .faq-img { height: 160px; }
  .footer-top { padding: 40px 0 28px; }
}

@media (max-width: 575.98px) {
  .topbar-left { gap: 14px; }
  .topbar-left a { font-size: 12px; }
  .brand-title { font-size: 15px; }
  .brand-sub { font-size: 11px; }
  .hero-slide { height: 55vh; min-height: 340px; }
  .carousel-caption h1 { font-size: 26px; }
  .carousel-caption p { font-size: 14px; }
  .badge-tag { font-size: 11px; }
  .section-title { font-size: 26px; }
  .about-main-img { height: 260px; }
  .about-small-img { width: 110px; height: 88px; }
  .why-main-img { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .float-btn { padding: 10px 12px; }
  .float-btn i { font-size: 16px; }
  .counter-section { padding: 44px 0; }
  .counter-num { font-size: 36px; }
  .counter-icon { font-size: 24px; }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.fade-up:nth-child(7) { transition-delay: 0.6s; }
.fade-up:nth-child(8) { transition-delay: 0.7s; }

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