body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  margin: auto;
}

/* Header */
header {
    background: white;
    padding: 8px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
  color: #e91e63;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hero */
.hero {
  background: url('pics/robotics.png') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.85); /* dark overlay */
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Sections */
.section {
  padding: 70px 0;
  text-align: center;
}

.light {
  background: #f4f4f4;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
  background: white;
  padding: 25px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.leadership-card {
  max-width: 500px;
  margin: auto;
}

/* Footer */
footer {
  background: #0a192f;
  color: white;
  padding: 20px 0;
}
.logo {
    height: 180px;   /* Bigger so text becomes readable */
    width: auto;
    display: block;
}

.logo-container {
  display: flex;
  align-items: center;
}
/* LEADERSHIP SECTION */
.leadership-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.leadership-image img {
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.leadership-text h2 {
    color: #0a192f;
    margin-bottom: 10px;
}

.leadership-text h4 {
    color: #e91e63;
    margin-bottom: 20px;
}

.leadership-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}
/* PORTFOLIO SECTION */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item img {
    width: 100%;
    border-radius: 12px;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.portfolio-item p {
    margin-top: 12px;
    font-weight: 500;
}