/*========================================
    VISA PAGE CSS
========================================*/

.page-banner{
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/banner.jpg') center center/cover no-repeat;
    padding:100px 0;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.page-banner p{
    font-size:17px;
}

/*========================================
ABOUT SECTION
========================================*/

.visa-section{
    padding:80px 0;
    background:#fff;
}

.visa-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.visa-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.visa-content span{
    color:#ff5722;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.visa-content h2{
    font-size:38px;
    margin:15px 0;
    color:#0b3c5d;
}

.visa-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

/*========================================
BUTTON
========================================*/

.btn-red{
    display:inline-block;
    background:#ff5722;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-red:hover{
    background:#e64a19;
}

/*========================================
SECTION TITLE
========================================*/

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#0b3c5d;
}

/*========================================
VISA TYPES
========================================*/

.visa-types{
    padding:80px 0;
    background:#f8f9fa;
}

.type-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.type-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.type-box:hover{
    transform:translateY(-8px);
}

.type-box i{
    font-size:45px;
    color:#ff5722;
    margin-bottom:20px;
}

.type-box h3{
    margin-bottom:15px;
    color:#0b3c5d;
}

.type-box p{
    color:#666;
    line-height:1.8;
}

/*========================================
PROCESS
========================================*/

.process{
    padding:80px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    position:relative;
}

.process-box span{
    display:inline-block;
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#ff5722;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    margin-bottom:20px;
}

.process-box h3{
    margin-bottom:15px;
    color:#0b3c5d;
}

.process-box p{
    color:#666;
    line-height:1.8;
}

/*========================================
DOCUMENTS
========================================*/

.documents{
    background:#f8f9fa;
    padding:80px 0;
}

.document-list{
    max-width:800px;
    margin:auto;
    list-style:none;
}

.document-list li{
    background:#fff;
    margin-bottom:15px;
    padding:18px 25px;
    border-left:5px solid #ff5722;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/*========================================
WHY CHOOSE
========================================*/

.why-us{
    padding:80px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box i{
    font-size:42px;
    color:#ff5722;
    margin-bottom:20px;
}

.why-box h3{
    color:#0b3c5d;
    font-size:22px;
}

/*========================================
FAQ
========================================*/

.faq{
    background:#f8f9fa;
    padding:80px 0;
}

.faq-item{
    background:#fff;
    padding:25px;
    border-radius:10px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#0b3c5d;
    margin-bottom:12px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}

/*========================================
CTA
========================================*/

.cta{
    background:#0b3c5d;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

/*========================================
RESPONSIVE
========================================*/

@media(max-width:991px){

.visa-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.type-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.page-banner h1{
    font-size:36px;
}

.visa-content h2{
    font-size:30px;
}

.section-title h2{
    font-size:30px;
}

}

@media(max-width:576px){

.page-banner{
    padding:70px 20px;
}

.page-banner h1{
    font-size:28px;
}

.visa-section,
.visa-types,
.process,
.documents,
.why-us,
.faq,
.cta{
    padding:60px 0;
}

.type-grid,
.process-grid,
.why-grid{
    grid-template-columns:1fr;
}

.visa-content h2{
    font-size:26px;
}

.section-title h2{
    font-size:28px;
}

.btn-red{
    width:100%;
    text-align:center;
}

.cta h2{
    font-size:28px;
}

}
.visa-country-section{
    padding:80px 0;
    background:#f8f9fa;
}

.visa-country-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.visa-country-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.visa-country-content{
    padding:30px;
}

.visa-country-content h3{
    font-size:28px;
    margin-bottom:20px;
    color:#222;
}

.visa-country-content ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.visa-country-content ul li{
    padding:10px 0;
    font-size:17px;
    color:#555;
    border-bottom:1px solid #eee;
}

.visa-country-content ul li:last-child{
    border-bottom:none;
}

@media(max-width:768px){

.visa-country-card img{
    height:220px;
}

.visa-country-content{
    padding:20px;
}

.visa-country-content h3{
    font-size:22px;
}

}