/* ABOUT SECTION WITH BACKGROUND */
.about-section {
  position: relative;
  padding: 100px 60px;
  color: white;
  background: url("ship.jpg") center/cover no-repeat;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 80, 0.85); /* Dark overlay */
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.org-section {
  padding: 80px 60px;
  background: #f8fafc;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.sub-title {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Mission Vision */
.mission-vision {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.card h3 {
  margin-bottom: 15px;
}

/* Services */
.services ul {
  list-style: none;
  padding-left: 0;
}

.services li {
  margin-bottom: 10px;
}

/* Organizational Chart */
.org-chart {
  text-align: center;
}

.level {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.org-card {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  border: 2px solid #1e3a8a;
  font-weight: 600;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
  }

  .level {
    flex-direction: column;
    align-items: center;
  }
}

/* ORGANIZATIONAL CHART */
.org-section {
  padding: 100px 60px;
  background: #f8fafc;
}

.org-tree {
  text-align: center;
}

.org-level {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.org-level.row {
  justify-content: center;
}

.org-box {
  background: white;
  border: 2px solid #1e3a8a;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.org-box:hover {
  transform: translateY(-5px);
}

.org-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.org-box h4 {
  margin: 5px 0;
  color: #1e3a8a;
}

.org-box p {
  font-size: 14px;
  color: #555;
}

.org-line {
  width: 2px;
  height: 40px;
  background: #1e3a8a;
  margin: 0 auto 20px auto;
}

/* Responsive */
@media (max-width: 768px) {
  .org-level {
    flex-direction: column;
    align-items: center;
  }
}

/* OUR SERVICES */
.services-section {
  padding: 100px 60px;
  background: #1e3a8a;
}

.section-title{
    color: #f59e0b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #1e3a8a;
}

.service-card p {
  font-size: 14px;
  color: #555555;
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 60px;
  background: #f3f4f6;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
  font-size: 24px;
  background: #1e3a8a;
  color: white;
  padding: 12px;
  border-radius: 10px;
}

/* RIGHT SIDE */
.contact-form {
  flex: 2;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #1e3a8a;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.form-row input {
  flex: 1;
}

.contact-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 20px;
}

.send-btn {
  background: #1e3a8a;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.send-btn:hover {
  background: #162d6a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
/* VISIT SECTION */
.visit-section {
  padding: 100px 60px;
  background: #f8fafc;
  text-align: center;
}

.visit-subtitle {
  color: #6b7280;
  margin-bottom: 50px;
  font-size: 16px;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: #d1d5db; /* fallback if map doesn't load */
}

/* FOOTER */
.footer {
  background: #0f1e4a; /* Navy Blue */
  color: #ffffff;
  padding: 70px 60px 20px 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  color: #facc15; /* gold accent */
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 50px 30px 20px 30px;
  }
}
.footer-logo {
  width: 200px;   /* adjust size if needed */
  height: auto;
}
.footer-motto-center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 16px;
  color: #facc15; /* gold accent - change if you want white */
  letter-spacing: 1px;
}
/* WHY CHOOSE US */
.why-choose {
  margin-top: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.why-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.18);
}

.why-icon {
  font-size: 35px;
  margin-bottom: 15px;
}