/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f8fc;
    color:#333;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===== HEADER ===== */

header{
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo i{
    font-size:38px;
    color:#0B4F8A;
}

.logo h2{
    color:#0B4F8A;
    margin:0;
    font-size:28px;
}

.logo small{
    color:#777;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li{
    margin:0;
}

nav ul li a{
    color:#333;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#0B4F8A;
}

.btn{
    background:#0B4F8A;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
}

.btn:hover{
    background:#08385f;
}

/* ===== TOP HEADER ===== */

.top-header{
    background:#08385f;
    color:#fff;
    font-size:14px;
}

.top-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-right a{
    color:#fff;
    text-decoration:none;
}

.top-right a:hover{
    color:#ffd54f;
}
/* ===========================
TOP HEADER
===========================*/

.top-header{

background:#08385f;
color:#fff;
font-size:14px;

}

.top-container{

display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;

}

.top-left span{

margin-right:25px;

}

.top-left i{

margin-right:8px;

}

.top-right a{

color:#fff;
text-decoration:none;
margin-left:20px;
transition:.3s;

}

.top-right a:hover{

color:#ffd54f;

}

.logo{

display:flex;
align-items:center;
gap:15px;

}

.logo h2{

margin:0;
color:#0B4F8A;

}

.logo small{

color:#777;
display:block;

}
/*============================
ABOUT SECTION
=============================*/

.about-section{
    padding:100px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0B4F8A;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content h3{
    font-size:34px;
    margin-bottom:20px;
    color:#0B4F8A;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    margin-top:40px;
}

.feature-box{
    display:flex;
    gap:18px;
    margin-bottom:25px;
    align-items:flex-start;
}

.feature-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0B4F8A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature-box h4{
    margin-bottom:6px;
    color:#222;
}

.feature-box p{
    margin:0;
    color:#666;
}

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:34px;
}

}
.documents-section{
padding:100px 0;
background:#f7f9fc;
}

.document-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.doc-card{
background:#fff;
border-radius:15px;
padding:25px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.doc-card:hover{
transform:translateY(-8px);
}

.pdf-icon{
font-size:60px;
color:#d32f2f;
margin-bottom:20px;
}

.doc-card h3{
font-size:20px;
margin-bottom:8px;
color:#222;
}

.doc-card p{
color:#666;
margin-bottom:20px;
}

.doc-buttons{
display:flex;
justify-content:center;
gap:12px;
}

.view-btn,
.download-btn{
padding:10px 18px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-size:14px;
font-weight:600;
}

.view-btn{
background:#0B4F8A;
}

.download-btn{
background:#28a745;
}

.more-documents{
margin-top:70px;
background:linear-gradient(135deg,#0B4F8A,#1565c0);
padding:60px;
border-radius:20px;
text-align:center;
color:#fff;
}

.more-documents h2{
font-size:38px;
margin-bottom:20px;
}

.more-documents p{
font-size:18px;
max-width:850px;
margin:auto;
margin-bottom:30px;
}

.premium-btn{
display:inline-block;
padding:16px 40px;
background:#ff9800;
color:#fff;
text-decoration:none;
font-weight:600;
border-radius:40px;
transition:.3s;
}

.premium-btn:hover{
background:#f57c00;
}
/*============================
PRICING
============================*/

.pricing-section{

padding:100px 0;

background:#ffffff;

}

.pricing-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

margin-top:60px;

}

.pricing-card{

background:#fff;

border-radius:20px;

padding:40px;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,.08);

position:relative;

transition:.35s;

}

.pricing-card:hover{

transform:translateY(-10px);

}

.featured{

border:3px solid #0B4F8A;

transform:scale(1.05);

}

.recommended{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#ff9800;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.plan-badge{

display:inline-block;

padding:8px 18px;

background:#0B4F8A;

color:#fff;

border-radius:30px;

font-size:13px;

margin-bottom:20px;

}

.pricing-card h3{

font-size:28px;

margin-bottom:15px;

}

.pricing-card h1{

font-size:58px;

color:#0B4F8A;

margin-bottom:5px;

}

.pricing-card h1 span{

font-size:18px;

color:#666;

}

.pricing-card p{

color:#666;

margin-bottom:25px;

}

.pricing-card ul{

list-style:none;

text-align:left;

margin:30px 0;

}

.pricing-card ul li{

padding:12px 0;

border-bottom:1px solid #eee;

}

.pricing-card ul li i.fa-check{

color:#28a745;

margin-right:10px;

}

.pricing-card ul li i.fa-times{

color:#d32f2f;

margin-right:10px;

}

.plan-btn{

display:block;

margin-top:30px;

padding:16px;

background:#0B4F8A;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.plan-btn:hover{

background:#08385f;

}
/*=====================================
FOOTER
======================================*/

.footer{

background:#062B47;

color:#fff;

padding:80px 0 25px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:50px;

margin-bottom:40px;

}

.footer-logo{

font-size:34px;

margin-bottom:20px;

}

.footer-logo i{

color:#4fc3f7;

margin-right:10px;

}

.footer-column p{

line-height:1.8;

color:#d5d5d5;

margin-bottom:15px;

}

.footer-column h3{

margin-bottom:20px;

font-size:22px;

}

.footer-column ul{

list-style:none;

}

.footer-column ul li{

margin-bottom:12px;

}

.footer-column ul li a{

color:#d8d8d8;

text-decoration:none;

transition:.3s;

}

.footer-column ul li a:hover{

padding-left:8px;

color:#4fc3f7;

}

.footer-column i{

margin-right:10px;

color:#4fc3f7;

}

.footer-btn{

display:inline-block;

margin-top:20px;

padding:14px 28px;

background:#0B4F8A;

color:#fff;

text-decoration:none;

border-radius:40px;

transition:.3s;

}

.footer-btn:hover{

background:#1282d6;

}

.social-icons{

margin-top:30px;

}

.social-icons a{

width:42px;

height:42px;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#0B4F8A;

color:#fff;

margin-right:10px;

text-decoration:none;

transition:.3s;

}

.social-icons a:hover{

transform:translateY(-5px);

background:#2196f3;

}

.footer hr{

border:0;

height:1px;

background:#2e5673;

margin:40px 0 25px;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

font-size:15px;

color:#d5d5d5;

}

.footer-bottom a{

color:#d5d5d5;

text-decoration:none;

margin-left:12px;

}

.footer-bottom a:hover{

color:#4fc3f7;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}
/*=============================
CONTACT SECTION
=============================*/

.contact-section{

padding:100px 0;

background:#f8fbff;

}

.contact-wrapper{

grid-template-columns:1fr 1.2fr;

gap:50px;

margin-top:60px;

}

.contact-info{

background:#0B4F8A;

padding:45px;

border-radius:18px;

color:#fff;

}

.contact-info h3{

font-size:34px;

margin-bottom:20px;

}

.contact-info p{

line-height:1.8;

margin-bottom:25px;

}

.contact-item{

display:flex;

gap:20px;

margin-bottom:25px;

align-items:flex-start;

}

.contact-item i{

width:55px;

height:55px;

background:#ffffff20;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

}

.contact-item h4{

margin-bottom:6px;

}

.contact-form{

background:#fff;

padding:45px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form .row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

outline:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

border-color:#0B4F8A;

box-shadow:0 0 8px rgba(11,79,138,.2);

}

.contact-form button{

width:100%;

padding:16px;

border:none;

background:#0B4F8A;

color:#fff;

font-size:17px;

font-weight:600;

border-radius:8px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#08385f;

}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-form .row{

grid-template-columns:1fr;

}

}
.modal{

display:none;

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.6);

z-index:99999;

}

.modal-box{

background:white;

width:420px;

max-width:90%;

margin:70px auto;

padding:35px;

border-radius:15px;

position:relative;

animation:popup .4s;

}

@keyframes popup{

from{

transform:translateY(-40px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

.close{

position:absolute;

top:15px;

right:18px;

font-size:28px;

cursor:pointer;

}

.modal-box h2{

text-align:center;

margin-bottom:10px;

}

.modal-box p{

text-align:center;

margin-bottom:20px;

color:#666;

}

.modal-box input{

width:100%;

padding:14px;

margin-bottom:18px;

border:1px solid #ccc;

border-radius:8px;

font-size:15px;

}

.modal-box button{

width:100%;

padding:15px;

background:#0B4F8A;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

font-size:17px;

}

.modal-box button:hover{

background:#08385f;

}

.switch{

margin-top:20px;

font-size:14px;

}

.switch a{

color:#0B4F8A;

font-weight:bold;

text-decoration:none;

}