*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}


body{
  background:#370617;
  color:white;
  line-height:1.6;
}

/* Header */

header{
  background:#03071e;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #222;
}

.logo{
  font-size:28px;
  font-weight:bold;
  letter-spacing:2px;
  color:white;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  transition:0.3s;
  font-size:15px;
}

nav a:hover{
  color:#bdbdbd;
}

/* General */

section{
  padding:90px 8%;
}

.section-title{
  font-size:42px;
  margin-bottom:20px;
}

/* Hero section */

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
  min-width:300px;
}

.hero-text h1{
  font-size:60px;
  margin-bottom:20px;
  line-height:1.1;
}

.hero-text p{
  color:#bdbdbd;
  font-size:18px;
  margin-bottom:30px;
  max-width:600px;
}

.btn{
  display:inline-block;
  padding:14px 30px;
  background:white;
  color:black;
  text-decoration:none;
  font-weight:bold;
  border-radius:5px;
  transition:0.3s;
}

.btn:hover{
  background:#faa307;
}

/* Hero image */

.hero-image{
  flex:1;
  min-width:320px;
}

.hero-image img{
  width:100%;
  height:550px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid #2d2d2d;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Hero box */

.hero-box{
  flex:1;
  min-width:300px;
  background:#161616;
  border:1px solid #2c2c2c;
  border-radius:15px;
  padding:40px;
}

.hero-box h3{
  margin-bottom:20px;
  font-size:24px;
}

.feature{
  margin-bottom:20px;
  padding-bottom:20px;
  border-bottom:1px solid #2a2a2a;
}

.feature:last-child{
  border:none;
  margin-bottom:0;
  padding-bottom:0;
}

.feature h4{
  margin-bottom:10px;
  color:white;
}

.feature p{
  color:#a0a0a0;
}

/* About */

.about p{
  max-width:900px;
  color:#bcbcbc;
  margin-bottom:20px;
  font-size:18px;
}

.about-image{
  margin:50px 0;
}

.about-image img{
  width:100%;
  max-height:500px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid #2d2d2d;
}

/* Stats */

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-card{
  background:#2d2d2d;
  padding:30px;
  border-radius:12px;
  border:1px solid #2d2d2d;
  text-align:center;
  transition:0.3s;
  flex: 1;
}

.stat-card:hover{
  transform:translateY(-5px);
  border-color:#474747;
  background-color: #d00000;
}

.stat-card h2{
  font-size:40px;
  margin-bottom:10px;
}

.stat-card p{
  color:white;
}

img {
    margin-top: 60px;
}

/* Gallery */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:50px;
}

.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:15px;
  border:1px solid #2d2d2d;
  transition:0.3s;
}

.gallery img:hover{
  transform:scale(1.03);
}

/*Partners */

.partners {
    padding: 80px 20px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #2d2d2d;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;

    display: block;
    margin: 0 auto;
    
}

/* Contact */

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
}

.contact-info{
  background:#161616;
  padding:35px;
  border-radius:12px;
  border:1px solid #2d2d2d;
}

.contact-info h3{
  margin-bottom:20px;
  font-size:28px;
}

.contact-info p{
  margin-bottom:15px;
  color:#bdbdbd;
}

/* Form */

form{
  background:#161616;
  padding:35px;
  border-radius:12px;
  border:1px solid #2d2d2d;
}

form input,
form textarea{
  width:100%;
  padding:15px;
  margin-bottom:20px;
  background:#0f0f0f;
  border:1px solid #333;
  color:white;
  border-radius:6px;
  outline:none;
}

form input:focus,
form textarea:focus{
  border-color:#777;
}

form textarea{
  min-height:140px;
  resize:vertical;
}

form button{
  width:100%;
  padding:15px;
  border:none;
  background:white;
  color:black;
  font-weight:bold;
  cursor:pointer;
  border-radius:6px;
  transition:0.3s;
}

form button:hover{
  background:#d6d6d6;
}

/* Footer */

footer{
  text-align:center;
  padding:30px;
  border-top:1px solid #222;
  color:#8f8f8f;
  background:#000;
}

/* Responsive */

@media(max-width:900px){

  .hero{
    flex-direction:column;
  }

  .hero-text h1{
    font-size:42px;
  }

  .hero-image img{
    height:350px;
  }

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  nav a{
    margin-top:10px;
  }
}