/* ========================================================================= */
/* PREMIUM 3D LUXURY TEAM PAGE CSS                                           */
/* ========================================================================= */

body {
    background-color: #f8fafc;
}

/* ----------------------------------------- */
/* HERO SECTION (MATCHING ABOUT & SERVICE)   */
/* ----------------------------------------- */
.hero-container-about {
    position: relative;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}

.hero-container-about > *:not(img):not(.hero-background):not(::after) {
    position: relative;
    z-index: 10;
}

.hero-container-about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}

.about-heading {
    z-index: 10;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.about-heading h1 {
    font-family: inherit !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-heading div, .hero-container-about .breadcrumb-nav {
    display: inline-flex; flex-wrap: wrap; justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-heading div a.about-tag-a {
    color: #fcb85e;
    text-decoration: none;
    font-weight: 700;
}

.about-heading div span a.first-home {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.about-heading div span a.first-home:hover {
    color: #fcb85e;
}

.about-heading div span.crumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------- */
/* TEAM GRID SECTION                         */
/* ----------------------------------------- */
.team-container {
    padding: 40px 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Premium 3D Member Card */
.member-box {
    position: relative;
    width: 22%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    background: #ffffff;
    border: 1px solid #ffe8d6;
    border-radius: 24px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 10px 0 rgba(228, 93, 37, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.member-box:hover {
    transform: translateY(-8px);
    border-color: #f97316;
    box-shadow: 
        0 10px 0 #ea580c,
        0 30px 50px rgba(234, 88, 12, 0.2);
}

/* Member Thumbnail with Orange Glow */
.member-thumbnail {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #f58220 0%, #e45d25 50%, #c8550a 100%);
    margin-bottom: 24px;
    transition: transform 0.4s ease;
    padding: 5px;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.15);
}

.member-box:hover .member-thumbnail {
    transform: scale(1.05);
}

.member-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    transition: transform 0.4s ease;
}

.member-box:hover .member-thumbnail img {
    transform: scale(1.02);
}

/* Member Info Text */
.team-pg-degination {
    text-align: center;
    width: 100%;
}

.team-pg-degination h4.team-name {
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    text-transform: capitalize;
    line-height: 1.2;
}

.team-pg-degination h5.team-position {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: #ea580c;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(234, 88, 12, 0.1);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
}

/* RESPONSIVE QUERIES */
@media screen and (max-width: 1200px) {
    .member-box {
        width: 30%;
    }
}

@media screen and (max-width: 992px) {
    .team-container {
        padding: 40px 5%;
        gap: 24px;
    }
    .member-box {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .hero-container-about {
        min-height: 340px;
    }
    .about-heading h1 {
        font-size: 2.5rem !important;
    }
    .team-container {
        padding: 40px 5%;
        flex-direction: column;
        align-items: center;
    }
    .member-box {
        width: 100%;
        max-width: 380px;
    }
}


/* ############## Terms and Condition page css ######################*/

/* ############## Terms and Condition page css ######################*/
.terms-section{
  padding: 0 5%;
  margin-top: 2rem;
  margin-bottom: 5rem;
}
.terms-section h2{
  font-size: 2.5rem;
  font-family: "Roboto Slab";
  text-transform: capitalize;
  color:#000;
  margin-bottom: 2rem;
}
.terms-section h5{
  font-size: 1.5rem;
  font-family: "Roboto Slab";
  text-transform: capitalize;
  color:#000;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.terms-section p{
  font-size: 1rem;
  font-family: "Roboto";
  color:#000;
  line-height: 27px;
  width: 95%;
}
.terms-section ul li {
  font-size:1rem;
}
@media screen and (max-width:576px) {
  .terms-section h2{
    font-size: 2rem;
  }
  .terms-section p{
    font-size: 0.875rem;
    line-height: 24px;
  }
  .terms-section ul li {
    font-size: 0.875rem;
  }
}







.team-eyebrow {
  text-align: center;
  color: #d81b8f;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 48px;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 20px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.leader-box {
  text-align: center;
  padding: 28px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f1d9ea;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 47, 247, 0.14);
}

.leader-thumbnail {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #7b2ff7, #ec1e7b);
}

.leader-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.leader-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.leader-position {
  font-size: 14px;
  font-weight: 600;
  color: #a020a0;
  margin: 0;
}

.spotlight-container {
  max-width: 1200px;
  margin: 40px auto 100px;
  padding: 0 24px;
}

.spotlight-stage {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-card {
  position: absolute;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.7) translateX(0);
  pointer-events: none;
  z-index: 1;
}

.spotlight-card.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateX(0);
  z-index: 10;
  pointer-events: auto;
}

.spotlight-card.is-prev {
  opacity: 0.35;
  filter: blur(3px);
  transform: scale(0.78) translateX(-220px);
  z-index: 5;
}

.spotlight-card.is-next {
  opacity: 0.35;
  filter: blur(3px);
  transform: scale(0.78) translateX(220px);
  z-index: 5;
}

.spotlight-card.is-prev2 {
  opacity: 0.15;
  filter: blur(5px);
  transform: scale(0.6) translateX(-380px);
  z-index: 2;
}

.spotlight-card.is-next2 {
  opacity: 0.15;
  filter: blur(5px);
  transform: scale(0.6) translateX(380px);
  z-index: 2;
}

.spotlight-thumbnail {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #7b2ff7, #ec1e7b);
}

.spotlight-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.spotlight-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.spotlight-position {
  font-size: 14px;
  font-weight: 600;
  color: #a020a0;
  margin: 0;
}

.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.spotlight-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eecdea;
  transition: background 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.spotlight-dots span.active-dot {
  background: linear-gradient(135deg, #7b2ff7, #ec1e7b);
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-card.is-prev2,
  .spotlight-card.is-next2 {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-thumbnail {
    width: 140px;
    height: 140px;
  }
  .spotlight-card.is-prev,
  .spotlight-card.is-next {
    opacity: 0;
  }
}


/* Breadcrumb Mobile Wrap Fix */
@media (max-width: 768px) {
    .about-heading div, .hero-container-about .breadcrumb-nav {
        font-size: 0.75rem !important; /* Smaller font to fit long text */
        padding: 6px 16px !important;
        gap: 4px !important;
        border-radius: 20px !important; /* Ensure it looks like a soft pill even if wrapped */
        line-height: 1.5 !important;
        max-width: 95% !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .about-heading {
        margin: auto !important; /* Override that weird margin: 88px 40px in some files */
        padding: 20px 10px !important;
    }
}


