* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

      body {
      font-family: Arial, sans-serif;
    }

    .top-bar {
      background-color: #034638;
      color: white;
      padding: 10px 5cm; /* Add 5cm padding on both sides */
      font-size: 14px;
    }
    .top-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* or flex-start or center as per your design */
  gap: 4px;
}


    .top-bar a {
      color: white;
      text-decoration: none;
      margin-left: 8px;
    }

    .top-bar a:hover {
      text-decoration: underline;
    }

    .main-header {
      background-color: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      padding: 20px 5cm; /* Add 5cm padding on both sides */
    }

    .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 65px ; /* Ensure logo height is consistent */
    }

   @media screen and (max-width: 768px) {
  .top-bar {
    padding: 10px 20px;
  }

  .main-header {
    padding: 10px 20px;
  }

  .header-flex {
    flex-direction: row;        /* ✨ Keep horizontal layout */
    justify-content: space-between;
    align-items: center;
  }

  .top-bar-right {
    align-items: flex-end;      /* Align to the right */
    text-align: right;
  }
  

}



    .hero-section {
  height: 50vh;
  background-image: url('../images/heroimage.jpg?v=1');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Add 50% black overlay to home page hero */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 50% black overlay */
  z-index: 1;
}

/* Contact page hero */
.contact-hero {
  height: 20vh;
  background-image: url('../images/contact-hero.png?v=1');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Listing page hero */
.listing-hero {
  height: 20vh;
  background-image: url('../images/listing-hero.png?v=1');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;  /* Align text to the left */
  
  padding-left: 5cm; /* Gap from left side (same as header) */
  z-index: 2; /* Ensure text appears above the black overlay */
}

.hero-overlay h1 {
  font-size: 3rem;
  color: #115355;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff; /* White outline */
}


  

@media screen and (max-width: 480px) {
  .hero-overlay {
    padding-left: 1.5cm; /* smallest padding */
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }
}

/* Common animation base */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}



/* <---other section---> */
.expertise-section {
  background-color: #fff;
  /* Removed padding here to keep background full-width */
}

.expertise-inner {
  padding: 60px 5cm; /* Adds 5cm gap from left and right */
}

.expertise-section h2 {
  color: #115355;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.expertise-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap; /* Force horizontal layout on large screens */
}

.expertise-text {
  width: 70%;
}

.expertise-text p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 20px; /* adds space below each paragraph */
}

.expertise-image {
  width: 30%;
  text-align: right;
}

.expertise-image img {
  max-width: 100%;
  height: auto;
  
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .expertise-inner {
    padding: 30px 20px; /* Consistent padding in px for mobile */
  }

  .expertise-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 100%;
  }

  .expertise-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .expertise-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .expertise-image {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .expertise-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .expertise-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
}



/* <---other section---> */
.mission-vision-section {
  background-color: #11535511; /* Light transparent teal background */
  width: 100%;
}

.missionvision-inner {
  padding: 60px 5cm; /* Padding from left & right for text + icons */
}

.missionvision-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.missionvision-box {
  width: 45%;
}

.icon-heading-row {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between icon and heading */
  margin-bottom: 10px;
}

.missionvision-icon {
  width: 60px; /* Adjust as needed */
  height: auto;
}

.missionvision-heading {
  margin: 0;
  font-size: 1.9rem; /* Adjust to your design */
  color: #115355;
}


.missionvision-box p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #000000;
}

.missionvision-divider {
  width: 2px;
  background-color: #115355;
  height: auto;
  min-height: 160px;
  align-self: center;
}

/* Full-width Image Section */
.missionvision-image-section img {
  height: 50vh;
  width: 100%;
  /* height: auto; */
  display: block;
  object-fit: cover;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .missionvision-inner {
    padding: 40px 2cm;
  }

  .missionvision-flex {
    flex-direction: column;
    gap: 30px;
  }

  .missionvision-box {
    width: 100%;
    text-align: center;
  }

  .missionvision-divider {
    display: none;
  }

  .missionvision-heading {
    font-size: 1.5rem;
  }
}

/* Animation Keyframes */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default state: hidden */
.missionvision-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

/* Animated when in view */
.missionvision-box.in-view {
  animation: fadeSlideIn 0.8s ease-out forwards;
}

/* Optional staggered delay */
.missionvision-box.in-view:nth-child(1) {
  animation-delay: 0.2s;
}

.missionvision-box.in-view:nth-child(3) {
  animation-delay: 0.6s;
}

/* <---another section---> */

.info-section {
  padding: 60px 5cm;
  background-color: #f9f9f9;
}

.info-heading {
  font-size: 2rem;
  color: #115355;
  margin-bottom: 20px;
  text-align: left;
}

.info-description {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

.info-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.info-box {
  text-align: center;
  width: 22%;
}

.info-icon img{
  width: 80px;
  height: 80px;
}


.info-box a {
  color: #115355;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  transition: color 0.3s;
}

.info-box a:hover {
  color: #0e4a4a;
}

@media screen and (max-width: 768px) {
  .info-section {
    padding: 40px 1cm;
  }

  .info-grid {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .info-box {
    width: 45%;
    text-align: center;
  }

  .info-heading,
  .info-description {
    text-align: center;
  }

  .info-box a {
    font-size: 1rem;
  }
}


/* <---another Section---> */
.listing-section {
  background-color: #ffffff;
  width: 100%;
}

.listing-inner {
  padding: 60px 5cm;
}

.listing-heading {
  font-size: 1.8rem;
  color: #115355;
  margin-bottom: 30px;
  text-align: left;
}

.listing-points {
  list-style-type: disc;
  padding-left: 20px;
  color: #000;
}

.listing-points li {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

.listing-points li strong {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .listing-inner {
    padding: 40px 1cm;
  }

  .listing-heading {
    font-size: 1.4rem;
    text-align: left;
  }

  .listing-points {
    padding-left: 1em;
  }

  .listing-points li {
    font-size: 0.95rem;
    text-align: left;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* <---another section---> */
.contact-section {
  background-color: rgba(17, 83, 85, 0.05); /* Transparent teal */
  padding: 60px 5cm;
}

.contact-heading {
  color: #115355;
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-subtext {
  font-size: 1rem;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.contact-flex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: #000;
  margin-bottom: 0px; /* Set the gap between label and input */
}


.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}

.send-btn {
  width: 10%;
  padding: 10px;
  background-color: #115355;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 4px;
}

.send-btn:hover {
  background-color: #fff;
  color: #115355;
  border: 2px solidrgb(70, 173, 177);
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 1cm;
  }

  .contact-flex {
    flex-direction: column;
  }

  .contact-image,
  .contact-form {
    width: 100%;
  }

  /* Reduce image height by 50% */
  .contact-image img {
    height: 50%;
    object-fit: cover;
  }

  .send-btn {
    width: 100%;
  }

  .contact-heading {
    text-align: left;
    font-size: 1.5rem;
  }

  .contact-subtext {
    text-align: left;
    font-size: 0.9rem;
  }

  .subscribe-form {
  display: flex;
  align-items: center;
  gap: 20px; /* equal spacing between label and input+button */
  flex-wrap: wrap;
}

.subscribe-form label {
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.subscribe-input-group {
  display: flex;
  align-items: center;
  flex: 1;
}

.subscribe-input-group input[type="email"] {
  padding: 10px 15px;
  border-radius: 45px 0 0 45px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  width: 100%;
}

.subscribe-input-group button {
  padding: 10px 20px;
  background-color: #f6bc6a;
  color: #115355;
  font-weight: bold;
  border: none;
  border-radius: 0 45px 45px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-input-group button:hover {
  background-color: #fff;
  color: #000;
}

}


/* footer css */

.site-footer {
  background: linear-gradient(to right, #073334, #3b7c7d);
  color: white;
  padding: 60px 5cm;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1 1 0;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-column.center {
  align-items: center;
  text-align: center;
  margin-left: -40px; /* shift left slightly */
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-logo {
  width: 150px;
}

.footer-description {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-heading {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 6px 0;
  text-align: left;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.footer-links li a:hover {
  color: #8ef5c4;
}

.footer-subscribe-text {
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}


.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 40px 1cm;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .subscribe-input-group {
    flex-direction: column;
    border-radius: 10px;
    overflow: visible;
  }

  .subscribe-input-group input,
  .subscribe-input-group button {
    width: 100%;
    border-radius: 10px;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

.footer-bottom {
  background-color: #062d2e;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  color: white;
}

.footer-bottom p {
  margin: 0;
}
