/* ===============================
   Modern About Hero
================================ */
.top_menus .aboutHead {
    display: flex;
    padding: 4px 7px;
    background: radial-gradient(circle at 30% 30%, #222222, #1e1d1d 100%);
    color: #ffffff;
    justify-content: space-between;
    opacity: 0.5;
}

.about_hero_modern {
  position: relative;
  padding: 160px 0 140px;
  background: radial-gradient(circle at 30% 30%, #1a1a1a, #0f0f0f 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* ===============================
   Floating Images
================================ */

.float_img {
  position: absolute;
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: floatY 6s ease-in-out infinite;
}

.img_left {
  top: 20%;
  left: 10%;
}

.img_right {
  top: 25%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* ===============================
   Glass Card
================================ */

.about_glass_card {
  position: relative;
  width: 60%;
  padding: 80px 70px;
  border-radius: 32px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 50px 100px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  text-align: center;
  color: #ffffff;

  animation: floatCard 5s ease-in-out infinite;
}

/* Subtle gold glow border */

.about_glass_card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(248,182,0,0.5),
    transparent,
    rgba(248,182,0,0.3)
  );
  z-index: -1;
  opacity: 0.6;
}

/* Floating animation */

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Typography */

.about_glass_card h1 {
  font-size: 48px;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.about_glass_card p {
  font-size: 18px;
  line-height: 1.9;
  color: #dcdcdc;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 992px) {

  .about_glass_card {
    width: 85%;
    padding: 60px 40px;
  }

  .float_img {
    display: none;
  }

  .about_glass_card h1 {
    font-size: 32px;
  }
}


/* ===============================
   Who Section
================================ */

.who_section {
    background: #ffffff;
    padding: 0px 0;
    position: relative;
}

/* Container */

.who_container {
  width: 70%;
  margin: 0 auto;
}

/* Black Glass Card */

.who_content {
  position: relative;
  padding: 90px 80px;
  border-radius: 32px;

  background: linear-gradient(
    145deg,
    #111111,
    #1a1a1a
  );

  color: #ffffff;

  box-shadow:
    0 40px 100px rgba(0,0,0,0.2);

  overflow: hidden;
}

/* Subtle Gold Edge */

.who_content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(
    to bottom,
    #F8B600,
    transparent
  );
}

/* Small label */

.who_label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F8B600;
  display: inline-block;
  margin-bottom: 25px;
}

/* Heading */

.who_content h2 {
  font-size: 44px;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

/* Paragraph */

.who_content p {
  font-size: 18px;
  line-height: 1.9;
  color: #dcdcdc;
  max-width: 800px;
  margin-bottom: 40px;
}

/* Highlight Text */

.who_highlight {
  font-size: 18px;
  font-weight: 600;
  color: #F8B600;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 992px) {

  .who_container {
    width: 88%;
  }

  .who_content {
    padding: 60px 40px;
  }

  .who_content h2 {
    font-size: 32px;
  }

  .who_content p {
    font-size: 16px;
  }
}


/* ===============================
   Our Approach Section
================================ */

.about_values {
    padding: 14px 0;
    background: radial-gradient(circle at 70% 50%, #1a1a1a, #0f0f0f 70%);
    color: #ffffff;
    position: relative;
}

.values_header {
  text-align: center;
  margin-bottom: 80px;
}

.values_header h2 {
  font-size: 44px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.values_header p {
  font-size: 18px;
  color: #cfcfcf;
}

/* Grid */

.values_grid {
  width: 88%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Glass Cards */

.value_card {
  position: relative;
  padding: 60px 50px;
  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 40px 80px rgba(0,0,0,0.4);

  transition: all 0.4s ease;
}

.value_card:hover {
  transform: translateY(-12px);
  border-color: rgba(248,182,0,0.4);
}

/* Heading */

.value_card h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* Text */

.value_card p {
  font-size: 16px;
  line-height: 1.8;
  color: #dcdcdc;
}

/* Responsive */

@media (max-width: 992px) {
  .values_grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Highlight Section (Animated)
================================ */

.about_highlight {
  padding: 60px 0;
  background: radial-gradient(circle at 30% 30%, #1a1a1a, #0f0f0f 70%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight_content {
  position: relative;
  width: 65%;
  padding: 24px 25px;
  border-radius: 36px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 60px 120px rgba(0,0,0,0.6);

  animation: floatHighlight 6s ease-in-out infinite;
}

/* Gold gradient border glow */

.highlight_content::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(248,182,0,0.6),
    transparent,
    rgba(248,182,0,0.4)
  );
  z-index: -1;
  opacity: 0.8;
}

/* Floating animation */

@keyframes floatHighlight {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* Text */

.highlight_content h2 {
  font-size: 44px;
  margin-bottom: 40px;
  letter-spacing: -1px;
  color: #ffffff;
}

/* CTA */

.about_cta_btn {
  padding: 18px 48px;
  border-radius: 50px;
  background: #F8B600;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.about_cta_btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(248,182,0,0.5);
}

/* Responsive */

@media (max-width: 992px) {

  .highlight_content {
    width: 85%;
    padding: 70px 40px;
  }

  .highlight_content h2 {
    font-size: 28px;
  }
}