
@media (max-width:576px) {
    .herosection .stat-card-top-right{
    }
    .herosection .stat-card{
        position: initial;
        padding: 10px !important;
        max-width: 50%;
        width: 100%;
    }
    .herosection .stat-icon-box{
        display: none !important;
    }
   .herosection .stat-label{
      font-size: 12px !important;
   }
}
/* Hero banner */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}


.enrollment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0a0a0a;
    color: white;
    border-radius: 9999px;
    width: fit-content;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
}

.enrollment-badge span {
    font-size: 0.875rem;
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.btn-primary-custom {
    position: relative;
    background: #0a0a0a;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.btn-primary-custom:hover {
    background: var(--new);
}

.btn-primary-custom:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.btn-primary-custom svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary-custom .arrow-icon {
    width: 1rem;
    height: 1rem;
}

.btn-outline-custom {
    background: white;
    color: #0a0a0a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-outline-custom svg {
    width: 1rem;
    height: 1rem;
}

.image-container {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.stat-card {
    position: absolute;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.stat-card-top-right {
    top: 1rem;
    right: 1rem;
    background: white;
    max-width: 240px;
    padding: 15px;
}

.stat-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon-box {
    width: 3rem;
    height: 3rem;
    background: var(--new);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

.stat-card-bottom-left {
    bottom: 1rem;
    left: 1rem;
    background: #0a0a0a;
    color: white;
}

.stat-number-large {
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-light {
    font-size: 0.875rem;
    color: #d1d5db;
    margin: 0;
}

.stat-card-bottom-right {
    bottom: 1rem;
    right: 1rem;
    background: white;
}

@media (min-width: 992px) {
    .stat-card-bottom-right {
    bottom: -1rem;
    right: -1rem;
}
    .stat-card-bottom-left {
    bottom: -1rem;
    left: -1rem;
}
    .stat-card-top-right{
          top: -2rem;
    right: -2rem;
    }
    .hero-container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .main-heading {
        font-size: 3.75rem;
    }
}
/* Hero banner */


/* Trust Section Styles */
.trust-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.trust-stat-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.trust-stat-card:hover {
  border-color: var(--primarycolor);
}

.trust-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, rgb(139 92 246 / 14%), rgba(88, 28, 135, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--primarycolor);
}

.trust-stat-value {
  color: #111827;
  font-size: 30px;
  margin-bottom: 8px;
  line-height: 1;
  font-weight: 600;
}

.trust-stat-label {
  color: #4b5563;
  font-size: 16px;
}

.trust-paragraph-2 {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.trust-cta {
  background: black;
  border-radius: 10px;
  padding: 20px;
}

.trust-cta-text {
  color: #ffffff;
  margin: 0;
}
/* Tablet styles */
@media (min-width: 768px) {
  .trust-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-stat-value {
    font-size: 36px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .trust-stat-value {
    font-size: 40px;
  }
}




    .aimgraphic ul li::before {
        content: '✔';
        color: #28a745;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }
