/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

/* ================= ABOUT LIC ADVISOR ================= */

.advisor-section{
    width:100%;
    padding:90px 0;
    background:#f5fcff;
}

.advisor-container{
    width:80%;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:flex-start;
}

.team-achievement{
    padding:80px 20px;
    background:linear-gradient(135deg,#071a38,#0b2f67,#123f88);
}

.team-container{
    max-width:1200px;
    margin:auto;
}

.team-heading{
    text-align:center;
    color:#fff;
    margin-bottom:20px;
}

.team-heading h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.team-heading span{
    color:#FFD54A;
}

.team-content{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
    color:#e9eef7;
    font-size:18px;
    line-height:1.8;
}

.team-content strong{
    color:#FFD54A;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.achievement-box{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.achievement-box:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#ffcb05,#ff9800);
}

.achievement-box:hover{
    transform:translateY(-10px);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#ffcb05,#ff9800);
    color:#082347;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:20px;
    font-weight:bold;
}

.number{
    font-size:42px;
    font-weight:700;
    color:#0a2b61;
    margin-bottom:8px;
}

.title{
    font-size:18px;
    font-weight:600;
    color:#333;
    line-height:1.5;
}

.rank-box{
    background:#FFD54A;
    color:#082347;
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    font-size:20px;
    font-weight:700;
    margin-top:25px;
}

@media(max-width:991px){

.achievement-grid{
grid-template-columns:repeat(2,1fr);
}

.team-heading h2{
font-size:34px;
}

}

@media(max-width:600px){

.team-heading h2{
font-size:28px;
}

.team-content{
font-size:16px;
}

.achievement-grid{
grid-template-columns:1fr;
}

}

/* ================= IMAGE ================= */

.advisor-image{
    width:35%;
    position:relative;
}

.advisor-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:#340e71;
    color:#fff;
    padding:25px;
    text-align:center;
    width:180px;
}

.experience-box h2{
    font-size:42px;
    margin-bottom:5px;
}

/* ================= CONTENT ================= */

.advisor-content{
    width:65%;
}

.small-title{
    color:#0a4d8c;
    font-weight:700;
    margin-bottom:13px;
    font-size:18px;
}

.advisor-content h2{
    font-size:48px;
    color:#340e71;
    margin:15px 0 3px;
    line-height:1.3;
}

.advisor-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-size:16px;
	margin-top:20px;
}

/* ================= HIGHLIGHT ================= */

.highlight-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.highlight-item{
    background:#fff;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.highlight-item:hover{
    transform:translateY(-5px);
}

.highlight-item i{
    width:55px;
    height:55px;
    background:#ea3c01;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.highlight-item span{
    font-weight:600;
    color:#340e71;
}

/* ================= EXPERTISE ================= */

.expertise-section{
    margin-top:40px;
}

.expertise-section h3{
    font-size:30px;
    color:#340e71;
    margin-bottom:25px;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.expertise-box{
    background:#dff7ff;
    padding:16px 20px;
    font-weight:600;
    color:#340e71;
    border-left:5px solid #ea3c01;
    transition:0.3s;
}

.expertise-box:hover{
    background:#ea3c01;
    color:#fff;
}

/* ================= TRUST BOX ================= */

.trust-box{
    margin-top:45px;
    background:#fff;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.trust-box h3{
    color:#340e71;
    margin-bottom:20px;
    font-size:30px;
}

.trust-box ul{
    list-style:none;
}

.trust-box ul li{
    margin-bottom:15px;
    color:#555;
    font-size:16px;
}

/* ================= BUTTON ================= */

.advisor-btn{
    display:inline-block;
    margin-top:35px;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:600;
    transition:0.3s;
}

.advisor-btn:hover{
    background:#008c9e;
    transform:translateY(-4px);
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .advisor-container{
        flex-direction:column;
    }

    .advisor-image,
    .advisor-content{
        width:100%;
    }

}

@media(max-width:768px){

    .advisor-container{
        width:92%;
    }

    .advisor-content h2{
        font-size:24px;
    }

  .highlight-box{
    display:grid;
    grid-template-columns:repeat(2, 1fr); /* Desktop */
    gap:20px;
}

    .expertise-grid{
        grid-template-columns:1fr;
    }

    .advisor-image img{
        height:450px;
    }

    .experience-box{
        right:10px;
        bottom:10px;
        width:150px;
        padding:18px;
    }

    .trust-box{
        padding:25px;
    }

}

/* Mobile Devices (640px to 500px) */
@media only screen and (max-width:640px) and (min-width:500px){

    .highlight-box{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
    }

}
/* Small Mobile (Below 500px) */
@media only screen and (max-width:499px){

    .highlight-box{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
    }

}
/* ================= MISSION SECTION ================= */

.mission-section{
    width:100%;
    padding:90px 0;
    background:#ffffff;
}

.mission-container{
    width:80%;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* ================= LEFT CONTENT ================= */

.mission-content{
    width:55%;
}

.mission-small-title{
    color:#ea3c01;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.mission-content h2{
    font-size:48px;
    color:#340e71;
    margin:15px 0 25px;
    line-height:1.3;
}

.mission-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-size:16px;
}

/* ================= MISSION POINTS ================= */

.mission-points{
    margin-top:35px;
}

.mission-box{
    display:flex;
    gap:20px;
    background:#f5fcff;
    padding:22px;
    margin-bottom:20px;
    border-left:5px solid #ea3c01;
    transition:0.3s;
}

.mission-box:hover{
    transform:translateX(8px);
    background:#dff7ff;
}

.mission-box i{
    width:60px;
    height:60px;
    background:#360e71;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.mission-box h3{
    color:#340e71;
    margin-bottom:8px;
    font-size:22px;
}

.mission-box p{
    margin:0;
    font-size:15px;
}

/* ================= BUTTON ================= */

.mission-btn{
    display:inline-block;
    margin-top:25px;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:600;
    transition:0.3s;
}

.mission-btn:hover{
    background:#008c9e;
    transform:translateY(-4px);
}

/* ================= IMAGE ================= */

.mission-image{
    width:45%;
    position:relative;
}

.mission-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.mission-overlay{
    position:absolute;
    bottom:30px;
    left:30px;
    background:rgba(0,188,212,0.92);
    color:#fff;
    padding:30px;
    width:75%;
}

.mission-overlay h3{
    font-size:28px;
    margin-bottom:12px;
}

.mission-overlay p{
    line-height:1.7;
    font-size:15px;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .mission-container{
        flex-direction:column;
    }

    .mission-content,
    .mission-image{
        width:100%;
    }

}

@media(max-width:768px){

    .mission-container{
        width:92%;
    }

    .mission-content h2{
        font-size:34px;
    }

    .mission-image img{
        height:450px;
    }

    .mission-overlay{
        width:85%;
        left:15px;
        bottom:15px;
        padding:20px;
    }

    .mission-overlay h3{
        font-size:22px;
    }

    .mission-box{
        flex-direction:column;
    }

}

.trust-section{

background:#ffffff;
}

.section-title{
text-align:center;
margin-bottom:15px;
color:#340e71;
font-size:40px;
font-weight:700;
}

.section-title span{
color:#ea3c01;
}

.section-subtitle{
text-align:center;
max-width:800px;
margin:auto;
color:#666;
font-size:18px;
line-height:30px;
margin-bottom:60px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(460px,3fr));
gap:30px;
}

.trust-card{
background:#fff;
padding:35px 30px;
border-radius:15px;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.4s;
border-top:5px solid #ea3c01;
}

.trust-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.icon-box{
width:80px;
height:80px;
margin:auto;
background:#361371;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:25px;
transition:.4s;
}

.trust-card:hover .icon-box{
background:#ea3c01;
}

.icon-box i{
font-size:34px;
color:#fff;
}

.trust-card h3{
font-size:24px;
color:#340e71;
margin-bottom:15px;
}

.trust-card p{
font-size:16px;
line-height:28px;
color:#666;
}

.bottom-box{
margin-top:70px;
background:linear-gradient(135deg,#ea3c01,#44516d);
padding:50px;
border-radius:18px;
text-align:center;
color:#fff;
}

.bottom-box h2{
font-size:34px;
margin-bottom:20px;
}

.bottom-box span{
color:#ea3c01;
}

.bottom-box p{
font-size:18px;
line-height:32px;
max-width:900px;
margin:auto;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:15px 40px;
background:#ea3c01;
color:#fff;
text-decoration:none;
font-size:18px;
font-weight:bold;
border-radius:50px;
transition:.3s;
}

.btn:hover{
background:#fff;
color:#ea3c01;
}

@media(max-width:768px){

.trust-section{
padding:60px 20px;
}

.section-title{
font-size:30px;
}

.section-subtitle{
font-size:16px;
line-height:28px;
margin-bottom:40px;
}

.bottom-box{
padding:35px 25px;
}

.bottom-box h2{
font-size:26px;
}

.bottom-box p{
font-size:16px;
line-height:28px;
}

.btn{
width:100%;
padding:15px;
}

}

.expertise-section{
    padding:90px 0;
    background:#f7f9fc;
}

.container{
    width:90%;
    max-width:1350px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0d6efd;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#183153;
    font-weight:700;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:28px;
    font-size:17px;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
    transition:.45s;
    animation:fadeUp .8s ease forwards;
}

.service-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#00b4db);
}

.service-card i{
    width:85px;
    height:85px;
    line-height:85px;
    font-size:34px;
    color:#ea3c01;
    background:#eef5ff;
    border-radius:50%;
    transition:.4s;
    margin-bottom:22px;
}

.service-card h3{
    font-size:22px;
    color:#1b2d4f;
    margin-bottom:12px;
}

.service-card p{
    color:#666;
    line-height:26px;
    font-size:15px;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 22px 45px rgba(13,110,253,.18);
}

.service-card:hover i{
    background:#ea3c01;
    color:#fff;
    transform:rotateY(360deg);
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@media(max-width:991px){

.expertise-grid{
grid-template-columns:repeat(2,1fr);
}

.section-title h2{
font-size:34px;
}

}

@media(max-width:600px){

.expertise-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:28px;
}

.service-card{
padding:30px 22px;
}

}
.achievement-section{
    padding:70px 20px;
    background:#f5f9ff;
    font-family:'Poppins',sans-serif;
}

.achievement-section .container{
    max-width:1200px;
    margin:auto;
}

.achievement-header{
    text-align:center;
    margin-bottom:50px;
}

.year-badge{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.achievement-header h2{
    font-size:36px;
    color:#0b2d5c;
    margin-bottom:15px;
    font-weight:700;
}

.achievement-header p{
    max-width:850px;
    margin:auto;
    color:#555;
    line-height:1.8;
    font-size:17px;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.achievement-box{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.achievement-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(13,110,253,.25);
}

.achievement-box .icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#361371;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.achievement-box h3{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:10px;
    font-weight:700;
}

.achievement-box p{
    color:#444;
    font-size:17px;
    font-weight:600;
    line-height:1.5;
}

@media(max-width:992px){
    .achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .achievement-header h2{
        font-size:28px;
    }

    .achievement-header p{
        font-size:15px;
    }

    .achievement-grid{
        grid-template-columns:1fr;
    }
}
.career-growth-section{
    padding:80px 20px;
    background:#f8fbff;
    font-family:'Poppins',sans-serif;
}

.career-growth-section .container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
    font-size:14px;
}

.section-title h2{
    font-size:40px;
    color:#0b2d5c;
    margin-bottom:15px;
    font-weight:700;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#555;
    line-height:1.8;
    font-size:17px;
}

.career-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.info-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:28px;
    margin-bottom:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-box .icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#361371;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
}

.info-box h3{
    margin-bottom:10px;
    color:#0b2d5c;
    font-size:22px;
}

.info-box p{
    color:#555;
    line-height:1.8;
}

.career-cta{
    background:#361371;
    color:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    position:sticky;
    top:20px;
}

.quote-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    color:#0d6efd;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:35px;
    margin-bottom:20px;
}

.career-cta h3{
    text-align:center;
    font-size:28px;
    margin-bottom:20px;
}

.career-cta p{
    line-height:1.8;
    margin-bottom:25px;
}

.career-cta ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.career-cta ul li{
    margin-bottom:14px;
    font-size:16px;
}

.career-cta ul li i{
    color:#ffd54f;
    margin-right:8px;
}

.join-btn{
    display:block;
    text-align:center;
    background:#ffd54f;
    color:#0b2d5c;
    text-decoration:none;
    padding:16px;
    font-size:18px;
    font-weight:700;
    border-radius:50px;
    transition:.3s;
}

.join-btn:hover{
    background:#fff;
}

@media(max-width:992px){

.career-wrapper{
    grid-template-columns:1fr;
}

.career-cta{
    position:relative;
    top:0;
}

}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.info-box{
    flex-direction:column;
    text-align:center;
}

.info-box .icon{
    margin:auto;
}

}


.container{

width:90%;

max-width:1200px;

margin:auto;

}

/* ABOUT */

.about-team-one{

padding:80px 0;

}

.about-card{

display:grid;

grid-template-columns:380px 1fr;

gap:60px;

align-items:center;

background:#fff;

padding:50px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.about-image{

position:relative;

}

.about-image img{

width:100%;

border-radius:18px;

display:block;

}

.experience{

position:absolute;

bottom:20px;

right:-20px;

background:#0056b3;

padding:20px;

border-radius:15px;

color:#fff;

text-align:center;

box-shadow:0 15px 25px rgba(0,0,0,.25);

}

.experience h2{

font-size:38px;

}

.tagline{

color:#0056b3;

font-weight:600;

letter-spacing:2px;

}

.about-content h2{

font-size:42px;

margin:10px 0;

}
.about-content h5{

font-size:42px;
color:#000;
margin:10px 0;

}

.about-content h2 span{

color:#0056b3;

}

.about-content h4{

color:#777;

margin-bottom:25px;

}

.highlight-box{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:35px;

}

.highlight-box div{

background:#f4f8ff;

padding:25px;

text-align:center;

border-radius:15px;

transition:.3s;

}

.highlight-box div:hover{

transform:translateY(-8px);

}

.highlight-box i{

font-size:35px;

color:#0056b3;

margin-bottom:15px;

}

.highlight-box h3{

font-size:28px;

color:#0056b3;

}

/* ACHIEVEMENTS */

.achievement-section{

padding:80px 0;

background:linear-gradient(135deg,#07182e,#0f274d);

color:#fff;

}

.achievement-section h2{

text-align:center;

font-size:40px;

margin-bottom:-50px;

}

.achievement-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.achievement-card{

background:rgba(255,255,255,.08);

padding:40px 25px;

border-radius:18px;

text-align:center;

transition:.4s;

}

.achievement-card:hover{

transform:translateY(-10px);

background:#0d6efd;

}

.achievement-card i{

font-size:42px;

margin-bottom:18px;

color:#FFD700;

}

.achievement-card h3{

font-size:42px;

margin-bottom:8px;

}

/* CTA */

.career-section{

padding:90px 0;

text-align:center;

background:#fff;

}

.career-section h2{

font-size:42px;

margin-bottom:20px;

}

.career-section p{

max-width:850px;

margin:15px auto;

}

.career-btn{

display:inline-block;

margin-top:35px;

padding:16px 45px;

background:#0056b3;

color:#fff;

text-decoration:none;

font-weight:600;

border-radius:50px;

transition:.3s;

}

.career-btn:hover{

background:#003d82;

}

/* Laptop */

@media(max-width:1200px){

.about-card{

grid-template-columns:320px 1fr;

}

}

/* Tablet */

@media(max-width:992px){

.about-card{

grid-template-columns:1fr;

}

.about-image{

max-width:420px;

margin:auto;

}

.highlight-box{

grid-template-columns:repeat(3,1fr);

}

.achievement-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.about-team-one,

.achievement-section,

.career-section{

padding:60px 0;

}

.about-card{

padding:30px;

}

.about-content h2{

font-size:30px;

}

.highlight-box{

grid-template-columns:1fr;

}

.achievement-grid{

grid-template-columns:1fr;

}

.achievement-section h2,

.career-section h2{

font-size:30px;

}

.experience{

right:10px;

bottom:10px;

padding:15px;

}

}

/* Small Mobile */

@media(max-width:480px){

.container{

width:94%;

}

.about-content h2{

font-size:26px;

}

.about-content h4{

font-size:16px;

}

.career-btn{

width:100%;

padding:15px;

}

}

/*=============================
CAREER SECTION
=============================*/

.career-team-one{

    padding:90px 20px;

    background:linear-gradient(135deg,#f7f9fc,#eef5ff);

    font-family:'Poppins',sans-serif;

}

.container{

    max-width:1200px;

    margin:auto;

}

.career-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    align-items:center;

}

/* Left */

.career-content{

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#0d6efd;

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.section-tag i{

    font-size:16px;

}

.career-content h2{

    font-size:40px;

    color:#1d3557;

    margin-bottom:20px;

}

.career-content p{

    color:#555;

    line-height:1.9;

    font-size:16px;

    margin-bottom:18px;

}

/* Right Card */

.career-card{

    background:linear-gradient(135deg,#0d47a1,#1565c0);

    color:#fff;

    padding:50px 40px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.career-card h3{

    font-size:32px;

    margin-bottom:20px;

}

.career-card p{

    line-height:1.9;

    color:#eef3ff;

    margin-bottom:18px;

}

.career-highlight{

    margin:30px 0;

    text-align:center;

}

.career-highlight i{

    font-size:55px;

    color:#ffd54f;

    margin-bottom:15px;

}

.career-highlight h4{

    font-size:24px;

    color:#fff;

}

.career-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:#0d47a1;

    text-decoration:none;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.career-btn:hover{

    background:#ffd54f;

    color:#000;

    transform:translateY(-3px);

}

/*=============================
Responsive
=============================*/

@media(max-width:1200px){

.career-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:992px){

.career-grid{

grid-template-columns:1fr;

}

.career-card{

margin-top:10px;

}

}

@media(max-width:768px){

.career-team-one{

padding:60px 15px;

}

.career-content,

.career-card{

padding:35px 25px;

}

.career-content h2{

font-size:30px;

}

.career-card h3{

font-size:26px;

}

}

@media(max-width:480px){

.career-content h2{

font-size:24px;

}

.career-card h3{

font-size:22px;

}

.career-content p,

.career-card p{

font-size:15px;

}

.section-tag{

font-size:13px;

padding:8px 18px;

}

.career-highlight h4{

font-size:20px;

}

.career-btn{

width:100%;

justify-content:center;

padding:15px;

}

}

.career-content h5 {
    color: #360e71;
    font-size: 46px;
    font-weight: 700;
   
    
}
.icon-box{
    width:50%;
    height:50%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.icon-box img{
    width:100%;
    height:100%;
    object-fit:cover;   /* fills the box */
}
/*==============================
 LIC CLUB SECTION
===============================*/

.licclub-section{
    padding:80px 5%;
    background:#f6f8fc;
}

.licclub-heading{
    text-align:center;
    margin-bottom:50px;
}

.licclub-heading h2{
    font-size:42px;
    color:#2b1454;
    margin-bottom:10px;
}

.licclub-heading p{
    font-size:18px;
    color:#666;
}

/* Grid */

.licclub-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Card */

.licclub-card{
    display:flex;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.4s;
    min-height:220px;
}

.licclub-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* Image */

.licclub-image{
    width:45%;
    overflow:hidden;
}

.licclub-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:.5s;
}

.licclub-card:hover .licclub-image img{
    transform:scale(1.08);
}

/* Content */

.licclub-info{
    width:55%;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.licclub-badge{
    display:inline-block;
    background:#360e71;
    color:#fff;
    padding:6px 15px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
    width:max-content;
}

.licclub-info h3{
    font-size:20px;
    color:#222;
    margin-bottom:20px;
    line-height:1.4;
}

.licclub-members{
    color:#777;
    font-weight:600;
    font-size:18px;
}

.licclub-members span{
    display:block;
    font-size:56px;
    font-weight:800;
    color:#ff7b00;
    line-height:1;
}

/*==============================
 Responsive
===============================*/

@media(max-width:1400px){

.licclub-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:992px){

.licclub-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.licclub-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.licclub-card{
    flex-direction:column;
}

.licclub-image{
    width:100%;
    height:240px;
}

.licclub-info{
    width:100%;
    text-align:center;
    align-items:center;
}

.licclub-members span{
    font-size:60px;
}

}

@media(max-width:420px){

.licclub-heading h2{
    font-size:28px;
}

.licclub-info h3{
    font-size:18px;
}

.licclub-members span{
    font-size:48px;
}

}
.lic-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
}

.lic-card:hover{

    transform:translateY(-10px);

}

.lic-card-img{

    width:100%;
    height:220px;
    overflow:hidden;

}

.lic-card-img img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;

}

.lic-card:hover img{

    transform:scale(1.08);

}

.lic-card-content{

    padding:30px;
    text-align:center;

}

.lic-card-content h3{

    color:#360e71;
    font-size:24px;
    margin-bottom:20px;

}

.lic-count{

    font-size:70px;
    font-weight:800;
    color:#ff6a00;
    line-height:1;

}

.lic-card-content p{

    font-size:20px;
    font-weight:600;
    color:#555;

}
.lic-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

@media(max-width:1200px){

.lic-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.lic-grid{

    grid-template-columns:1fr;

}

}