/* ==========================================================================
   Escalent Labels Pvt. Ltd. — main stylesheet
   Brand palette derived from logo: blue -> green gradient
   ========================================================================== */

:root {
  --el-blue: #1447a8;
  --el-blue-dark: #0d2f6e;
  --el-green: #1c8a3e;
  --el-green-dark: #145f2b;
  --el-gray-900: #1a1d21;
  --el-gray-700: #4a4f57;
  --el-gray-100: #f4f7f6;
  --el-white: #ffffff;
  --el-gradient: linear-gradient(135deg, var(--el-blue) 0%, var(--el-green) 100%);
  --el-radius: 0.9rem;
  --el-shadow: 0 10px 30px rgba(20, 71, 168, 0.12);
}
.footer-social{
    display: none;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--el-gray-900);
  background-color: var(--el-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

.text-el-blue { color: var(--el-blue) !important; }
.text-el-green { color: var(--el-green) !important; }
.bg-el-gray { background-color: var(--el-gray-100); }

.btn-el-primary {
  background: var(--el-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-el-primary:hover,
.btn-el-primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--el-shadow);
  color: #fff;
}

.btn-el-outline {
  border: 2px solid var(--el-white);
  color: var(--el-white);
  font-weight: 600;
  padding: 0.65rem 1.7rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.btn-el-outline:hover {
  background: var(--el-white);
  color: var(--el-blue);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--el-blue-dark);
  color: #eaf1ff;
  font-size: 0.85rem;
}
.topbar a { color: #eaf1ff; }
.topbar a:hover { color: var(--el-green); }

/* ---------- Navbar ---------- */
.navbar-el {
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.navbar-el .nav-link {
  font-weight: 600;
  color: var(--el-gray-900);
  margin: 0 0.5rem;
  position: relative;
}
.navbar-el .nav-link.active,
.navbar-el .nav-link:hover {
  color: var(--el-blue);
}
.navbar-el .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--el-gradient);
  border-radius: 3px;
}

.brand-logo { height: 52px; }
.brand-text-blue { color: var(--el-blue); font-weight: 800; }
.brand-text-green { color: var(--el-green); font-weight: 800; }
.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: var(--el-gray-700);
  display: block;
  margin-top: -4px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--el-gradient);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 60%);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
.hero .lead { font-size: 1.15rem; opacity: 0.95; }
.hero-shape {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.page-header {
  background: var(--el-gradient);
  color: #fff;
  padding: 3.2rem 0;
}
.page-header .breadcrumb a { color: #eaf1ff; }
.page-header .breadcrumb-item.active { color: #fff; }

/* ---------- Section spacing ---------- */
.section { padding: 4.5rem 0; }
.section-title-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--el-green);
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.section-divider {
  width: 70px;
  height: 4px;
  background: var(--el-gradient);
  border-radius: 4px;
  margin: 0.6rem 0 1.5rem;
}

/* ---------- Cards ---------- */
.el-card {
  border: 1px solid #eef1f6;
  border-radius: var(--el-radius);
  padding: 2rem 1.6rem;
  height: 100%;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.el-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-shadow);
  border-color: transparent;
}
.el-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--el-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}

.industry-pill {
  border: 1px solid #e3e8ef;
  border-radius: 50px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  height: 100%;
  font-weight: 600;
  transition: all 0.25s ease;
}
.industry-pill:hover {
  background: var(--el-gradient);
  color: #fff;
  border-color: transparent;
}
.industry-pill:hover .el-icon-circle {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.el-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--el-gray-100);
  color: var(--el-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Why choose us ---------- */
.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.feature-num {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--el-gray-100);
  color: var(--el-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ---------- Stats ---------- */
.stat-box { text-align: center; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--el-blue);
}
.stat-num .accent { color: var(--el-green); }
.stat-label { color: var(--el-gray-700); font-weight: 600; }

/* ---------- Keyword / tag cloud (SEO section) ---------- */
.keyword-section {
  background: var(--el-gray-100);
  border-radius: var(--el-radius);
  padding: 2.5rem;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.keyword-tag {
  background: #fff;
  border: 1px solid #e3e8ef;
  color: var(--el-gray-700);
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.keyword-tag:hover {
  background: var(--el-gradient);
  color: #fff;
  border-color: transparent;
}

/* ---------- CTA ---------- */
.cta-strip {
  background: var(--el-gradient);
  color: #fff;
  border-radius: var(--el-radius);
  padding: 2.6rem;
}

/* ---------- Timeline (About) ---------- */
.value-card {
  border-left: 4px solid var(--el-green);
  background: var(--el-gray-100);
  border-radius: 0.6rem;
  padding: 1.4rem 1.5rem;
  height: 100%;
}

.value-card-contact {
  border-left: 4px solid var(--el-green);
  background: var(--el-gray-100);
  border-radius: 0.6rem;
  padding: 1.4rem 1.5rem;
 
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: var(--el-radius);
  padding: 1.8rem;
  height: 100%;
}
.map-wrap {
  border-radius: var(--el-radius);
  overflow: hidden;
  box-shadow: var(--el-shadow);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

.form-control:focus {
  border-color: var(--el-blue);
  box-shadow: 0 0 0 0.2rem rgba(20, 71, 168, 0.15);
}

/* ---------- Footer ---------- */
.footer-el {
  background: var(--el-gray-900);
  color: #c9cdd3;
  padding: 3.5rem 0 0;
}
.footer-el h5 { color: #fff; margin-bottom: 1.1rem; }
.footer-el a { color: #c9cdd3; }
.footer-el a:hover { color: var(--el-green); }
.footer-el .list-unstyled li { margin-bottom: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.footer-social a:hover { background: var(--el-gradient); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.2rem;
  padding: 1.2rem 0;
  font-size: 0.85rem;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--el-gradient);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--el-shadow);
  border: none;
}
.back-to-top.show { display: flex; }

/* ---------- Utility reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 767.98px) {
  .hero { padding: 3.5rem 0 3rem; text-align: center; }
  .section { padding: 3rem 0; }
}

/* ---------- Gallery ---------- */
.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}
.gallery-card {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  box-shadow: var(--el-shadow);
  border-radius: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover .gallery-card,
.gallery-item:focus-visible .gallery-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20, 71, 168, 0.25);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-card img { transform: scale(1.1); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 47, 110, 0.75) 0%, rgba(13, 47, 110, 0) 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-card-overlay,
.gallery-item:focus-visible .gallery-card-overlay { opacity: 1; }
.gallery-cat-badge {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}
.gallery-card-zoom-icon {
  color: #fff;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#galleryLightboxModal .modal-content {
  background: transparent;
  border: none;
}
#galleryLightboxModal img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
#galleryLightboxModal .btn-close {
  background-color: #fff;
  opacity: 0.9;
}
