
:root{
  --red:#e10600;
  --dark:#0b0d17;
  --gray:#161b22;
  --white:#ffffff;
  --light:#c9d1d9;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Rajdhani',sans-serif;
  background:var(--dark);
  color:var(--white);
  overflow-x:hidden;
}

.navbar{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  font-size:2rem;
  font-weight:700;
  font-family:'Orbitron',sans-serif;
}

.logo span{
  color:var(--red);
}

.nav-links{
  display:flex;
  list-style:none;
  gap:40px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:1.1rem;
  transition:.3s;
  position:relative;
}

.nav-links a::after{
  content:'';
  width:0;
  height:2px;
  background:var(--red);
  position:absolute;
  bottom:-8px;
  left:0;
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7));
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-content{
  max-width:900px;
  padding:20px;
}

.hero h1{
  font-size:6rem;
  line-height:1;
  margin-bottom:30px;
  font-family:'Orbitron',sans-serif;
}

.hero h1 span{
  color:var(--red);
}

.hero p{
  font-size:1.4rem;
  color:var(--light);
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
}

.btn-red,
.btn-dark{
  padding:16px 34px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn-red{
  background:var(--red);
  color:white;
}

.btn-red:hover{
  transform:translateY(-4px);
  box-shadow:0 0 25px rgba(225,6,0,.5);
}

.btn-dark{
  border:1px solid white;
  color:white;
}

.intro-section{
  padding:120px 10%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:3rem;
}

.red-line{
  width:120px;
  height:4px;
  background:var(--red);
  margin:20px auto;
}

.intro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.glass-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  border-radius:20px;
  padding:45px;
  transition:.4s;
}

.glass-card:hover{
  transform:translateY(-10px);
  border-color:var(--red);
  box-shadow:0 0 40px rgba(225,6,0,.25);
}

.glass-card i{
  font-size:3rem;
  color:var(--red);
  margin-bottom:25px;
}

.glass-card h3{
  font-size:2rem;
  margin-bottom:20px;
}

.stats-section{
  position:relative;
  padding:100px 10%;
}

.stats-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
}

.stats-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.stat-box{
  background:rgba(255,255,255,.05);
  padding:40px;
  border-radius:20px;
  text-align:center;
}

.stat-box h2{
  font-size:3rem;
  color:var(--red);
}

.featured-section{
  padding:120px 10%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.featured-image img{
  width:100%;
  border-radius:20px;
}

footer{
  background:#05070d;
  padding-top:80px;
}

.footer-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  padding:0 10% 60px;
}

.footer-content a{
  display:block;
  color:#c9d1d9;
  margin:12px 0;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  padding:25px;
  color:#999;
}


::-webkit-scrollbar{
  width:12px;
}

::-webkit-scrollbar-track{
  background:#0b0d17;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(
    180deg,
    #e10600,
    #ff3b30
  );

  border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
  background:#ff1e1e;
}
.history-header{
  height:70vh;

  background:
  linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.8));
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;

  position:relative;
}

.header-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:20px;
}

.header-content h1{
  font-size:5rem;
  font-family:'Orbitron',sans-serif;
  margin-bottom:25px;
}

.header-content p{
  font-size:1.4rem;
  color:#c9d1d9;
}
.glass-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:25px;
}

.featured-text h2{
  font-size:3rem;
  margin-bottom:25px;
}

.featured-text p{
  color:#c9d1d9;
  line-height:1.9;
  margin-bottom:30px;
  font-size:1.1rem;
}