    .team-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .team-member {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      position: relative;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .image-wrapper {
      position: relative;
      width: 100%;
      padding-top: 120%; /* Default - taller on desktop */
      overflow: hidden;
    }

    .image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .team-member:hover img {
      transform: scale(1.1);
    }

    .team-member .info {
      padding: 15px;
    }

    .team-member .info h3 {
      margin: 10px 0 5px;
      font-size: 20px;
    }

    .team-member .info p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .team-container {
        grid-template-columns: repeat(3, 1fr);
      }
      .image-wrapper {
        padding-top: 100%; /* Medium screens - a little shorter */
      }
    }

    @media (max-width: 768px) {
      .team-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .image-wrapper {
        padding-top: 90%; /* Tablets - even shorter */
      }
    }

    @media (max-width: 500px) {
      .team-container {
        grid-template-columns: 1fr;
      }
      .image-wrapper {
        padding-top: 80%; /* Mobile phones - much shorter */
      }
    }
	/* ==========for homepage flip boxes start ======== */
	    /* Flip Box b Container */
    .flip-box-container {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 20px;
       justify-content: center;
       max-width: 1100px;
       margin: 0 auto;
}

    /* Flip Box b Styling */
    .flip-boxb {
      width: 250px;
      height: 500px;
      perspective: 1000px;
      cursor: pointer;
      flex-shrink: 0;
    }

    .flip-boxb-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s ease;
      transform-style: preserve-3d;
    }

    .flip-boxb:hover .flip-box-inner {
      transform: rotateY(180deg);
    }

    .flip-boxb-front,
    .flip-boxb-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .flip-boxb img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .flip-boxb-text-area {
      padding: 16px;
      background: white;
      text-align: center;
      font-size: 1rem;
      color: #333;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }

    .flip-boxb-back .content {
      margin-bottom: 12px;
    }

    .flip-boxb-back {
      transform: rotateY(180deg);
    }

    .fa-hand-point-right {
      font-size: 2.5rem;
      color: #669c3d;
      margin-top: 12px;
    }

    /* Button Style */
    a.buttonStyle002 {
      display: inline-block;
      padding: 12px 16px;
      background: #669c3d;
      border-radius: 12px;
      color: white;
      font-family: 'Ubuntu Condensed','Arial',sans-serif;
      font-size: 18px;
      text-align: center;
      text-decoration: none;
      text-shadow: 1px 1px #000000;
      transition: background 0.3s ease;
    }

    a.buttonStyle002:hover {
      background: #92be71;
    }
	/* ==========for homepage flip boxes end ======== */
	
	/* ============== for infobox 3 with 3rd col in the coop image start ------------ */
.infoboxlisting3col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #000;
}

.infoboxlisting3col-small img {
  max-width: 100px;
  height: auto;
  display: block;
}

.infoboxlisting3col-main img {
  max-width: 175px;
  height: auto;
  display: block;
}

.infoboxlisting3col-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  min-width: 0; /* helps with shrinking on small screens */
}

/* Responsive handling for small screens */
@media (max-width: 600px) {
  .infoboxlisting3col {
    flex-wrap: wrap;
  }

  .infoboxlisting3col-small img {
    max-width: 80px;
  }

  .infoboxlisting3col-main img {
    max-width: 140px;
  }

  .infoboxlisting3col-text {
    width: 100%;
    margin-top: 10px;
  }
}
	/* ============== for infobox 3 with 3rd col in the coop image end ------------ -->	
/* ======= word collage start ========== */

    .collage {
      width: 408px;
      height: 292px;
      position: relative;
      overflow: hidden;
      font-family: Arial, sans-serif;
      background: #003b75;
    }

    .word {
      position: absolute;
      color: #fff;
      opacity: 0;
      filter: blur(10px);
      animation: fadeBlur 4s ease-in-out infinite;
      white-space: nowrap;
      font-weight: normal;
    }

    .word.entrepreneur {
      font-weight: 900;
      font-size: 28px !important;
	  color: #f8dc0f;
    }

    @keyframes fadeBlur {
      0% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.9);
      }
      25% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
      }
      75% {
        opacity: 1;
        filter: blur(0);
      }
      100% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(1.1);
      }
    }
/* ======= word collage end ========== */
/* ======= hdr3bx 4 login-search-socialicons start =========== */
.container-hdr3bx {
  display: flex;
  /* flex-wrap: wrap; */
  min-height: 100px; /* or 100vh for full screen height */
  background-color: #e3fde9;
}

.column-hdr3bx {
  flex: 1 1 100%;
  padding: 1em;
  text-align: center;
}

/* Columns side by side at 350px+ */
@media (min-width: 350px) {
  .column-hdr3bx {
    flex: 1 1 33.3333%;
  }
}

/* Center content in left and right columns */
.left-hdr3bx,
.right-hdr3bx {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon styling */
.social-icons-hdr3bx {
  display: flex;
  gap: 1em;
}

.icon-hdr3bx {
  color: #669c3d;
  transition: color 0.3s;
}

.icon-hdr3bx:hover {
  color: #88b35a;
}
/* ======= hdr3bx 4 login-search-socialicons start =========== */
/* ============= abtr Alive by the river logo animation start ========== */
    .animation-container {
      position: relative;
      width: 100%;
      max-width: 939px;
      aspect-ratio: 939 / 301;
      overflow: hidden;
    }

    .animation-container img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0;
      animation-fill-mode: forwards;
      animation-duration: 1s;
      animation-iteration-count: 1;
    }

    /* Individual animations */
    .animation-container img:nth-child(1) {
      animation-name: fadeIn;
      animation-delay: 1s;
    }
    .animation-container img:nth-child(2) {
      animation-name: slideInLeft;
      animation-delay: 2.2s;
    }
    .animation-container img:nth-child(3) {
      animation-name: zoomIn;
      animation-delay: 3.4s;
    }
    .animation-container img:nth-child(4) {
      animation-name: rotateIn;
      animation-delay: 4.6s;
    }
    .animation-container img:nth-child(5) {
      animation-name: flipInY;
      animation-delay: 5.8s;
    }
    .animation-container img:nth-child(6) {
      animation-name: bounceIn;
      animation-delay: 7s;
    }
    .animation-container img:nth-child(7) {
      animation-name: scaleFadeIn;
      animation-delay: 8.2s;
    }

    /* Keyframes */
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes slideInLeft {
      0% { opacity: 0; transform: translateX(-200px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes zoomIn {
      0% { opacity: 0; transform: scale(0); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes rotateIn {
      0% { opacity: 0; transform: rotate(-180deg) scale(0); }
      100% { opacity: 1; transform: rotate(0deg) scale(1); }
    }
    @keyframes flipInY {
      0% { opacity: 0; transform: rotateY(90deg); }
      100% { opacity: 1; transform: rotateY(0); }
    }
    @keyframes bounceIn {
      0% { opacity: 0; transform: translateY(100px); }
      60% { transform: translateY(-20px); }
      80% { transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleFadeIn {
      0% { opacity: 0; transform: scale(0.5); }
      100% { opacity: 1; transform: scale(1); }
    }
/* ============= abtr Alive by the river logo animation end ========== */	
/* ============= amlogoani Manchester Alive logo animation start ========== */
    .amlogoani-wrapper {
      width: 100%;
      max-width: 839px;
      aspect-ratio: 839 / 717;
      position: relative;
    }

    .amlogoani-layer {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      animation: amlogoani-fadeIn 1.5s ease forwards;
    }

    /* Animation Delays and Effects */
    .amlogoani-layer:nth-child(1) { animation-delay: 1.5s; animation-name: amlogoani-fadeInUp; }
    .amlogoani-layer:nth-child(2) { animation-delay: 2.3s; animation-name: amlogoani-zoomIn; }
    .amlogoani-layer:nth-child(3) { animation-delay: 3.1s; animation-name: amlogoani-fadeInLeft; }
    .amlogoani-layer:nth-child(4) { animation-delay: 3.9s; animation-name: amlogoani-slideDown; }
    .amlogoani-layer:nth-child(5) { animation-delay: 4.7s; animation-name: amlogoani-rotateIn; }
    .amlogoani-layer:nth-child(6) { animation-delay: 5.5s; animation-name: amlogoani-bounceIn; }
    .amlogoani-layer:nth-child(7) { animation-delay: 6.3s; animation-name: amlogoani-fadeInRight; }

    /* Keyframes (Prefixed) */
    @keyframes amlogoani-fadeInUp {
      0%   { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes amlogoani-fadeInLeft {
      0%   { opacity: 0; transform: translateX(-40px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes amlogoani-fadeInRight {
      0%   { opacity: 0; transform: translateX(40px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes amlogoani-zoomIn {
      0%   { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }

    @keyframes amlogoani-rotateIn {
      0%   { opacity: 0; transform: rotate(-180deg) scale(0.5); }
      100% { opacity: 1; transform: rotate(0) scale(1); }
    }

    @keyframes amlogoani-bounceIn {
      0%   { opacity: 0; transform: scale(0.3); }
      50%  { transform: scale(1.05); }
      70%  { transform: scale(0.9); }
      100% { opacity: 1; transform: scale(1); }
    }

    @keyframes amlogoani-slideDown {
      0%   { opacity: 0; transform: translateY(-40px); }
      100% { opacity: 1; transform: translateY(0); }
    }
/* ============= amlogoani Manchester Alive logo animation end ========== */		

/* ==============10 column grid for menu listings=============== */
    .card10-grid-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 8px;
    }

    .card10 {
      background-color: #e3fde9;
      border: 1px solid #ddd;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 100%;
      font-family: Arial, sans-serif;
    }

    .card10-image {
      padding: 6px;
      text-align: center;
    }

    .card10-image img {
      width: 60px;
      height: auto;
      display: inline-block;
    }

    .card10-body {
      flex: 1;
      padding: 8px;
      text-align: center;
    }

    .card10-body h2 {
      margin: 0 0 4px;
      font-size: clamp(0.75rem, 1.2vw, 1rem);
      font-weight: bold;
      color: #669c3d;
    }

    .card10-body p {
      margin: 0;
      font-size: clamp(0.65rem, 1vw, 0.85rem);
      color: #669c3d;
    }

    .card10-footer {
      padding: 8px;
    }

    .card10-footer button {
      width: 100%;
      padding: 6px;
      background-color: #669c3d;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: clamp(0.7rem, 1vw, 0.9rem);
      cursor: pointer;
      font-family: Arial, sans-serif;
    }

    .card10-footer button:hover {
      background-color: #92be71;
    }

    @media (max-width: 1200px) {
      .card10-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
/* =============End 10 column grid================== */
	