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

/* Header */
header {
  background: #003366;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 40px;
  margin-right: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url("hero.jpeg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text button {
  background: #ffb400;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background: #0066cc;
  color: white;
  padding: 40px;
}

.feature h3 {
  margin-bottom: 10px;
}

/* Sectors */
.sectors {
  padding: 60px 40px;
  text-align: center;
}

.sectors h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.sector-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 300px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.card button {
  background: #b38b00;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #003366;
  color: white;
  padding: 30px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-right p {
  margin: 5px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-right i {
  margin-right: 8px;
  color: #ffb400; /* gold icon color */
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
}

.footer-bottom a {
  color: white;
  font-size: 1.2rem;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #ffb400;
}


/* Director Section */
.director {
  padding: 60px 40px;
  text-align: center;
  background: #f9f9f9;
}

.director h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.director-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.director-content img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.director-text {
  max-width: 500px;
  text-align: left;
}

/* Gallery Section */
.gallery {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
