* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f7f7f7;
  color: #0f0f0f;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 70px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo img {
  height: 38px;
}

nav a {
  margin-left: 35px;
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.3s;
}

nav a:hover {
  color: #000;
}

/* HERO */
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background:
    linear-gradient(to right, #f7f7f7, rgba(255,255,255,0.4)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d");
  background-size: cover;
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.hero p {
  color: #555;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background: #0f0f0f;
  color: #fff;
  border-radius: 30px;
  margin-right: 10px;
  text-decoration: none;
  transition: 0.4s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.outline {
  background: transparent;
  color: #0f0f0f;
  border: 1px solid #0f0f0f;
}

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(10%);
  transition: 0.5s;
}

.photo-strip img:hover {
  filter: grayscale(0);
  transform: scale(1.03);
}

/* SERVICES */
.services {
  padding: 100px 80px;
}

.services h2 {
  text-align: center;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-card h3 {
  padding: 20px 25px 5px;
}

.service-card p {
  padding: 0 25px 25px;
  color: #555;
}


/* LEADERSHIP */
.leadership {
  padding: 100px 80px;
  background: #ffffff;
}

.leadership h2 {
  text-align: center;
  margin-bottom: 60px;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.leader-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.5s;
}

.leader-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: 0.5s;
}

.leader-card h3 {
  margin-bottom: 5px;
}

.leader-card span {
  color: #777;
  font-size: 0.9rem;
}

.leader-card p {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.leader-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width:768px) {
  .leadership {
    padding: 70px 25px;
  }
}


/* DEALS */
.deals {
  background: #0f0f0f;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.deals-inner {
  max-width: 700px;
  margin: auto;
}

/* ENQUIRY */
.enquiry {
  padding: 100px 20px;
}

.enquiry h2 {
  text-align: center;
  margin-bottom: 40px;
}

.enquiry-form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.enquiry-form button {
  background: #0f0f0f;
  color: #fff;
  border-radius: 30px;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition: 0.4s;
}

.enquiry-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #777;
}

/* MOBILE */
@media(max-width:768px) {
  .hero {
    padding: 40px;
    height: auto;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }
}
/* HIRING */
.hiring {
  background: linear-gradient(
    to right,
    #0f0f0f,
    #1a1a1a
  );
  color: #ffffff;
  padding: 110px 80px;
}

.hiring-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.hiring h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hiring-sub {
  color: #bdbdbd;
  margin-bottom: 60px;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.hiring-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(10px);
  transition: 0.5s;
}

.hiring-card h3 {
  margin-bottom: 12px;
}

.hiring-card p {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.hiring-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hiring-cta {
  margin-top: 70px;
}

.hiring-cta p {
  margin-bottom: 25px;
  color: #cfcfcf;
}

/* MOBILE */
@media(max-width:768px) {
  .hiring {
    padding: 80px 25px;
  }
}
