.work-process-three__item{
    height:100%;
    overflow:hidden;
    border:1px solid #ddd;
    box-shadow:0 12px 35px rgba(16,35,69,.08);
    transition:all .35s ease;
}

/* Top Golden Line */
.work-process-three__item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0d2368,#c8943a);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

/* Watermark Circle */
.work-process-three__item::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    right:-55px;
    top:-55px;
    background:rgba(200,148,58,.09);
    transition:.4s;
}

.work-process-three__item:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 55px rgba(13,35,104,.25);
}

.work-process-three__item:hover::before{
    transform:scaleX(1);
}

.work-process-three__item:hover::after{
    background:rgba(200,148,58,.12);
}


/*modal design starts*/


.iia-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(7,18,44,.72);
    display:none; /* IMPORTANT */
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:25px;
    backdrop-filter:blur(8px);
}

.iia-popup{
    width:980px;
    max-width:95%;
    max-height:calc(100vh - 20px); /* top & bottom 25px space */
    overflow-y:auto;
    background:#fff;
    border-radius:18px;
    display:flex;
    position:relative;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
    animation:popupZoom .45s ease;
}

@keyframes popupZoom{

    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.popup-left {
    width:50%;
    padding:40px;
    /*background:linear-gradient(135deg,#0b2d72,#081b4d);*/
    background:url("../images/resources/work-process-1-1.jpg") center center/cover no-repeat;
    color:#fff;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    animation:popupBg 20s linear infinite alternate;
}


@keyframes popupBg{

    from{
        background-size:100%;
    }

    to{
        background-size:112%;
    }

}

.popup-left::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(7,28,82,.88),
        rgba(8,18,48,.82)
    );
    z-index:0;
}

.popup-left > *{
    position:relative;
    z-index:2;
}


.popup-highlights{
    margin-top:10px;
}

.popup-highlight{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px 15px;
    margin-bottom:15px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.20);
    border-radius:12px;
    backdrop-filter:blur(6px);
}

.popup-highlight span{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#c8943a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.popup-highlight strong{
    display:block;
    font-size:17px;
    font-weight:700;
    line-height: 20px;
    color:#fff;
    margin-bottom:0px;
}

.popup-highlight small{
    color:rgba(255,255,255,.95);
    font-size:14px;
    letter-spacing: 0.4px;
}


.popup-tag{
    display:inline-block;
    padding:7px 18px;
    background:#ffa305;
    color:#000;
    border-radius:30px;
    font-size:16px;
    font-weight:600;
    margin-bottom:20px;
    width:max-content;

}

.popup-left h2{
    font-size:30px;
    line-height:40px;
    margin-bottom:10px;
    font-weight:600;

}

.popup-left p{

    font-size:14px;
    line-height:22px;
    color:#fff;
    margin-bottom:10px;

}

.popup-left ul{

    padding:0;
    margin:0;
    list-style:none;

}

.popup-left li {
    margin-bottom:2px;
    font-size:15px;
    font-weight:500;
}

.popup-right{

    width:50%;
    padding:30px;
    background:#fff;

}

.popup-right h4{

    font-size:25px;
    margin-bottom:20px;
    color:#0b2d72;
    font-weight:600;

}

.popup-right input,
.popup-right select{

    width:100%;
    height:45px;
    border:1px solid #dfe6ef;
    border-radius:10px;
    padding:0 18px;
    margin-bottom:15px;
    font-size:15px;
    outline:none;
    transition:.3s;

}

.popup-right input:focus,
.popup-right select:focus{

    border-color:#0b2d72;

}

.popup-right button{

    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#c8943a,#a77724);
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.3s;

}

.popup-right button:hover{

    transform:translateY(-3px);
    box-shadow:0 10px 15px rgba(200,148,58,.35);

}

.popup-close{

    position:absolute;
    right:18px;
    top:18px;
    width:42px;
    height:42px;
    border:none;
    background:#fff;
    border-radius:50%;
    font-size:24px;
    cursor:pointer;
    color:#0b2d72;
    box-shadow:0 8px 15px rgba(0,0,0,.15);

}

.popup-close:hover{

    background:#c8943a;
    color:#fff;

}

@media(max-width:768px){

    .iia-popup {
        flex-direction:column;
    }

    .popup-left, .popup-right {
        width:100%;
        padding:25px 20px;
    }

    .popup-left h2{

        font-size:30px;
        line-height:40px;
    }

}

/*admission page css starts here**********/



.admission-help{
    padding:50px 0;
}

.admission-help-box{
    background:linear-gradient(135deg,#0b2d72,#173d90);
    border-radius:20px;
    padding:35px 50px;
    display:flex;
    align-items:center;
    gap:35px;
    color:#fff;
    box-shadow:0 10px 20px rgba(11,45,114,.18);
    position:relative;
    overflow:hidden;
}

.admission-help-box::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.09);
    border-radius:50%;
    top:-80px;
    right:-70px;
}

.help-icon{
    width:95px;
    height:95px;
    min-width:95px;
    border-radius:50%;
    background:#c8943a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#fff;
    box-shadow:0 12px 30px rgba(200,148,58,.45);
}

.help-tag{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:15px;
}

.help-content h3{
    color:#fff;
    font-size:36px;
    margin-bottom:18px;
    font-weight:700;
}

.help-content p{
    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:30px;
    margin-bottom:28px;
    max-width:850px;
}

.help-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.help-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:8px 30px;
    border-radius:8px;
    font-weight:600;
    transition:.35s;
}

.help-btn-primary{
    background:#c8943a;
    color:#fff;
}

.help-btn-primary:hover{
    background:#b5842d;
    color:#fff;
    transform:translateY(-3px);
}

.help-btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}

.help-btn-outline:hover{
    background:#fff;
    color:#0b2d72;
}

@media(max-width:768px){

.admission-help-box{
    padding:35px 25px;
    flex-direction:column;
    text-align:center;
}

.help-content h3{
    font-size:28px;
}

.help-content p{
    font-size:15px;
    line-height:28px;
}

.help-buttons{
    justify-content:center;
}

}

/*****************************/

.admission-process{
    padding:50px 0;
    background:#f8f9fc;
}

.section-title span{
    display:inline-block;
    background:#0b2d72;
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0b2d72;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#333;
    line-height:30px;
    margin-bottom:60px;
}

.admission-card{

    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    position:relative;
    height:100%;
    transition:.35s;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.05);

}

.admission-card:hover{

    transform:translateY(-10px);

}

.admission-card::before{

content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0b2d72,#c8943a);

}

.step-number{

position:absolute;
top:20px;
right:20px;
font-size:50px;
font-weight:700;
color:#eef2f9;

}

.step-icon{

width:80px;
height:80px;
margin:auto;
margin-bottom:25px;
background:linear-gradient(135deg,#0b2d72,#163f93);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
box-shadow:0 15px 30px rgba(11,45,114,.25);

}

.admission-card h4{

font-size:24px;
margin-bottom:15px;
font-weight:700;
color:#0b2d72;

}

.admission-card p{

color:#333;
line-height:28px;
margin:0;

}

@media(max-width:767px){

.admission-process{

padding:70px 0;

}

.section-title h2{

font-size:30px;

}

.step-number{

font-size:40px;

}

}



.eligibility-section{
    padding:50px 0;
    background: #e2eefd;
}

.eligibility-card{

    background:#fff;
    border:1px solid #edf1f7;
    border-radius:18px;
    padding:25px;
    display:flex;
    gap:22px;
    align-items:flex-start;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.eligibility-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(11,45,114,.12);

}

.eligibility-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#0b2d72,#173d90);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.eligibility-content h4{

    font-size:24px;

    color:#0b2d72;

    margin-bottom:15px;

}

.eligibility-info{

    display:flex;

    flex-direction:column;

    gap:10px;

    }

    .eligibility-info span{

    display:block;

    padding:10px 15px;

    background:#f8f9fc;

    border-radius:8px;

    font-size:15px;

    line-height:26px;

    }

    .eligibility-info strong{

    color:#c8943a;

    margin-right:8px;

    }

    @media(max-width:767px){

    .eligibility-card{

    flex-direction:column;

    text-align:center;

    }

    .eligibility-icon{

    margin:auto;

    }

    }

/**************end******************/


.documents-section{
    padding:50px 0;
    background:#f8f9fc;
}

.document-card{

    background:#fff;

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:1px solid #edf1f7;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.document-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#0b2d72,#c8943a);

transform:scaleX(0);

transition:.35s;

}

.document-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(11,45,114,.12);

}

.document-card:hover::before{

transform:scaleX(1);

}

.document-icon{

width:75px;

height:75px;

margin:auto;

margin-bottom:22px;

border-radius:50%;

background:linear-gradient(135deg,#0b2d72,#163f93);

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:28px;

box-shadow:0 15px 30px rgba(11,45,114,.18);

}

.document-card h4{

font-size:22px;

font-weight:700;

color:#0b2d72;

margin-bottom:12px;

}

.document-card p{

font-size:15px;

line-height:28px;

color:#333;

margin:0;

}

/******************************/


.registration-fee-section{

padding:50px 0;

}

.fee-card{

background:linear-gradient(135deg,#0b2d72,#173d90);

border-radius:20px;

padding:45px 35px;

text-align:center;

color:#fff;

height:100%;

box-shadow:0 20px 50px rgba(11,45,114,.15);

}

.fee-icon{

width:90px;

height:90px;

margin:auto;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#c8943a;

font-size:38px;

margin-bottom:25px;

}

.fee-card h5{

color:#d7e3ff;

font-size:20px;

margin-bottom:15px;

}

.fee-card h2{

font-size:60px;

font-weight:700;

margin-bottom:10px;

color:#fff;

}

.fee-card span{

display:inline-block;

padding:8px 20px;

background:#c8943a;

border-radius:30px;

margin-top:15px;

font-weight:600;

}

.bank-card{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 40px rgba(0,0,0,.05);

border:1px solid #edf1f7;

height:100%;

}

.bank-card h3{

color:#0b2d72;

margin-bottom:30px;

font-size:30px;

}

.bank-info{

background:#f8f9fc;

padding:18px 20px;

border-radius:12px;

margin-bottom:20px;

}

.bank-info label{

display:block;

font-size:13px;

text-transform:uppercase;

letter-spacing:1px;

color:#888;

margin-bottom:5px;

}

.bank-info h6{

font-size:18px;

color:#0b2d72;

margin:0;

font-weight:700;

}

.payment-note{

margin-top:15px;

padding:18px 20px;

background:#fff8ea;

border-left:5px solid #c8943a;

border-radius:10px;

color:#444;

line-height:28px;

}

.payment-note i{

color:#c8943a;

margin-right:8px;

}

/*************************/


.loan-section{

padding:50px 0;

background:#f7f9fc;

}

.loan-wrapper{

background:#fff;

border-radius:25px;

padding:60px;

box-shadow:0 20px 60px rgba(0,0,0,.06);

overflow:hidden;

}

.loan-tag{

display:inline-block;

background:#0b2d72;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.loan-content h2{

font-size:42px;

font-weight:700;

color:#0b2d72;

margin-bottom:20px;

}

.loan-content p{

font-size:17px;

line-height:30px;

color:#333;

margin-bottom:30px;

}

.loan-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.loan-item{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

color:#222;

}

.loan-item i{

color:#c8943a;

font-size:18px;

}

.loan-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:15px 28px;

background:#c8943a;

color:#fff;

border-radius:10px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.loan-btn:hover{

background:#0b2d72;

color:#fff;

}

.loan-image{

position:relative;

}

.loan-image img{

border-radius:20px;

width:100%;

}

.loan-badge{

position:absolute;

left:30px;

bottom:30px;

background:#fff;

padding:20px 25px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.loan-badge h3{

margin:0;

color:#0b2d72;

font-size:24px;

}

.loan-badge span{

color:#333;

}

@media(max-width:991px){

.loan-wrapper{

padding:35px;

}

.loan-content{

margin-bottom:40px;

}

.loan-features{

grid-template-columns:1fr;

}

.loan-content h2{

font-size:34px;

}

}

/**********************/

.exam-section{

padding:50px 0;

background:#fff;

}

.exam-card{

background:#f8f9fc;

border-radius:18px;

padding:35px 25px;

text-align:center;

height:100%;

transition:.35s;

border:1px solid #edf1f7;

}

.exam-card:hover{

transform:translateY(-10px);

background:#fff;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.exam-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:linear-gradient(135deg,#0b2d72,#173d90);

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

}

.exam-card h4{

font-size:24px;

color:#0b2d72;

margin-bottom:15px;

}

.exam-card p{

line-height:28px;

color:#333;

margin:0;

}

.exam-note{

margin-top:50px;

background:linear-gradient(135deg,#0b2d72,#173d90);

padding:30px;

border-radius:20px;

display:flex;

gap:25px;

align-items:flex-start;

color:#fff;

}

.exam-note-icon{

width:70px;

height:70px;

min-width:70px;

border-radius:50%;

background:#c8943a;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

}

.exam-note h5{

font-size:28px;

margin-bottom:10px;

color:#fff;

}

.exam-note p{

margin:0;

line-height:30px;

color:#dbe7ff;

}

@media(max-width:767px){

.exam-note{

flex-direction:column;

text-align:center;

}

.exam-note-icon{

margin:auto;

}

}

/***********************/


.course-highlights-sec{
    padding:50px 0;
    background: #eff6ff;
}

.course-highlight-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.course-highlight-image img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.highlight-badge{
    position:absolute;
    left:25px;
    bottom:25px;
    background:rgba(11,45,114,.95);
    color:#fff;
    padding:18px 22px;
    border-radius:14px;
}

.highlight-badge h4{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.highlight-badge span{
    font-size:14px;
    opacity:.9;
}

.course-highlights{
    padding-left:30px;
}

.course-highlights-title{
    font-size:36px;
    font-weight:700;
    color:#0b2d72;
    margin-bottom:35px;
    position:relative;
}

.course-highlights-title:after{
    content:"";
    width:80px;
    height:4px;
    background:#c8943a;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:5px;
}

.highlight-item{
    display:flex;
    gap:20px;
    margin-bottom:28px;
}

.highlight-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:15px;
    background:#0b2d72;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s;
}

.highlight-item:hover .highlight-icon{
    background:#c8943a;
    transform:rotate(-8deg);
}

.highlight-content h6{
    font-size:22px;
    font-weight:700;
    color:#0b2d72;
    margin-bottom:8px;
}

.highlight-content p{
    margin:0;
    color:#333;
    line-height:28px;
}

@media(max-width:991px){

.course-highlights{
    padding-left:0;
    margin-top:40px;
}

.course-highlight-image img{
    height:420px;
}

}

@media(max-width:767px){

.course-highlights-title{
    font-size:30px;
}

.highlight-item{
    gap:15px;
}

.highlight-icon{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:20px;
}

.highlight-content h6{
    font-size:19px;
}

.highlight-content p{
    font-size:14px;
    line-height:24px;
}

}

/***************/

/*==========================================
 Placement Highlights
==========================================*/

.placement-highlight-sec{
    padding:50px 0;
    background:#e2eefd;
}

.placement-counter{

    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;

    border:1px solid #edf2fb;

    transition:.4s;

    position:relative;

    overflow:hidden;

    height:100%;

    box-shadow:0 12px 35px rgba(0,40,120,.05);

}

.placement-counter:before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#0b2d72,#c8943a);

}

.placement-counter:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(11,45,114,.12);

}

.placement-counter-icon{

    width:72px;

    height:72px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0b2d72,#163d93);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:22px;

    transition:.4s;

}

.placement-counter:hover .placement-counter-icon{

    background:linear-gradient(135deg,#c8943a,#b88427);

    transform:rotate(-10deg);

}

.placement-counter h2{

    font-size:42px;

    color:#0b2d72;

    font-weight:700;

    margin-bottom:8px;

}

.placement-counter h5{

    font-size:20px;

    color:#111;

    font-weight:600;

    margin-bottom:8px;

}

.placement-counter p{

    margin:0;

    color:#333;

    font-size:15px;

    line-height:22px;

}

@media(max-width:991px){

.placement-highlight-sec{

    padding:70px 0;

}

.placement-counter{

    padding:30px 20px;

}

}

@media(max-width:767px){

.placement-counter h2{

    font-size:34px;

}

.placement-counter-icon{

    width:65px;

    height:65px;

    font-size:24px;

}

}

/***************************************/


.placement-recruiters{
    background:#fff;
    padding:50px 0;
}

.placement-subtitle{
    display:inline-block;
    background:#c8943a;
    color:#fff;
    padding:8px 22px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.placement-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

.placement-text{
    max-width:760px;
    margin:auto;
    color:#333;
    line-height:30px;
    font-size:17px;
}

.recruiter-card{
    height:130px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:.35s;
    box-shadow:0 8px 10px rgba(0,0,0,.05);
}

.recruiter-card img{
    max-width:100%;
    max-height:110px;
    /*filter:grayscale(100%);*/
    transition:.35s;
}

.recruiter-card:hover{

    transform:translateY(-8px);
    border-color:#c8943a;
    box-shadow:0 10px 10px rgba(11,45,114,.12);

}

.recruiter-card:hover img{
    filter:none;
    transform:scale(1.05);
}

@media(max-width:991px){

.placement-title{
    font-size:34px;
}

}

@media(max-width:767px){

.placement-title{
    font-size:28px;
}

.placement-text{
    font-size:15px;
    line-height:26px;
}

.recruiter-card{
    height:110px;
    padding:18px;
}

.recruiter-card img{
    max-height:55px;
}

}

/***************************/

.placed-students{
    background:#f8f5f3;
    padding: 50px 0px;
}


/*.placed-students__shape {
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}*/

.placed-subtitle{
    display:inline-block;
    background:#c8943a;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.placed-title{
    font-size:42px;
    color:#111;
    font-weight:700;
    margin-bottom:15px;
}

.placed-text{
    color:#333;
    max-width:760px;
    margin:auto;
    line-height:30px;
}

.student-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #edf2fa;

}

.student-card:hover{

    transform:translateY(-10px);

}

.student-img{

    height:230px;
    overflow:hidden;

}

.student-img img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;

}

.student-card:hover img{

    transform:scale(1.08);

}

.student-content{

    padding:15px;

}

.student-content h4{

    color:#000;
    font-size:22px;
    margin-bottom:1px;

}

.student-content span{

    color:#c8943a;
    font-weight:600;
    display:block;
    margin-bottom:5px;

}

.company-box{

    display:flex;
    align-items:center;
    gap:12px;
    border-top:1px solid #edf2fa;
    padding-top:5px;

}

.company-box img{

    width:55px;
    height:55px;
    object-fit:contain;

}

.company-box p{

    margin:0;
    font-weight:600;
    color:#333;

}

@media(max-width:767px){

.student-img{

    height:220px;

}

.placed-title{

    font-size:30px;

}

}


/********************************/


/*==================================================
Placement CTA
==================================================*/

.placement-cta-section{
    padding:40px 0px 40px;
}

.placement-cta-wrap{
    position:relative;
    overflow:hidden;
    padding:30px 50px;
    border-radius:24px;
    background:linear-gradient(135deg,#000 0%,#0d4d9f 55%,#111 100%);
    color:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.placement-cta-wrap::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-80px;
    top:-80px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.placement-cta-wrap::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    left:-60px;
    bottom:-60px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.placement-cta-content{
    position:relative;
    z-index:2;
}

.placement-tag1{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(255,255,255,.15);
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    backdrop-filter:blur(6px);
}

.placement-title1{
    color:#fff;
    font-size:45px;
    font-weight:600;
    line-height:1.2;
    letter-spacing: 0.3px;
    margin-bottom:18px;
}

.placement-title1 span{
    color:#ffd24d;
}

.placement-text1{
    color:rgba(255,255,255,.90);
    font-size:17px;
    line-height:1.4;
    max-width:650px;
    margin-bottom:20px;
}

.placement-list{
    display:flex;
    flex-wrap:wrap;
    gap:15px 35px;
    padding:0;
    margin:0;
    list-style:none;
}

.placement-list li{
    color:#fff;
    font-weight:500;
}

.placement-list i{
    color:#ffd24d;
    margin-right:8px;
}

.placement-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 34px;
    border-radius:60px;
    background:#fff;
    color:#0a3d86;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    position:relative;
    z-index:2;
}

.placement-btn:hover{
    background:#ffd24d;
    color:#111;
    transform:translateY(-5px);
}

@media(max-width:991px){

    .placement-cta-wrap{
        padding:45px 30px;
        text-align:center;
    }

    .placement-title1{
        font-size:36px;
    }

    .placement-list{
        justify-content:center;
    }

    .placement-btn{
        margin-top:25px;
    }

}

@media(max-width:767px){

    .placement-cta-section{
        padding:70px 0;
    }

    .placement-title1{
        font-size:30px;
    }

    .placement-text{
        font-size:15px;
    }

    .placement-list{
        display:block;
    }

    .placement-list li{
        margin-bottom:12px;
    }

    .placement-btn{
        width:100%;
    }

}



/****************************/


.topbar .topbar__right .hyperfly-btn {
  flex-shrink: 0;
  background: var(--hyperfly-white, #fff);
  color: var(--hyperfly-black, #030D17);
  font-size: 12px;
    font-weight: 600;
    text-transform: inherit;
}
.topbar .topbar__right .hyperfly-btn:hover {
  color: var(--hyperfly-white, #fff);
}

.topbar .topbar__right .hyperfly-btn > i {
    padding: 3.5px 20px;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 300px;
    transition: transform 500ms ease;
    transform-origin: top center;
    transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

/*******************************************/



/*====================================================
 IIAG WHY CHOOSE SECTION
=====================================================*/

.iiag-why-section{
    position:relative;
    padding:50px 0;
    background:#fefcf6;
    overflow:hidden;
}

.iiag-why-section:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#dcecff;
    border-radius:50%;
    top:-180px;
    right:-120px;
    opacity:.6;
}

/*.iiag-why-section:after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#fff4d7;
    border-radius:50%;
    bottom:-120px;
    left:-120px;
    opacity:.8;
}*/

.iiag-heading{
    margin-bottom:20px;
}

.iiag-subtitle{
    display:inline-block;
    padding:8px 22px;
    background:#e7f1ff;
    color:#0a3d91;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.iiag-heading h2{
    font-size:45px;
    font-weight:800;
    letter-spacing: 0.1px;
    color:#082a63;
    line-height:1.2;
    margin-bottom:20px;
}

.iiag-heading h2 span{
    color:#E11617;
}

.iiag-heading p{
    max-width:720px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.9;
}

/*=====================
 Left Content
======================*/

.iiag-content h3{
    font-size:35px;
    font-weight:600;
    color:#111;
    margin-bottom:20px;
}

.iiag-content p{
    color:#222;
    line-height:1.6;
    margin-bottom:25px;
}

.iiag-mini-list{
    display:flex;
    flex-direction:column;
    gap:0px;
}

.iiag-mini-item{
    display:flex;
    align-items:center;
    font-weight:600;
    color:#111;
    font-size: 18px;
}

.iiag-mini-item i{
    color:#ffb400;
    margin-right:12px;
    font-size:18px;
}

/*=====================
 IMAGE
======================*/

.iiag-image-wrapper{
    position:relative;
    padding-left:60px;
}

.iiag-image-wrapper img{
    width:100%;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.5s;
}

.iiag-image-wrapper:hover img{
    transform:scale(1.03);
}

.iiag-image-shape{
    position:absolute;
    width:85%;
    height:100%;
    background:#0b3b91;
    border-radius:30px;
    left:0;
    top:40px;
}

/*=====================
 Floating Badge
======================*/

.iiag-floating-badge{
    position:absolute;
    right:30px;
    top:-25px;
    width:130px;
    height:130px;
    background:#ffb400;
    border-radius:50%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:4;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.iiag-floating-badge span{
    font-size:34px;
    font-weight:800;
    line-height:1;
}

.iiag-floating-badge small{
    font-size:13px;
    text-align:center;
    line-height:1.4;
    margin-top:6px;
}

/*=====================
 Floating Card
======================*/

.iiag-floating-card{
    position:absolute;
    left:0;
    bottom:45px;
    background:#fff;
    border-radius:18px;
    padding:18px 24px;
    display:flex;
    align-items:center;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    z-index:5;
}

.iiag-floating-card i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0b3b91;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:18px;
    font-size:22px;
}

.iiag-floating-card strong{
    display:block;
    font-size:24px;
    color:#082a63;
}

.iiag-floating-card span{
    color:#666;
    font-size:14px;
}

/*=====================
 Feature Cards
======================*/

.iiag-feature-area{
    margin-top:90px;
}

.iiag-feature-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    display:flex;
    align-items:flex-start;
    position:relative;
    transition:.4s;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.left-card{
    margin-right:35px;
}

.right-card{
    margin-left:35px;
    margin-top:70px;
}

.iiag-feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.iiag-feature-card:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#ffb400;
    transition:.4s;
}

.iiag-feature-card:hover:before{
    background:#0b3b91;
}

/*=====================
 Number
======================*/

.iiag-number{
    position:absolute;
    right:25px;
    top:20px;
    font-size:54px;
    font-weight:800;
    color:#eef3fb;
}

/*=====================
 Icon
======================*/

.iiag-icon{
    min-width:78px;
    height:78px;
    border-radius:22px;
    background:#edf5ff;
    color:#0b3b91;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-right:25px;
    transition:.4s;
}

.iiag-feature-card:hover .iiag-icon{
    background:#0b3b91;
    color:#fff;
    transform:rotate(-8deg);
}

.iiag-feature-content h4{
    font-size:23px;
    color:#082a63;
    margin-bottom:12px;
    font-weight:700;
}

.iiag-feature-content p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/**********************************************/


/*=========================================
 Counter Section
=========================================*/

.iiag-counter-section{
    margin-top:80px;
    margin-bottom:80px;
}

.iiag-counter-box{
    position:relative;
    background:#fff;
    padding:45px 25px;
    text-align:center;
    border-radius:20px;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
}

.iiag-counter-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0a3d91,#ffb400);
}

.iiag-counter-box::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(10,61,145,.04);
    right:-40px;
    top:-40px;
    transition:.4s;
}

.iiag-counter-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.iiag-counter-box:hover::after{
    transform:scale(1.3);
}

.iiag-counter-box h2{
    font-size:48px;
    font-weight:800;
    color:#0a3d91;
    line-height:1;
    margin-bottom:12px;
}

.iiag-counter-box p{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#666;
    letter-spacing:.3px;
}

/*=========================================
 Responsive
=========================================*/

@media(max-width:991px){

    .iiag-counter-section{
        margin-top:60px;
        margin-bottom:60px;
    }

    .iiag-counter-box{
        margin-bottom:25px;
        padding:35px 20px;
    }

    .iiag-counter-box h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .iiag-counter-box{
        padding:30px 15px;
    }

    .iiag-counter-box h2{
        font-size:34px;
    }

    .iiag-counter-box p{
        font-size:14px;
    }

}

/**************************************/

/*=========================================
 Bottom CTA
=========================================*/

.iiag-bottom-cta{
    margin-top: 30px;
    padding:30px 50px;
    border-radius:25px;
    background:linear-gradient(135deg,#0a3d91 0%,#1158c7 100%);
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(10,61,145,.20);
}

.iiag-bottom-cta::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-80px;
    top:-100px;
}

.iiag-bottom-cta::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    left:-60px;
    bottom:-60px;
}

.iiag-bottom-cta .row{
    position:relative;
    z-index:2;
}

.iiag-bottom-cta h3{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.iiag-bottom-cta p{
    color:rgba(255,255,255,.90);
    font-size:17px;
    line-height:1.8;
    margin-bottom:0;
    max-width:650px;
}

/*=========================================
 CTA Button
=========================================*/

.iiag-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 36px;
    background:#ffb400;
    color:#082a63;
    border-radius:60px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:all .35s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.iiag-btn i{
    transition:.35s;
}

.iiag-btn:hover{
    background:#fff;
    color:#082a63;
    transform:translateY(-5px);
}

.iiag-btn:hover i{
    transform:translateX(6px);
}

/*=========================================
 Responsive
=========================================*/

@media(max-width:991px){

    .iiag-bottom-cta{
        padding:40px 30px;
        text-align:center;
    }

    .iiag-bottom-cta h3{
        font-size:30px;
    }

    .iiag-bottom-cta p{
        margin-bottom:25px;
        max-width:100%;
    }

    .iiag-btn{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .iiag-bottom-cta{
        padding:35px 25px;
        margin-top:60px;
    }

    .iiag-bottom-cta h3{
        font-size:26px;
    }

    .iiag-bottom-cta p{
        font-size:15px;
    }

    .iiag-btn{
        width:100%;
        padding:16px 20px;
    }

}

/******************************/

/*==========================
Gallery
===========================*/

/*=========================
 IIAG Gallery
=========================*/

.iiag-gallery-section{
    padding:50px 30px;
    background:#e2eefd;
    border-radius: 30px;
}

.iiag-gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:15px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.iiag-gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:all .5s ease;
}

/* Overlay */

.iiag-gallery-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(8,40,95,.70);

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9;
}

/* Icon */

.iiag-gallery-overlay i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff;

    color:#0a3d91;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transform:scale(.5);

    transition:.35s;
}

/* Hover */

.iiag-gallery-item:hover img{

    transform:scale(1.08);
}

.iiag-gallery-item:hover .iiag-gallery-overlay{

    opacity:1;

    visibility:visible;
}

.iiag-gallery-item:hover .iiag-gallery-overlay i{

    transform:scale(1);
}

/* Mobile */

@media(max-width:767px){

.iiag-gallery-item img{

height:220px;

}

}

/********************************/


.director-sec{

    padding:50px 0;

    background:#f8fbff;

    }

    .director-img-wrap{

    position:relative;

    }

    .director-img-wrap img{

    width:100%;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    }

    .director-exp{

    position:absolute;

    bottom:25px;

    left:-20px;

    background:#0b4db8;

    padding:20px 30px;

    border-radius:15px;

    color:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    }

    .director-exp h3{

    font-size:42px;

    margin:0;

    color:#fff;

    }

    .director-exp span{

    font-size:14px;

    }

    .director-subtitle{

    display:inline-block;

    padding:8px 18px;

    background:#eef5ff;

    border-radius:50px;

    color:#0b4db8;

    font-weight:700;

    margin-bottom:20px;

    }

    .director-content h2{

    font-size:35px;

    line-height:1.2;

    margin-bottom:10px;

    color:#08244d;

    }

    .director-quote{

    font-size:28px;

    color:#ffb400;

    margin-bottom:10px;

    }

    .director-content p{

    font-size:16px;

    line-height:1.6;

    color:#333;

    }

    .director-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

    padding:0;

    list-style:none;

    }

    .director-list li{

    font-weight:600;

    }

    .director-list i{

    color:#0b4db8;

    margin-right:8px;

    }

    .director-sign{

    margin-top:35px;

    }

    .director-sign img{

    height:45px;

    margin-bottom:12px;

    }

    .director-sign h5{

    margin-bottom:3px;

    font-size:22px;

    }

    .director-sign span{

    color:#6b7382;

    }

    @media(max-width:991px){

    .director-content{

    margin-top:50px;

    }

    .director-content h2{

    font-size:34px;

    }

    .director-list{

    grid-template-columns:1fr;

    }

    }

    @media(max-width:767px){

    .director-exp{

    left:15px;

    bottom:15px;

    padding:15px 20px;

    }

    .director-content h2{

    font-size:28px;

    }

    }

    /*************************************/



    /*=========================
ABOUT IIA
=========================*/

.iia-about-sec{

padding:110px 0;

background:#fff;

}

.iia-about-img{

position:relative;

overflow:hidden;

border-radius:22px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.iia-about-img img{

width:100%;

height:620px;

object-fit:cover;

transition:.5s;

}

.iia-about-img:hover img{

transform:scale(1.08);

}

.about-exp{

position:absolute;

left:25px;

bottom:25px;

background:#0b4db8;

padding:22px 30px;

border-radius:18px;

color:#fff;

}

.about-exp h3{

font-size:42px;

margin:0;

color:#fff;

}

.about-tag{

display:inline-block;

padding:8px 18px;

border-radius:50px;

background:#edf5ff;

color:#0b4db8;

font-weight:700;

margin-bottom:18px;

}

.iia-about-content h2{

font-size:48px;

line-height:1.2;

margin-bottom:22px;

color:#08244d;

}

.iia-about-content p{

line-height:1.9;

color:#666;

font-size:17px;

}

.heritage-box{

background:#f7faff;

padding:28px;

border-left:5px solid #0b4db8;

border-radius:15px;

margin-top:30px;

}

.heritage-box h4{

margin-bottom:15px;

font-size:28px;

}

.about-list{

padding:0;

margin:0;

list-style:none;

}

.about-list li{

margin-bottom:14px;

font-weight:600;

}

.about-list i{

color:#0b4db8;

margin-right:8px;

}

@media(max-width:991px){

.iia-about-img{

margin-bottom:40px;

}

.iia-about-img img{

height:420px;

}

.iia-about-content h2{

font-size:34px;

}

}


/********************************************************/



/*==============================*/

.iia-purpose-sec{

padding:50px 0;

background:#f8fbff;

}

.purpose-subtitle{

display:inline-block;

padding:8px 18px;

background:#edf5ff;

color:#0b4db8;

border-radius:50px;

font-weight:700;

margin-bottom:18px;

}

.purpose-title{

font-size:38px;

margin-bottom:30px;

}

.purpose-item{

display:flex;

align-items:flex-start;

gap:40px;

padding:50px 0;

border-top:1px solid #e7ebf2;

}

.purpose-item:last-child{

border-bottom:1px solid #e7ebf2;

}

.purpose-icon{

width:90px;

height:90px;

min-width:90px;

border-radius:50%;

background:#0b4db8;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#fff;

transition:.4s;

}

.purpose-item:hover .purpose-icon{

background:#ffb400;

transform:rotate(-10deg);

}

.purpose-content span{

color:#0b4db8;

font-weight:700;

letter-spacing:1px;

}

.purpose-content h3{

font-size:38px;

margin:15px 0;

}

.purpose-content p{

font-size:17px;

line-height:2;

color:#666;

max-width:850px;

}

.values-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:18px;

margin-top:30px;

}

.values-grid div{

padding:18px;

background:#fff;

border-radius:12px;

text-align:center;

font-weight:600;

box-shadow:0 10px 25px rgba(0,0,0,.05);

transition:.3s;

}

.values-grid div:hover{

background:#0b4db8;

color:#fff;

transform:translateY(-5px);

}

@media(max-width:991px){

.purpose-item{

display:block;

}

.purpose-icon{

margin-bottom:25px;

}

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.purpose-title{

font-size:32px;

}

.purpose-content h3{

font-size:26px;

}

.values-grid{

grid-template-columns:1fr;

}

}