html {
    scroll-behavior: smooth;
}

#batch-details {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header-banner {
    background-color: #343a40;
    color: white;
    margin-bottom: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 15vh;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: left;
    justify-content: center;
}
.footer {
    background-color: #343a40;
    color: white;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
}
.container {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em; 
    margin-bottom: 2em; 
    padding-top: 2em;
    padding-bottom: 2em;
}
.container ul {
    text-align: center;
}
.contentrow {
    Width:100%;
    Display: flex;
    Flex-direction: row;
    Justify-content: space-between;
    margin-bottom: 2em;
}
.contentcol {
    width: 50%;
}

.cowcontainer {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em; 
    margin-bottom: 2em; 
    padding-top: 2em;
    padding-bottom: 2em;
}
.cowcontainer ul {
    text-align: center;
}
.card {
    width: 50%;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0; /* Prevent content from overlapping header */
    margin-bottom: 2em; /* Prevent content from overlapping footer */
    padding-top: 2em;
    padding-bottom: 2em;
}
.certificate-container {
    width: auto;
    height: 10%;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.certificate-container img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
}
#left-banner {
    left: 10px;
}

#right-banner {
    right: 10px;
}

.certificate-container {
    width: 100%;
    overflow-x: auto;
    background: white;
    padding: 10px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #888 #f1f1f1;
}

.certificate-wrapper {
    display: flex;
    gap: 20px;
    padding: 10px;
}

/* Adjust Image Size */
.certificate-wrapper img {
    width: 150px; /* Adjust size */
    height: auto;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2)
}

/* Scrollbar Styling (For Chrome, Edge, Safari) */
.certificate-container::-webkit-scrollbar {
    height: 8px;
}

.certificate-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.certificate-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.certificate-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.header-logo {
    width: 150px; /* Adjust size */
    height: auto;
}

#home {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Container Layout */
.container {
  line-height: 1.2;
  padding: 0.2rem;
  max-width: 480px;
  margin: auto;
}

/* Header */
.trust-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  gap: 0.5rem;
  font-family: "poppins", sans-serif;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  max-width: 90%;
  margin-top: 1rem;
}

.untrust-row {
  display: none;
}

.logo {
  max-width: 60%;
  height: auto;
  margin: 0 auto 0.5rem;
}


.subtitle {
  font-size: 2.0rem;
  font-weight: 600;
  padding: 0 1rem;
}

/* Card Component */
.card {
  background: #fff;
  color: #6B7580;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  display: flex;
  align-items: normal;
  gap: 1rem;
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease;
  width: 90%;
}

.card:hover {
  transform: scale(1.01);
}

.badge {
  width: 5.5rem;
  height: auto;
  flex-shrink: 0;
}

.card-content {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    flex-shrink: 0;
}

.card-content p {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.button {
  display: inline-block;
  background: #28c76f;
  color: white;
  padding: 0.2rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}

.button:hover {
  background: #20b364;
}
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 540px;
    }
}
/* Media Queries */
@media (min-width: 600px) {
  .container {
    padding: 2rem;
  }

  .logo {
    max-width: 200px;
  }

  .subtitle {
    font-size: 1.5rem;
  }

}

@media (max-width: 320px) {
  .badge {
    width: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {

    .contentrow {
        flex-direction: column;
    }
    .contentcol {
        width: 100%;
    }

    .header-logo {
        width: 120px; /* Slightly smaller for mobile */
    }
}


