/* =========================================
   MODERN STENOGRAPHY SECTION
========================================= */

.modern-steno-section{
    padding:80px 20px;
    background:#f4f8ff;
}

.modern-steno-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

/* LEFT */
.modern-steno-left{
    flex:1;
    min-width:320px;
}

.steno-tag{
    display:inline-block;
    background:#0b4ea2;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.modern-steno-left h2{
    font-size:42px;
    color:#0b4ea2;
    margin-bottom:25px;
    line-height:1.3;
}

.steno-main-text{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
}

/* HIGHLIGHTS */

.steno-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.steno-highlight-box{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.steno-highlight-box:hover{
    transform:translateY(-5px);
}

.steno-highlight-box i{
    font-size:28px;
    color:#0b4ea2;
}

.steno-highlight-box h4{
    font-size:18px;
    margin-bottom:5px;
    color:#222;
}

.steno-highlight-box p{
    font-size:15px;
    color:#666;
}

/* BUTTON */

.steno-cta-btn{
    display:inline-block;
    margin-top:35px;
    background:#ff9800;
    color:#fff;
    padding:15px 32px;
    border-radius:40px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.steno-cta-btn:hover{
    background:#e68900;
}

/* RIGHT IMAGE */

.modern-steno-right{
    flex:1;
    min-width:320px;
}

.modern-steno-right img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    object-fit:cover;
}

/* =========================================
   COURSE PURPOSE
========================================= */

.steno-purpose-section{
    padding:70px 20px;
    background:#ffffff;
}

.steno-purpose-container{
    max-width:1000px;
    margin:auto;
}

.steno-purpose-box{
    background:#f4f8ff;
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.steno-purpose-box h2{
    font-size:36px;
    color:#0b4ea2;
    margin-bottom:20px;
}

.steno-purpose-box p{
    font-size:18px;
    line-height:1.9;
    color:#444;
}

/* =========================================
   CAREER SECTION
========================================= */

.steno-career-section{
    padding:80px 20px;
    background:#f4f8ff;
}

.steno-career-container{
    max-width:1200px;
    margin:auto;
}

.career-title{
    text-align:center;
    font-size:40px;
    color:#0b4ea2;
    margin-bottom:15px;
}

.career-subtitle{
    text-align:center;
    max-width:850px;
    margin:auto;
    font-size:17px;
    color:#555;
    line-height:1.8;
    margin-bottom:50px;
}

.career-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.career-card{
    background:#fff;
    padding:35px 25px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.career-card:hover{
    transform:translateY(-8px);
}

.career-card i{
    font-size:50px;
    color:#0b4ea2;
    margin-bottom:20px;
}

.career-card h3{
    font-size:22px;
    color:#222;
}

/* =========================================
   COURSE CONTENT
========================================= */

.steno-course-section{
    padding:80px 20px;
    background:#fff;
}

.steno-course-container{
    max-width:1200px;
    margin:auto;
}

.course-title{
    text-align:center;
    font-size:40px;
    color:#0b4ea2;
    margin-bottom:50px;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.course-card{
    background:#f4f8ff;
    padding:35px 28px;
    border-radius:22px;
    text-align:center;
    transition:0.3s;
}

.course-card:hover{
    transform:translateY(-8px);
}

.course-card i{
    font-size:50px;
    color:#0b4ea2;
    margin-bottom:20px;
}

.course-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.course-card p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .modern-steno-left h2{
        font-size:32px;
    }

    .steno-highlights{
        grid-template-columns:1fr;
    }

    .career-title,
    .course-title,
    .steno-purpose-box h2{
        font-size:30px;
    }

    .career-subtitle,
    .steno-purpose-box p{
        font-size:16px;
    }

}



/* =========================================
   STENOGRAPHY GAIN SECTION
========================================= */

.steno-gain-section{
    padding:80px 20px;
    background:#f4f8ff;
}

.steno-gain-container{
    max-width:1200px;
    margin:auto;
}

.steno-gain-title{
    text-align:center;
    font-size:40px;
    color:#0b4ea2;
    margin-bottom:55px;
    font-weight:700;
    line-height:1.4;
}

/* GRID */

.steno-gain-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* CARD */

.steno-gain-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* TOP BORDER EFFECT */

.steno-gain-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#0b4ea2;
}

/* HOVER */

.steno-gain-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

/* ICON */

.steno-gain-card i{
    font-size:55px;
    color:#0b4ea2;
    margin-bottom:25px;
    transition:0.4s;
}

.steno-gain-card:hover i{
    transform:scale(1.1);
}

/* TITLE */

.steno-gain-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:18px;
    line-height:1.5;
}

/* TEXT */

.steno-gain-card p{
    font-size:16px;
    color:#555;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:768px){

    .steno-gain-section{
        padding:60px 15px;
    }

    .steno-gain-title{
        font-size:30px;
        margin-bottom:40px;
    }

    .steno-gain-card{
        padding:35px 25px;
    }

    .steno-gain-card i{
        font-size:45px;
    }

    .steno-gain-card h3{
        font-size:22px;
    }

    .steno-gain-card p{
        font-size:15px;
    }

}





/* =========================================
   COURSE CONTENT SECTION
========================================= */

.steno-course-section{
    padding:90px 20px;
    background:#f5f9ff;
}

.steno-course-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */

.course-heading{
    text-align:center;
    margin-bottom:60px;
}

.course-heading span{
    display:inline-block;
    background:#0b4ea2;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.course-heading h2{
    font-size:46px;
    color:#0b4ea2;
    margin-bottom:18px;
    font-weight:700;
}

.course-heading p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* GRID */

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* CARD */

.course-card{
    background:#fff;
    padding:40px 30px;
    border-radius:28px;
    text-align:left;

    box-shadow:0 12px 35px rgba(0,0,0,0.06);

    transition:0.4s ease;

    position:relative;
    overflow:hidden;
}

/* TOP BORDER EFFECT */

.course-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#0b4ea2;
}

/* HOVER */

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.1);
}

/* ICON */

.course-icon{
    width:75px;
    height:75px;

    background:#eaf2ff;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;
}

.course-icon i{
    font-size:34px;
    color:#0b4ea2;
}

/* TITLE */

.course-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:18px;
    line-height:1.4;
}

/* TEXT */

.course-card p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* RESPONSIVE */

@media(max-width:768px){

    .steno-course-section{
        padding:70px 15px;
    }

    .course-heading h2{
        font-size:34px;
    }

    .course-heading p{
        font-size:16px;
    }

    .course-card{
        padding:35px 25px;
    }

    .course-card h3{
        font-size:22px;
    }

}




/* =========================================
   ABOUT STENOGRAPHY SECTION
========================================= */

.steno-about-section{
    padding:90px 20px;
    background:#f5f9ff;
}

.steno-about-container{
    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;

    align-items:center;
}

/* IMAGE */

.steno-about-image{
    position:relative;
}

.steno-about-image img{
    width:100%;
    height:650px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* CONTENT */

.steno-about-content{
    width:100%;
}

.about-tag{
    display:inline-block;

    background:#0b4ea2;
    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.steno-about-content h2{
    font-size:48px;
    color:#0b4ea2;

    line-height:1.25;

    margin-bottom:28px;
}

.steno-about-content p{
    font-size:17px;
    line-height:1.95;
    color:#555;

    margin-bottom:22px;
}

/* FEATURES */

.about-feature-grid{
    margin-top:35px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-feature-box{
    background:#fff;

    padding:20px 22px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:15px;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:0.3s ease;
}

.about-feature-box:hover{
    transform:translateY(-5px);
}

.about-feature-box i{
    width:50px;
    height:50px;

    background:#eaf2ff;
    color:#0b4ea2;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}

.about-feature-box span{
    font-size:16px;
    font-weight:600;
    color:#222;
}

/* BUTTON */

.about-btn{
    display:inline-block;

    margin-top:40px;

    background:#ff9800;
    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    transition:0.3s;
}

.about-btn:hover{
    background:#e68900;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .steno-about-container{
        grid-template-columns:1fr;
    }

    .steno-about-image img{
        height:500px;
    }

}

@media(max-width:768px){

    .steno-about-section{
        padding:70px 15px;
    }

    .steno-about-content h2{
        font-size:34px;
    }

    .steno-about-content p{
        font-size:16px;
    }

    .about-feature-grid{
        grid-template-columns:1fr;
    }

    .steno-about-image img{
        height:400px;
    }

}