@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --accent: #053b6b; /* deep teal */
  --accent-2: #009159; /* bright green */
  --muted: #b6c0c6;
  --bg: #c2d9ee;
  --card: #ffffff;
  --nav-bg: #0f1530; /* dark navy for top and footer */
  --maxw: 1160px;
  --alt: #dbe8f3;
  font-family: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html,
body {
  height: 100%;
  margin: 0;
  color: #072427;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

p {
  margin-bottom: 16px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem;
}
#site-logo {
  height: 52px;
  display: block;
}

/* Top image (screenshot style) */
.top-image-wrap {
  background: var(--nav-bg);
  padding: 0.35rem 0;
}
.top-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.top-header-wrap {
  display: flex;
  width: 100%;
}

.top-header {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  background-color: var(--accent);
}
.top-header a {
  color: #fff;
  text-decoration: none;
  gap: 6px;
}

.location,
.mailTo,
.call {
  color: var(--card);
  display: flex;
  align-items: center;
}

.location::before,
.mailTo::before,
.call::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}

.location::before {
  background: url("../images/location.png") no-repeat center center;
  background-size: 18px;
}

.mailTo::before {
  background: url("../images/email.png") no-repeat center center;
  background-size: 18px;
}

.call::before {
  background: url("../images/phone-call.png") no-repeat center center;
  background-size: 18px;
}

.topContactWrap {
  display: flex;
  align-items: center;
  margin-left: 30px;
  gap: 10px;
  color: var(--card);
}

/* header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(7, 36, 37, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.6rem 0;
}
.nav {
  display: flex;
  gap: 1rem;
}
.nav a {
  padding: 8px;
  color: #0b2b26;
  font-weight: 600;
  text-decoration: none;
}

nav a.active {
  color: var(--accent-2);
  font-weight: bold;
  border-bottom: 2px solid var(--accent-2);
}

/* hero */
.hero {
  padding: 3rem 0;
  background: url("../images/banner.png") no-repeat center center;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 59, 107, 0.9) 20%,
    rgba(5, 59, 107, 0) 100%
  );
}
.section-alt {
  background: linear-gradient(180deg, #ffffff, #d0e7e0);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero-content .welcomeText {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--card);
}

.hero-content .subhead {
  font-size: 16px;
}

.hero-content .subhead strong {
  font-size: 20px;
  color: #d6e500;
}

.hero-content h1 {
  font-size: 42px;
  margin: 0 0 0.5rem;
  color: var(--card);
  line-height: 50px;
}

.hero-content p {
  line-height: 1.5;
  color: var(--card);
}

.sub {
  font-weight: 600;
  color: #274a45;
  margin-bottom: 12px;
  font-size: 18px;
}
.btn {
  background: var(--accent-2);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  display: inline-block;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.btn.ghost {
  background: transparent;
  color: var(--card);
  border: 1px solid #00e58d;
}

/* About section */

.title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.title-wrap p {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--accent);
}

.title-wrap .our-partners {
  color: var(--bg);
}

.title-wrap h2 {
  font-size: 36px;
  line-height: 50px;
}

.break {
  display: block;
}

.about-section-img {
  width: 400px;
  height: 500px;
  display: block;
  overflow: hidden;
}

.about-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

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

.about-section h2 {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.about-section blockquote {
  display: block;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  font-weight: 300;
  font-size: 14px;
}

.about-section-content {
  width: 50%;
  flex-shrink: 0;
}

.about-section-img {
  width: 40%;
}

.aboutWrap {
  display: flex;
}

.aboutWrap h3 {
  font-size: 32px;
  line-height: 42px;
}

.subhead {
  font-size: 20px;
  line-height: 30px;
  color: #3a6569;
}

.aboutWrap_left {
  width: 60%;
  padding-right: 80px;
}

.aboutWrap_right {
  width: 40%;
  background-color: #99dbcf;
  padding: 24px;
  border-radius: 10px;
  color: var(--nav-bg);
  overflow: hidden;
}

.missionSubHead {
  color: var(--accent);
  font-size: 20px;
  line-height: 30px;
}

.aboutWrap_right strong {
  color: var(--accent);
}

.aboutWrap_right_img {
  overflow: hidden;
  margin: 0 -24px -32px -24px;
}

.aboutWrap_right_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* sections variations */
.section {
  padding: 3rem 0;
}
.section-alt {
  background: var(--alt);
}
.partners-section {
  background: var(--accent);
  color: #f2e9ff;
  padding: 3rem 0;
  text-align: center;
}
.partners-title {
  letter-spacing: 6px;
  color: #d6b88b;
  margin-bottom: 2.5rem;
}

/* grid & cards */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.card {
  background: var(--card);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2, 10, 25, 0.04);
  display: flex;
  align-items: center;
}

.card figure {
  display: block;
  width: 250px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 16px;
  flex-shrink: 0;
}

.card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card .card-content {
  display: block;
}

.card .card-content h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
}

.card .card-content p {
  font-size: 16px;
  line-height: 20px;
}

/* team */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.team-member {
  display: block;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.team-member .team-member-info {
  background-color: var(--accent);
  padding: 20px;
  color: var(--card);
  font-size: 14px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: -100px;
  text-align: left;
}

.team-member-img {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  width: 350px;
  height: 445px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
}
.team-member-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.designation {
  font-size: 20px;
  color: var(--accent);
  line-height: 26px;
  margin-bottom: 20px;
  display: block;
}

.why-us-wrap {
  display: flex;
}

.why-us-img {
  width: 40%;
  overflow: hidden;
  border-radius: 10px;
}

.why-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-us-lists {
  width: 60%;
  padding-left: 60px;
  margin: 0 auto;
}

.why-us-lists li {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
  position: relative;
  padding-bottom: 16px;
}

.why-us-lists li:not(:last-child):before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: #000;
  position: absolute;
  top: 7px;
  left: 0;
}

.why-us-lists li span {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  background-color: var(--alt);
  display: inline-block;
  position: absolute;
  left: -8px;
  top: 5px;
  border-radius: 50%;
}

.why-us-lists li span::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--accent);
  position: absolute;
  border-radius: 50%;
  left: 3px;
  top: 3px;
}

/* form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
label {
  display: block;
  font-size: 0.9rem;
  color: #274a45;
}
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(2, 6, 23, 0.06);
  margin-top: 16px;
  font-family: inherit;
}
label.full {
  grid-column: 1/-1;
}
.form-actions {
  margin-top: 0.75rem;
}
.form-note {
  font-size: 14px;
  color: rgb(235, 4, 4);
  display: block;
  margin-top: 16px;
}

/* footer styling to match provided footer.png look */
.site-footer-footer {
  background: var(--accent);
  color: #dbe7ec;
  padding: 3rem 0 0 0;
}
.footer-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-left {
  flex: 0 0 30%;
}

.footer-logo-img {
  background-color: var(--card);
  padding: 8px;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}

.footer-logo {
  height: 60px;
}
.tagline {
  color: #c8d9dc;
  margin-top: 0;
  margin-bottom: 1rem;
}
.footer-columns {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}
.footer-col {
  min-width: 180px;
}
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.footer-col p,
.footer-col ul {
  color: var(--muted);
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
}
.site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem 0;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.btmMail {
  margin: 16px 0;
  display: block;
}

/* Reset */

/* Overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Darker background & blur effect */
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9;
}

/* Show state */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 32px;
  border-radius: 12px;
  transform: translateY(-100px);
  transition: transform 0.4s ease;
}

.modal-header {
  display: block;
  position: sticky;
  top: 0;
}

.modal-info {
  max-height: 450px;
  overflow: auto;
}

.modal-info p {
  text-align: justify;
}

.team-modal {
  max-width: 900px;
}

/* Slide down animation */
.modal.show .modal-content {
  transform: translateY(0);
}

/* Close Button */
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 16px;
}

.close:hover {
  color: var(--accent);
}

.contact-wrap {
  display: flex;
  align-items: center;
}

.get-in-touch {
  width: 45%;
  padding-right: 100px;
}

.get-in-touch .title-wrap {
  text-align: left;
}

.contact-form {
  flex-grow: 1;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.partners-visual {
  display: block;
}

.partners-visual ul {
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  grid-auto-flow: row;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: start;
  gap: 32px;
}

.partners-visual ul li {
  list-style-type: none;
  padding: 8px 16px;
  background-color: var(--card);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.partners-visual ul li img {
  width: 160px;
  max-width: 100%;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white; /* or your preferred background */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.otherMember {
  margin: 40px 0 20px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.otherMember li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
  text-align: center;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  width: 20%;
}

.otherMember li strong {
  display: block;
}

/* responsive */
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
    width: 100%;
    margin: 0;
  }

  .top-header {
    padding: 8px 0;
  }

  .top-header a:first-child {
    margin-left: 0;
    margin-right: 12px;
  }
  .location {
    display: none;
  }
  .topContactWrap {
    align-items: flex-start;
    margin-left: 0;
    overflow: auto;
  }

  .topContactWrap::-webkit-scrollbar {
    display: none;
  }

  .location::before,
  .mailTo::before,
  .call::before {
    width: 14px;
    height: 14px;
    background-size: 14px;
    top: 2px;
  }

  .hero {
    padding-bottom: 50px;
  }

  .hero-content {
    z-index: 9;
    gap: 16px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-visual {
    bottom: -100px;
  }

  .hero-visual img {
    opacity: 0.3;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-section {
    flex-direction: column;
  }

  .about-section-content {
    width: 100%;
    padding-right: 0;
  }

  .about-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-section blockquote {
    margin-bottom: 20px;
  }

  .about-section-img {
    width: 100%;
    margin-top: 20px;
  }

  .title-wrap {
    margin-bottom: 30px;
  }

  .title-wrap p {
    font-size: 16px;
  }

  .title-wrap h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .break {
    display: inline-block;
  }

  .aboutWrap h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .subhead,
  .missionSubHead {
    font-size: 16px;
    line-height: 20px;
  }

  .card {
    flex-direction: column;
  }

  .card figure {
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .grid {
    grid-template-columns: unset;
    display: flex;
    overflow: auto;
    margin-right: -16px;
  }

  .grid .card {
    width: 300px;
    flex-shrink: 0;
  }

  .grid .card:last-child {
    margin-right: 16px;
  }

  .grid::-webkit-scrollbar {
    display: none;
  }

  .nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-columns {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .footer-left {
    width: 100%;
  }

  .aboutWrap,
  .why-us-wrap {
    flex-direction: column;
  }

  .aboutWrap_left {
    padding-right: 0;
    width: 100%;
  }

  .aboutWrap_right {
    width: auto;
    margin: 0 -16px;
    border-radius: 0;
    padding: 16px;
  }

  .why-us-img {
    display: none;
  }

  .why-us-lists {
    width: 100%;
    padding-left: 0;
  }

  .team-grid {
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .team-member-img {
    width: 100%;
  }

  .modal-content {
    padding: 12px;
    font-size: 14px;
  }

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

  .get-in-touch {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .get-in-touch .title-wrap {
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }

  .partners-section {
    padding: 32px 0;
  }

  .partners-visual {
    margin-right: -16px;
  }

  .partners-visual ul {
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 16px;
    overflow: auto;
  }

  .partners-visual ul::-webkit-scrollbar {
    display: none;
  }

  .partners-visual ul li {
    min-height: 120px;
    width: 200px;
    flex-shrink: 0;
  }

  .partners-visual ul li img {
    width: 160px;
    max-width: 100%;
  }

  .otherMember {
    margin: 20px 0 16px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .otherMember li {
    width: calc(50% - 8px);
    padding: 8px 12px;
  }

  .otherMember li strong {
    display: block;
  }
}

/* reveal */
[data-sr] {
  opacity: 0;
  transform: translateY(18px);
  transition: all 700ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* partners image styling */
.partners-visual img {
  max-width: 980px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
