
/* SECTION */
.digital-solutions{
    padding:30px 8%;
    background:#ffffff;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;

    align-items:center;
}

/* LEFT SIDE */
.solution-large{
    position:relative;

    min-height:620px;

    border-radius:35px;
    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.solution-large img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK GRADIENT */
.solution-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.85)
    );

    padding:60px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

/* TAG */
.solution-overlay span{
    font-size:14px;
    font-weight:700;
    color:#00aaff;

    letter-spacing:1px;

    margin-bottom:18px;
}

/* TITLE */
.solution-overlay h2{
    font-size:56px;
    line-height:1.1;

    color:#fff;

    margin-bottom:20px;
}

/* TEXT */
.solution-overlay p{
    color:#dbeafe;
    line-height:1.9;

    max-width:520px;
}

/* RIGHT SIDE */
.solution-right{
    position:relative;
}

/* LIST */
.solution-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* ITEM */
.solution-item{
    position:relative;

    background:#f8fbff;

    padding:30px 30px 30px 95px;

    border-radius:24px;

    transition:0.35s;

    border:1px solid #dbeafe;

    overflow:hidden;
}

/* BLUE SHAPE */
.solution-item::before{
    content:"";

    position:absolute;

    left:-30px;
    top:50%;

    transform:translateY(-50%) rotate(45deg);

    width:90px;
    height:90px;

    background:#1d3557;

    border-radius:20px;
}

/* HOVER */
.solution-item:hover{
    transform:translateX(12px);

    box-shadow:0 20px 40px rgba(0,170,255,0.12);

    background:#ffffff;
}

/* ICON */
.solution-item i{
    position:absolute;

    left:28px;
    top:50%;

    transform:translateY(-50%);

    color:#fff;
    font-size:22px;

    z-index:2;
}

/* TEXT */
.solution-item p{
    margin:0;

    font-size:20px;
    font-weight:700;

    color:#1d3557;

    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:991px){

    .digital-solutions{
        grid-template-columns:1fr;
    }

    .solution-overlay h2{
        font-size:40px;
    }

    .solution-large{
        min-height:500px;
    }
}





/* SECTION */
.edu-angle{
    padding:30px 8%;
    background:linear-gradient(315deg,#f8fbff,#eef6ff);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

    position:relative;
    overflow:hidden;
}

/* ANGLED BACK SHAPE */
.edu-angle::before{
    content:"";
    position:absolute;

    top:0;
    right:-120px;

    width:500px;
    height:100%;

    background:#00aaff;

    transform:skewX(-15deg);

    opacity:0.08;
}

/* LEFT */
.edu-angle-text{
    flex:1;
    position:relative;
    z-index:2;
}

/* BADGE */
.edu-badge{
    display:inline-block;

    color:#00aaff;
    font-weight:800;
    letter-spacing:1px;

    margin-bottom:18px;
}

/* HEADING */
.edu-angle-text h2{
    font-size:35px;
    line-height:1.2;

    color:#1d3557;

    margin-bottom:20px;
}

/* TEXT */
.edu-angle-text p{
    color:#666;
    line-height:1.9;

    margin-bottom:15px;
}

/* STATS */
.edu-stats{
    display:flex;
    gap:25px;

    margin-top:25px;
}

/* BOX */
.edu-stat{
    background:#fff;

    padding:20px 25px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,0.08);

    border-left:4px solid #00aaff;
}

/* NUMBER */
.edu-stat h3{
    color:#00aaff;
    font-size:30px;

    margin:0;
}

/* RIGHT IMAGE */
.edu-angle-image{
    flex:1;
    position:relative;
    z-index:2;
}

/* IMAGE */
.edu-angle-image img{
    width:100%;
    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,0.15);

    transform:rotate(-2deg);

    transition:0.4s;
}

/* HOVER */
.edu-angle-image img:hover{
    transform:rotate(0deg) scale(1.03);
}

/* RESPONSIVE */
@media(max-width:991px){

    .edu-angle{
        flex-direction:column;
        text-align:center;
    }

    .edu-stats{
        justify-content:center;
    }

    .edu-angle-text h2{
        font-size:36px;
    }
}





/* SECTION */
.edu-clean{
    padding:120px 8%;
    background:linear-gradient(315deg,#ffffff,#f4f9ff);
}

/* BOX */
.edu-clean-box{
    max-width:1000px;
    margin:auto;

    text-align:left;
}

/* LABEL */
.edu-label{
    color:#00aaff;
    font-weight:800;
    letter-spacing:1px;

    display:inline-block;
    margin-bottom:15px;
}

/* HEADING */
.edu-clean h2{
    font-size:48px;
    line-height:1.2;

    color:#1d3557;

    margin-bottom:20px;
}

/* TEXT */
.edu-clean p{
    color:#666;
    line-height:1.9;

    margin-bottom:15px;
}


/* GRID → ROW */
.edu-clean-grid{
    margin-top:35px;

    display:flex;
    gap:20px;

    flex-wrap:nowrap;   /* same row */
}

/* CARD */
.edu-card{
    flex:1;              /* equal width */
    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;

    padding:22px 25px;

    border-radius:16px;

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    border-left:5px solid #00aaff;

    transition:0.3s;
}

/* HOVER */
.edu-card:hover{
    transform:translateY(-8px);
}

/* RESPONSIVE */
@media(max-width:991px){

    .edu-clean-grid{
        flex-direction:column; /* mobile me stack */
    }
}




.future-leaders{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;
}

/* BACKGROUND IMAGE */
.bg-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* OVERLAY */
.content-box{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:rgba(0,0,0,0.55);
    color:#fff;
    padding:20px;
}

/* TEXT */
.content-box h2{
    font-size:42px;
    max-width:800px;
    margin-bottom:15px;
}

.content-box p{
    font-size:18px;
    max-width:700px;
    line-height:1.8;
}




/* SECTION */
.digital-learning{
    padding:30px 8%;
    background:#f6faff;
}

/* CONTAINER */
.dl-container{
    max-width:100%;
    margin:auto;

    text-align:left;
}

/* TAG */
.dl-tag{
    display:inline-block;
    color:#00aaff;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:15px;
}

/* HEADING */
.dl-container h2{
    font-size:46px;
    color:#1d3557;

    margin-bottom:20px;
    line-height:1.2;
}

/* TEXT */
.dl-container p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .dl-container h2{
        font-size:34px;
    }
}





/* =========================================================
   GLOBAL RESPONSIVE FIX
========================================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img{
    max-width:100%;
    display:block;
}

body{
    overflow-x:hidden;
}


/* =========================================================
   DIGITAL SOLUTIONS SECTION
========================================================= */

.digital-solutions{
    padding:30px 8%;
    background:#ffffff;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;

    align-items:center;
}

/* LEFT SIDE */
.solution-large{
    position:relative;
    min-height:620px;

    border-radius:35px;
    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.solution-large img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */
.solution-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.85)
    );

    padding:60px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

/* TAG */
.solution-overlay span{
    font-size:14px;
    font-weight:700;
    color:#00aaff;

    letter-spacing:1px;
    margin-bottom:18px;
}

/* TITLE */
.solution-overlay h2{
    font-size:56px;
    line-height:1.1;

    color:#fff;
    margin-bottom:20px;

    word-break:break-word;
}

/* TEXT */
.solution-overlay p{
    color:#dbeafe;
    line-height:1.9;
    max-width:520px;
}

/* RIGHT */
.solution-right{
    position:relative;
}

/* LIST */
.solution-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* ITEM */
.solution-item{
    position:relative;

    background:#f8fbff;

    padding:30px 30px 30px 95px;

    border-radius:24px;

    transition:0.35s;

    border:1px solid #dbeafe;

    overflow:hidden;
}

/* BLUE SHAPE */
.solution-item::before{
    content:"";

    position:absolute;

    left:-30px;
    top:50%;

    transform:translateY(-50%) rotate(45deg);

    width:90px;
    height:90px;

    background:#1d3557;

    border-radius:20px;
}

/* HOVER */
.solution-item:hover{
    transform:translateX(12px);

    box-shadow:0 20px 40px rgba(0,170,255,0.12);

    background:#ffffff;
}

/* ICON */
.solution-item i{
    position:absolute;

    left:28px;
    top:50%;

    transform:translateY(-50%);

    color:#fff;
    font-size:22px;

    z-index:2;
}

/* TEXT */
.solution-item p{
    margin:0;

    font-size:20px;
    font-weight:700;

    color:#1d3557;

    line-height:1.5;

    word-break:break-word;
}


/* =========================================================
   EDUCATION ANGLE SECTION
========================================================= */

.edu-angle{
    padding:30px 8%;
    background:linear-gradient(315deg,#f8fbff,#eef6ff);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

    position:relative;
    overflow:hidden;
}

/* BACK SHAPE */
.edu-angle::before{
    content:"";
    position:absolute;

    top:0;
    right:-120px;

    width:500px;
    height:100%;

    background:#00aaff;

    transform:skewX(-15deg);

    opacity:0.08;
}

/* LEFT */
.edu-angle-text{
    flex:1;
    position:relative;
    z-index:2;
}

/* BADGE */
.edu-badge{
    display:inline-block;

    color:#00aaff;
    font-weight:800;
    letter-spacing:1px;

    margin-bottom:18px;
}

/* HEADING */
.edu-angle-text h2{
    font-size:35px;
    line-height:1.2;

    color:#1d3557;

    margin-bottom:20px;

    word-break:break-word;
}

/* TEXT */
.edu-angle-text p{
    color:#666;
    line-height:1.9;

    margin-bottom:15px;
}

/* STATS */
.edu-stats{
    display:flex;
    gap:25px;

    margin-top:25px;
    flex-wrap:wrap;
}

/* BOX */
.edu-stat{
    background:#fff;

    padding:20px 25px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,0.08);

    border-left:4px solid #00aaff;
}

/* NUMBER */
.edu-stat h3{
    color:#00aaff;
    font-size:30px;

    margin:0;
}

/* RIGHT IMAGE */
.edu-angle-image{
    flex:1;
    position:relative;
    z-index:2;
}

/* IMAGE */
.edu-angle-image img{
    width:100%;
    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,0.15);

    transform:rotate(-2deg);

    transition:0.4s;
}

/* HOVER */
.edu-angle-image img:hover{
    transform:rotate(0deg) scale(1.03);
}


/* =========================================================
   EDUCATION CLEAN SECTION
========================================================= */

.edu-clean{
    padding:120px 8%;
    background:linear-gradient(315deg,#ffffff,#f4f9ff);
}

/* BOX */
.edu-clean-box{
    max-width:1000px;
    margin:auto;
    text-align:left;
}

/* LABEL */
.edu-label{
    color:#00aaff;
    font-weight:800;
    letter-spacing:1px;

    display:inline-block;
    margin-bottom:15px;
}

/* HEADING */
.edu-clean h2{
    font-size:48px;
    line-height:1.2;

    color:#1d3557;

    margin-bottom:20px;

    word-break:break-word;
}

/* TEXT */
.edu-clean p{
    color:#666;
    line-height:1.9;

    margin-bottom:15px;
}

/* GRID */
.edu-clean-grid{
    margin-top:35px;

    display:flex;
    gap:20px;

    flex-wrap:nowrap;
}

/* CARD */
.edu-card{
    flex:1;

    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;

    padding:22px 25px;

    border-radius:16px;

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    border-left:5px solid #00aaff;

    transition:0.3s;
}

/* HOVER */
.edu-card:hover{
    transform:translateY(-8px);
}

/* NUMBER */
.edu-card .num{
    font-size:28px;
    font-weight:800;
    color:#00aaff;
}

/* TEXT */
.edu-card .text{
    font-size:18px;
    color:#1d3557;
    line-height:1.5;
}


/* =========================================================
   FUTURE LEADERS
========================================================= */

.future-leaders{
    position:relative;
    width:100%;
    min-height:400px;
    overflow:hidden;
}

/* IMAGE */
.bg-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* OVERLAY */
.content-box{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:rgba(0,0,0,0.55);

    color:#fff;
    padding:20px;
}

/* TITLE */
.content-box h2{
    font-size:42px;
    max-width:800px;

    margin-bottom:15px;
    line-height:1.3;

    word-break:break-word;
}

/* TEXT */
.content-box p{
    font-size:18px;
    max-width:700px;
    line-height:1.8;
}


/* =========================================================
   DIGITAL LEARNING
========================================================= */

.digital-learning{
    padding:30px 8%;
    background:#f6faff;
}

/* CONTAINER */
.dl-container{
    max-width:100%;
    margin:auto;
    text-align:left;
}

/* TAG */
.dl-tag{
    display:inline-block;

    color:#00aaff;
    font-weight:800;

    letter-spacing:1px;
    margin-bottom:15px;
}

/* HEADING */
.dl-container h2{
    font-size:46px;
    color:#1d3557;

    margin-bottom:20px;
    line-height:1.2;

    word-break:break-word;
}

/* TEXT */
.dl-container p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media(max-width:991px){

    .digital-solutions{
        grid-template-columns:1fr;
        gap:40px;
    }

    .solution-large{
        min-height:500px;
    }

    .solution-overlay{
        padding:40px;
    }

    .solution-overlay h2{
        font-size:40px;
    }

    .edu-angle{
        flex-direction:column;
        text-align:center;
    }

    .edu-stats{
        justify-content:center;
    }

    .edu-angle-text h2{
        font-size:36px;
    }

    .edu-clean-grid{
        flex-direction:column;
    }

    .edu-clean h2{
        font-size:38px;
    }

    .content-box h2{
        font-size:34px;
    }

    .dl-container h2{
        font-size:36px;
    }
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media(max-width:768px){

    section{
        overflow:hidden;
    }

    .digital-solutions,
    .edu-angle,
    .edu-clean,
    .digital-learning{
        padding:70px 20px;
    }

    .solution-large{
        min-height:420px;
        border-radius:22px;
    }

    .solution-overlay{
        padding:25px;
    }

    .solution-overlay h2{
        font-size:28px;
    }

    .solution-overlay p{
        font-size:15px;
        line-height:1.7;
    }

    .solution-item{
        padding:22px 20px 22px 78px;
        border-radius:18px;
    }

    .solution-item::before{
        width:70px;
        height:70px;
    }

    .solution-item i{
        left:22px;
        font-size:18px;
    }

    .solution-item p{
        font-size:16px;
    }

    .edu-angle{
        gap:40px;
    }

    .edu-angle-text h2{
        font-size:28px;
    }

    .edu-angle-text p{
        font-size:15px;
    }

    .edu-stat{
        width:100%;
        text-align:center;
    }

    .edu-stat h3{
        font-size:24px;
    }

    .edu-angle-image img{
        border-radius:20px;
        transform:none;
    }

    .edu-clean h2{
        font-size:30px;
    }

    .edu-clean p{
        font-size:15px;
    }

    .edu-card{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .future-leaders{
        min-height:350px;
    }

    .content-box{
        padding:20px;
    }

    .content-box h2{
        font-size:28px;
        line-height:1.4;
    }

    .content-box p{
        font-size:15px;
        line-height:1.7;
    }

    .dl-container h2{
        font-size:30px;
    }

    .dl-container p{
        font-size:15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .solution-overlay h2,
    .edu-angle-text h2,
    .edu-clean h2,
    .dl-container h2,
    .content-box h2{
        font-size:24px;
    }

    .solution-overlay{
        padding:20px;
    }

    .solution-item{
        padding:18px 15px 18px 70px;
    }

    .solution-item p{
        font-size:15px;
    }

    .edu-card{
        padding:18px;
    }

    .edu-card .text{
        font-size:15px;
    }

    .content-box p,
    .dl-container p,
    .edu-clean p,
    .edu-angle-text p{
        font-size:14px;
        line-height:1.8;
    }
}