* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f4f6f8;
  color: #333;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  color: white;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #ffcc00;
}

/* HERO / PAGE IMAGE */
.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-text {
  position: absolute;
  bottom: 30%;
  left: 10%;
  color: white;
  z-index: 2;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text p {
  font-size: 20px;
  margin-top: 10px;
}

/* SECTIONS */
section {
  padding: 60px 10%;
  background: white;
  margin-bottom: 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e3c72;
}

/* PROJECT GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

/* FORM */
form {
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
}

form button {
  background: #1e3c72;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
}

form button:hover {
  background: #ffcc00;
  color: black;
}

/* FOOTER */
footer {
  background: #1e3c72;
  color: white;
  padding: 30px;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

/* ===== PROJECTS SECTION ===== */
.section-projects {
  padding: 60px 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Individual project card */
.project {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Image container effect */
.project img {
  width: 100%;
  height: 180px;          /* SAME SIZE FOR ALL IMAGES */
  object-fit: cover;      /* Keeps image proportional */
  display: block;
}

/* Space between multiple images */
.project img + img {
  border-top: 2px solid #eee;
}

/* Caption styling */
.project figcaption {
  padding: 15px;
  text-align: center;
}

.project figcaption strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.project figcaption span {
  font-size: 14px;
  color: #666;
}



/* ===== TEAM / STAFF GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.gallery > div {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* SAME IMAGE SIZE */
.gallery img {
  width: 130px;          /* minimized size */
  height: 130px;         /* same height */
  object-fit: cover;     /* keeps face centered */
  border-radius: 50%;    /* professional circular look */
  margin-bottom: 15px;
  border: 3px solid #eee;
}

/* TEXT STYLING */
.gallery h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #222;
}

.gallery p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.gallery p strong {
  color: #000;
}


/* Dropdown container */
nav ul li {
  position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 150px;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
  white-space: nowrap;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: #f2f2f2;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}






  .hero {
    position: relative;
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-text {
    position: absolute;
    bottom: 30%;
    left: 10%;
    color: white;
    z-index: 2;
  }

  /* ✅ LOGO + DATE + TIME */
  .hero-top {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    z-index: 3;
  }

  .hero-top img {
    width: 70px;
    height: auto;
  }

  .date-time {
    font-size: 14px;
    font-weight: bold;
  }



  
  /* Fade-in animation */
  .date-time {
    animation: fadeIn 1.5s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Pulse animation when time updates */
  .pulse {
    animation: pulse 0.4s ease-in-out;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1.05);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }



 