@import '../components/navbar.css';
@import '../components/footer.css';
@import '../components/card.css';
@import '../components/testimonial.css';
@import '../components/backtop.css';
/* Hero Section  */
body{
    background: #0E2147 !important;
}
/* ===== Header Video ===== */
.Header-Video-2 {
      position: relative;
    min-height: 115vh;
    z-index: 1;
    overflow: hidden;
    width: 111%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Header-Video-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
     background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #0E2147 100%
  );
}

.Header-Video__Content-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.Hero-academy-2 {
    position: absolute;
    bottom: 0%;
    left: 45%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 650px;
}

.Hero-Content-2 {
    text-align: center;
    margin: 0 auto;
}

.Hero-academy-2 h1 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(36px, 6vw, 55px);
    font-weight: bolder;
    letter-spacing: 2px;
    line-height: 1.2;
}

.Hero-academy-2 p {
    color: white;
    font-size: clamp(14px, 3vw, 23px);
    font-weight: 700;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 15px 0 25px 0;
    line-height: 1.5;
}

.Hero-academy-2 button {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: clamp(11px, 1.5vw, 14px);
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.5s ease;
    letter-spacing: 1px;
}

.Hero-academy-2 button:hover {
    background: rgba(255,255,255,0.1);
}

/* ===== Features ===== */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 60px;
    text-align: center;
    position: relative;
    background: #0E2147;
}

.feature .icon-bg {
    background-image: url("/storage/assets/images/Iconsbackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 90px;
    height: 90px;
    border-radius: 25px;
    margin: 0 auto 15px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .icon-bg i {
    color: #fff;
    font-size: 45px;
}

.feature p {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

/* ===== 991px ===== */
@media (max-width: 991px) {
    .Hero-academy-2 {
        bottom: 0%;
        width: 90%;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 30px 40px;
    }

    .feature .icon-bg {
        width: 75px;
        height: 75px;
    }

    .feature .icon-bg i {
        font-size: 38px;
    }
}

/* ===== 768px ===== */
@media (max-width: 768px) {
    .Hero-academy-2 {
        bottom: 0%;
        width: 90%;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 25px 20px;
    }

    .feature .icon-bg {
        width: 65px;
        height: 65px;
    }

    .feature .icon-bg i {
        font-size: 32px;
    }

    .feature p {
        font-size: 11px;
    }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
    .Header-Video-2 {
        min-height: 85vh;
    }

    .Hero-academy-2 {
        bottom: 0%;
        width: 90%;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 20px 10px;
    }

    .feature .icon-bg {
        width: 55px;
        height: 55px;
        border-radius: 15px;
    }

    .feature .icon-bg i {
        font-size: 26px;
    }

    .feature p {
        font-size: 9px;
    }
}

/* ===== 320px ===== */
@media (max-width: 320px) {
    .Header-Video-2 {
        min-height: 80vh;
    }

    .Hero-academy-2 h1 {
        font-size: 22px;
    }

    .Hero-academy-2 p {
        font-size: 11px;
    }

    .Hero-academy-2 button {
        font-size: 9px;
        padding: 8px 12px;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 15px 8px;
    }

    .feature .icon-bg {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .feature .icon-bg i {
        font-size: 22px;
    }

    .feature p {
        font-size: 8px;
    }
}