/* ABOUT.HTML CSS */

/* ABOUT PAGE HERO */
.about-page-hero {
  position: relative;
  min-height: 620px;
  padding: 120px 20px 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  overflow: hidden;
  background: #02040a;
}

/* BACKGROUND IMAGE */
.about-page-hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.78)),
    linear-gradient(90deg, rgba(2,6,23,0.88), rgba(2,6,23,0.45)),
    url("../images/hero.png") center/cover no-repeat;

  transform: scale(1.04);
  z-index: 1;
}

/* SOFT GLOW */
.about-page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;

  top: 22%;
  left: 50%;
  transform: translateX(-50%);

  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 65%);
  filter: blur(35px);
  z-index: 2;
  pointer-events: none;
}

/* BOTTOM FADE */
.about-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 160px;

  background: linear-gradient(180deg, transparent, #02040a);
  z-index: 2;
  pointer-events: none;
}

/* GLASS CARD */
.about-page-hero-card {
  position: relative;
  z-index: 3;

  width: min(780px, 92%);
  padding: 44px 46px;
  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(212,175,55,0.18);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10);

  animation: aboutHeroFade 0.9s ease both;
}

.about-page-hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

/* BADGE */
.about-page-badge {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

/* TITLE */
.about-page-hero-card h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}

.about-page-hero-card h1 span {
  color: #d4af37;
}

/* BREADCRUMB */
.about-page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;

  color: #aaa;
  font-size: 14px;
}

.about-page-breadcrumb a {
  color: #bfc0c4;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-page-breadcrumb a:hover {
  color: #d4af37;
}

.about-page-breadcrumb span {
  color: #777;
}

.about-page-breadcrumb .active {
  color: #d4af37;
}

/* SUBTITLE */
.about-page-subtitle {
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.7;
}

/* ANIMATION */
@keyframes aboutHeroFade {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-page-hero {
    min-height: 520px;
    padding: 105px 18px 60px;
  }

  .about-page-hero-card {
    width: 100%;
    padding: 32px 22px;
    border-radius: 22px;
  }

  .about-page-hero-card::before {
    inset: 10px;
    border-radius: 17px;
  }

  .about-page-badge {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .about-page-hero-card h1 {
    font-size: 38px;
  }

  .about-page-breadcrumb {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .about-page-subtitle {
    font-size: 13.5px;
  }
}

@media (max-width: 420px) {
  .about-page-hero {
    min-height: 500px;
  }

  .about-page-hero-card h1 {
    font-size: 34px;
  }
}



/* ABOUT PAGE OVERVIEW */
.about-page-overview {
  padding: 95px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-page-overview-wrapper {
  max-width: 1180px;
  margin: auto;
}

.about-page-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 58px;
  align-items: center;
}

/* IMAGE */
.about-page-overview-image {
  position: relative;
  min-height: 390px;
  border-radius: 26px;
  overflow: hidden;

  border: 1px solid rgba(212,175,55,0.16);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.about-page-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: 0.45s ease;
}

.about-page-overview-image:hover img {
  transform: scale(1.06);
}

.about-page-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%),
    radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 40%);
  pointer-events: none;
}

/* CONTENT */
.about-page-overview-content {
  color: #fff;
}

.about-page-section-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 18px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.about-page-overview-content h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.28;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.about-page-overview-content h2 span {
  display: block;
  color: #d4af37;
  margin-top: 8px;
}

.about-page-overview-content p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 650px;
}

/* POINTS */
.about-page-overview-points {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-page-overview-point {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 13px 14px;
  border-radius: 14px;

  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);

  color: #fff;
  font-size: 14px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.about-page-overview-point i {
  color: #d4af37;
  font-size: 15px;
}

.about-page-overview-point:hover {
  background: rgba(212,175,55,0.09);
  border-color: rgba(212,175,55,0.28);
  transform: translateY(-3px);
}

/* BUTTON */
.about-page-gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 30px;
  padding: 13px 30px;

  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #050505;

  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;

  transition: all 0.3s ease;
}

.about-page-gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(212,175,55,0.32);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-page-overview {
    padding: 70px 18px;
  }

  .about-page-overview-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-page-overview-image,
  .about-page-overview-image img {
    min-height: 260px;
  }

  .about-page-overview-content h2 {
    font-size: 28px;
  }

  .about-page-overview-content p {
    font-size: 14px;
  }

  .about-page-overview-points {
    grid-template-columns: 1fr;
  }

  .about-page-gold-btn {
    width: 100%;
  }
}








/* ABOUT PAGE APPROACH */
.about-page-approach {
  padding: 95px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-page-approach-wrapper {
  max-width: 1180px;
  margin: auto;
}

.about-page-approach-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-page-approach-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.about-page-approach-header h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 800;
}

.about-page-approach-header h2 span {
  color: #d4af37;
}

.about-page-approach-header p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.8;
}

/* STEPS */
.about-page-steps {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-page-steps::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 10%;
  right: 10%;

  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,0.45),
    transparent
  );

  z-index: 0;
}

.about-page-step {
  position: relative;
  z-index: 2;
  overflow: hidden;

  min-height: 260px;
  padding: 34px 24px;

  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.025)
  );

  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);

  text-align: center;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.35s ease;
}

.about-page-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;

  background: radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 44%);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.about-page-step:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.34);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.40),
    0 0 28px rgba(212,175,55,0.10);
}

.about-page-step:hover::before {
  opacity: 1;
}

.about-page-step-number {
  position: absolute;
  top: 18px;
  right: 22px;

  color: rgba(212,175,55,0.18);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.about-page-step-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 24px;

  transition: all 0.35s ease;
}

.about-page-step:hover .about-page-step-icon {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(212,175,55,0.18);
}

.about-page-step h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
}

.about-page-step p {
  color: #b9b9b9;
  font-size: 14px;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 992px) {
  .about-page-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-page-approach {
    padding: 70px 18px;
  }

  .about-page-approach-header {
    margin-bottom: 36px;
  }

  .about-page-approach-header h2 {
    font-size: 28px;
  }

  .about-page-approach-header p {
    font-size: 14px;
  }

  .about-page-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page-step {
    min-height: auto;
    padding: 28px 22px;
    text-align: left;
  }

  .about-page-step-icon {
    margin: 0 0 20px;
  }

  .about-page-step-number {
    font-size: 34px;
  }
}






/* ABOUT PAGE CLIENTS */
.about-page-clients {
  padding: 90px 20px 100px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-page-clients-wrapper {
  max-width: 1180px;
  margin: auto;
}

.about-page-clients-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-page-clients-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.about-page-clients-header h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 800;
}

.about-page-clients-header h2 span {
  color: #d4af37;
}

.about-page-clients-header p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.8;
}

/* SLIDER */
.about-page-clients-slider {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
}

.about-page-clients-slider::before,
.about-page-clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 130px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.about-page-clients-slider::before {
  left: 0;
  background: linear-gradient(90deg, #03050b, transparent);
}

.about-page-clients-slider::after {
  right: 0;
  background: linear-gradient(270deg, #03050b, transparent);
}

.about-page-clients-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: aboutClientScroll 34s linear infinite;
}

.about-page-clients-slider:hover .about-page-clients-track {
  animation-play-state: paused;
}

/* LOGO CARD */
.about-page-client-logo {
  width: 170px;
  height: 105px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;
  border-radius: 20px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.025)
  );

  border: 1px solid rgba(212,175,55,0.13);
  backdrop-filter: blur(14px);

  box-shadow:
    0 14px 35px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

.about-page-client-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.15);
  opacity: 0.78;
  transition: all 0.3s ease;
}

.about-page-client-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.34);
  box-shadow: 0 18px 45px rgba(212,175,55,0.12);
}

.about-page-client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@keyframes aboutClientScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-page-clients {
    padding: 70px 18px 80px;
  }

  .about-page-clients-header {
    margin-bottom: 32px;
  }

  .about-page-clients-header h2 {
    font-size: 28px;
  }

  .about-page-clients-header p {
    font-size: 14px;
  }

  .about-page-clients-slider::before,
  .about-page-clients-slider::after {
    width: 45px;
  }

  .about-page-clients-track {
    gap: 14px;
    animation-duration: 26s;
  }

  .about-page-client-logo {
    width: 135px;
    height: 88px;
    padding: 14px;
    border-radius: 16px;
  }

  .about-page-client-logo img {
    max-height: 56px;
  }
}














/* TEAM PAGE CSSS START  */
/* hero section css  */


/* TEAM PAGE HERO */
.team-page-hero {
  position: relative;
  min-height: 620px;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #02040a;
}

.team-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.78)),
    linear-gradient(90deg, rgba(2,6,23,0.88), rgba(2,6,23,0.45)),
    url("../images/hero.png") center/cover no-repeat;
  transform: scale(1.04);
  z-index: 1;
}

.team-page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 65%);
  filter: blur(35px);
  z-index: 2;
  pointer-events: none;
}

.team-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, #02040a);
  z-index: 2;
  pointer-events: none;
}

.team-page-hero-card {
  position: relative;
  z-index: 3;
  width: min(780px, 92%);
  padding: 44px 46px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.team-page-badge {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;
  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.team-page-hero-card h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
}

.team-page-hero-card h1 span {
  color: #d4af37;
}

.team-page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #aaa;
  font-size: 14px;
}

.team-page-breadcrumb a {
  color: #bfc0c4;
  text-decoration: none;
}

.team-page-breadcrumb a:hover,
.team-page-breadcrumb .active {
  color: #d4af37;
}

.team-page-subtitle {
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-page-hero {
    min-height: 520px;
    padding: 105px 18px 60px;
  }

  .team-page-hero-card {
    width: 100%;
    padding: 32px 22px;
    border-radius: 22px;
  }

  .team-page-hero-card h1 {
    font-size: 38px;
  }

  .team-page-breadcrumb {
    font-size: 13px;
    flex-wrap: wrap;
  }

  .team-page-subtitle {
    font-size: 13.5px;
  }
}



















/* TEAM SECTION */
.team-section {
  padding: 95px 20px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-header {
  max-width: 760px;
  margin: 0 auto 56px;
}

.team-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.team-header h2 {
  font-size: clamp(30px, 3vw, 42px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.team-header h2 span {
  color: #d4af37;
}

.team-header p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.8;
}

/* GRID */
.team-grid {
  max-width: 900px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* CARD */
.team-card {
  position: relative;
  overflow: hidden;

  padding: 38px 26px 32px;
  border-radius: 24px;

  cursor: pointer;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.025)
  );

  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(212,175,55,0.18),
    transparent 45%
  );

  opacity: 0;
  transition: 0.35s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;

  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.55;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.32);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.42),
    0 0 28px rgba(212,175,55,0.10);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card * {
  position: relative;
  z-index: 2;
}

/* IMAGE */
.team-img {
  width: 145px;
  height: 145px;
  margin: 0 auto 22px;

  border-radius: 50%;
  overflow: hidden;

  border: 3px solid rgba(212,175,55,0.85);
  box-shadow: 0 0 28px rgba(212,175,55,0.16);

  transition: all 0.35s ease;
}

.team-card:hover .team-img {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 34px rgba(212,175,55,0.28);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.team-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 7px;
  font-weight: 800;
}

.team-card > span {
  color: #d4af37;
  font-size: 13.5px;
  font-weight: 500;
}

/* SOCIALS */
.team-socials {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  text-decoration: none;
}

.team-socials i {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.18);

  color: #d4af37;
  font-size: 14px;

  transition: all 0.3s ease;
}

.team-socials i:hover {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #050505;
  transform: translateY(-3px);
}

/* TABLET */
@media (max-width: 992px) {
  .team-grid {
    max-width: 700px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .team-section {
    padding: 70px 18px;
  }

  .team-header {
    margin-bottom: 36px;
  }

  .team-header h2 {
    font-size: 28px;
  }

  .team-header p {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 32px 22px 28px;
    border-radius: 22px;
  }

  .team-img {
    width: 132px;
    height: 132px;
  }
}

/* TEAM MODAL */
.team-modal {
  position: fixed;
  inset: 0;
  padding: 22px;

  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 99999;
}

.team-modal.show {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;

  padding: 34px 34px 30px;
  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.09),
    rgba(255,255,255,0.035)
  );

  border: 1px solid rgba(212,175,55,0.24);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  text-align: center;
  color: #fff;

  box-shadow:
    0 30px 90px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.08);

  position: relative;
  animation: teamModalFade 0.35s ease;
}

.modal-card::-webkit-scrollbar {
  width: 6px;
}

.modal-card::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.42);
  border-radius: 20px;
}

.modal-img {
  width: 126px;
  height: 126px;
  margin: 0 auto 18px;

  border-radius: 22px;
  overflow: hidden;

  border: 2px solid rgba(212,175,55,0.9);
  box-shadow: 0 0 28px rgba(212,175,55,0.18);
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-card h2 {
  color: #d4af37;
  font-size: 26px;
  margin-bottom: 6px;
  font-weight: 800;
}

.modal-role {
  color: #e5e5e5;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-info {
  max-width: 430px;
  margin: 0 auto 18px;
}

.modal-info p {
  color: #bfc0c4;
  font-size: 14px;
  line-height: 1.75;
}

.modal-section {
  margin-top: 18px;
}

.modal-section h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 15px;
}

.modal-section p {
  color: #bfc0c4;
  font-size: 14px;
  line-height: 1.7;
}

.modal-thought {
  margin-top: 24px;
  padding: 18px 20px;

  border-radius: 16px;
  border-left: 3px solid #d4af37;

  background: rgba(255,255,255,0.055);

  color: #f0f0f0;
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 24px;
  cursor: pointer;
  color: #fff;

  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(212,175,55,0.12);
  color: #d4af37;
  transform: rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}

@keyframes teamModalFade {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .team-modal {
    padding: 16px;
    align-items: center;
  }

  .modal-card {
    max-height: 86vh;
    padding: 30px 22px 26px;
    border-radius: 22px;
  }

  .modal-img {
    width: 112px;
    height: 112px;
    border-radius: 18px;
  }

  .modal-card h2 {
    font-size: 22px;
  }

  .modal-info p,
  .modal-section p,
  .modal-thought {
    font-size: 13.5px;
  }
}

 




/* EXPERTISE SECTION */
.expertise-section {
  padding: 95px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: 10%;
  left: -120px;
  background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}

/* HEADER */
.expertise-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.expertise-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.expertise-header h2 {
  font-size: clamp(30px, 3vw, 42px);
  color: #fff;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 14px;
}

.expertise-header h2 span {
  color: #d4af37;
}

.expertise-header p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.8;
}

/* GRID */
.expertise-grid {
  max-width: 1120px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  position: relative;
  z-index: 2;
}

/* CARD */
.expertise-card {
  position: relative;
  overflow: hidden;

  min-height: 245px;
  padding: 34px 24px;

  border-radius: 24px;
  text-align: center;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.025)
  );

  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: all 0.35s ease;
}

/* ANIMATED SHINE */
.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(212,175,55,0.18),
    transparent
  );

  transform: translateX(-120%);
  transition: 0.7s ease;
}

.expertise-card:hover::before {
  transform: translateX(120%);
}

/* GOLD GLOW */
.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 45%);
  opacity: 0;
  transition: 0.35s ease;
}

.expertise-card:hover::after {
  opacity: 1;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.34);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.42),
    0 0 28px rgba(212,175,55,0.10);
}

.expertise-card * {
  position: relative;
  z-index: 2;
}

/* ICON */
.expertise-card i {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 25px;

  transition: all 0.35s ease;
}

.expertise-card:hover i {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 0 24px rgba(212,175,55,0.18);
}

/* TITLE */
.expertise-card h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 800;
}

/* TEXT */
.expertise-card p {
  color: #b9b9b9;
  font-size: 14px;
  line-height: 1.75;
}

/* TABLET */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .expertise-section {
    padding: 70px 18px;
  }

  .expertise-header {
    margin-bottom: 36px;
  }

  .expertise-header h2 {
    font-size: 28px;
  }

  .expertise-header p {
    font-size: 14px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .expertise-card {
    min-height: auto;
    padding: 30px 22px;
  }
}








/* WHY CHOOSE US  PAGE SECTION */
/* hero section css  */

/* WHY CHOOSE US HERO */
.why-page-hero {
  position: relative;
  min-height: 620px;
  padding: 120px 20px 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  overflow: hidden;
  background: #02040a;
}

.why-page-hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.78)),
    linear-gradient(90deg, rgba(2,6,23,0.88), rgba(2,6,23,0.45)),
    url("../images/hero.png") center/cover no-repeat;

  transform: scale(1.04);
  z-index: 1;
}

.why-page-hero::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: 22%;
  left: 50%;
  transform: translateX(-50%);

  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 65%);
  filter: blur(35px);

  z-index: 2;
  pointer-events: none;
}

.why-page-hero::after {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 160px;

  background: linear-gradient(180deg, transparent, #02040a);

  z-index: 2;
  pointer-events: none;
}

.why-page-hero-card {
  position: relative;
  z-index: 3;

  width: min(820px, 92%);
  padding: 44px 46px;

  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(212,175,55,0.18);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10);

  animation: whyHeroFade 0.9s ease both;
}

.why-page-hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.why-page-badge {
  display: inline-flex;

  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;

  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.why-page-hero-card h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}

.why-page-hero-card h1 span {
  color: #d4af37;
}

.why-page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;

  color: #aaa;
  font-size: 14px;
}

.why-page-breadcrumb a {
  color: #bfc0c4;
  text-decoration: none;
  transition: 0.3s ease;
}

.why-page-breadcrumb a:hover {
  color: #d4af37;
}

.why-page-breadcrumb span {
  color: #777;
}

.why-page-breadcrumb .active {
  color: #d4af37;
}

.why-page-subtitle {
  max-width: 620px;
  margin: auto;

  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.7;
}

@keyframes whyHeroFade {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .why-page-hero {
    min-height: 520px;
    padding: 105px 18px 60px;
  }

  .why-page-hero-card {
    width: 100%;
    padding: 32px 22px;
    border-radius: 22px;
  }

  .why-page-hero-card::before {
    inset: 10px;
    border-radius: 17px;
  }

  .why-page-badge {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .why-page-hero-card h1 {
    font-size: 38px;
  }

  .why-page-breadcrumb {
    font-size: 13px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .why-page-subtitle {
    font-size: 13.5px;
  }
}

@media (max-width: 420px) {
  .why-page-hero {
    min-height: 500px;
  }

  .why-page-hero-card h1 {
    font-size: 34px;
  }
}











/* WHY CHOOSE US SECTION */
.why-page-section {
  padding: 95px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.why-page-container {
  max-width: 1180px;
  margin: auto;
}

/* HEADER */
.why-page-header {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.why-page-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.why-page-header h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-page-header h2 span {
  color: #d4af37;
}

.why-page-header p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.8;
}

/* TIMELINE */
.why-page-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-page-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;

  width: 1px;
  transform: translateX(-50%);

  background: linear-gradient(
    180deg,
    transparent,
    rgba(212,175,55,0.45),
    transparent
  );
}

/* ITEM */
.why-page-item {
  position: relative;
  display: flex;
  gap: 18px;

  padding: 24px;
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.025)
  );

  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);

  overflow: hidden;
  transition: all 0.35s ease;
}

.why-page-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(212,175,55,0.16),
    transparent
  );

  transform: translateX(-120%);
  transition: 0.7s ease;
}

.why-page-item:hover::before {
  transform: translateX(120%);
}

.why-page-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.34);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.42),
    0 0 28px rgba(212,175,55,0.10);
}

/* ICON */
.why-page-icon {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;
  min-width: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 24px;

  transition: all 0.35s ease;
}

.why-page-item:hover .why-page-icon {
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 0 24px rgba(212,175,55,0.18);
}

/* CONTENT */
.why-page-content {
  position: relative;
  z-index: 2;
}

.why-page-content span {
  display: inline-block;
  color: rgba(212,175,55,0.75);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.why-page-content h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 9px;
}

.why-page-content p {
  color: #b9b9b9;
  font-size: 14px;
  line-height: 1.75;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-page-section {
    padding: 70px 18px;
  }

  .why-page-header {
    margin-bottom: 36px;
  }

  .why-page-header h2 {
    font-size: 28px;
  }

  .why-page-header p {
    font-size: 14px;
  }

  .why-page-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-page-timeline::before {
    left: 29px;
  }

  .why-page-item {
    padding: 22px;
    border-radius: 22px;
  }

  .why-page-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 21px;
  }

  .why-page-content h3 {
    font-size: 17px;
  }

  .why-page-content p {
    font-size: 13.5px;
  }
}



/* WHY PAGE STATS */
.why-stats-section {
  padding: 90px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.why-stats-container {
  max-width: 1180px;
  margin: auto;
}

.why-stats-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.why-stats-tag {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 16px;

  border-radius: 30px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);

  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.why-stats-header h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}

.why-stats-header h2 span {
  color: #d4af37;
}

.why-stats-header p {
  color: #bfc0c4;
  font-size: 15px;
  line-height: 1.8;
}

/* BAR */
.why-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-radius: 28px;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.025)
  );

  border: 1px solid rgba(212,175,55,0.16);
  backdrop-filter: blur(18px);

  box-shadow:
    0 24px 70px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.why-stat-item {
  position: relative;
  padding: 42px 20px;
  text-align: center;
  overflow: hidden;
}

.why-stat-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.why-stat-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 48%);
  opacity: 0;
  transition: 0.35s ease;
}

.why-stat-item:hover::before {
  opacity: 1;
}

.why-stat-number {
  position: relative;
  z-index: 2;

  color: #d4af37;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.why-stat-item p {
  position: relative;
  z-index: 2;

  color: #bfc0c4;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-stats-section {
    padding: 70px 18px;
  }

  .why-stats-header {
    margin-bottom: 34px;
  }

  .why-stats-header h2 {
    font-size: 28px;
  }

  .why-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 22px;
  }

  .why-stat-item {
    padding: 30px 14px;
  }

  .why-stat-item:not(:last-child) {
    border-right: none;
  }

  .why-stat-item:nth-child(1),
  .why-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-stat-number {
    font-size: 32px;
  }

  .why-stat-item p {
    font-size: 13px;
  }
}
