/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  border-bottom: #000 5px solid;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;  
  padding-left: 20px;

}


.hero-content {
  background: rgba(245, 231, 231, 0);
  padding: 28px 36px;
  border-radius: 12px;
  max-width: 500px;    
}


.hero-content h1 {
  font-size: 40px;
  margin-bottom: 12px;
  color: #fffdfd;
  white-space: nowrap;
  text-shadow:
    -1px -1px 0 rgba(0,0,0,0.6),
     1px -1px 0 rgba(0,0,0,0.6),
    -1px  1px 0 rgba(0,0,0,0.6),
     1px  1px 0 rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 24px;
  color: #fffcfc;
  text-shadow:
    -1px -1px 0 rgba(0,0,0,0.6),
     1px -1px 0 rgba(0,0,0,0.6),
    -1px  1px 0 rgba(0,0,0,0.6),
     1px  1px 0 rgba(0,0,0,0.6);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  font-size: 20px;
  text-shadow:
    -1px -1px 0 rgba(0,0,0,0.6),
     1px -1px 0 rgba(0,0,0,0.6),
    -1px  1px 0 rgba(0,0,0,0.6),
     1px  1px 0 rgba(0,0,0,0.6);
}


/* ================= WHO WE ARE ================= */

.who-we-are {
  padding: 80px 0;
  background-color: #ffffff;
}

.who-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.who-text {
  flex: 1;
}

.who-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #222;
}

.who-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.who-image {
  flex: 1;
}

.who-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}


/* ================= VALUES / MISSION ================= */

.values-section {
  padding: 90px 0;
  background-color: #f6f5ef;
}

.values-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.values-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.values-left .mv-card {
  transform: translateY(-25px);
}

.mv-card {
  background-color: #ffffff;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.mv-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #000;
}

.mv-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

.values-heading {
  font-size: 30px;
  margin-bottom: 28px;
  color: #222;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-card {
  background-color: #daadad;
  padding: 40px;
  border-radius: 26px;
  font-size: 25px;
  font-weight: 700;
  color: #000;
  box-shadow: 8px 8px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}



/* ================= FINAL CTA ================= */
.final-cta {
  width: 100%;
  background-color: #7a3f2b; /* ✅ Home CTA brown */
  padding: 28px 0;
}

/* MAIN FLEX WRAPPER */
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;

  display: flex;
  align-items: center;          /* 🔑 vertical center */
  justify-content: space-between;
  gap: 32px;
}

/* TEXT BLOCK */
.final-cta h2 {
  font-size: 28px;
  color: #ffffff;               /* ✅ white text */
  margin: 0;
  line-height: 1.3;
  padding-left: 0;              /* ❌ remove random offset */
}

/* CTA BUTTON */
.cta-btn {
  background-color: #8fa75a;    /* ✅ Home CTA green */
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 18px;              /* match Home */
  font-weight: 600;
  white-space: nowrap;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #7b8f3a;
  transform: translateY(-1px);
}


/* ================= HERO BUTTONS (RESTORED) ================= */

.btn-primary {
  padding: 14px 32px;
  background-color: #7b8f3a; /* GREEN */
  color: #ffffff;
  border-radius: 26px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  display: inline-block;
}

.btn-outline {
  padding: 14px 32px;
  border: 2px solid #ff0101; /* RED */
  color: #ffffff;
  background-color: rgba(255, 12, 12, 0.745);
  border-radius: 26px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  display: inline-block;
}


/* ================= RESPONSIVE ================= */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
  .hero-content {
    margin-left: 32px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .who-container,
  .choose-container {
    gap: 40px;
  }

  .values-container {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero {
    height: 75vh;
  }

  .hero-overlay {
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
  }

  .hero-content {
    margin: 0;
    padding: 28px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
    white-space: normal; /* 🔑 IMPORTANT FIX */
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .who-container,
  .choose-container {
    flex-direction: column;
    text-align: center;
  }

  .choose-list li {
    text-align: left;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .hero-content {
    padding: 22px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 20px;
  }
}

/* ===============================
   BROCHURE CTA STRIP (FULL WIDTH)
   =============================== */

.brochure-strip {
  background-color: #7b8f3a;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 15px 0;
}

.brochure-strip .choose-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BUTTON */
.brochure-strip .cta-btn {
  background-color: #ffffff;
  color: #7b8f3a;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.brochure-strip .cta-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 600px) {
  .brochure-strip {
    padding: 50px 20px;
  }

  .brochure-strip .cta-btn {
    font-size: 18px;
    padding: 14px 32px;
  }
}

/* ================= ABOUT SERVICE CAROUSEL (TIGHT VERSION) ================= */

.about-services-carousel {
  padding: 40px 0;              /* ⬅️ pehle 70px tha */
  background: #ffffff;
}

/* MAIN HEADING (Corporate AV etc.) */
.carousel-heading {
  font-size: 26px;              /* ⬅️ reduced */
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;          /* ⬅️ less gap */
}

/* WRAPPER */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 22px;                    /* ⬅️ slightly tighter */
  width: max-content;
  animation: aboutCarousel 22s linear infinite;
}

/* CARD */
.carousel-card {
  min-width: 240px;             /* ✅ SAME WIDTH */
  height: 180px;                /* ✅ SAME HEIGHT */
  background: #fdfdfd;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  color: #000;
  border: 2px solid #e0e0e0;

  display: flex;                /* 🔑 equal sizing */
  flex-direction: column;
  justify-content: space-between;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* IMAGE */
.carousel-card img {
  width: 100%;
  height: 150px;                /* ✅ fixed height */
  object-fit: cover;            /* 🔥 fill without stretch */
  border-radius: 14px;
}

/* TITLE */
.carousel-card span {
  font-size: 16px;              /* ⬅️ slightly smaller */
  font-weight: 600;
  margin-top: 10px;
}

/* HOVER */
.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  border-color: #7b8f3a;
}

/* ANIMATION */
@keyframes aboutCarousel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .carousel-heading {
    font-size: 22px;
  }

  .carousel-card {
    min-width: 210px;
    height: 240px;
  }

  .carousel-card img {
    height: 135px;
  }
}
