/* ==========================================================================
   Hero Banner & Slider Revolution Custom Aesthetics
   Theme: Ar-Rahman (Wamy Hajj Kafela)
   ========================================================================== */

/* Outer wrapper */
.arh-revslider-wrapper,
.arh-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #0B1713;
  color: #FFFFFF;
}

.arh-banner__track {
  position: relative;
  width: 100%;
  min-height: 640px;
}

/* Slide Base & Transitions */
.arh-banner__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 640px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
  z-index: 1;
  display: flex;
  align-items: center;
}

.arh-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

/* Background Image & Ken Burns Zoom */
.arh-banner__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.arh-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  transition: transform 8s ease-out;
  display: block;
}

.arh-banner__slide.is-active .arh-banner__image {
  transform: scale(1.05);
}

/* Elegant Dark Charcoal & Subtle Vignette Gradient Overlay */
.arh-banner__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 40%, rgba(14, 17, 22, 0.05) 0%, rgba(14, 18, 22, 0.20) 55%, rgba(10, 14, 18, 0.40) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Content Container */
.arh-banner__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

/* ==========================================================================
   SLIDE 1: EXECUTIVE DIRECTOR & WELCOME HERO CARD (LIGHT CHARCOAL FROSTED GLASS)
   ========================================================================== */
.arh-director-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  background: rgba(18, 22, 28, 0.32);
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.8s ease 0.1s;
}

.arh-banner__slide.is-active .arh-director-hero {
  transform: translateY(0);
  opacity: 0.85;
}

.arh-director-hero__main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 740px;
}

/* Welcome Typography */
.arh-director-hero__welcome-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.arh-director-hero__greeting {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #F0EDE6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.arh-director-hero__welcome {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #EDE8DE;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.arh-director-hero__brand {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.85);
}

.arh-director-hero__tagline {
  font-family: "Barlow", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #C8C4B7;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
  margin: 6px 0 16px 0;
  text-transform: uppercase;
}

/* 4 Services Grid */
.arh-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.arh-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.arh-service-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px);
}

.arh-service-card__icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 4px;
}

.arh-service-card__name {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* 3 Assurances Grid */
.arh-assurances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.arh-assurance-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  transition: background 0.25s ease;
}

.arh-assurance-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
}

.arh-assurance-card__icon {
  font-size: 18px;
  line-height: 1.2;
  flex: 0 0 auto;
}

.arh-assurance-card__info {
  display: flex;
  flex-direction: column;
}

.arh-assurance-card__info strong {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #EDE8DE;
  line-height: 1.2;
  margin-bottom: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.arh-assurance-card__info span {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 11.5px;
  color: #C8C4B7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.35;
}

/* Motto Ribbon */
.arh-motto-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(18, 22, 28, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  margin-bottom: 20px;
}

.arh-motto-ribbon__sym {
  color: #E5C058;
  font-size: 14px;
}

.arh-motto-ribbon__text {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* Executive Director Side Card (Right) */
.arh-director-hero__side {
  flex: 0 0 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.arh-director-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 260px;
  padding: 14px;
  background: rgba(18, 22, 28, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.arh-director-card__frame {
  width: 100%;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #101418;
}

.arh-director-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.arh-director-card__badge {
  width: 100%;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(14, 18, 22, 0.85);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.arh-director-card__role {
  display: block;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #E5C058;
  line-height: 1.2;
}

.arh-director-card__org {
  display: block;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #C8C4B7;
}

/* ==========================================================================
   PACKAGE PRO SLIDE CARD (SLIDES 2, 3, 4 - LIGHT CHARCOAL FROSTED GLASS)
   ========================================================================== */
.arh-banner__card {
  max-width: 650px;
  padding: 36px 40px;
  background: rgba(18, 22, 28, 0.32);
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid #C9A227;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 0.8s ease 0.15s;
}

.arh-banner__slide.is-active .arh-banner__card {
  transform: translateY(0);
  opacity: 0.85;
}

.arh-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: #E5C058;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 30px;
  margin-bottom: 14px;
}

.arh-banner__title {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.arh-banner__subtitle {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E5C058;
  margin: 0 0 14px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.arh-banner__desc {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #E6E2D8;
  margin: 0 0 20px 0;
}

.arh-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.arh-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.arh-banner__pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Common Action Buttons */
.arh-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.arh-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.arh-banner__btn--primary {
  background: rgba(201, 162, 39, 0.25);
  color: #FFFFFF !important;
  border: 1.5px solid #C9A227;
  backdrop-filter: blur(8px);
}

.arh-banner__btn--primary:hover {
  background: #C9A227;
  color: #0B1713 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
  text-decoration: none;
}

.arh-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.arh-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.arh-btn-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.arh-banner__btn--primary:hover .arh-btn-arrow {
  transform: translateX(4px);
}

/* Navigation Controls (Arrows) */
.arh-banner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 162, 39, 0.6);
  background: rgba(11, 23, 19, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.arh-banner__nav:hover {
  background: #C9A227;
  border-color: #C9A227;
  color: #0B1713;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.5);
}

.arh-banner__nav--prev {
  left: 20px;
}

.arh-banner__nav--next {
  right: 20px;
}

/* Dots / Indicators */
.arh-banner__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.arh-banner__dot {
  width: 32px;
  height: 6px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arh-banner__dot.is-active {
  background: #C9A227;
  width: 52px;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.7);
}

.arh-banner__nav:focus-visible,
.arh-banner__dot:focus-visible {
  outline: 2px solid #C9A227;
  outline-offset: 3px;
}

/* Responsive Breakpoints */
/* Responsive Breakpoints */
@media (max-width: 1080px) {
  .arh-director-hero {
    flex-direction: column;
    padding: 28px 24px;
  }

  .arh-director-hero__side {
    width: 100%;
    margin-top: 12px;
  }

  .arh-director-card {
    flex-direction: row;
    max-width: 100%;
    width: auto;
    padding: 10px 18px;
    gap: 16px;
  }

  .arh-director-card__frame {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 50%;
  }

  .arh-director-card__badge {
    width: auto;
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .arh-banner__track,
  .arh-banner__slide,
  .arh-banner__image {
    min-height: 520px;
  }

  .arh-director-hero__brand {
    font-size: 32px;
  }

  .arh-director-hero__welcome {
    font-size: 26px;
  }

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

  .arh-assurances-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .arh-banner__content {
    padding: 20px 14px 44px;
    width: 100%;
    box-sizing: border-box;
  }

  .arh-banner__card {
    max-width: 100%;
    width: 100%;
    padding: 24px 18px;
    border-radius: 12px;
    border-left-width: 4px;
    box-sizing: border-box;
  }

  .arh-banner__badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .arh-banner__title {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .arh-banner__subtitle {
    font-size: clamp(15px, 4.5vw, 18px);
    margin-bottom: 10px;
  }

  .arh-banner__desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .arh-banner__pills {
    gap: 6px;
    margin-bottom: 18px;
  }

  .arh-banner__pill {
    font-size: 12px;
    padding: 4px 10px;
  }

  .arh-banner__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .arh-banner__btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .arh-director-hero {
    padding: 18px 14px;
    border-radius: 12px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .arh-director-hero__welcome-wrap {
    flex-wrap: wrap;
    gap: 6px;
  }

  .arh-director-hero__greeting {
    font-size: 14.5px;
  }

  .arh-director-hero__welcome {
    font-size: 20px;
  }

  .arh-director-hero__brand {
    font-size: clamp(22px, 6vw, 28px);
  }

  .arh-director-hero__tagline {
    font-size: 12px;
    margin: 4px 0 12px 0;
  }

  .arh-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }

  .arh-service-card {
    padding: 8px 6px;
  }

  .arh-service-card__name {
    font-size: 12px;
  }

  .arh-assurances-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }

  .arh-assurance-card {
    padding: 8px 10px;
  }

  .arh-motto-ribbon {
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 20px;
  }

  .arh-motto-ribbon__text {
    font-size: 12px;
    text-align: center;
  }

  .arh-banner__nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .arh-banner__nav--prev {
    left: 8px;
  }

  .arh-banner__nav--next {
    right: 8px;
  }

  .arh-banner__dots {
    bottom: 12px;
    gap: 6px;
  }

  .arh-banner__dot {
    width: 20px;
    height: 4px;
  }

  .arh-banner__dot.is-active {
    width: 36px;
  }
}

@media (max-width: 480px) {
  .arh-banner__track,
  .arh-banner__slide,
  .arh-banner__image {
    min-height: 460px;
  }

  .arh-director-card {
    padding: 8px 12px;
    gap: 12px;
  }

  .arh-director-card__frame {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .arh-director-card__role {
    font-size: 13px;
  }

  .arh-director-card__org {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .arh-banner__slide,
  .arh-banner__image,
  .arh-director-hero,
  .arh-banner__card {
    transition: none;
  }
}