/* ===============================
   SIMULATOR TRAINING PAGE (VATA)
   =============================== */
   
 :root{
  --primary:#002f6c;
  --accent:#c41230;
  --bg:#f4f6fb;
  --text:#333;
}

body {
  background: #fff;
}

/* ===== Hero Section ===== */
.sim-hero {
  position: relative;
  height: 50vh;
  min-height: 550px;
  background: url("../images/simulator-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 8%;
  color: #fff;
}

.sim-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35)
  );
}

.sim-hero-content {
  position: relative;
  max-width: 620px;
}

.sim-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.sim-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* ===== Overview Section ===== */
.sim-overview {
  padding: 90px 0;
  background: var(--light);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 66px;
  align-items: center;
}

/* Image */
.sim-image img {
  margin-top: -160px;
  height: 404px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}

.sim-image img:hover {
  transform: scale(1.04);
}

/* Content */
.sim-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.sim-content p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 100%;
}

.sim-features {
  list-style: none;
  padding: 0;
}

.sim-features li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim-features i {
  color: var(--primary);
  font-size: 1rem;
}

/* ===== Training Capabilities ===== */
.sim-capabilities {
  padding: 90px 0;
  background: #fff;
  text-align: center;
}

.sim-capabilities h2 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: var(--dark);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cap-box {
  background: var(--light);
  padding: 35px 25px;
  border-radius: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cap-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cap-box i {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.cap-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.cap-box p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.sim-cta {
  padding: 90px 0;
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("../images/cta-bg.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.sim-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.sim-cta p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.9;
}


/* ===== Hero Slider ===== */
.sim-hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.sim-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease, transform 6s ease;
}

.sim-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* keep overlay & content above slider */
.sim-hero-overlay,
.sim-hero-content {
  position: relative;
  z-index: 2;
}

/* ===== Scroll Reveal System ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }


.sim-cta{
    display: inline-block;
    margin-top: 24px;
    padding: 14px 34px;
    background: #C41230;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
}

.sim-final-cta{
  background:linear-gradient(90deg,#002F6C,#C41230);
  color:#fff;
  text-align:center;
  padding:70px 20px;
}
.sim-final-cta .sim-cta.light{
  background:#fff;
  color:#002F6C;
}


@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:none}
}

.extra-footer {
  background: linear-gradient(180deg, #001f47, #062c56);  
  padding: 90px 0;
  color: #e5e5e5;
  font-family: "Inter", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
}

/* LOGO + TEXT */
.footer-logo {
  height: 90px;
  margin-bottom: 25px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 420px;
}

/* SOCIAL */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #b08d57;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #000;
}

/* LINK COLUMNS */
.footer-links h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links ul li:hover {
  color: #ffffff;
}

.footer-links ul li {
  margin-bottom: 12px;
}

/* anchor styling */
.footer-links ul li a {
  display: inline-block;
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* hover effect */
.footer-links ul li a:hover {
  color: #ffffff;
}



/* ===== Responsive ===== */
@media (max-width: 992px) {
  .sim-grid {
    grid-template-columns: 1fr;
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sim-hero {
    padding-left: 6%;
  }
}

@media (max-width: 576px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .sim-hero h1 {
    font-size: 2.2rem;
  }

  .sim-cta h2 {
    font-size: 2.1rem;
  }
}
