/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

/* ================= HEADER / MENU ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  gap: 18px;
}

.logo {
  height: 42px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c62828;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.apply-btn {
  margin-left: auto;
  background: linear-gradient(135deg, #c62828, #b71c1c);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 22px;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(198,40,40,0.35);
}

/* ================= HERO ================= */
.hero {
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(135deg, #7b0d0d, #c62828);
  color: #fff;
  max-width: 420px;
  width: 100%;
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.hero-card img {
  border-radius: 14px;
  margin-bottom: 14px;
}

.hero-card h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 14px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.btn {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #fff;
  color: #c62828;
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* ================= SECTIONS ================= */
.section {
  padding: 42px 18px;
}

.section.light {
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 22px;
}

/* ================= SERVICES ================= */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.card {
  background: #c62828;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(198,40,40,0.25);
}

/* ================= ABOUT ================= */
.about-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.about-box img {
  border-radius: 18px;
  max-width: 260px;
  margin: auto;
}

.about-text p {
  font-size: 14px;
  color: #444;
}

.person {
  margin-top: 10px;
  background: #f3f3f3;
  padding: 12px;
  border-radius: 14px;
}

.person strong {
  display: block;
  color: #c62828;
}

/* ================= STATS ================= */
.stats {
  background: linear-gradient(135deg, #c62828, #b71c1c);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
  padding: 26px 12px;
}

.stat h3 {
  font-size: 20px;
}

.stat span {
  font-size: 12px;
  opacity: 0.9;
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 16px;
  font-size: 12px;
}

/* ================= ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= GLOBAL IMAGE FIX ================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= DESKTOP ENHANCEMENT ================= */
@media (min-width: 768px) {

  .hero-card {
    max-width: 520px;
  }

  .cards {
    grid-template-columns: repeat(2,1fr);
  }

  .about-box {
    flex-direction: row;
    align-items: center;
  }

  .about-text {
    padding-left: 20px;
  }
}
/* ================= PREMIUM CONNECT ================= */
.connect-premium {
  background: linear-gradient(135deg, #fff, #f8eaea);
  padding: 80px 18px;
}

.connect-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.connect-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* CONTENT */
.connect-info {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.badge {
  display: inline-block;
  background: #c62828;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.connect-info h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 14px;
}

.connect-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  max-width: 480px;
}

/* INFO BOX */
.info-box {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.info-box div {
  background: #f5f5f5;
  padding: 14px 16px;
  border-radius: 16px;
}

.info-box strong {
  display: block;
  color: #c62828;
  font-size: 14px;
}

.info-box span {
  font-size: 13px;
  color: #333;
}

.info-box small {
  font-size: 13px;
  color: #555;
}

/* BUTTON */
.premium-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c62828, #b71c1c);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(198,40,40,0.4);
  transition: all 0.3s ease;
}

.premium-btn:hover {
  transform: translateY(-3px);
}

/* DESKTOP */
@media (min-width: 768px) {
  .connect-container {
    grid-template-columns: 1fr 1fr;
  }

  .connect-info h2 {
    font-size: 36px;
  }
}
/* ================= GALLERY SECTION ================= */
.gallery-section {
  background: #ffffff;
  padding: 80px 18px;
}

.gallery-container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: #c62828;
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.gallery-title {
  font-size: 32px;
  color: #111;
  margin-bottom: 12px;
}

.gallery-desc {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* DESKTOP */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ================= LEADERSHIP SECTION ================= */
.leader-section {
  background: #ffffff;
  padding: 90px 20px;
}

.leader-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.leader-tag {
  color: #c62828;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.leader-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #0b2c5d;
  margin-bottom: 20px;
}

.leader-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 28px;
}

/* BUTTON */
.leader-btn {
  display: inline-block;
  background: #c62828;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.leader-btn:hover {
  background: #a71d1d;
  transform: translateY(-2px);
}

/* NAME */
.leader-name {
  margin-top: 36px;
  font-size: 38px;
  font-weight: 800;
  color: #0b2c5d;
}

/* IMAGE */
.leader-image {
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.leader-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .leader-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-content h1 {
    font-size: 40px;
  }

  .leader-name {
    font-size: 32px;
  }

  .leader-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================= LEADERSHIP SECTION ================= */
.leader-section {
  background: #ffffff;
  padding: 90px 20px;
}

.leader-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.leader-tag {
  color: #c62828;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.leader-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #0b2c5d;
  margin-bottom: 20px;
}

.leader-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 28px;
}

/* BUTTON */
.leader-btn {
  display: inline-block;
  background: #c62828;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.leader-btn:hover {
  background: #a71d1d;
  transform: translateY(-2px);
}

/* NAME */
.leader-name {
  margin-top: 36px;
  font-size: 38px;
  font-weight: 800;
  color: #0b2c5d;
}

/* IMAGE */
.leader-image {
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.leader-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .leader-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-content h1 {
    font-size: 40px;
  }

  .leader-name {
    font-size: 32px;
  }

  .leader-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================= MAP SECTION ================= */

.map-section {
  padding: 90px 6%;
  background: #ffffff;
}

.map-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.map-content .map-tag {
  color: #d62828;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.map-content h2 {
  font-size: 42px;
  margin: 12px 0;
  color: #0b2545;
}

.map-content h2 span {
  color: #d62828;
}

.map-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.map-info {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.map-info div {
  background: #f9f9f9;
  padding: 14px 18px;
  border-left: 4px solid #d62828;
  border-radius: 8px;
}

.map-info strong {
  display: block;
  color: #0b2545;
  font-size: 15px;
}

.map-info span,
.map-info a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

.map-info a:hover {
  color: #d62828;
}

/* MAP FRAME */
.map-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.map-frame:hover {
  transform: translateY(-8px);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-content h2 {
    font-size: 34px;
  }

  .map-frame iframe {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .map-section {
    padding: 60px 5%;
  }

  .map-content h2 {
    font-size: 28px;
  }
}
/* JOBS SECTION */
.jobs-section {
  padding: 80px 20px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-header .tag {
  display: inline-block;
  color: #c62828;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.section-header p {
  color: #555;
  font-size: 16px;
}

/* GRID */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

/* CARD */
.job-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  border-bottom: 4px solid #c62828;
}

.job-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.job-card h3 {
  text-align: center;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

/* HOVER EFFECT */
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(198,40,40,0.25);
}

/* MOBILE */
@media (max-width: 600px) {
  .section-header h2 {
    font-size: 26px;
  }
}
