/* GLOBAL */

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
color:#eaeaea;
background-color:#063c38;

/* WORLD MAP BACKGROUND */

background-image:
linear-gradient(rgba(6,60,56,0.85),rgba(6,60,56,0.9)),
url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg");

background-repeat:no-repeat;
background-position:center 120px;
background-size:1100px;
}


/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px;
}

.logo{
font-size:28px;
font-weight:700;
white-space:nowrap;
}

.tagline{
color:#d4af37;
font-size:14px;
margin-top:4px;
}


/* MENU ICON */

.menu-icon{
font-size:28px;
cursor:pointer;
}


/* SIDE MENU */

.side-menu{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100vh;
background:#052f2c;
padding-top:80px;
transition:0.35s;
z-index:2000;
}

.side-menu a{
display:block;
padding:16px 25px;
color:white;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.side-menu a:hover{
background:#094843;
color:#d4af37;
}


/* HERO */

.hero{
text-align:center;
padding:150px 20px 120px 20px;
position:relative;
z-index:1;
}

.hero h1{
font-size:34px;
margin-bottom:22px;
font-weight:700;
}

.hero p{
max-width:650px;
margin:auto;
font-size:18px;
line-height:1.6;
}


/* CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:45px 20px;
}

.container h2{
text-align:center;
margin-bottom:40px;
font-size:28px;
}


/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:30px;
}


/* CARDS */

.card{
background:#084a45;
padding:28px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.35);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card h3{
color:#d4af37;
margin-bottom:12px;
font-size:18px;
}

.card p{
font-size:15px;
line-height:1.6;
}


/* FOOTER */

.footer{
text-align:center;
padding:70px 20px;
background:#052f2c;
margin-top:60px;
}

.footer h3{
margin-bottom:10px;
font-size:22px;
}

.footer-tag{
color:#d4af37;
margin-bottom:20px;
}

.footer p{
line-height:1.6;
}


/* DISCLAIMER */

.disclaimer-btn{
background:none;
border:none;
color:#d4af37;
font-size:16px;
cursor:pointer;
margin-top:18px;
}

.disclaimer-text{
display:none;
max-width:700px;
margin:auto;
margin-top:18px;
font-size:14px;
line-height:1.6;
}


/* FLOATING BUTTONS */

.linkedin-btn{
position:fixed;
right:20px;
bottom:140px;
background:#0A66C2;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-weight:bold;
text-decoration:none;
font-size:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
z-index:999;
}

.whatsapp-btn{
position:fixed;
right:20px;
bottom:70px;
background:#25D366;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:20px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
z-index:999;
}


/* MOBILE */

@media(max-width:768px){

.hero{
padding:120px 20px 90px 20px;
}

.hero h1{
font-size:28px;
}

.logo{
font-size:22px;
}

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

}.gold-btn{
display:inline-block;
background:#d4af37;
color:#000;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
margin-top:20px;
}

.container{
text-align:center;
}

