/* ==================================================
   GLOBAL
================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.text-pink {
    color: #ff2b77;
    text-decoration: none;
}

.bg-light-pink {
    background-color: #fadadd;
}

.text-pink1 {
    background: linear-gradient(135deg, #ff4d79 0%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: inline-block;
}

.small-text {
    font-size: 12px;
}


/* ==================================================
   BUTTONS
================================================== */

.about-gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    color: #fff;
    background: linear-gradient(135deg, #ff4d79 0%, #ff7a3d 100%);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-gradient-btn:hover {
    color: #fff;
    background-color: #e91d65;
}

.about-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    color: #ff2b77;
    background: transparent;
    border: 1px solid #ff2b77;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-outline-btn:hover {
    color: #fff;
    background-color: #ff2b77;
}


/* ==================================================
   HERO SECTION
================================================== */

.hero {
    width: 100%;
    overflow: hidden;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-learning-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}


/* ==================================================
   FEATURES SECTION
================================================== */

.features {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}

.feature-box {
    position: relative;
    min-height: 230px;
    padding: 25px 18px;
    text-align: center;
}

.feature-box::after {
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 1px;
    content: "";
    background-color: #ddd;
}

.feature-box:last-child::after {
    display: none;
}

.feature-icon {
    margin-bottom: 15px;
    font-size: 40px;
    display: inline-block;
    background: linear-gradient(135deg, #ff4d79 0%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.feature-box h5 {
    font-size: 18px;
    font-weight: 600;
}

.feature-box p {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* ==================================================
   E-LEARNING CARDS
================================================== */

.elearn-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 16px;
    text-align: center;
    background: #fff;
    border: 1px solid #f4d4dc;
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.elearn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.elearn-icon {
    margin-bottom: 12px;
    /* color: #ef3f73; */
    font-size: 32px;

    display: inline-block;
    background: linear-gradient(135deg, #ff4d79 0%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.elearn-card h4 {
    margin-bottom: 8px;
    color: #1d2438;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.elearn-card p {
    flex-grow: 1;
    margin-bottom: 16px;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.elearn-btn {
    margin-top: auto;
    color: #ef3f73;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.elearn-btn i {
    margin-left: 6px;
}


/* ==================================================
   E-LEARNING SWIPER
================================================== */

.elearn-swiper {
    position: relative;
    width: 100%;
    padding: 10px 60px 60px;
    overflow: hidden;
}

.elearn-swiper .swiper-wrapper {
    align-items: stretch;
}

.elearn-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.elearn-swiper .swiper-slide .elearn-card {
    width: 100%;
}

.elearn-swiper .swiper-button-prev,
.elearn-swiper .swiper-button-next {
    top: 50%;
    width: 45px;
    height: 45px;
    margin-top: 0;
    color: #ef3f73;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
}

.elearn-swiper .swiper-button-prev {
    left: 5px;
}

.elearn-swiper .swiper-button-next {
    right: 5px;
}

.elearn-swiper .swiper-button-prev::after,
.elearn-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.elearn-swiper .swiper-pagination {
    bottom: 8px !important;
}

.elearn-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #f4d4dc;
    opacity: 1;
}

.elearn-swiper .swiper-pagination-bullet-active {
    width: 24px;
    background: #ef3f73;
    border-radius: 20px;
}


/* ==================================================
   SUCCESS SECTION
================================================== */

.success-section {
    width: 100%;
    margin-top: -80px;
    padding: 40px 0;
    overflow: hidden;
}

.success-title {
    margin-bottom: 5px;
    color: #111a35;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.title-underline {
    width: 70px;
    height: 3px;
    margin: 8px auto 0;
    background-color: #ff2b77;
    border-radius: 10px;
}

.success-card {
    width: 100%;
    height: 100%;
    margin-top: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f2d8df;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.success-card .row {
    height: 100%;
}

.success-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.success-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px;
}

.success-content h5 {
    margin-bottom: 12px;
    color: #17233d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.success-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.success-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 15px 0 20px;
}

.success-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-stat i {
    color: #ef3b72;
    font-size: 22px;
}

.success-stat strong,
.success-stat span {
    display: block;
}

.success-stat strong {
    color: #17233d;
    font-size: 15px;
}

.success-stat span {
    color: #888;
    font-size: 13px;
}

.success-link {
    margin-top: auto;
    color: #ef3b72;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
/* New CSS */



/* ==================================================
   STATS SECTION
================================================== */

.stats-section {
    width: 100%;
    margin-top: -10px;
    padding: 40px 0;
}

.stats-wrapper {
    padding: 2px 10px;
    background: linear-gradient(
        90deg,
        #8f0078,
        #d4007d,
        #ff1475
    );
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    gap: 18px;
    padding: 20px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.stats-icon i {
    color: #fff;
    font-size: 30px;
}

.stats-content h3 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.stats-content p {
    margin: 5px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}


/* ==================================================
   WHY CHOOSE + TECHNOLOGY
================================================== */

.elearn-box,
.tech-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    padding: 30px;
    background: #fff;
    border: 1px solid #f4dbe4;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.elearn-box h2,
.tech-box h2 {
    margin-bottom: 25px;
    color: #1b2143;
    font-size: 24px;
    font-weight: 700;
}

.choose-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}

.icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 22px;
    color: #fff;
    background: #ff3d7f;
    border-radius: 50%;
}

.elearn-box img {
    width: 100%;
    max-width: 100%;
}

.col-lg-2-4 {
    flex: 0 0 20%;
    width: 20%;
    padding: 8px;
}

.tech-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tech-card img {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
}


/* ==================================================
   CTA SECTION
================================================== */

.cta-section {
    width: 100%;
    padding: 10px 0; /* Pehle 40px tha */
}

.cta-box {
     /* Pehle 180px tha */
     /* Top-bottom padding kam */
    overflow: hidden;
    min-height: 150px;
    padding: 10px 30px;
    background: linear-gradient(
        90deg,
        #ff3f8e,
        #9b27b0
    );

    border-radius: 18px;
}

.cta-box .row {
    min-height: 115px; /* Pehle 140px tha */
}

.cta-box h3 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.cta-box p {
    margin-bottom: 0; /* Extra bottom space remove */
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 25px; /* Button ki height kam */

    color: #ff3f8e;
    background: #fff;

    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    color: #ff3f8e;
    background: #f5f5f5;
}

.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-image img {
    width: 100%;
    max-width: 380px;
    max-height: 165px;
    object-fit: contain;
}

@media (max-width: 1200px)  {
.hero-right img{
    max-height: 600px;
}
}


/* Desktop - 1090 */
@media (max-width: 1100px)  {
    .hero {
        padding-top: 20px;
    }

    .hero h3 {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero h3 br {
        display: none;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-learning-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-learning-buttons a {
        width: 100%;
        max-width: 330px;
    }

    .feature-box {
        min-height: 210px;
    }

    .elearn-swiper {
        padding: 10px 10px 50px;
    }

    .elearn-swiper .swiper-button-prev,
    .elearn-swiper .swiper-button-next {
        display: none;
    }

    /* SUCCESS SECTION */

    .success-section {
        margin-top: -40px;
    }

    .success-title {
        font-size: 30px;
    }

    .title-underline {
        width: 60px;
        height: 3px;
    }

    .success-card {
        height: auto;
        border-radius: 15px;
    }

    .success-card .row {
        display: flex;
        flex-direction: column;
        height: auto;
        margin: 0;
    }

    .success-card .col-md-5,
    .success-card .col-md-7 {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .success-img {
        width: 100%;
        height: 220px;
        min-height: 220px;
        object-fit: cover;
    }

    .success-content {
        width: 100%;
        height: auto;
        padding: 20px 16px 25px;
    }

    .success-content h5 {
        font-size: 19px;
    }

    .success-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .success-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 18px 0;
    }

    /* STATS */

    .stats-item {
        justify-content: center;
    }

    /* TECHNOLOGY */

    .col-lg-2-4 {
        flex: 0 0 33.333%;
        width: 33.333%;
        padding: 5px;
    }

    .elearn-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .elearn-box,
    .tech-box {
        padding: 18px 15px;
    }

    /* CTA */

    .cta-section {
        padding: 30px 15px;
    }

    .cta-box {
        min-height: auto;
        padding: 25px 18px 0;
        text-align: center;
        border-radius: 15px;
    }

    .cta-box h3 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-btn {
        display: flex;
        width: 100%;
        padding: 13px 20px;
        margin-bottom:15px;
    }

    .cta-image {
        margin-top: 10px;
    }

    .cta-image img {
        width: 100%;
        max-width: 260px;
        max-height: none;
        margin: 0 auto;
    }
}
/* ==================================================
   TABLET - 991px
================================================== */

@media (max-width: 991.98px) {

    .hero {
        padding-top: 30px;
    }

    .hero .row {
        row-gap: 30px;
    }

    .hero .col-lg-5 {
        text-align: center;
    }

    .hero h3 {
        font-size: 32px;
    }

    .hero-right {
        margin-top: 10px;
    }

    .hero-right img {
        max-width: 700px;
    }

    .about-learning-buttons {
        justify-content: center;
    }

    .feature-box {
        border-bottom: 1px solid #e8e8e8;
    }

    .feature-box::after {
        display: none;
    }

    .stats-item {
        justify-content: flex-start;
        padding: 20px;
        border-right: none;
    }

    .col-lg-2-4 {
        flex: 0 0 25%;
        width: 25%;
    }

    .elearn-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .cta-box {
        min-height: auto;
        padding: 30px 25px;
        text-align: center;
    }

    .cta-box .row {
        min-height: auto;
        row-gap: 20px;
    }

    .cta-image img {
        max-width: 320px;
    }
}

/* ==================================================
   MOBILE - 767px
================================================== */

@media (max-width: 767.98px) {

    .hero {
        padding-top: 20px;
    }

    .hero h3 {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero h3 br {
        display: none;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-learning-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-learning-buttons a {
        width: 100%;
        max-width: 330px;
    }

    .feature-box {
        min-height: 210px;
    }

    .elearn-swiper {
        padding: 10px 10px 50px;
    }

    .elearn-swiper .swiper-button-prev,
    .elearn-swiper .swiper-button-next {
        display: none;
    }

    /* SUCCESS SECTION */

    .success-section {
        margin-top: -40px;
    }

    .success-title {
        font-size: 30px;
    }

    .title-underline {
        width: 60px;
        height: 3px;
    }

    .success-card {
        height: auto;
        border-radius: 15px;
    }

    .success-card .row {
        display: flex;
        flex-direction: column;
        height: auto;
        margin: 0;
    }

    .success-card .col-md-5,
    .success-card .col-md-7 {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .success-img {
        width: 100%;
        height: 220px;
        min-height: 220px;
        object-fit: cover;
    }

    .success-content {
        width: 100%;
        height: auto;
        padding: 20px 16px 25px;
    }

    .success-content h5 {
        font-size: 19px;
    }

    .success-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .success-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 18px 0;
    }

    /* STATS */

    .stats-item {
        justify-content: center;
    }

    /* TECHNOLOGY */

    .col-lg-2-4 {
        flex: 0 0 33.333%;
        width: 33.333%;
        padding: 5px;
    }

    .elearn-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .elearn-box,
    .tech-box {
        padding: 18px 15px;
    }

    /* CTA */

    .cta-section {
        padding: 30px 15px;
    }

    .cta-box {
        min-height: auto;
        padding: 25px 18px 0;
        text-align: center;
        border-radius: 15px;
    }

    .cta-box h3 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-btn {
        display: flex;
        width: 100%;
        padding: 13px 20px;
        margin-bottom:15px;
    }

    .cta-image {
        margin-top: 10px;
    }

    .cta-image img {
        width: 100%;
        max-width: 260px;
        max-height: none;
        margin: 0 auto;
    }
}


/* ==================================================
   SMALL MOBILE - 575px
================================================== */

@media (max-width: 575.98px) {

    .hero h3 {
        font-size: 27px;
    }

    .hero p {
        font-size: 14px;
    }

    .feature-box {
        width: 100%;
        min-height: auto;
    }

    .success-section {
        padding: 25px 12px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-img {
        height: 200px;
        min-height: 200px;
    }

    .success-content {
        padding: 18px 14px 22px;
    }

    .success-stats {
        gap: 10px;
    }

    .success-stat {
        gap: 7px;
    }

    .success-stat i {
        font-size: 18px;
    }

    .success-stat strong {
        font-size: 14px;
    }

    .success-stat span {
        font-size: 11px;
    }

    .stats-item {
        flex-direction: column;
        gap: 10px;
    }

    .stats-content {
        text-align: center;
    }

    .col-lg-2-4 {
        flex: 0 0 50%;
        width: 50%;
    }

    .elearn-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tech-card {
        min-height: 85px;
    }

    .cta-section {
        padding: 25px 12px;
    }

    .cta-box {
        padding: 22px 14px 0;
    }

    .cta-box h3 {
        font-size: 21px;
    }

    .cta-image img {
        max-width: 220px;
    }
}

.elearn-swiper .swiper-slide .elearn-card:hover{
    background: var(--gradient);
    color: #fff !important;
}

.elearn-swiper .swiper-slide .elearn-card:hover .elearn-icon{
 background-color: #ddd;
 color: #fff;
}

.elearn-swiper .swiper-slide .elearn-card:hover .elearn-icon i,
.elearn-swiper .swiper-slide .elearn-card:hover h4,
.elearn-swiper .swiper-slide .elearn-card:hover p,
.elearn-swiper .swiper-slide .elearn-card:hover a {
    color: #fff !important;
}