/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: white;
    color: #222;
    line-height: 1.6;
}

.container-about, .container-system {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}
.container-about p, .container-system p{
    color: #fff;
    font-weight: 500;

}

.hero-section {
    background: url('https://via.placeholder.com/1600x600?text=Aariv+Defence+Banner') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    background-color: #38651a;
}

.hero-section .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    width: 100%;
}
.overlay p{
    color: white;
}

.hero-section h1 {
    font-size: 3rem;
}

.hero-section p {
    font-size: 1.4rem;
    margin-top: 10px;
}

.about-section {
    background: #ffffff;
    padding: 60px 0;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #38651a;
}

.about-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.features-section {
    background: #e6f2ff;
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #38651a;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 30%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature img {
    width: 80px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.2rem;
    color: #38651a;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

.footer {
    background: #38651a;
    color: white;
    padding: 20px 0;
    text-align: center;
}
/* Existing styles remain unchanged */

.solutions-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.solutions-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #38651a;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #444;
    font-weight: 400;
}

.solution-category {
    margin-bottom: 40px;
}

.solution-category h3 {
    font-size: 1.6rem;
    color: #38651a;
    margin-bottom: 15px;
    border-left: 4px solid #38651a;
    padding-left: 12px;
}

.solution-category ul {
    list-style-type: disc;
    padding-left: 40px;
    color: #333;
}

.solution-category ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.note {
    font-style: italic;
    font-size: 0.95rem;
    color: #666;
}
.solutions-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
}

.solution-category {
    background: #f9f9f9;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.solution-category:hover {
    transform: translateY(-5px);
}
.container-news {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

.news-section,
.events-section,
.highlights-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.news-section h2,
.events-section h2,
.highlights-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #38651a;
  margin-bottom: 30px;
}

.news-card,
.event-card {
  background: #f4f9ff;
  border-left: 5px solid #38651a;
  padding: 20px 25px;
  border-radius: 6px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.news-card h3,
.event-card h3 {
  font-size: 1.3rem;
  color: #38651a;
  margin-bottom: 10px;
}
.news-card p,
.event-card p {
  font-weight: 400;
}

.location-date {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
}

.highlight-list {
  list-style: disc;
  padding-left: 40px;
  color: #444;
  font-size: 1.05rem;
}

.highlight-list li {
  margin-bottom: 12px;
}

/* Dropdown Menu Base */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #fff;
  font-weight: 500;
}

/* Dropdown Styling */
.dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a2711;
  min-width: 220px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown:hover .submenu {
  display: block;
}

.submenu li a {
  padding: 10px 15px;
  color: #fff;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.submenu li a:hover {
  background-color:  #38651a;
}
/* General Layout */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #222;
  line-height: 1.7;
  background-color: #fff;
}

h1 {
    color: white;
} 
h2, h3 {
  color: #38651a;
}

.container-air {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}
.container-air p {
    font-weight:400;
}

.section {
  background-color: #ffffff;
  padding: 60px 0;
}

.section-light {
  background-color: #fff;
  padding: 60px 0;
}

.full-width-img {
  width: 100%;
  margin-top: 20px;
  border-radius: 6px;
}

/* Hero Banner */
.hero-banner {
  background: url('images/air-defense-banner.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.hero-banner::after {
  content: '';
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.25rem;
  color: white;
}

/* Lists */
ul {
  margin-top: 15px;
  padding-left: 20px;
}

.grid-list {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 20px;
  list-style: disc;
  padding-left: 20px;
}

/* Footer */
.footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}
