@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
.container{
    position: relative;
}
.backTop{
    position: fixed;
    background-color: white;
    padding: 8px 14px;
    border-radius: 50px;
    bottom: 10px;
    z-index: 100;
    right: 2rem;
    color: black;
    box-shadow: 0 4px 8.4px 0 rgba(140, 140, 140, 0.25);


}
.backTop .icons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.header{
padding: 10px 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: white;
    box-shadow: 0 4px 8px 0 rgba(121, 121, 121, 0.25);

}
.header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header nav ul{
    list-style: none;
    display: flex;
    gap: 2rem;
    
}
.header nav ul li a{
    color: #6B7280;
font-size: 1.2rem;
font-weight: 400;
line-height: 24px;
word-wrap: break-word;
text-decoration: none;
}
.header nav ul li a:hover{
    color: #0b5653;
}
.hero {
  width: 100%;
  min-height: 90vh;
  background-image: url("/assets/images/background\ main.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.overlay {
  width: 100%;
  height: 90vh;
  background: rgba(6, 90, 80, 0.85); /* green overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  margin-top: 5rem;
  position: relative;
}

.hero-content {
  max-width: 1000px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #CBFBF1;
}
.trust-section {
    background: #ffffff;
    padding: 106px 20px 110px 20px;
    width: 100%;
     /* min-height: 90vh; */
}

.trust-container {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* Background image with opacity */
.trust-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/Group 2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
  top: -2rem;
  height: 70vh;
}
.trust-container h2 {
  font-size: 3.2rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin: 0 auto 60px;
    line-height: 1.6;
    padding: 0 15rem;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 4rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(#00BBA7, #009966);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 91px;
  margin-bottom: 16px;
}
.stat-card .icon img{
        width: 48px;
}
.stat-card h3 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #0f766e;
  margin-bottom: 6px;
}

.stat-card .title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #0f172a;
}

.stat-card span {
font-size: 20px;
    color: #64748b;
    margin-top: 4px;
}



.partnership-section {
  width: 100%;
  min-height: 100%;
  background-image: url("/assets/images/partnership\ background.jpg"); /* change path */
  background-size: cover;
  background-position: center;
  position: relative;
}

.partnership-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 90, 80, 0.9); /* green overlay */
  padding: 90px 20px;
}

.partnership-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.partnership-container h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.partnership-container .subtitle {
  font-size: 1.8rem;
  color: #d1fae5;
  /* max-width: 720px; */
  margin: 0 auto 60px;
  line-height: 1.6;
padding: 0 2rem;
font-weight: 350;
}

/* Cards */
.partnership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.p-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 30px 26px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.p-card:hover{
    background: #ffffff3b;
    border:1px solid #FFFFFF33;
}

.p-icon {
  width: 64px;
  height: 64px;
  background: #FE9A00;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.p-icon img{
    width: 40px;
}

.p-card h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.p-card p {
  font-size: 18px;
  color: #e5f5f2;
  line-height: 1.6;
}

.who-we-serve {
  background: #f8fafc;
  padding: 80px 20px;
}

.serve-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.serve-header {
  margin-bottom: 40px;
}

.serve-header h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 24px;
}


.logo-icon {
    
  color: #0f766e;
  font-size: 34px;
}
.logo-icon img{
    width: 120%;
}

.serve-header p {
  color: #64748b;
  font-size: 1.3rem;
  margin-top: 6px;
}

/* Cards layout */
.serve-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.serve-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  border-radius: 24px;
border: 0.8px solid rgba(0, 0, 0, 0.10);
background: #FFF;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
transition: all 0.3s ease;
}
.serve-card:hover{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.serve-card:hover .image-box img{
    transform: scale(1.1);
}

/* Image */
.image-box {
  position: relative;
    overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: 1;
}


.image-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 500;
}
.image-title .badge img{
  height: 76%;
  width: 76%;
}

.badge {
  background: #0F766E;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 6px;
}

/* List */
.serve-card ul {
  list-style: none;
  padding: 24px;
  flex-grow: 1;
}

.serve-card li {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 14px;
    position: relative;
    padding-left: 14px;
    display: flex;
    /* align-items: center; */
    gap: 0.6rem;
    line-height: 26px;
}



/* Button */
.primary-btn {
  margin: 0 24px;
  background: #0F766E;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
text-decoration: none;
text-align: center;
}

.primary-btn:hover {
  background: #148f86;
}




.regional-section {
  width: 100%;
  min-height: 100vh;
  background-image: url("/assets/images/regional.png"); /* your map image */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Orange overlay */
.regional-overlay {
  width: 100%;
  height: 100%;
  background: rgba(170, 80, 30, 0.9);
  padding: 90px 20px;
}

/* Container */
.regional-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* Header */
.regional-header h2 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.regional-header h2 img{
    width:4%;
}

.countries {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #FEF3C6;
}

.tagline {
  font-size: 1.2rem;
  color: #FEE685;
}

/* Grid */
.regional-grid {
  margin-top: 60px;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; */
}
.regional-flex {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 30px;
}

/* Cards */
.region-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 30px 20px;
    backdrop-filter: blur(1px);
    width: 33%;
          transition: all 0.3s ease;
}
.region-card:hover{
    background: #ffffff3b;
    border:1px solid #FFFFFF33;
}


.region-card .icon {
font-size: 28px;
    margin-bottom: 14px;
    margin-right: auto;
    margin-left: auto;
    background: none !important;
}
.region-card .icon img, .region-card .icon svg{
 width: 4rem;
    height: 4rem;
}

.region-card h3 {
    font-size: 32px;
    margin-bottom: 4px;
    font-weight: 500;
}

.region-card strong {
display: block;
    font-size: 40px;
    color: #ffd230;
    margin-bottom: 6px;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.region-card p {
    font-size: 16px;
    color: #fff3e0;
}




.cta-section {
  width: 100%;
  min-height: 100vh;
  background-image: url("/assets/images/form.jpg"); /* background image */
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 90, 80, 0.9);
  padding: 80px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  color: #ffffff;
}

/* LEFT */
.cta-left h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1rem;
  color: #CBFBF1;
  margin-bottom: 32px;
  line-height: 1.6;
  width: 71%;
}

.cta-points .point {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.cta-points .icon {
  width: 32px;
  height: 32px;
  background: #f59e0b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 1.3rem;
}

.cta-points h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 500;
}

.cta-points p {
  font-size: 14px;
  color: #e5f5f2;
}

.cta-features {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  font-size: 14px;
  color: #e5f5f2;
}

.cta-features span {
  margin-left: 6px;
}
.cta-features .feature-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.cta-features .feature-card h6{
    margin-top: 1rem;
font-size: 1.1rem;
font-weight: 500;
}
.cta-features .feature-card p {
    text-align: center;
    margin-top: 0.5rem;
    color: #96F7E4;
}
/* FORM */
.cta-form {
  background: #ffffff;
  color: #0f172a;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-form h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  display: flex;
font-weight: 500;
gap: 1rem;
  align-items: center;
}

.form-sub {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
}

.cta-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 14px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    border-radius: 8px;
    /* border: 2px solid #fff; */
    font-size: 14px;
    border: none;
    outline: none;

    background: #F9FAFB;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border: 2px solid #0F766E;
}

.cta-form textarea {
  min-height: 90px;
  resize: none;
}

.cta-form button {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  background: #0F766E;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cta-form button:hover {
  background: #148f86;
}
.cta-form button:focus {
  background: #21a198;
}

.cta-form small {
  display: block;
  margin-top: 14px;
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
}



.site-footer {
  background: #003231;
  padding: 35px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d1fae5;
}

/* Left */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.logo-icon {
  color: #f59e0b;
  font-size: 26px;
}

.footer-left .tagline {
  font-size: 1.2rem;
  color: #FFFFFFB2;
  /* margin-top: 6px; */
}

/* Right */
.footer-right {
  text-align: right;
  font-size: 12px;
}
.footer-right p{
    color:#FFFFFFB2;
    font-size:1.1rem;
    font-weight: 300;
}

.footer-right span {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  color: #D3D3D3B2;
}

.footer-left .logo .logo-text{
    font-size: 2rem;
    font-weight: 500;
}


.disabled {
  pointer-events: none;
  opacity: 0.4;
}
