
.body{
font-family: Arial, sans-serif;
overflow-x:hidden;
}
/* Header */

.header-section{
background:#fff;
padding:10px 0;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.navbar-brand img{
height:80px;
margin-right: 20;
}
.nav-link{
font-weight:200;
color:#0b2454;
margin:0 10px;
}
.nav-link:hover{
color:#c89b2d;
}
.contact-btn{
background:#0b2454;
color:#fff;
padding:10px 20px;
border-radius:8px;
}

/* Hero */

.hero-section{
padding:8px 0;
background:#fff;
}

.hero-content{
padding:40px;
}

.hero-content h1{
font-size:47px;
font-weight:800;
color:#0b2454;
line-height:1.2;
}

.hero-content h1 span{
display:block;
color:#c89b2d;
}

.hero-content p{
font-size:18px;
margin:25px 0;
color:#555;
}

.hero-btns{
margin-top:30px;
}

.hero-btns .btn{
padding:14px 30px;
margin-right:15px;
font-weight:600;
}

.btn-primary{
background:#0b2454;
border:none;
}

.btn-warning{
background:#c89b2d;
border:none;
color:#fff;
}

.stats-row{
display:flex;
gap:15px;
margin-top:22px;
flex-wrap:wrap;
}

.stat-box{
background:#fff;
padding:15px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
min-width:120px;
}

.stat-box h4{
color:#0b2454;
font-weight:700;
}

.hero-image{
height:90%;
width:90%;
object-fit:cover;
margin-top: -9px;
}
.imp{
    background-color: rgb(255, 250, 250);
    height: 270px;

    display: flex;
     gap: 2rem;
}
.imp img{
    border-radius: 20px;
    margin-left: 70px;
    margin-top: 30px;
    height: 220px;
   
    
}
.imp h2{
    color: #0B2454;
}
#improve{
    background-color: #0b2454;
    color: white;
}
.error p{
    color: black;
}
.solution{
    font-size:20px;
}
.method{
    font-size: 20px;
}
.oops{
    padding: 40px;
    text-align: center;
    color: #0B2454;
}
.hello{
    background-color: #122953;
    height: 300px;
    width: auto;
    overflow: hidden;
    margin-top: 190px;
    /* margin: 200px; */
}
/* Background Animation */
body::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-250px;
    left:-150px;
    animation:float 10s ease-in-out infinite;
}

/*body::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-200px;
    right:-100px;
    animation:float 8s ease-in-out infinite alternate;
}*/

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(30px);}
    100%{transform:translateY(0);}
}

.services-section{
    position:relative;
    margin-top: 20px;
    margin-left: 77px;
    z-index:2;
    width:90%;
    max-width:1400px;
    padding:60px 30px;
    background-color: #0B2454;
}
.section-title{
    text-align:center;
    color:#0B2454;
    font-size:38px;
    margin-bottom:50px;
    font-weight:700;
    letter-spacing:2px;
    animation:fadeDown 1s ease;
    margin-top: 90px;
}
@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}
.service-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:18px;
    padding:25px;
    color:#1E3561;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
    animation:cardAppear 0.8s ease forwards;
    background-color: white;
}
@keyframes cardAppear{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transition:.7s;
}
.service-card:hover::before{
    left:100%;
}
.service-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
    border-color:#fff;
}
.icon{
    width:65px;
    height:65px;
    background:rgba(255,255,255,0.15);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:28px;
    color:#ffd166;
    transition:.4s;
}
.service-card:hover .icon{
    transform:rotateY(180deg);
}
.service-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#1E3561;
}
.service-card p{
    font-size:14px;
    line-height:1.7;
    color:#1E3561;
}
/* Responsive */
@media(max-width:768px){
    .section-title{
        font-size:30px;
    }

    .service-card{
        padding:20px;
    }
}
.container{
max-width:1300px;
margin:auto;
}

.top-section{
display:grid;
grid-template-columns:250px 1fr 500px;
gap:40px;
align-items:start;
}

.image-box img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}
.about{
    margin-right: 400px;
}

.about small{
color:#b58c3a;
font-weight:600;
text-transform:uppercase;
}

.about h2{
color:#163972;
margin:10px 0;
font-size:38px;
}

.about p{
font-size:14px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 25px;
background:#0b3f8c;
color:#fff;
text-decoration:none;
border-radius:6px;
font-size:14px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#062c65;
}

.services{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.service{
display:flex;
align-items:center;
gap:15px;
font-size:15px;
font-weight:600;
color:#1d2d50;
margin-right: 90px;
}

.service i{
font-size:28px;
color:#183b7a;
width:40px;
}

.line{
margin:50px 0 30px;
height:1px;
background:#ddd;
}

.title{
text-align:center;
color:#163972;
font-size:34px;
font-weight:700;
margin-bottom:40px;
}

.industry-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
text-align:center;
}

.industry{
transition:.3s;
}

.industry:hover{
transform:translateY(-5px);
}

.industry i{
font-size:40px;
color:#163972;
margin-bottom:15px;
}

.industry h4{
font-size:15px;
color:#163972;
}

@media(max-width:1100px){

.top-section{
grid-template-columns:1fr;
}

.services{
grid-template-columns:1fr 1fr;
}

.industry-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.industry-grid{
grid-template-columns:repeat(2,1fr);
}

.services{
grid-template-columns:1fr;
}

.about h2{
font-size:30px;
}

}
.wrapper{
    display: flex;
    /* background-color: rgb(255, 248, 248); */
}
/* .option{
    display: flex;
} */
.finance img{
    height: 250px;
    width: 350px;
    border-radius: 20px;
}
.finance {
    text-align: left;
}
.about{
    margin-right: 23%;
}
/* .option{
    margin-right: 23;
} */


/* SECTION TITLE */

.oh {
text-align:center;
font-size:42px;
font-weight:700;
color:white;
position:relative;
margin-bottom:50px;
}
.section-title:before,
.section-title:after{
content:"";
position:absolute;
top:50%;
width:120px;
height:3px;
}
.section-title:before{
left:20%;
}

.section-title:after{
right:20%;
}

/* TABLE */

.table-wrapper{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
animation:fadeUp 1s ease;
}

table{
width:80%;
margin-left: 160px;
border-collapse:collapse;
}

thead{
background:#062f72;
color:white;
}

thead th{
padding:18px;
font-size:15px;
}

tbody td{
padding:18px;
text-align:center;
border-bottom:1px solid #eee;
font-size:14px;
}

tbody tr{
transition:.4s;
}

tbody tr:hover{
background:#f5f8ff;
transform:scale(1.01);
}

.highlight{

text-align:center;
font-weight:500;
font-size:18px;
color:#163972;
}

.highlight i{
margin-top: 100px;
color:#d4a84f;
margin-right:10px;
}

/* BOTTOM GRID */

.bottom-section{
margin-top:70px;
display:grid;
grid-template-columns:1fr 2fr;
gap:30px;
padding: 0 1rem;
}

/* WHY CHOOSE */

.why-box{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.why-box h2{
text-align:center;
color:#123d85;
margin-bottom:35px;
}

.feature{
display:flex;
gap:15px;
margin-bottom:30px;
transition:.4s;
}

.feature:hover{
transform:translateX(10px);
}

.feature i{
width:60px;
height:60px;
border-radius:50%;
background:linear-gradient(135deg,#d4a84f,#f8dc93);
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#123d85;
}

.feature h4{
color:#123d85;
margin-bottom:6px;
}

.feature p{
font-size:14px;
color:#666;
line-height:1.7;
}

/* LEADER CARD */

.leader-card{
background:linear-gradient(135deg,#001f57,#0d3f8e);
border-radius:20px;
overflow:hidden;
display:grid;
grid-template-columns:1.2fr 1fr;
align-items:center;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.leader-content{
padding:50px;
color:white;
}

.leader-content span{
letter-spacing:4px;
font-size:13px;
color:#f4c55d;
}

.leader-content h2{
font-size:50px;
margin:10px 0;
}

.leader-content h4{
font-weight:500;
margin-bottom:25px;
}

.leader-content ul{
list-style:none;
}

.leader-content ul li{
margin-bottom:15px;
position:relative;
padding-left:25px;
line-height:1.8;
}

.leader-content ul li:before{
content:"✓";
position:absolute;
left:0;
color:#f4c55d;
font-weight:bold;
}

.btn{
display:inline-block;
margin-top:9px;
padding:14px 28px;
background:linear-gradient(135deg,#d4a84f,#f7d27a);
color:#001f57;
font-weight:600;
text-decoration:none;
border-radius:50px;
transition:.4s;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(255,215,0,.4);
}

.leader-image{
height:100%;
overflow:hidden;
}

.leader-image img{
width:100%;
height:439px;
object-fit:cover;
object-position: top;
transition:1s;
}

.leader-card:hover img{
transform:scale(1.08);
}

/* ANIMATION */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* RESPONSIVE */

@media(max-width:1100px){

.bottom-section{
grid-template-columns:1fr;
}
.leader-card{
grid-template-columns:1fr;
}
}
@media(max-width:768px){
.section-title{
font-size:30px;
}
.section-title:before,
.section-title:after{
display:none;
}
.leader-content h2{
font-size:34px;
}
table{
font-size:12px;
}
thead th,
tbody td{
padding:12px;
}
}
/* =========================
   PROCESS SECTION
========================= */
.process-section{
padding:80px 8%;
background:white;
text-align:center;
}
.section-title{
font-size:38px;
font-weight:700;
color:#0d2c54;
margin-bottom:60px;
position:relative;
}

.section-title::after{
content:"";
position:absolute;
width:100px;
height:4px;
/* background:#f4b400; */
left:50%;
transform:translateX(-50%);
bottom:-15px;
border-radius:20px;
}

.process-wrapper{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
position:relative;
}

.process-wrapper::before{
content:"";
position:absolute;
top:22px;
left:8%;
width:84%;
height:3px;
background:#d7dde8;
z-index:1;
}

.process-card{
position:relative;
z-index:2;
width:16%;
min-width:120px;
animation:fadeUp 1s ease forwards;
}
.process-number{
width:45px;
height:45px;
background:#0d2c54;
color:white;
font-weight:600;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
transition:.4s;
box-shadow:0 10px 25px rgba(13,44,84,.2);
}

.process-card:hover .process-number{
transform:translateY(-8px) scale(1.1);
background:#f4b400;
}

.process-title{
margin-top:15px;
font-size:14px;
font-weight:600;
color:#0d2c54;
}

/* =========================
 CONTACT SECTION
========================= */

.contact-section{
background:linear-gradient(135deg,#072042,#0d2c54);
padding:80px 8%;
position:relative;
overflow:hidden;
}

.contact-section::before{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(255,255,255,.05);
border-radius:50%;
top:-120px;
right:-120px;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:center;
}

.left-contact{
color:white;
}

.left-contact h2{
font-size:34px;
margin-bottom:30px;
}

.contact-info{
margin-bottom:25px;
display:flex;
gap:15px;
align-items:flex-start;
transition:.4s;
}

.contact-info:hover{
transform:translateX(10px);
}

.contact-info i{
color:#f4b400;
font-size:20px;
margin-top:5px;
}

.contact-info p{
font-size:14px;
line-height:1.8;
}

.social-icons{
margin-top:30px;
display:flex;
gap:15px;
}

.social-icons a{
width:45px;
height:45px;
background:rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
transition:.4s;
backdrop-filter:blur(10px);
}

.social-icons a:hover{
background:#f4b400;
transform:translateY(-8px);
}

/* FORM */

.contact-form{
background:rgba(255,255,255,.12);
padding:35px;
border-radius:20px;
backdrop-filter:blur(20px);
box-shadow:0 15px 40px rgba(0,0,0,.2);
animation:fadeUp 1s ease;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
border:none;
outline:none;
border-radius:10px;
background:rgba(255,255,255,.95);
font-size:14px;
}

.contact-form textarea{
grid-column:span 2;
resize:none;
height:120px;
}

.submit-btn{
margin-top:20px;
background:#f4b400;
color:white;
border:none;
padding:14px 35px;
font-weight:600;
border-radius:50px;
cursor:pointer;
transition:.4s;
}

.submit-btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 25px rgba(244,180,0,.4);
}

/* IMAGE */

.contact-image{
margin-top:30px;
overflow:hidden;
border-radius:20px;
}
.contact-image img{
width:100%;
display:block;
transition:1s;
}
.contact-image:hover img{
transform:scale(1.1);
}
/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(50px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* RESPONSIVE */

@media(max-width:991px){

.contact-container{
grid-template-columns:1fr;
}

.process-card{
width:30%;
margin-bottom:30px;
}

.process-wrapper::before{
display:none;
}

.form-grid{
grid-template-columns:1fr;
}

.contact-form textarea{
grid-column:span 1;
}
}

@media(max-width:600px){

.section-title{
font-size:28px;
}

.process-card{
width:45%;
}

.left-contact h2{
font-size:28px;
}
}
#head{
    
}