* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* -----------------------------------------------------------
           ROOT VARIABLES - ULTRA LUXURY THEME
        ----------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-body: #020202;
  /* Pure Dark */
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Brand Colors (Vibrant Industrial) */
  --primary: #ffd700;
  /* Gold Yellow */
  --primary-glow: rgba(255, 215, 0, 0.5);
  --secondary: #ff4500;
  /* Molten Orange */

  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #aaaaaa;

  /* Fonts */
  --font-heading: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  /* Animation */
  --ease-lux: cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

html,
body {
  overflow-x: hidden;
}

/* -----------------------------------------------------------
           1. HERO HEADER STYLE
        ----------------------------------------------------------- */
.rv-about-hero {
  min-height: 87vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #050505;
  overflow: hidden;
}

.rv-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.742), #020202a6),
    url("../images/banner/about-ban.jpeg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  z-index: 0;
  transform: scale(1.1);
  /* filter: grayscale(100%) contrast(1.2); */
  transition: all 1s ease;
}

.rv-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  opacity: 0.2;
  z-index: 1;
}

.rv-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.rv-hero-sub {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: rv-fade-up 0.8s ease forwards 0.5s;
}

.rv-hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: rv-fade-up 0.8s ease forwards 0.8s;
}

.rv-hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  position: relative;
}

.rv-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0;
  animation: rv-fade-in 1s ease forwards 1.5s;
}

.rv-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.rv-wheel {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: rv-scroll 1.5s infinite;
}

@keyframes rv-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rv-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes rv-scroll {
  0% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

/* -----------------------------------------------------------
           2. WHO WE ARE (INTRO SECTION)
        ----------------------------------------------------------- */
.rv-intro-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  position: relative;
}

.rv-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rv-intro-img-box {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
}

.rv-intro-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.rv-intro-img-box:hover .rv-intro-img {
  filter: grayscale(0%);
}

.rv-intro-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  z-index: 1;
  transform: translate(-20px, -20px);
  transition: all 0.5s ease;
}

.rv-intro-img-box:hover .rv-intro-frame {
  transform: translate(0, 0);
}

.rv-intro-badge {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: #000;
  border: 1px solid var(--primary);
  padding: 30px;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.rv-badge-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  display: block;
}

.rv-badge-text {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rv-intro-sub {
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.rv-intro-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.rv-intro-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.rv-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.rv-feat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rv-feat-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.rv-feat-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.rv-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.rv-intro-btn:hover {
  background: var(--primary);
  color: #000;
}

/* -----------------------------------------------------------
           3. VISION & MISSION STYLE
        ----------------------------------------------------------- */
.rv-vm-section {
  padding: 100px 0;
  background-color: var(--bg-body);
  position: relative;
}

.rv-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.rv-vm-card {
  background: var(--vm-glass-bg);
  border: 1px solid #ffffff57;
  padding: 60px 50px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.rv-vm-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  background: rgba(30, 30, 30, 0.8);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.rv-vm-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.rv-vm-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

.rv-vm-card:hover .rv-vm-icon-box {
  background: var(--primary);
  transform: scale(1.1);
}

.rv-vm-card:hover .rv-vm-icon {
  color: #000;
}

.rv-vm-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.rv-vm-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 300;
}

.rv-vm-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color 0.3s;
}

.rv-vm-card:hover .rv-vm-num {
  color: rgba(255, 215, 0, 0.1);
}

/* -----------------------------------------------------------
           4. JOURNEY / TIMELINE STYLE
        ----------------------------------------------------------- */
.rv-journey-section {
  padding: 100px 0;
  /* background: #050505; */
  background: url(../images/backgrounds/award-bg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.rv-journey-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.rv-journey-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.rv-journey-sub {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.rv-journey-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  font-weight: 800;
}

.rv-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.rv-timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary),
    transparent
  );
  transform: translateX(-50%);
}

.rv-timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.rv-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.rv-timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #000;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.rv-timeline-item:hover .rv-timeline-year {
  transform: translateX(-50%) scale(1.1);
  background: var(--primary);
  color: #000;
}

.rv-timeline-content {
  width: 42%;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s ease;
}

.rv-timeline-item:hover .rv-timeline-content {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rv-timeline-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.rv-timeline-item:nth-child(odd) .rv-timeline-content::after {
  right: -20px;
}

.rv-timeline-item:nth-child(even) .rv-timeline-content::after {
  left: -20px;
}

.rv-tl-head {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.rv-tl-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -----------------------------------------------------------
           5. LEADERSHIP / DIRECTOR SECTION
        ----------------------------------------------------------- */
.rv-director-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #020202 50%, #0a0a0a 50%);
  position: relative;
}

.rv-dir-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.rv-dir-img-box {
  flex: 0.7;
  /* Reduced size of image column */
  position: relative;
  max-width: 400px;
  /* Constrain image width */
}

.rv-dir-img {
  width: 100%;
  border-radius: 4px;
  /* filter: grayscale(100%); */
  transition: all 0.5s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.rv-dir-img:hover {
  filter: grayscale(0%);
}

/* Border offset for Director */
.rv-dir-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  z-index: -1;
  transition: all 0.5s ease;
}

.rv-dir-img-box:hover .rv-dir-frame {
  top: 10px;
  left: 10px;
}

.rv-dir-content {
  flex: 1.3;
  /* Increased space for content */
}

.rv-dir-quote-icon {
  font-size: 4rem;
  color: var(--primary);
  font-family: serif;
  line-height: 1;
  margin-bottom: 30px;
  opacity: 0.8;
}

.rv-dir-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 40px;
  font-weight: 400;
}

.rv-dir-name {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}

.rv-dir-role {
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* -----------------------------------------------------------
           6. CERTIFICATIONS SECTION
        ----------------------------------------------------------- */
.rv-cert-section {
  padding: 120px 0;
  background-color: var(--bg-body);
  text-align: center;
}

.rv-cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.rv-cert-card {
  width: 220px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.rv-cert-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rv-cert-img {
  max-width: 80%;
  max-height: 80%;
  /* filter: grayscale(100%) brightness(2); */
  /* Make logos white-ish */
  transition: all 0.3s ease;
  opacity: 0.7;
}

.rv-cert-card:hover .rv-cert-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .rv-vm-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rv-hero-title {
    font-size: 3rem;
  }

  .rv-about-hero {
    min-height: 60vh;
  }

  /* Intro Section Responsive */
  .rv-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rv-intro-img {
    height: 400px;
  }

  .rv-intro-badge {
    right: 0;
    padding: 20px;
  }

  .rv-badge-num {
    font-size: 2.5rem;
  }

  /* Timeline Mobile */
  .rv-timeline-wrapper::before {
    left: 30px;
  }

  .rv-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
    margin-bottom: 60px;
  }

  .rv-timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }

  .rv-timeline-year {
    left: 30px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .rv-timeline-content {
    width: 100%;
  }

  .rv-timeline-content::after {
    display: none;
  }

  /* Director Mobile */
  .rv-director-section {
    background: #020202;
  }

  .rv-dir-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .rv-dir-img-box {
    max-width: 100%;
    flex: 1;
  }

  .rv-dir-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 500px) {
  .rv-hero-title {
    font-size: 2.6rem;
  }
  .rv-journey-title {
    font-size: 2.4rem !important;
    font-weight: 600 !important;
  }
}
@media (max-width: 380px) {
  .rv-hero-title {
    font-size: 2rem;
  }

  .rv-hero-content p {
    font-size: 12px !important;
  }
}
