
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


.navbar {
  background: #000;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-content .logo {
  font-weight: 600;
  font-size: 1.2rem;
}
.nav-content nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-content nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nav-content nav ul li a:hover {
  color: #ccc;
}


.hero {
  background: url('f35.jpg') no-repeat center center / cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 6px;
  color: #fff;
}
.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-overlay p {
  font-size: 1.1rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #003399;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  margin-top: 1rem;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #001f66;
}


.models {
  padding: 4rem 0;
}
.models h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.model-card {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s;
}
.model-card:hover {
  transform: translateY(-5px);
}
.model-card img {
  width: 100%;
  display: block;
}
.model-info {
  padding: 1rem;
}
.model-info h3 {
  margin: 0.5rem 0;
}
.model-info a {
  color: #003399;
  font-weight: 600;
  font-size: 0.9rem;
}


.achievements {
  background: #000;
  color: #fff;
  padding: 4rem 0;
}
.achievements h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.achievements-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.achievements-grid div h3 {
  font-size: 2rem;
  margin: 0;
}


footer {
  background: #000;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.footer-content nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0 0;
}
.footer-content nav ul li a {
  color: #fff;
  font-size: 0.9rem;
}
.footer-content nav ul li a:hover {
  color: #ccc;
}
.model-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.model-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: black;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  padding: 1rem;
}

.model-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.model-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.model-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0 1rem;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0e0e0e;
  color: #f5f5f5;
  line-height: 1.6;
}


header {
  background-color: #111;
  padding: 20px 40px;
  text-align: center;
}

header h1 {
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 10px;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff0000;
}


.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}


.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}


.achievement-list {
  list-style: none;
  padding-left: 0;
}

.achievement-list li {
  background-color: #1a1a1a;
  border-left: 5px solid #ff0000;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.achievement-list li:hover {
  transform: scale(1.02);
}


footer {
  text-align: center;
  padding: 20px 0;
  background-color: #111;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #aaa;
}









.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ff0000;
}

.contact-form button {
  background-color: #ff0000;
  color:white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc0000;
}



 

