/* ============================================================
   M Tech Air Cool – Main Stylesheet
   Author: M Tech Air Cool
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0a5fad;
  --primary-dark: #074a8c;
  --primary-light: #1a7de8;
  --accent: #f0a500;
  --accent-dark: #d18f00;
  --text-dark: #1a1a2e;
  --text-body: #4a4a68;
  --text-light: #888;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --bg-light: #eef3fb;
  --border-color: #dde5f0;
  --shadow-sm: 0 4px 15px rgba(10, 95,s 173, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 95, 173, 0.14);
  --shadow-lg: 0 16px 50px rgba(10, 95, 173, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', 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;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  background: rgba(10, 95, 173, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(10, 95, 173, 0.2);
}

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

.section-subtitle {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10, 95, 173, 0.3);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 95, 173, 0.4);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 95, 173, 0.25);
}

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

.top-bar-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.top-bar-divider {
  color: rgba(255, 255, 255, 0.3);
}

.top-bar-social {
  color: rgba(255, 255, 255, 0.75);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  transition: var(--transition);
}

.top-bar-social:hover {
  background: var(--accent);
  color: var(--white);
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
  padding: 14px 0;
}

/* Logo */
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(10, 95, 173, 0.35);
}

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

.logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.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);
}

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

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(10, 95, 173, 0.3);
  transition: var(--transition);
}

.nav-cta-btn:hover {
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.35);
  transform: translateY(-2px);
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px;
}

.toggler-icon {
  font-size: 1.6rem;
  color: var(--primary);
}

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

/* ===== HERO CAROUSEL ===== */
.hero-img {
  height: 92vh;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.788) 0%, rgba(0, 0, 0, 0.678) 60%, transparent 100%);
}

.carousel-caption-custom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-heading span {
  color: var(--accent);
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 25px rgba(240, 165, 0, 0.45);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(240, 165, 0, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

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

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

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

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 20px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 30px;
  border-radius: 10px;
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
}

.marquee-content span i {
  color: var(--accent);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--off-white);
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

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

.about-badge-card {
  position: absolute;
  bottom: 30px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
}

.about-badge-card i {
  font-size: 2rem;
  color: var(--accent);
}

.about-badge-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 800;
}

.about-badge-card span {
  font-size: 0.78rem;
  color: var(--text-body);
}

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

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

.about-feature:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.service-img-box {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10, 30, 80, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-img-overlay {
  opacity: 1;
}

.service-img-overlay i {
  font-size: 2rem;
  color: var(--white);
}

.service-body {
  padding: 24px;
}

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

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

.service-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(10, 95, 173, 0.25);
}

.service-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== COUNTER ===== */
.counter-section {
  position: relative;
  background: url("") center/cover no-repeat;
  padding: 80px 0;
}

.counter-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 80, 0.88), rgba(10, 95, 173, 0.82));
}

.counter-card {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.counter-icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 6px;
}

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

.counter-plus {
  display: inline;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-left: 2px;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--off-white);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.why-icon {
  min-width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(10, 95, 173, 0.3);
}

.why-content h5 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.why-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

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

.why-float-card {
  position: absolute;
  top: 30px;
  left: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.why-float-card i {
  font-size: 1.8rem;
  color: var(--accent);
}

.why-float-card span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

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

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

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

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 80, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-hover i {
  font-size: 2rem;
  color: var(--white);
}

/* ===== FAQs ===== */
.faq-section {
  background: var(--off-white);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(10, 95, 173, 0.3) !important;
  box-shadow: var(--shadow-md);
}

.faq-btn {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 18px 22px;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid transparent;
}

.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
  border-bottom-color: var(--border-color);
}

.faq-btn::after {
  filter: none;
  color: var(--primary);
}

.faq-body {
  background: var(--white) !important;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 16px 22px;
  line-height: 1.75;
}

.faq-cta-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.faq-cta-box p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 14px;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #eef3fb 100%);
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: var(--transition);
}

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

.testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testi-prev-btn,
.testi-next-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testi-prev-btn:hover,
.testi-next-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--off-white);
}

.contact-info-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  color: var(--white);
}

.contact-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  min-width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--accent);
}

.contact-info-item p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

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

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

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

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

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

.contact-social-btn.call:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.form-label-custom {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-input-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-input-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 95, 173, 0.1);
}

.form-input-custom::placeholder {
  color: #aab3c5;
}

select.form-input-custom {
  cursor: pointer;
}

textarea.form-input-custom {
  resize: vertical;
  min-height: 110px;
}

.btn-submit-form {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10, 95, 173, 0.3);
}

.btn-submit-form:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 165, 0, 0.35);
}

.form-success-msg {
  margin-top: 14px;
  padding: 14px 20px;
  background: #e6f9ef;
  border: 1px solid #4caf50;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== MAP ===== */
.map-section {
  background: var(--white);
  padding: 0 0 60px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-color);
}

.map-iframe {
  display: block;
}

.map-info-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  max-width: 300px;
}

.map-info-card i {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.map-info-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.map-info-card span {
  font-size: 0.77rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
}

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

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.footer-logo .logo-main {
  color: var(--white);
}

.footer-about {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 20px;
}

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

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

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

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

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

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

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

.footer-links a i {
  font-size: 0.72rem;
  color: var(--primary-light);
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.6;
}

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

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

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

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

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

/* ===== FLOATING ICONS ===== */
.floating-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-icon {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: 46px;
  transition: width 0.3s ease;
  white-space: nowrap;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 12px;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.float-icon:hover {
  width: 140px;
  color: var(--white);
}

.float-label {
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 0.82rem;
  font-weight: 600;
  margin-left: 8px;
}

.float-icon:hover .float-label {
  opacity: 1;
}

.float-icon.whatsapp-float {
  background: #25d366;
}

.float-icon.call-float {
  background: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-20px);
}

[data-aos="fade-left"] {
  transform: translateX(20px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

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

  .hero-img {
    height: 75vh;
    min-height: 420px;
  }

  .about-badge-card {
    right: 0;
    bottom: -20px;
  }

  .why-float-card {
    left: 0;
  }

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

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

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
		text-align:center;
	}
	
  .section-padding {
    padding: 55px 0;
  }

  .hero-img {
    height: 85vh;
    min-height: 480px;
  }

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

  .hero-subtext {
    font-size: 0.88rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 11px 22px;
    font-size: 0.86rem;
  }

  .about-badge-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    display: flex;
  }

  .why-float-card {
    display: none;
  }

  .about-main-img,
  .why-main-img {
    height: 280px;
  }

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

  .map-info-card {
    max-width: 250px;
    font-size: 0.8rem;
  }

  .floating-icons {
    top: auto;
    bottom: 90px;
    transform: none;
  }

  .float-icon {
    padding: 10px 10px;
    width: 42px;
    font-size: 1rem;
  }

  .float-icon:hover {
    width: 130px;
  }
}

@media (max-width: 575.98px) {
  .hero-img {
    height: 88vh;
  }

  .navbar {
    padding: 10px 0;
  }

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

  .counter-number {
    font-size: 2rem;
  }

  .testi-card {
    padding: 20px;
  }
}