/* =============================================
   DEVESH ENTERPRISES – Main Stylesheet
   ============================================= */

/* --- CSS Variables --- */
:root {
  --green-dark: #0d4a22;
  --green-main: #1a7a3c;
  --green-mid: #25a352;
  --green-light: #d4edda;
  --green-pale: #f0f9f3;
  --white: #ffffff;
  --grey-light: #f5f7f5;
  --grey-mid: #e8ede9;
  --grey-text: #6b7a6d;
  --dark: #111c14;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.01em;
}

.topbar a {
  color: var(--green-light);
  font-weight: 600;
  transition: var(--transition);
}

.topbar a:hover {
  color: #fff;
}

.topbar i {
  margin-right: 5px;
  color: var(--green-mid);
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.topbar-right a:hover {
  color: var(--green-mid);
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.main-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--green-main);
  background: var(--green-pale);
}

.btn-call {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26, 122, 60, 0.35);
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 122, 60, 0.45);
}

/* Mobile nav toggle */
.navbar-toggler {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.navbar-toggler span {
  display: block;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggler.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    padding: 80px 30px 30px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav .nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    display: block;
  }

  .navbar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .navbar-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  max-width: 650px;
  padding: 0 40px 0 80px;
  color: #fff;
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.slide-content h1 em {
  font-style: italic;
  color: #7ee8a2;
}

.slide-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 480px;
  line-height: 1.7;
}

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

.btn-primary-hero {
  background: var(--green-main);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary-hero:hover {
  background: var(--green-mid);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-hero {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.slide-badge-float {
  position: absolute;
  right: 80px;
  bottom: 80px;
}

.badge-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.badge-circle span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.badge-circle small {
  font-size: 0.68rem;
  opacity: 0.85;
  margin-top: 2px;
}

/* Nav arrows */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .carousel {
    height: 88vh;
    min-height: 500px;
  }

  .slide-content {
    padding: 0 24px;
  }

  .slide-badge-float {
    display: none;
  }

  .carousel-prev,
  .carousel-next {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 40px 0;
  position: relative;
  overflow-x: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item>i {
  font-size: 2rem;
  opacity: 0.6;
  flex-shrink: 0;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-item p {
  font-size: 0.78rem;
  opacity: 0.75;
  margin: 3px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 480px) {
  .stat-item {
    padding: 14px 16px;
  }

  .stat-item .stat-num {
    font-size: 1.6rem;
  }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-pad {
  padding: 50px 0;
}

.section-label {
  display: inline-block;
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--green-main);
}

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

.section-title em {
  font-style: italic;
  color: var(--green-main);
}

.section-subtitle {
  color: var(--grey-text);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26, 122, 60, 0.3);
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 122, 60, 0.4);
}

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

.about-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  z-index: 1;
  border: 3px solid var(--green-mid);
}

.about-img-badge {
  position: absolute;
  bottom: 50px;
  left: -20px;
  z-index: 3;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-img-badge i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.about-text {
  color: var(--grey-text);
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.about-text strong {
  color: var(--green-dark);
}

.about-features {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
}

.about-features li i {
  color: var(--green-main);
  font-size: 1rem;
}

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

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

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

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 74, 34, 0.5) 0%, transparent 60%);
}

.service-body {
  padding: 22px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-main);
  color: #fff;
}

.service-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.service-link {
  color: var(--green-main);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

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

.why-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--green-mid));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.why-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.why-icon {
  width: 54px;
  height: 54px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green-main);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

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

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

/* =============================================
   GALLERY
============================================= */

.gallery-section {
  background: var(--grey-light);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 74, 34, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.3s;
}

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

.gallery-caption span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* Tablet */

@media(max-width:992px) {

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

}

/* Mobile */

@media(max-width:768px) {

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

}

/* Small Mobile */

@media(max-width:480px) {

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

}








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

.contact-form-wrap {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-wrap h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form-wrap label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(26, 122, 60, 0.12);
}

.contact-form-wrap textarea {
  resize: vertical;
}

.form-success {
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-success i {
  margin-right: 8px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--grey-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info-item:hover {
  background: var(--green-pale);
  transform: translateX(4px);
}

.ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.contact-info-item h6 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-text);
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

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

.map-placeholder {
  background: var(--green-pale);
  border: 2px dashed var(--green-mid);
  border-radius: var(--radius);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-main);
  font-weight: 600;
  font-size: 0.9rem;
}

.map-placeholder i {
  font-size: 1.3rem;
}

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

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

.footer-logo .logo-name {
  color: #fff;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

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

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

.footer-socials a:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  color: #fff;
}

.site-footer h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: -44px;
}

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

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: var(--transition);
  font-size: 0.75rem;
  color: var(--green-mid);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

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

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

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

.footer-contact a:hover {
  color: var(--green-mid);
}

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

.footer-bottom strong {
  color: var(--green-mid);
}

.footer-bottom i {
  color: #e74c3c;
  margin: 0 2px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(26, 122, 60, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

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

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

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

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up.visible {
  animation-play-state: running;
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 991px) {
  .section-pad {
    padding: 64px 0;
  }

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

  .slide-content {
    padding: 0 50px 0 50px;
  }
}

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

  .about-img-wrap {
    padding-bottom: 30px;
    padding-right: 30px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

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

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

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









/* Floating Icons */
.floating-icons{
position:fixed;
bottom:90px; /* Pehle 20px tha ab upar ho gaya */
right:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}
.floating-icons1{
position:fixed;
bottom:90px; /* Pehle 20px tha ab upar ho gaya */
left:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}
.floating-icons1 a{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
transition:0.3s;
}
.floating-icons a{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
transition:0.3s;
}

.call-float{
background:#0d6efd;
}

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

.floating-icons a:hover{
transform:scale(1.1);
}
@media(max-width:768px)
{
	.mb-ds-nn{
		display:none!important
	}
	
}
@media(max-width:600px)
{
	.cu-mb-fnt-12{
		font-size:12px!important;
	}
	#about
	{
		width:95%
	}
	#contact{
		width:95%
	}
}