/* GLOBAL */

body{
font-family:'Poppins',sans-serif;
margin:0;
background:#f4f7fb;
color:#333;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}


/* HEADER */

header{
background:#0a3d62;
color:white;
padding:15px 0;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:60px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}

nav a:hover{
text-decoration:underline;
}


/* HERO */

.hero{
background:linear-gradient(135deg,#0a3d62,#1e5f9e);
color:white;
text-align:center;
padding:60px 20px;
}

.main-btn{
background:#00c896;
color:white;
padding:12px 25px;
border:none;
cursor:pointer;
margin-top:15px;
border-radius:6px;
font-size:16px;
}

.main-btn:hover{
background:#00a67d;
}


/* SECTIONS */

.section{
padding:50px 20px;
text-align:center;
}


/* SERVICES */

.services{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-top:20px;
}

.box{
background:white;
padding:20px;
width:250px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.box:hover{
transform:translateY(-5px);
}

.btn{
background:#0a3d62;
color:white;
padding:10px 20px;
border:none;
cursor:pointer;
border-radius:6px;
margin-top:10px;
}

.btn:hover{
background:#082a45;
}


/* CONTACT */

.contact{
background:#eaf2f8;
}


/* FOOTER */

footer{
background:#0a3d62;
color:white;
padding:15px;
text-align:center;
}


/* POPUP FORM */

#popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
justify-content:center;
align-items:center;
z-index:999;
}

.form-box{
background:white;
padding:20px;
width:320px;
border-radius:10px;
}

.form-box input,
.form-box textarea{
width:100%;
padding:10px;
margin:5px 0;
border:1px solid #ddd;
border-radius:5px;
}

.submit-btn{
background:#00c896;
color:white;
padding:10px;
border:none;
width:100%;
border-radius:5px;
cursor:pointer;
}

.submit-btn:hover{
background:#00a67d;
}

.close-btn{
margin-top:10px;
width:100%;
padding:10px;
border:none;
background:#ccc;
cursor:pointer;
border-radius:5px;
}


/* FLOATING BUTTONS */

.floating-buttons{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
}


/* WhatsApp */

.whatsapp-btn{
width:55px;
height:55px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:26px;
text-decoration:none;
box-shadow:0 4px 12px rgba(0,0,0,0.3);
transition:0.3s;
}

.whatsapp-btn:hover{
transform:scale(1.1);
}


/* Chat Button */

.chat-btn{
width:55px;
height:55px;
background:#0a3d62;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
cursor:pointer;
box-shadow:0 4px 12px rgba(0,0,0,0.3);
transition:0.3s;
}

.chat-btn:hover{
transform:scale(1.1);
}


/* CHAT BOX */

.chat-box{
position:fixed;
bottom:90px;
right:20px;
width:320px;
background:white;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
display:none;
overflow:hidden;
z-index:999;
}


/* Chat header */

.chat-header{
background:#0a3d62;
color:white;
padding:12px;
font-weight:600;
}


/* Chat messages */

.chat-body{
height:250px;
overflow-y:auto;
padding:10px;
background:#f4f7fb;
}


/* Chat input */

.chat-input{
display:flex;
border-top:1px solid #ddd;
}

.chat-input input{
flex:1;
padding:10px;
border:none;
}

.chat-input button{
background:#0a3d62;
color:white;
border:none;
padding:10px 15px;
cursor:pointer;
}


/* Messages */

.bot{
background:white;
padding:8px;
margin:5px;
border-radius:6px;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.user{
background:#0a3d62;
color:white;
padding:8px;
margin:5px;
border-radius:6px;
text-align:right;
}


/* MOBILE */

@media(max-width:768px){

.services{
flex-direction:column;
align-items:center;
}

.header-flex{
flex-direction:column;
}

nav{
margin-top:10px;
}

}