*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
    background:white;
    min-height:100vh;
    padding:-5px 1%;
}
.section-title{
    text-align:center;
    margin-top:-2px;
}
.section-title h1{
    font-size:42px;
    font-weight:700;
    color:#0B2454;
    margin-top:62px;
}
.section-title p{
    color:#666;
    font-size:16px;
}
.documents-grid{
    display:grid;
    width: min(1400px, 100%);
    margin-inline: auto;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap: 1rem;
}
.doc-card{
    position:relative;
    background:#0B2454;
    color: white;
    border-radius:25px;
    padding:8px 8px;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid rgba(255,255,255,.4);
    animation:fadeUp 1s ease forwards;
    /* margin-left: 50px;
    margin-right: 50px; */
}
.doc-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}
.doc-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:linear-gradient(135deg,#00c853,#2196f3);
    border-radius:50%;
    top:-90px;
    right:-90px;
    opacity:.12;
}
.icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#2196f3,#00c853);
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(33,150,243,.3);
}
.doc-card h2{
    color:white;
    font-size:24px;
    margin-bottom:20px;
}
.doc-card ul{
    list-style:none;
}
.doc-card ul li{
    position:relative;
    padding-left:25px;
    margin-bottom:14px;
    color:white;
    line-height:1.6;
    font-size:14px;
}
.doc-card ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:white;
    font-weight:bold;
}
.card-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:55px;
    font-weight:700;
    color:rgba(33,150,243,.08);
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.doc-card:nth-child(2){
    animation-delay:.2s;
}
.doc-card:nth-child(3){
    animation-delay:.4s;
}
.doc-card:nth-child(4){
    animation-delay:.6s;
}
/* Floating Animation */
.doc-card{
    animation:
    fadeUp 1s ease forwards,
    float 5s ease-in-out infinite;
}
.doc-card:nth-child(2){
    animation-delay:.2s,.2s;
}
.doc-card:nth-child(3){
    animation-delay:.4s,.4s;
}
.doc-card:nth-child(4){
    animation-delay:.6s,.6s;
}
@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}
@media(max-width:768px){
.section-title h1{
    font-size:32px;
}
.doc-card{
    padding:30px 22px;
}
}
/* Header */
.header-section{
background:white;
padding:10px 0;
box-shadow:0 2px 10px rgba(0,0,0,.08);
text-align: center;
}
.navbar-brand img{
/* height:45px; */
margin-left: 40;
width: 74px;
}
.nav-link{
font-weight:200;
color:#0b2454;
margin:0 10px;
}
.nav-link:hover{
color:#c89b2d;
}
.contact-btn{
background:#0b2454;
color:white;
padding:10px 20px;
border-radius:8px;
}