/* ============================= */
/* RESET */
/* ============================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* ============================= */
/* BODY */
/* ============================= */

body{
background:#0e2b57;
color:white;
overflow-x:hidden;
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.container{
max-width:1200px;
margin:auto;
padding:30px 20px;
text-align:center;
}

/* ============================= */
/* LOGO */
/* ============================= */

.logo{
max-width:260px;
margin-bottom:20px;
}

/* ============================= */
/* TITLE */
/* ============================= */

h1{
font-size:36px;
margin-bottom:15px;
}

/* ============================= */
/* SUBTITLE IMAGE */
/* ============================= */

.subtitle-img{
max-width:420px;
width:100%;
margin-bottom:30px;
}

/* ============================= */
/* BADGES */
/* ============================= */

.badge-area{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin-bottom:30px;
}

.badge{
padding:10px 18px;
border-radius:30px;
font-weight:bold;
font-size:14px;
}

.badge-green{ background:#39d98a; color:#002d2d; }
.badge-orange{ background:#ff7a00; }
.badge-blue{ background:#17b7d3; }
.badge-lime{ background:#a6ce39; color:#002d2d; }

/* ============================= */
/* COUNTRY SCROLL */
/* ============================= */

.marquee{
width:100%;
overflow:hidden;
background:#123b75;
padding:12px 0;
margin:25px 0;
}

.marquee-track{
display:flex;
gap:60px;
width:max-content;
animation:marqueeScroll 25s linear infinite;
}

.marquee-track span{
white-space:nowrap;
font-weight:bold;
color:#e4efff;
}

@keyframes marqueeScroll{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}

.marquee-track span{
display:flex;
align-items:center;
gap:8px;
white-space:nowrap;
font-weight:bold;
}

.marquee-track img{
width:22px;
height:16px;
border-radius:50%;
}



/* ============================= */
/* SLIDER */
/* ============================= */

.image-slider{
position:relative;
width:100%;
aspect-ratio:16/9;
margin:25px 0;
overflow:hidden;
border-radius:12px;
}

.slide{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
left:0;
top:0;
opacity:0;
animation:sliderAnimation 16s infinite;
transition:opacity 1s ease-in-out;
}

.slide:nth-child(1){ animation-delay:0s; }
.slide:nth-child(2){ animation-delay:8s; }

@keyframes sliderAnimation{

0%{ opacity:0; }
5%{ opacity:1; }
45%{ opacity:1; }
50%{ opacity:0; }
100%{ opacity:0; }

}

/* ============================= */
/* CONTACT BOX */
/* ============================= */

.contact-box{
margin-top:25px;
background:#123b75;
padding:25px;
border-radius:12px;
}

.contact-box p{
margin-bottom:8px;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.btn{
display:inline-block;
margin-top:15px;
padding:14px 26px;
background:#25D366;
color:white;
font-weight:bold;
text-decoration:none;
border-radius:40px;
transition:0.3s;
}

.btn:hover{
background:#1ea653;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer{
margin-top:40px;
font-size:14px;
opacity:0.7;
}

.contact-box{
margin-top:40px;
background:#123b75;
padding:40px 25px;
border-radius:14px;
}

.contact-box h3{
margin-bottom:25px;
font-size:24px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:25px;
}

.contact-item{
background:#1b4b8a;
padding:20px;
border-radius:12px;
transition:0.3s;
}

.contact-item:hover{
background:#2261b0;
}

.contact-title{
display:block;
font-weight:bold;
margin-bottom:8px;
font-size:15px;
}

.contact-item a{
color:white;
text-decoration:none;
font-weight:bold;
}

.whatsapp-btn{
display:inline-block;
margin-top:15px;
padding:16px 30px;
font-size:16px;
}

/* MOBILE */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-box{
padding:30px 18px;
}

}

.site-footer{
background:#12335f;
margin-top:40px;
padding:18px 20px;
font-size:14px;
}

.footer-inner{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
color:#d6e3f5;
}

.footer-right a{
color:#5ec9ff;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.footer-right a:hover{
color:#ffffff;
}

/* MOBILE */

@media(max-width:768px){

.footer-inner{
flex-direction:column;
gap:6px;
text-align:center;
}

}

.site-footer{
border-top:1px solid rgba(255,255,255,0.1);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:768px){

h1{ font-size:28px; }

.subtitle-img{
max-width:320px;
}

}
