/* ============================================
   WAGHELA ENTERPRISES - Main Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --primary: #2a7a2e;
  --primary-dark: #1d5a20;
  --primary-light: #3a9a3e;
  --secondary: #f5c500;
  --secondary-dark: #d4a800;
  --dark: #1a1a1a;
  --dark-alt: #2d2d2d;
  --text-dark: #222222;
  --text-muted: #666666;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --radius: 8px;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Montserrat', 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;
  margin: 0;
  padding: 0;
}

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

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: 600;
  line-height: 1.3;
}

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

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

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

/* ============================================
   Utility Classes
   ============================================ */
.section-padding {
  padding: 80px 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 15px;
}

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

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 45px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 12px auto 20px;
  border-radius: 2px;
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  left: 70px;
  top: 0;
  width: 20px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--primary);
}

.btn-secondary-custom {
  background: var(--secondary);
  color: var(--dark);
  border: 2px solid var(--secondary);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-secondary-custom:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
}

.bg-green {
  background-color: var(--primary);
}

.bg-yellow {
  background-color: var(--secondary);
}

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

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

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

.text-yellow {
  color: var(--secondary);
}

/* ============================================
   TOP BAR
   ============================================ */
#top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--primary);
}

.top-bar-info a,
.top-bar-info span {
  color: #ccc;
  margin-right: 20px;
  transition: var(--transition);
}

.top-bar-info a:hover {
  color: var(--secondary);
}

.top-bar-info i {
  color: var(--secondary);
  margin-right: 5px;
}

.top-bar-social a {
  color: #aaa;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  border-radius: 4px;
  margin-left: 6px;
  font-size: 0.78rem;
  transition: var(--transition);
}

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

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#main-header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

#main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  padding: 10px;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 28px 14px !important;
  position: relative;
  transition: var(--transition);
}

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

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

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

.nav-cta-btn {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 10px 22px !important;
  margin-left: 10px;
  font-size: 0.82rem !important;
}

.nav-cta-btn:hover {
  background: var(--secondary) !important;
  color: var(--dark) !important;
}

.nav-cta-btn::after {
  display: none !important;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 6px 10px;
}

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

.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='%232a7a2e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
#hero-carousel {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}

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

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  background: rgba(42, 122, 46, 0.7);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}

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

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

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

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

.carousel-indicators {
  bottom: 0px;
}

.carousel-indicators button {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators button.active {
  background: var(--secondary);
  width: 50px;
}

/* Animation for carousel items */
.carousel-item.active .hero-badge {
  animation: fadeInDown 0.6s ease 0.2s both;
}

.carousel-item.active .hero-title {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.carousel-item.active .hero-desc {
  animation: fadeInUp 0.6s ease 0.6s both;
}

.carousel-item.active .hero-btns {
  animation: fadeInUp 0.6s ease 0.8s both;
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

/* ============================================
   MARQUEE
   ============================================ */
#marquee-section {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 30px;
}

.marquee-item i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 1rem;
}

.marquee-separator {
  color: var(--secondary);
  font-size: 1.2rem;
  padding: 0 10px;
}

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

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

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

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

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

.about-badge {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 20px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-family: var(--font-heading);
}

.about-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge .years-text {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-title {
  text-align: left;
}

.about-content .title-underline {
  margin-left: 0;
}

.about-content .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  padding: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.about-feature:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  background: var(--secondary);
  color: var(--dark);
}

.about-feature-text h6 {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 3px;
  color: var(--dark);
}

.about-feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

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

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 230px;
}

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

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

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.178), transparent);
}

.service-icon-float {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

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

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

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

#counter::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

#counter::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 250px;
  height: 250px;
  border: 50px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.counter-box {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.counter-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.counter-box:hover .counter-icon {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  transform: rotateY(180deg);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.counter-number sup {
  font-size: 1.5rem;
}

.counter-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  height: 80px;
  margin: auto;
}

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

.why-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.why-overlay-box {
  position: absolute;
  top: 25px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
}

.why-overlay-box .big-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.why-overlay-box .small-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--light-bg);
}

.why-feature-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(42, 122, 46, 0.15);
  line-height: 1;
  min-width: 50px;
  transition: var(--transition);
}

.why-feature:hover .why-feature-num {
  color: var(--primary);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: var(--secondary);
  color: var(--dark);
}

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

.why-feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   BRAND CAROUSEL
   ============================================ */
#brands {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: brandsSlide 25s linear infinite;
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  border-right: 1px solid var(--border);
}

.brand-logo-item img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition);
}

.brand-logo-item:hover img {
  filter: none;
  opacity: 1;
}

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

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 122, 46, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.gallery-overlay span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox */
.lightbox-modal .modal-dialog {
  max-width: 90vw;
}

.lightbox-modal .modal-body {
  padding: 0;
  background: #000;
}

.lightbox-modal .modal-body img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-modal .modal-header {
  background: var(--dark);
  border: none;
}

.lightbox-modal .btn-close {
  filter: invert(1);
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  background: var(--light-bg);
}

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

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 16px 22px;
  line-height: 1.7;
}

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

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 35px 28px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--secondary);
}

.contact-info-card p.lead {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.18);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text h6 {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  transition: var(--transition);
}

.contact-detail-text a:hover {
  color: var(--secondary);
}

.contact-social-links {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social-links h6 {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.contact-social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-social-links a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
}

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

.contact-form-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 15px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 122, 46, 0.1);
}

.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 15px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 122, 46, 0.1);
}

/* ============================================
   MAP SECTION
   ============================================ */
#map-section {
  padding: 0;
}

#map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  border-top: 4px solid var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

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

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

.footer-links a i {
  color: var(--secondary);
  font-size: 0.7rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

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

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.footer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.footer-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.7);
  transition: var(--transition);
}

.footer-gallery-grid img:hover {
  filter: brightness(1);
  transform: scale(1.05);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  text-align: center;
}

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

.footer-bottom span {
  color: var(--secondary);
}

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

.float-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.float-icon.email {
  background: #ea4335;
}

.float-icon.location {
  background: #4285f4;
}

.float-icon-label {
  position: absolute;
  left: 44px;
  background: inherit;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  transform: translateX(-100%);
  transition: var(--transition);
  pointer-events: none;
  left: 100%;
  transform: translateX(-100%);
  opacity: 0;
}

.float-icon:hover .float-icon-label {
  transform: translateX(0);
  opacity: 1;
}

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  border: none;
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ============================================
   SECTION HEADER DECORATION
   ============================================ */
.section-label {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }

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

  .hero-slide {
    height: 70vh;
    min-height: 400px;
  }

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

  .navbar-nav .nav-link::after {
    display: none;
  }

  .nav-cta-btn {
    margin: 8px 16px;
  }

  .about-badge {
    right: 10px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-overlay-box {
    left: 0;
    top: 15px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (576px)
   ============================================ */
   @media (max-width: 374px) {
   .navbar-brand img {
    height: 47px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
   }
@media (max-width: 767px) {
	.cu-jf-cntr{
		justify-content:center!important
	}
	.cu-ds-nn{
		display:none!important;
	}
  .section-padding {
    padding: 50px 0;
  }

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

 

  .hero-slide {
    height: 62vh;
    min-height: 400px;
  }

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

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-btns {
    gap: 10px;
  }

  .about-img-wrapper img {
    height: 280px;
  }

  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 15px;
    right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .counter-divider {
    display: none;
  }

  .counter-box {
    margin-bottom: 20px;
  }

  .why-img-wrapper img {
    height: 280px;
    margin-bottom: 30px;
  }

  .why-overlay-box {
    display: none;
  }

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

  .contact-info-card {
    padding: 25px 18px;
  }

  .footer-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .float-icon {
    width: 42px;
    height: 42px;
  }

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

  .float-icon-label {
    display: none;
  }

  .brands-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

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

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

.fade-in-up.in-view {
  opacity: 1;
  transform: none;
}

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

.fade-in-left.in-view {
  opacity: 1;
  transform: none;
}

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

.fade-in-right.in-view {
  opacity: 1;
  transform: none;
}


.float{
  position: fixed;
  width: 55px;
  height: 55px;
  left: 20px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 55px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* WhatsApp */
.whatsapp{
  bottom: 20px;
  background: #25D366;
}

/* Call */
.call{
  bottom: 85px;
  background: #007bff;
}

/* Hover Effect */
.float:hover{
  transform: scale(1.1);
  transition: 0.3s;
}