/* =========================================================
   CORPORATE AV SUB PAGES – STABLE PDF STYLE (FINAL)
   Boardroom / Conference / LED etc.
   ========================================================= */

/* ---------- HERO ---------- */
.service-hero {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  min-height: 85vh;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;     
  padding-left: 80px;
  padding-bottom: 90px;     
}


.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
   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 {
  color: #eeeeee;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 28px;
   text-shadow:
    0 2px 4px rgba(0,0,0,0.55);
}

/* ---------- HERO CTA BUTTON ---------- */
.primary-btn {
  display: inline-block;
  background: #7b8f3a;
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.primary-btn:hover {
  background: #66782f;
  transform: translateY(-2px);
}

/* ---------- OVERVIEW ---------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 50px 80px;
  align-items: center;
}

.overview-text h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.overview-text p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #333333;
}

.overview-image img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: 18px;
}

/* ---------- VERTICAL CONTACT (FIXED & VISIBLE) ---------- */
.vertical-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateX(-13%) rotate(-90deg);
  transform-origin: right center;

  background: #7b8f3a;
  color: #fff;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;

  z-index: 999999;
}




.vertical-contact:hover {
  background: #66782f;
}

/* ---------- FEATURES ---------- */
/* ---------- FEATURES (FINAL FIX – NO CUT ANYWHERE) ---------- */

.features-section {
  padding: 40px 80px;
}

.features-section h2 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  width: 100%;
  max-width: 390px;          /* desktop limit */
  margin: 0 auto;

  box-sizing: border-box;    /* 🔑 important */
  overflow: hidden;          /* 🔑 nothing spills */
}

/* IMAGE */
.feature-card img {
  width: 100%;               /* 🔑 responsive */
  max-width: 100%;           /* 🔑 never overflow */
  height: 220px;
  object-fit: contain;         /* no stretch */
  object-position: center;   /* centered crop */
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

/* TEXT */
.feature-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 20px;
  line-height: 1.6;
  color: #444444;
}

/* ---------- RESPONSIVE ---------- */

/* Large Tablets */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets & Phones */
@media (max-width: 768px) {
  .features-section {
    padding: 50px 24px;
  }

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

  .feature-card {
    max-width: 100%;
    width: 100%;
  }

  .feature-card img {
    height: 200px;
  }

  .features-section h2 {
    font-size: 36px;
  }

  .feature-card p {
    font-size: 18px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .features-section h2 {
    font-size: 28px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 16px;
  }
}


/* ---------- PROCESS ---------- */
.process-section {
  padding: 20px 80px;
  background: #f9f9f9;
}

.process-section h2 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 50px;
}

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

.process-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.process-step img {
  width: 250px;
  height: 250px;
  object-fit: fill;
  margin-bottom: 14px;
}

.process-step h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 20px;
  line-height: 1.6;
  color: #444444;
}

/* ---------- MORE EVENTS ---------- */
.more-events {
  padding: 40px 80px 40px;
}

.more-events h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}

.events-carousel {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.event-card {
  min-width: 250px;
  min-height: 250px;
  background: #e9e5d8;
  border-radius: 26px;
  padding: 28px;
  text-align: center;
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  font-size: 20px;
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* ---------- RESPONSIVE ---------- */

/* Large Tablets */
@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: 1fr;
    padding: 50px 40px;
  }

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

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

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

  .overview-text h2,
  .features-section h2,
  .process-section h2 {
    font-size: 40px;
  }
}

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

  .hero-overlay {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

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

  .overview-grid {
    padding: 40px 24px;
  }

  .overview-text h2 {
    font-size: 32px;
  }

  .overview-text p {
    font-size: 18px;
  }

  .overview-image img {
    height: 260px;
  }

  .features-section,
  .process-section,
  .more-events {
    padding: 60px 24px;
  }

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

  .feature-card {
    width: 100%;
    max-width: 360px;
  }

  .feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

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

  .process-step img {
    width: 200px;
    height: 200px;
  }

  .vertical-contact {
    display: none; /* 🚫 mobile pe annoying hota hai */
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

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

  .primary-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .features-section h2,
  .process-section h2 {
    font-size: 28px;
  }

  .feature-card h3,
  .process-step h4 {
    font-size: 20px;
  }

  .feature-card p,
  .process-step p {
    font-size: 16px;
  }

  .more-events h2 {
    font-size: 28px;
  }
}
