/* General Layout */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: lighter;
}


a:hover{
    text-decoration: none !important;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #002944;
    color: white;
    z-index: 10;
    /* width: 90%; */
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Navigation Links (Desktop) */
.nav-links a {
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-weight: 200;
}

.nav-links a:hover {
    text-decoration: underline;
}
.nav-links{
    align-items: center;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0033a0;
    padding: 15px 30px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    margin: 10px 0;
    font-size: 18px;
}

.mobile-menu.active {
    display: flex;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 800px;
}

/* Images */
.slide img {
    width: 100%;
    height: 800px !important;
    object-fit: cover;
}

/* Slide Base */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}/* Slide Base */

/* Text on Top */
.slide-text {
    position: absolute;
    top: 25%;
    left: 20%;
    width: 50%;
    text-align: left;
    color: white;
}

.slide-text h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
}

.slide-text p {
    margin-top: 10px;
    font-size: 20px;
}


/* Responsive Text */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 28px;
    }
    .slide-text p {
        font-size: 16px;
    }
}

/* Responsive Rules */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}

/* Intro Section */
.intro-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  color: #0d1b2a;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 8px;
  text-align: center;
  color: #0033a0;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  margin: 0 0 30px;
  color: #30415a;
  font-size: 15px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13,27,42,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.card:hover {
  box-shadow: 0 18px 40px rgba(13,27,42,0.12);
}

/* Media (image) */
.card-media {
  height: 160px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Body */
.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
  color: #0d1b2a;
}

.card-body p {
  margin: 0;
  color: #52606d;
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  color: #0033a0;
  border: 1.5px solid #cfe1ff;
  text-align: center;
  width: max-content;
}

.btn:hover {
  background: rgba(3,57,151,0.06);
}

/* Primary CTA */
.btn-primary {
  background: #0033a0;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  opacity: 0.95;
}

/* Contact card standout */
.contact-card {
  border: 1px dashed rgba(0,51,160,0.08);
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

/* Responsive */
@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section-title { font-size: 22px; }
  .section-sub { font-size: 14px; }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .card-media { height: 200px; }
}

/* Team Section */
.team-section {
  padding: 60px 20px;
  background: #f9fbff;
}

.team-container {
  max-width: 1150px;
  margin: auto;
}

.team-title {
  text-align: center;
  font-size: 28px;
  color: #0033a0;
  font-weight: bold;
  margin-bottom: 8px;
}

.team-sub {
  text-align: center;
  color: #52606d;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Team Card */
.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.team-card:hover {
  box-shadow: 0 12px 38px rgba(0,0,0,0.12);
}

/* Image */
.team-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.team-card h3 {
  margin: 0;
  font-size: 18px;
  color: #0d1b2a;
  font-weight: 600;
}

.role {
  margin-top: 6px;
  font-size: 14px;
  color: #0033a0;
}

/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-img {
    height: 320px;
  }
}

/* Footer */
.footer {
  background: #fff;
  text-align: center;
  padding: 25px 15px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.footer-links {
  margin: 8px 0;
  font-size: 14px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}


.footer-links a:hover {
  text-decoration: none;
}

.footer-note {
  margin-top: 5px;
  font-size: 13px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .footer-links a {
    font-size: 13px;
  }
}

/* Culture Page Section */
.culture-section {
  padding: 60px 20px;
  background: #fefefe;
  color: #0d1b2a;
}

.page-title {
  text-align: center;
  font-size: 28px;
  color: #0033a0;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-intro {
  text-align: center;
  font-size: 16px;
  color: #52606d;
  margin-bottom: 40px;
}

/* Content grid */
.culture-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.culture-img {
  flex: 1 1 400px;
  overflow: hidden;
}

.culture-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.culture-img img:hover {
}

.culture-text {
  flex: 1 1 400px;
}

.culture-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0033a0;
}

.culture-text p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #52606d;
}

/* Button */
.culture-text .btn {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .culture-content {
    flex-direction: column;
  }
  .culture-text, .culture-img {
    flex: 1 1 100%;
  }
}

/* Full-length Culture Section */
.culture-section {
  padding: 60px 20px;
  background: #fefefe;
  color: #0d1b2a;
}

.container {
  max-width: 1150px;
  margin: auto;
}

.page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0033a0;
  margin-bottom: 15px;
}

.page-intro {
  text-align: center;
  font-size: 18px;
  color: #52606d;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Culture Block */
.culture-block {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.culture-block.reverse {
  flex-direction: row-reverse;
}

/* Image */
.culture-img {
  flex: 1 1 500px;
  overflow: hidden;
}

.culture-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.culture-img img:hover {
}

/* Text */
.culture-text {
  flex: 1 1 500px;
}

.culture-text h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #0033a0;
}

.culture-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #52606d;
  margin-bottom: 20px;
}

/* Button */
.culture-text .btn {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .culture-block {
    flex-direction: column;
  }
  .culture-block.reverse {
    flex-direction: column;
  }
  .culture-img, .culture-text {
    flex: 1 1 100%;
  }
  .culture-img {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 28px;
  }
  .page-intro {
    font-size: 16px;
  }
  .culture-text h2 {
    font-size: 22px;
  }
  .culture-text p {
    font-size: 15px;
  }
}
