*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#eef2f7;
    color:#333;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    max-width:480px;
    margin:auto;
    background:#fff;
    min-height:100vh;
    box-shadow:0 0 25px rgba(0,0,0,.08);
}

/*==========================
        HERO
==========================*/

.hero{
    position:relative;
    height:260px;
    overflow:hidden;
}

.cover{
    width:100%;
    height:260px;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.55));
}

.logo{
    position:absolute;
    left:50%;
    bottom:-30px;
    transform:translateX(-50%);
    width:110px;
    height:110px;
    border-radius:50%;
    background:#fff;
    border:5px solid #fff;
    /* object-fit:cover; */
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

/*==========================
    COMPANY
==========================*/

.company{
    padding:70px 25px 35px;
    text-align:center;
}

.company h1{
    font-size:31px;
    color:#133b63;
    font-weight:700;
    margin-bottom:6px;
}

.subtitle{
    color:#666;
    font-size:16px;
}

.company h2{
    margin-top:22px;
    font-size:23px;
    color:#222;
}

.position{
    display:inline-block;
    margin-top:8px;
    background:#133b63;
    color:#fff;
    padding:7px 20px;
    border-radius:50px;
    font-size:14px;
}

.website-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:28px;
    background:#1c7d3b;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.website-btn:hover{
    background:#15662f;
    transform:translateY(-2px);
}

/*==========================
    CARD
==========================*/

.card{
    margin:18px;
    background:#fff;
    border-radius:18px;
    padding:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.card h3{
    font-size:19px;
    color:#133b63;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
}

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

.info{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:24px;
}

.info:last-child{
    margin-bottom:0;
}

.info i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#eef5ff;
    color:#133b63;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.info label{
    display:block;
    color:#888;
    font-size:13px;
    margin-bottom:5px;
}

.info a{
    color:#222;
    font-weight:600;
    word-break:break-word;
}

.info p{
    line-height:1.8;
    color:#444;
}

/*==========================
    ABOUT
==========================*/

.card p{
    line-height:1.9;
    color:#555;
}

/*==========================
    SERVICES
==========================*/

.services{
    list-style:none;
}

.services li{
    padding:13px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:30px;
}

.services li:last-child{
    border-bottom:none;
}

.services li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#16a34a;
    font-weight:bold;
}

/*==========================
    SOCIAL
==========================*/

.social{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social a{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#133b63;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
}

.social a:hover{
    transform:translateY(-5px);
    background:#1c7d3b;
}

/*==========================
    TABLE
==========================*/

table{
    width:100%;
    border-collapse:collapse;
}

table td{
    padding:13px 0;
    border-bottom:1px solid #eee;
    font-size:15px;
}

table tr:last-child td{
    border:none;
}

table td:last-child{
    text-align:right;
    color:#444;
}

/*==========================
    MAP
==========================*/

.map{
    border-radius:15px;
    margin-bottom:18px;
}

.map-btn{
    display:block;
    text-align:center;
    background:#133b63;
    color:#fff;
    padding:14px;
    border-radius:12px;
    font-weight:600;
}

.map-btn:hover{
    background:#0d2c4a;
}

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

footer{
    text-align:center;
    color:#777;
    padding:20px 20px 20px;
    font-size:14px;
}

/*==========================
    FLOATING BUTTONS
==========================*/

.floating{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.floating a{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#1c7d3b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:21px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.floating a:hover{
    transform:scale(1.08);
}

/*==========================
    MOBILE
==========================*/

@media(max-width:480px){

.company h1{
    font-size:26px;
}

.company h2{
    font-size:21px;
}

.card{
    margin:14px;
    padding:20px;
}

.website-btn{
    width:100%;
}

.social{
    flex-wrap:wrap;
}

.social a{
    width:52px;
    height:52px;
}

.info{
    gap:14px;
}

}

/* Fade Animation */

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.show{

    opacity:1;

    transform:translateY(0);

}


/* Pulse */

.pulse{

    animation:pulse .7s;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.12);

}

100%{

transform:scale(1);

}

}


/* Ripple */

.website-btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:scale(0);

    animation:ripple .7s linear;

    pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}