/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Asap', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f5f5f5;
  line-height: 1.6;
}

/* TOP SUPPORT BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.logo-title {
  display: flex;
  align-items: center;
}
.logo {
  height: 48px;
}
.site-title {
  margin-left: 12px;
}
.site-title h1 {
  margin: 0;
  font-size: 20px;
  color: #2a2a2a;
}
.site-title p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #009345;
}
.support {
  display: flex;
  gap: 40px;
}
.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.support-item i {
  font-size: 20px;
  color: #009345;
}
.support-item .label {
  font-weight: bold;
  font-size: 14px;
}
.support-item .info {
  font-size: 14px;
  color: #555;
}

/* MAIN NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #0c0f12;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.logo {
  height: 40px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar nav a:not(:last-child) {
  border-right: 1px solid #ccc;
  padding-right: 30px;
}

.contact-btn {
  background-color: #00d084;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Active nav link underline */
.navbar nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #00d084;
}

/* Hover effect */
.navbar nav a:hover {
  color: #00d084;
  transform: scale(1.1);
}

.navbar nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #00d084;
  transition: all 0.3s ease;
}
/* Contact Us button on right */
.contact-btn {
  margin-left: auto;   /* push to right edge */
  background: #009345;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.contact-btn:hover {
  background: #007a2e;
}

/* Hero Section */
.hero {
  position: relative;
  height: 300px;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}
.hero h1 {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: white;
  font-size: 36px;
}

/* About Section */
.about-us {
  margin: 50px 0;
  text-align: center;
}

.about-section {
  position: relative;
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background-image: url('images/map.png'); /* Replace with your image path */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}


.about-us h2 {
  font-size: 2.5rem;
  color: #1d2d50;
}

.about-us p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}

/* Mission and Vision Section */
.mission, .vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
  width: 90%;
  max-width: 1200px;
}

/* Heading Styling */
.mission .heading, .vision .heading {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center; /* Center heading for both mission and vision */
}

.mission .heading h3, .vision .heading h3 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #1d2d50;
}

/* Content-Image Layout */
.mission .content-image,
.vision .content-image {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* For Vision: Flip order */
.vision .content-image {
  flex-direction: row-reverse;
}

/* Left and Right Side Containers */
.left-side, .right-side {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image Styling */
.image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Card */
.content {
  flex: 1;
  padding: 30px;
  margin-left: 20px;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f4f4f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* For Vision (content on left) */
.vision .content {
  margin-left: 0;
  margin-right: 20px;
}

/* Content Text */
.content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission .content-image,
  .vision .content-image {
    flex-direction: column;
    align-items: center;
  }

  .left-side, .right-side, .content {
    max-width: 100%;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .image img {
    height: auto;
  }

  .mission .heading h3, .vision .heading h3 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1.1rem;
  }
}



.custom-footer {
  background: linear-gradient(to bottom, #4b667a, #1e2d3b);
  color: #fff;
  padding: 50px 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 40%;
}

.footer-logo {
  width: 60px;
}

.footer-name {
  font-size: 18px;
  margin: 8px 0 0;
  font-weight: bold;
}

.footer-name span {
  font-weight: normal;
  font-size: 14px;
  display: block;
}

.footer-tagline {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #e6e6e6;
  margin: 6px 0;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #00d084;
}

.footer-line {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-icons a {
  margin: 0 8px;
  display: inline-block;
}

.footer-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-right {
    flex-direction: column;
    gap: 20px;
  }
  .footer-left {
    max-width: 100%;
  }
}
/* Sister Companies Section */
.sister-company-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.sister-heading {
  font-size: 30px;
  color: #1d2d50;
  margin-bottom: 10px;
}

.sister-divider {
  width: 80px;
  height: 3px;
  background-color: #0077b6;
  margin: 0 auto 40px;
  border: none;
}

.sister-company-card {
  background-color: #fff;
  border: 2px solid #0077b6;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.sister-company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sister-company-name {
  font-size: 24px;
  color: #d62828;
  font-weight: bold;
}

.sister-logo {
  height: 60px;
}

.sister-company-body {
  margin-top: 20px;
}

.sister-company-body p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sister-visit-btn {
  background-color: #ef233c;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.sister-visit-btn:hover {
  background-color: #d90429;
}

/* Responsive */
@media (max-width: 768px) {
  .sister-company-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sister-logo {
    margin-top: 15px;
    height: 50px;
  }

  .sister-company-card {
    padding: 20px;
  }
}
