a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* HERO */

.hero {
  height: 350px;
  background: url('https://indova.in/assets/res/fab/fab_hero.webp') center/cover no-repeat;
  position: relative;
}
.hero-tech {
  background: url('https://indova.in/assets/res/tech/tech_hero.webp') center/cover no-repeat;
}
.hero-contact {
  background: url('https://indova.in/assets/res/contact/contact_hero.webp') center/cover no-repeat;
}
.hero-fashion {
  background: url('https://indova.in/assets/res/fashion/fashion_hero.jpg') center/cover no-repeat;
}
.hero-fashion-1 {
  height: 350px;
  background: url('https://indova.in/assets/res/fashion/premium.jpg') center/cover no-repeat;
}
.hero-fashion-2 {
  height: 750px;
  background: url('https://indova.in/assets/res/fashion/hero.webp') center/cover no-repeat;
}
.hero-fashion-3 {
  height: 750px;
  background: url('https://indova.in/assets/res/fashion/essentials.webp') center/cover no-repeat;
}

.hero-sub {
    font-size: 16px;
}
.hero-title {
    display: inline-block;
    border-bottom: 1px solid #6eafe745;
}
.sub {
    font-size:13px;
    margin-top:30px;
}
.sub span {
    color:#21cb21;
}

/* overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
  max-width: 600px;
  padding:0 20px;
}
/* SECTION */
.section {
  padding: 40px 20px 0;
}
.section:last-child {
  padding-bottom:40px;  
}
.section h2 {
    margin-bottom:10px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7d7d7d;
  opacity: 0.9;
  margin-bottom: 10px;
  font-weight: 600;
}

/* =========================
   HEADER CTA BUTTON
========================= */

.header-link.active {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #d5d5d5;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.header-link.active:hover {

  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
}


/* =========================
   CONTACT STRIP
========================= */

.contact-strip {

  background: #f4f5f7;
  border-bottom: 1px solid #e7e7e7;
}

.contact-strip-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.contact-strip-inner a {

  color: #557595;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-strip-inner a:hover {

  color: #2f2f2f;
}

.divider {

  color: #b8b8b8;
  font-size: 12px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .contact-strip-inner {

    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-cta {

    padding: 9px 14px;
    font-size: 13px;
  }

}

======================================== */

/* ========================================
   SERVICES SECTION
======================================== */

.services-section h2 {

  margin-bottom: 30px;
}

/* GRID */

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

/* CARD */

.service-card {

  background: rgba(255,255,255,0.82);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {

  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
}

/* IMAGE */

.service-image-wrap {

  position: relative;
  overflow: hidden;
}

.service-image {

  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image {

  transform: scale(1.03);
}

/* BODY */

.service-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  position: relative;
}

/* ICON */

.service-icon {
  width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: absolute;
    left: 5px;
    top:15px;
}

/* CONTENT */

.service-content h3 {

  font-size: 18px;

  font-weight: 600;

  color: var(--heading-primary);

  margin-bottom: 8px;

  letter-spacing: -0.02em;
  margin-left: 20px;
}

.service-content p {

  color: var(--text-primary);

  line-height: 1.7;

  font-size: 14px;
}


/* MOBILE */

@media (max-width: 768px) {

  .hero {
    height: 300px;
  }

  .services-grid {

    grid-template-columns: 1fr;
  }

}