  
    :root{
      --accent1: #00A8DC;
      --accent2: #003A4C;
      --container: 1200px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:#111;
      background:#fff;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    /* Hero banner */
    .mfqk-hero{
      min-height:220px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:36px 20px;
      color:#fff;
      /* The gradient overlay + background image. Replace 'team-bg.jpg' in url(...) with your image path or url() */
      background-image: linear-gradient(180deg, rgba(0,168,220,0.85), rgba(0,58,76,0.85)), url('img/1bbd04b12cef9e47ccf8777859ae8313e95c3e51.png');
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
    }
    .mfqk-hero__wrap{max-width:920px}
    .mfqk-hero__label{font-size:20px; margin-bottom:6px; opacity:0.95}
    .mfqk-hero__title{font-size:56px; margin:0; line-height:0.95; font-weight:800; letter-spacing:2px}
    .mfqk-hero__lead{max-width:760px; margin:14px auto 0; font-size:15px; line-height:1.5; opacity:0.95}

    /* Responsive tweaks */
    @media (max-width:900px){
      .mfqk-hero__title{font-size:40px}
      .mfqk-logo img{height:56px}
      .mfqk-nav ul{gap:18px}
    }
    @media (max-width:640px){
      .mfqk-header__inner{padding:14px}
      .mfqk-logo img{height:48px}
      .mfqk-nav{display:none}
      .mfqk-hero{min-height:260px; padding:24px 12px}
      .mfqk-hero__title{font-size:28px}
    }
      a { color: inherit; text-decoration: none; }

    /* Top header */
    .header { position: sticky; top: 0; background: #fff; z-index: 10; border-bottom: 1px solid #ececec; }
    .navbar { max-width: 1200px; margin: 0 auto; height: var(--nav-height); display: flex; align-items: center; gap: 20px; padding: 0 20px; }

    .brand { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
    .logo { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; background: #f3f5f7; display: block; }

    .brand-text { line-height: 1; }
    .brand-text .title { font-size: 40px; font-weight: 800; letter-spacing: 1px; }
    .brand-text .subtitle { margin-top: -4px; font-size: 20px; font-weight: 100; letter-spacing: 0.5px; }

    .spacer { flex: 1; }
.navlinks {
  display: flex;
  gap: 40px;
}

.navlinks a {
  font-weight: 600;
  position: relative; /* Needed for the underline */
  text-decoration: none; /* Remove default underline */
  color: inherit; /* Keep your current text color */
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* space between text and line */
  width: 0%;
  height: 2px;
  background-color: #1654D2;
  transition: width 0.3s ease;
}

.navlinks a:hover::after {
  width: 100%;
}




  /* SECTION WRAPPER (page/body remains white) */
  .mf-team-section {
    background: #ffffff; /* body stays white */
    padding: 56px 20px;
    display: flex;
    justify-content: center;
  }

  /* PANEL: white → blue gradient background, rounded */
  .mf-panel {
    width: min(760px, 96%);
    border-radius: 28px;
    padding: 56px 44px 48px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 3px solid #00A8DC;             /* crisp outer cyan border */
    color: #ffffff;
    text-align: center;

    /* gradient goes from white at the very top to full #00A8DC at the bottom */
    background: linear-gradient(180deg,
                #ffffff 0%,
                #e9fbff 10%,
                #c8f3fb 24%,
                #8fe3f6 44%,
                #4acbe9 68%,
                #00A8DC 100%);
    position: relative;
    overflow: hidden;
  }

  /* PHOTO: white framed card near top like the design */
  .mf-photo-wrap {
    display: flex;
    justify-content: center;
    margin-top: -18px; /* pull the frame slightly upward so it visually hugs the top edge */
    margin-bottom: 18px;
  }

  .mf-photo-frame {
    background: #ffffff;
    padding: 12px;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.14);
    display: inline-block;
  }

  /* IMAGE: exact size set for desktop to match the example; scales down on small screens */
  .mf-photo-frame img {
    display: block;
    width: 520px;              /* desktop exact width to match the provided screenshot */
    max-width: 86vw;           /* responsive cap for narrow screens */
    height: 45vw;
    border-radius: 18px;       /* rounded corners like the design */
    object-fit: cover;
    vertical-align: middle;
  }

  /* NAME + ROLE */
  .mf-name {
    margin: 14px 0 6px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.2px;
  }
  .mf-role {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
  }

  /* BIO text: left-aligned block within the centered panel */
  .mf-bio {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
  }
  .mf-bio p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
  }

  /* RESPONSIVE TWEAKS */
  @media (max-width: 880px) {
    .mf-panel { padding: 44px 28px 36px; border-radius: 20px; }
    .mf-photo-frame img { width: 420px; max-width: 78vw; }
  }

  @media (max-width: 520px) {
    .mf-panel { padding: 26px 18px; border-radius: 14px; }
    .mf-photo-frame { padding: 8px; border-radius: 14px; }
    .mf-photo-frame img { width: 100%; border-radius: 12px; }
    .mf-name { font-size: 18px; }
    .mf-bio { text-align: left; }
  }


  
  
    body {
      font-family: Arial, sans-serif;

      margin: 0;
      padding: 0;
    }

    .team-section {
      display: flex;
      justify-content: center;
      gap: 60px; /* Increased space between cards */
      padding: 50px;
      flex-wrap: wrap;
    }

    .team-card {
      background: linear-gradient(to bottom, #9EE8FF2B, #019CCC);
      border-radius: 25px;
      width: 460px;   /* Increased width */
      min-height: 500px; /* Increased height */
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      text-align: center;
      color: #fff;
      display: flex;
      flex-direction: column;
    }

    .team-card img {
      width: 100%;
      height: 380px; /* fixed height for uniform look */
      border-radius: 20px;
      margin-bottom: 20px;
      object-fit: cover;
    }

    .team-card h3 {
      margin: 7px 0 5px;
      font-size: 22px;
      font-weight: bold;
    }

    .team-card p {
      margin: 3px 0;
      font-size: 15px;
      line-height: 1.4;
      color: #f0f0f0;
    }

    .team-card .role {
      font-weight: bold;
      margin-bottom: 8px;
      font-size: 16px;
    }

    .team-card .phone {
      margin-bottom: 15px;
      font-size: 15px;
    }

    .team-card .about-title {
      font-weight: bold;
      margin: 15px 0 8px;
      font-size: 15px;
    }
  

    

  .team-card-oge {
    background: linear-gradient(to bottom, #9EE8FF2B, #019CCC);
    border-radius: 25px;
    width: 600px;          /* Increased width */
    min-height: 650px;     /* Increased height */
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-align: center;
    color: #fff;
    margin: 50px auto; /* centers the single card */
  }

  .team-card-oge img {
    width: 100%;
    height: 470px;
    border-radius: 20px;
    margin-bottom: 25px;
    object-fit: cover;
  }

  .team-card-oge h3 {
    margin: 10px 0 5px;
    font-size: 24px;
    font-weight: bold;
  }

  .team-card-oge p {
    margin: 6px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #f0f0f0;
  }

  .team-card-oge .role {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 17px;
  }

  .team-card-oge .phone {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .team-card-oge .about-title {
    font-weight: bold;
    margin: 18px 0 10px;
    font-size: 16px;
  }

      
/* Footer */
.footer {
  background: linear-gradient(to right, #009fe3, #003b6f);
  color: white;
  padding: 50px 10% 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 70px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links p, .footer-company ul li, .footer-help p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-company ul {
  list-style: none;
  padding: 0;
}

.footer-company ul li a {
  color: white;
  text-decoration: none;
}

.newsletter {
  display: flex;
  margin: 15px 0;
}

.newsletter input {
  padding: 10px;
  border-radius: 20px 0 0 20px;
  border: none;
  outline: none;
  flex: 1;
}

.newsletter button {
  padding: 10px 15px;
  border-radius: 0 20px 20px 0;
  border: none;
  background: #5e2ff5;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.faq-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
}
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px){
    .row{grid-template-columns:1fr; gap:22px}
    .footer-grid{grid-template-columns:1fr 1fr}
  }

  
/* 📱 Responsive styling for phone screens */
@media (min-width: 321px) and (max-width: 540px) {

  .footer {
    padding: 40px 8% 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr; /* Single column */
    gap: 35px; /* More breathing space */
    justify-items: center; /* Center all child blocks */
  }

  /* Logo block */
  .footer-logo img {
    max-width: 65px;
    margin: 0 auto 10px;
    display: block;
  }

  .footer-logo h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .footer-logo p {
    font-size: 0.9rem;
    margin: 0;
  }

  /* Social / company / help headings */
  .footer-links h4,
  .footer-company h4,
  .footer-help h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Social links & company links */
  .footer-links p,
  .footer-company ul li,
  .footer-help p {
    font-size: 0.9rem;
    margin: 6px 0;
    text-align: center;
  }

  .footer-company ul {
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }

  .footer-company ul li {
    margin: 6px 0;
  }

  .footer-company ul li a {
    display: inline-block;
    padding: 4px 0;
  }

  /* Newsletter layout */
  .newsletter {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 12px;
  }

  .newsletter input {
    width: 100%;
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
  }

  .newsletter button {
    width: 100%;
    border-radius: 20px;
    padding: 12px;
  }

  /* Bottom bar */
  .footer-bottom {
    margin-top: 25px;
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
  }

  .footer-bottom p {
    margin: 5px 0;
  }
}

/* 📱 Responsive styling for iPad or tablet screens */
@media (min-width: 550px) and (max-width: 1025px) {

  .footer {
    padding: 50px 8% 25px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 4 */
    gap: 40px 50px; /* row gap + column gap */
    justify-items: center; /* center each section */
    text-align: center; /* cleaner look on tablets */
  }

  /* Logo */
  .footer-logo img {
    max-width: 80px;
    margin: 0 auto 12px;
    display: block;
  }

  .footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .footer-logo p {
    font-size: 1rem;
    margin: 0;
  }

  /* Headings */
  .footer-links h4,
  .footer-company h4,
  .footer-help h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  /* Text + links */
  .footer-links p,
  .footer-company ul li,
  .footer-help p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .footer-company ul {
    padding: 0;
    margin: 0;
  }

  .footer-company ul li {
    margin: 8px 0;
  }

  .footer-company ul li a {
    display: inline-block;
    padding: 3px 0;
  }

  /* Newsletter */
  .newsletter {
    flex-direction: row; /* keep side by side on tablets */
    width: 100%;
    max-width: 400px;
    margin: 15px auto 0;
  }

  .newsletter input {
    flex: 1;
    padding: 12px;
    font-size: 0.95rem;
  }

  .newsletter button {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  /* Bottom bar */
  .footer-bottom {
    margin-top: 35px;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.6;
  }

  .footer-bottom p {
    margin: 6px 0;
  }
}












