
#president
{
	width: 100%; /* Make the image take the full width of the container */
}
.text-centerx
{
    text-align: center; /* Center the content */
}
.img-fluid {
    width: 30%; /* Keep the width for responsiveness */
    height: auto; /* Maintain aspect ratio */
}
.singleImg
{
	width: 15%;    /* Set the width to 100 pixels */
    height:15%    /* Set the height to 80 pixels */
    object-fit: cover; /* Maintain aspect ratio and cover the area */
    display: block;   /* Remove bottom space for inline images */
    margin: 0 auto;   /* Center the image horizontally */
}
.multipleImg
{
	width: 100px;    /* Set the width to 100 pixels */
    height: 80px;    /* Set the height to 80 pixels */
    object-fit: cover; /* Maintain aspect ratio and cover the area */
    display: block;   /* Remove bottom space for inline images */
    margin: 0 auto;   /* Center the image horizontally */
}
</style>
<style>
   .card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  /* Left side image */
  .photo-side {
    flex: 0 0 40%;
    background: #e2e8f0;
  }

  .photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Right side */
  .content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Tabs header — always scrollable, nothing hidden */
.tab-header {
  display: flex;
  flex-wrap: nowrap; /* keep in one line */
  overflow-x: auto; /* enable horizontal scroll */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* smooth mobile scroll */
  scrollbar-width: none; /* hide scrollbar (Firefox) */
  background: #f1f5ff;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap; /* prevent tab text from wrapping */
}

/* Hide scrollbar in Chrome, Safari */
.tab-header::-webkit-scrollbar {
  display: none;
}

/* Tab labels */
.tab-header label {
  flex: 0 0 auto; /* ✅ ensure each tab keeps its own width */
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: #475569;
  transition: 0.3s ease;
  border-radius: 6px 6px 0 0;
  margin-right: 4px;
  background: #e8eeff;
}

.tab-header label:hover {
  background: #dce4ff;
}

/* Active tab */
input[type="radio"] {
  display: none;
}

input#tab1:checked ~ .tab-header label[for="tab1"],
input#tab2:checked ~ .tab-header label[for="tab2"],
input#tab3:checked ~ .tab-header label[for="tab3"],
input#tab4:checked ~ .tab-header label[for="tab4"],
input#tab5:checked ~ .tab-header label[for="tab5"] {
  background: #0a3161;
  color: #fff;
}

  /* Tab contents */
  .tab-content {
    display: none;
    padding: 40px;
    animation: fade 0.4s ease;
  }

  input#tab1:checked ~ #content1,
  input#tab2:checked ~ #content2 {
    display: block;
  }

  @keyframes fade {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
  }

  .tab-content h2 {
    margin-top: 0;
    color: #113c8d;
  }

  .tab-content p, .tab-content ol {
    line-height: 1.7;
    color: #475569;
  }

  .tab-content ol {
    margin-top: 15px;
    padding-left: 22px;
  }


</style>
<style>
  

    /* Scoped to this component only */
    .awesome-steps {
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(135deg, #f8f9fa, #eef2f3);
      
      border-radius: 1rem;
      max-width: 900px;
      
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    }

    .awesome-steps h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 2rem;
      color: #2c3e50;
    }

    .awesome-steps ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .awesome-steps li {
      position: relative;
      background: white;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      padding: 1.6rem 1.8rem 1.6rem 4.5rem; /* left padding to make space for badge */
      overflow: visible;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    /* Decorative circular badge (no number) */
    .awesome-steps li::before {
      content: "";
      position: absolute;
      left: 1.25rem;               /* safe positive offset so it won't distort */
      top: 1.25rem;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      box-shadow: 0 3px 10px rgba(0,0,0,0.12);
      display: block;
      flex: none;
      z-index: 2;
    }

    /* optional small icon inside badge using another pseudo-element */
    .awesome-steps li::after {
      content: "✔"; /* or "" for empty; you can change to "●" or remove */
      position: absolute;
      left: 1.25rem;
      top: 1.25rem;
      width: 2.2rem;
      height: 2.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.95);
      font-weight: 700;
      font-size: 1.05rem;
      z-index: 3;
      pointer-events: none;
    }

    .awesome-steps li h3 {
      margin: 0 0 0.5rem 0;
      color: #333;
      font-size: 1.15rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .awesome-steps li p {
      margin: 0;
      color: #555;
      line-height: 1.6;
    }

    .awesome-steps li:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    @media (max-width: 600px) {
      .awesome-steps {
        padding: 2rem .75rem;
      }

      .awesome-steps li {
        padding-left: 3.8rem;
      }

      .awesome-steps li::before,
      .awesome-steps li::after {
        left: 1rem;
        top: 1rem;
        width: 1.9rem;
        height: 1.9rem;
      }

      .awesome-steps li::after { font-size: 0.95rem; }
    }
