/* ===========================================================
     VISA SERVICES
=========================================================== */
/* ============================================================
SERVICES SECTION
============================================================ */

.services-section{
padding:80px 16px;
background:#fff;
}

.services-grid{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;

}

/* SERVICE CARD */

.service-box{

background:#fff;
padding:26px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s ease;

}

.service-box:hover{

transform:translateY(-6px);
box-shadow:0 14px 35px rgba(0,0,0,.15);

}

.service-box h3{
font-size:18px;
margin-bottom:8px;
}

.service-box p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* TABLET */

@media(max-width:1024px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}

/* ============================================================
VISA APPLICATION GUIDE
============================================================ */

.visa-guide{

padding:80px 16px;
background:#fafafa;

}

/* CONTAINER */

.guide-container{

max-width:900px;
margin:auto;

text-align:center;

}

/* TEXT */

.guide-container p{

font-size:16px;
line-height:1.8;

color:#555;

margin-bottom:18px;

}

/* RESPONSIVE */

@media(max-width:768px){

.guide-container p{

font-size:15px;
line-height:1.7;

}

}

@media(max-width:480px){

.guide-container{

max-width:95%;

}

.guide-container p{

font-size:14px;

}

}