/* ===================================================
   Computer Solution - Custom CSS
   Font: Rajdhani (headings) + Nunito (body)
=================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #0a3d62;
  --primary-dark: #071f3a;
  --accent: #f0a500;
  --accent-light: #ffc93c;
  --white: #ffffff;
  --light-bg: #f4f7fc;
  --alt-bg: #eef2f9;
  --text-dark: #1a1a2e;
  --text-muted: #6b7a99;
  --border-color: #dde3f0;
  --shadow-sm: 0 2px 12px rgba(10, 61, 98, 0.08);
  --shadow-md: 0 6px 30px rgba(10, 61, 98, 0.13);
  --shadow-lg: 0 16px 60px rgba(10, 61, 98, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Rajdhani', 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;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

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

.bg-section-alt {
  background: var(--alt-bg);
}

.section-padding {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.section-subtitle,
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-subtitle {
  margin: 0 auto;
}

.section-desc {
  margin-bottom: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(240, 165, 0, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.5);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn-outline-custom {
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 11px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ---------- FLOATING ICONS ---------- */
.float-icon {
  position: fixed;
  bottom: 85px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
}

.float-icon:hover {
  transform: scale(1.15);
}

.whatsapp-float {
  left: 22px;
  background: #25d366;
  color: #fff;
}

.call-float {
  right: 22px;
  background: var(--accent);
  color: var(--primary-dark);
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  font-family: var(--font-body);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

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

.topbar-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

/* ---------- NAVBAR ---------- */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 61, 98, 0.1);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(10, 61, 98, 0.18);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

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

.navbar-toggler {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
  background: rgba(240, 165, 0, 0.08);
}

.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: var(--primary-dark) !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 15px rgba(240, 165, 0, 0.3) !important;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.45) !important;
  background: linear-gradient(135deg, var(--accent-light), var(--accent)) !important;
}



/* ---------- HERO ---------- */
.hero-slide {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ---------- SLIDE BACKGROUND IMAGES ---------- */
.slide-1 {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.815), rgba(0, 0, 0, 0.486)),
    url('../images/b1.jpg');
}

.slide-2 {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.815), rgba(0, 0, 0, 0.486)),
    url('../images/b2.jpeg');
}

.slide-3 {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.815), rgba(0, 0, 0, 0.486)),
    url('../images/b3.jpg');
}

/* ---------- Decorative Overlay ---------- */
.slide-1::before,
.slide-2::before,
.slide-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(240, 165, 0, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 19, 34, 0.75) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0 50px;
}

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

/* ---------- HERO BADGE ---------- */
.hero-badge {
  display: inline-block;
  background: rgba(240, 165, 0, 0.18);
  border: 1px solid rgba(240, 165, 0, 0.5);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ---------- HERO HEADING ---------- */
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-heading .text-accent {
  color: #f0a500;
}

/* ---------- HERO TEXT ---------- */
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 550px;
  line-height: 1.7;
}

/* ---------- ANIMATIONS ---------- */
.animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
  background: #f0a500;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background: #d89200;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

/* ---------- CAROUSEL CONTROLS ---------- */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(240, 165, 0, 0.2);
  border: 2px solid rgba(240, 165, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #f0a500;
  border-color: #f0a500;
  opacity: 1;
}

/* ---------- INDICATORS ---------- */
.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: 0.3s ease;
}

.carousel-indicators .active {
  background: #f0a500;
  width: 48px;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {

  .hero-slide,
  .min-vh-slide {
    min-height: 60vh;
    padding-left: 10px;
  }

  .hero-content {
    padding: 50px 0 40px;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

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

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

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


/* ---------- ABOUT ---------- */
.about-img-wrapper {
  position: relative;
  padding: 24px 24px 0 0;
}

.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

.about-badge-box {
  position: absolute;
  bottom: -18px;
  right: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
}

.about-years {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-years-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 4px;
  display: block;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.97rem;
  color: var(--text-dark);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- SERVICE CARDS (4-per-row with image) ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240, 165, 0, 0.25);
}

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

/* Image wrapper */
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 170px;
  flex-shrink: 0;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Icon overlay on image */
.service-icon-overlay {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(240, 165, 0, 0.4);
  transition: var(--transition);
  z-index: 2;
  border: 3px solid var(--white);
}

.service-card:hover .service-icon-overlay {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent);
  transform: rotate(-8deg) scale(1.08);
}

/* Body below image */
.service-body {
  padding: 32px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.service-link {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
  text-decoration: none;
  margin-top: auto;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary);
}

/* Mobile: 2 per row — col-6 already handles it via Bootstrap */
@media (max-width: 575.98px) {
  .service-img-wrap {
    height: 120px;
  }

  .service-icon-overlay {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    bottom: -16px;
  }

  .service-body {
    padding: 24px 14px 16px;
  }

  .service-title {
    font-size: 0.9rem;
  }

  .service-desc {
    font-size: 0.8rem;
  }
}

/* ---------- WHY CHOOSE US ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 165, 0, 0.3);
}

.why-icon {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.07), rgba(10, 61, 98, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
  border: 2px solid rgba(240, 165, 0, 0.2);
}

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

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

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

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

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(240, 165, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 35%);
}

.counter-box {
  position: relative;
  z-index: 1;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- GALLERY ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.8), rgba(240, 165, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

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

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

/* ---------- FAQ / ACCORDION ---------- */
.custom-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-accordion-item {
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.custom-accordion-item .accordion-button {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--white);
  padding: 18px 24px;
  box-shadow: none !important;
}

.custom-accordion-item .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(10, 61, 98, 0.04), rgba(240, 165, 0, 0.05));
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
}

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

.custom-accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0a500' 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 {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 16px 24px 20px;
  background: var(--white);
}

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

.contact-info-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-dark);
  margin-bottom: 3px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  transition: color 0.2s;
}

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

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

.custom-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
  background: var(--white);
  outline: none;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-about {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-top: 12px;
}

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

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

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

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

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

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .text-accent {
  color: var(--accent) !important;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

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

  .hero-content {
    padding: 80px 0 60px;
  }

  .about-img {
    height: 320px;
  }

  .about-badge-box {
    right: 10px;
    bottom: -12px;
  }

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

  .nav-link {
    padding: 10px 16px !important;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
  .section-padding {
    padding: 56px 0;
  }

  .topbar {
    font-size: 0.75rem;
  }

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

  .hero-sub {
    font-size: 0.96rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .about-img {
    height: 250px;
  }

  .about-img-wrapper {
    padding: 0;
  }

  .about-badge-box {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .gallery-img {
    height: 160px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 24px 18px;
  }

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

  .float-icon {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
    bottom: 70px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 70px 0 50px;
  }

  .service-card {
    padding: 26px 20px;
  }

  .why-card {
    padding: 26px 18px;
  }

  .footer-top {
    padding-bottom: 30px;
  }
}