/* =====================================================
   STAR ENTERPRISES – style.css
   Terrace Waterproofing | Akola, Maharashtra
   ===================================================== */

/* ─── CSS VARIABLES ───────────────────────────────── */
:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2547;
  --primary-light: #2557a7;
  --accent: #e8952a;
  --accent-dark: #c97a1a;
  --accent-light: #fbb040;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-bg: #f2f4f8;
  --text-dark: #1a1f2e;
  --text-body: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(26, 60, 110, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 60, 110, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 60, 110, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

* {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .fadeInLeft, .fadeInRight {
    animation: none !important;
    transform: none !important;
  }
}

.section {
  overflow: hidden;
}









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

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

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

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

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

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

/* ─── UTILITY ────────────────────────────────────── */
.text-accent {
  color: var(--accent);
}

.section-pad {
  padding: 30px 0;
}

.bg-light-alt {
  background-color: var(--off-white);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 149, 42, 0.10);
  border: 1px solid rgba(232, 149, 42, 0.25);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

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

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

/* ─── BUTTONS ────────────────────────────────────── */
.btn-main {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(26, 60, 110, 0.3);
  transition: var(--transition);
}

.btn-main:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(232, 149, 42, 0.35);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(232, 149, 42, 0.35);
  transition: var(--transition);
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 149, 42, 0.45);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  display: inline-block;
  box-shadow: 0 6px 25px rgba(232, 149, 42, 0.5);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(232, 149, 42, 0.6);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: inline-block;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

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

/* ─── TOP BAR ────────────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  padding: 9px 0;
  font-size: 0.82rem;
}

.topbar-item {
  color: rgba(255, 255, 255, 0.80);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  transition: var(--transition);
}

.topbar-item i {
  color: var(--accent);
  font-size: 0.78rem;
}

.topbar-item:hover {
  color: var(--accent-light);
}

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

.topbar-social:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ─── HEADER / NAV ───────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(26, 60, 110, 0.3);
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-body) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

/* Custom Toggler */
.navbar-toggler {
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  box-shadow: none !important;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO CAROUSEL ──────────────────────────────── */
#hero {
  position: relative;
}

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide-1 {
  background-image: url('../images/b1.webp');
}

.hero-slide-2 {
  background-image: url('../images/b2.webp');
}

.hero-slide-3 {
  background-image: url('../images/b3.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 25, 55, 0.88) 0%,
      rgba(10, 25, 55, 0.75) 50%,
      rgba(10, 25, 55, 0.35) 100%);
}

.carousel-item {
  height: 90vh;
}

.carousel-item>.hero-slide {
  height: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 149, 42, 0.2);
  border: 1px solid rgba(232, 149, 42, 0.5);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  animation: fadeDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  animation: fadeUp 0.9s ease 0.2s forwards;
  opacity: 0;
}

.carousel-item.active .hero-title {
  opacity: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.75;
  animation: fadeUp 0.9s ease 0.4s forwards;
  opacity: 0;
}

.carousel-item.active .hero-subtitle {
  opacity: 1;
}

.carousel-item.active .d-flex {
  animation: fadeUp 0.9s ease 0.6s forwards;
  opacity: 0;
}

.carousel-item.active .d-flex {
  opacity: 1;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ─── ABOUT ──────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  padding: 0 0 40px 0;
}

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

.about-img-badge {
  position: absolute;
  bottom: 0;
  right: -20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(232, 149, 42, 0.4);
  min-width: 120px;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 4px;
  opacity: 0.9;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.25;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.about-feat i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────────── */

.img-proofing{
  width: 100%;
  height: 230px;
  margin-bottom: 20px;
  border-radius: 12px;
}


.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card-featured {
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  color: var(--white);
}

.service-card-featured::before {
  display: none;
}

.service-card-featured .service-title {
  color: var(--white);
}

.service-card-featured .service-text {
  color: rgba(255, 255, 255, 0.80);
}

.service-card-featured .service-list li {
  color: rgba(255, 255, 255, 0.85);
}

.service-card-featured .service-list i {
  color: var(--accent-light);
}

.service-card-featured .service-link {
  color: var(--accent-light);
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
}

.service-card-featured:hover {
  background: linear-gradient(155deg, var(--primary-light) 0%, var(--primary) 100%);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 60, 110, 0.08), rgba(26, 60, 110, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 22px;
  border: 1px solid rgba(26, 60, 110, 0.10);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.service-list {
  margin-bottom: 22px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 3px 0;
  font-weight: 500;
}

.service-list i {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent);
  gap: 10px;
}

.service-link i {
  font-size: 0.75rem;
}

/* ─── COUNTER ────────────────────────────────────── */
.counter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232, 149, 42, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(232, 149, 42, 0.10) 0%, transparent 60%);
}

.counter-card {
  position: relative;
  z-index: 1;
  padding: 10px;
}

.counter-icon {
  font-size: 2.2rem;
  color: var(--accent-light);
  margin-bottom: 12px;
  display: block;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  display: inline;
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-light);
  display: inline;
}

.counter-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── WHY CHOOSE US ──────────────────────────────── */
.why-list {
  margin-top: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.why-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(26, 60, 110, 0.28);
}

.why-item h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

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

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

.why-floatbox {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.why-floatbox i {
  font-size: 2rem;
  color: var(--accent);
}

.why-floatbox strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.why-floatbox span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── GALLERY ────────────────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 60, 110, 0.1) 0%,
      rgba(26, 60, 110, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}



/* ─── CONTACT ────────────────────────────────────── */
.contact-info-wrap,
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--off-white);
  position: relative;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(26, 60, 110, 0.25);
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ci-value {
  display: block;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

a.ci-value:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Form */
.cf-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}

.cf-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.10);
  outline: none;
}

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

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.80);
}

.footer-top {
  padding: 72px 0 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  margin-bottom: 18px;
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.75;
  margin-bottom: 22px;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
}

/* ─── BACK TO TOP ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  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(--accent) 0%, var(--accent-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 149, 42, 0.4);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

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

  .about-img-main img {
    height: 380px;
  }

  .why-img-wrap img {
    height: 400px;
  }

  .why-floatbox {
    left: 0;
    bottom: -20px;
  }

  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 18px 16px;
    margin-top: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .btn-cta {
    margin-top: 14px;
    display: inline-flex;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero-slide {
    min-height: 100svh;
  }

  .carousel-item {
    height: 100svh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-img-badge {
    right: 10px;
  }

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

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

  .why-floatbox {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .service-card {
    padding: 28px 22px;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.75rem;
  }

  .topbar .row {
    flex-direction: column;
    text-align: center;
  }

  .topbar-item {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .counter-section {
    padding: 60px 0;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}






.floating-container {
    position: fixed;
    bottom: 130px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 55px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
    background-color: #25D366;
}

/* Call */
.call {
    background-color: #007bff;
}
@media(max-width:767px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
}