* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b0f1a;
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
.header-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

header {
  background-color: #141c2f;
  padding: 20px 0;
  border-bottom: 1px solid #1f2a44;
}

header h1 {
  font-size: 28px;
  color: #00d8ff;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #00d8ff;
}

/* Hero */
.hero {
    height: 100vh;
  background: url('./images/NEWS-04.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  position: relative;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero .text {
  flex: 1;
}

.hero .text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.hero .text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.hero .image {
  flex: 1;
}

.hero .image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}


/* Updates */
.updates {
 background-color: #141c2f;
  text-align: center;
}

.updates h2 {
  margin-bottom: 25px;
  color: #00d8ff;
}

.updates ul {
  list-style-type: none;
  padding: 0;
}

.updates li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 16px;
}

/* About */
.about {
     text-align: center;
  background-color: #141c2f;
  padding: 60px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about .image {
  flex: 1;
}

.about .image img {
  width: 100%;
  border-radius: 8px;
}

.about .text {
  flex: 1;
}

.about .text h2 {
  margin-bottom: 20px;
  color: #00d8ff;
}

/* Footer */
footer {
  background-color: #101521;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #1c2438;
}

footer p {
  color: #aaa;
}




/* Updates Section */
.updates {
    padding: 4rem 0;
   background-color: #141c2f;
}

.updates h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
     color: #00d8ff;
}

.updates-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.update-item {
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.update-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
     color: #00d8ff;
}

.update-item p {
     color: white;
    line-height: 1.6;
    font-size: 0.9rem;
}