@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

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

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    touch-action: manipulation; /* Prevents double-tap zoom */
}

:root{
    --fs-big: 3.5rem;
    --fs-medium: 1.4rem;
    --fs-small: 0.9rem;
    --fs-card-title: 1.2rem;

    --blue: #669bbc;
    --red: #d0000e;
    --darkblue: #003049;
}

/* -- NAV STYLING -- */
nav {
    position: absolute;
    top: 0;
    color: black;
    display: flex;
    align-items: center;
    z-index: 999;
    height: 70px;
    width: 100%;
    padding: 0 20px;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 40px;
}

nav a {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #d3d3d3;
    text-decoration: none;
    /* text-transform: uppercase; */
}

nav a:hover {
    color: white;
    transition: all 0.2s;
}

nav li:first-child {
    margin-right: auto;
    font-size: 1.5em;
    font-weight: 400;
}
.bordered-li {
   border: solid 1px white;
   border-radius: 20px;
}

.sidebar {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    min-height: 100vh;
    width: 350px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.396);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* transition:all 2s linear; */
}

.menu-button {
    display: none;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
}

nav .icon {
    font-size: 1.4rem;
}

nav .icon3 {
    /* left: 20px; */
    font-size: 1.3em;
    margin: 0 20px;
}
.logo{
    display: flex;
    align-items: center;
}
.logo img{
    width: 180px;
    filter: brightness(1000%);
}

.icon2 {
    font-size: 2em;
}
/* end NAV styling */

@media(max-width: 800px) {
    .hideOnMobile {
        display: none;
    }
    .menu-button{
        display: block;
    }
}

@media(max-width: 400px) {
    .hideOnMobile {
        display: none;
    }

    .sidebar {
        width: 100%;
    }
}

footer{
    position: static;
    bottom: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: end;
    font-size: 0.8rem;
    height: 200px;
    padding: 20px;
    background-color: #003049;
    color: white;
    text-align: center;
}

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 100vh;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    /* background-color: rgba(0, 0, 0, 0.4); */
    background-color: #00313574;
    padding: 20px;
    gap: 20px;
}

.hero video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .headline{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    flex-wrap: wrap;
    text-align: center;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}

.hero .headline span{
    color: var(--red);
    font-weight: 600;
}

.hero .sub-headline{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 300;
}

.hero .cta{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.hero .cta .bx{
    font-size: 1.5rem;
}

.hero .cta a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    border: solid 1.5px var(--blue);
    border-radius: 30px;
    cursor: pointer;
    padding: 0.8rem;
    text-decoration: none;
    color: white;
    /* background-color: rgba(0, 0, 0, 0.363); */
    background-color: var(--blue);
    backdrop-filter: blur(10px);

}

.hero .cta span a{
    background-color: rgba(0, 0, 0, 0.1);
    border: solid 1.5px white;

}

.hero .cta a:hover{
    background-color: var(--darkblue);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.2s;
    border: solid 1.5px var(--darkblue);

}

.segment{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.segment-header{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px;
}

.segment-subheader{
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    min-width: 80%;
}

.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    justify-content: center;
    align-items: start;
    gap: 1rem;
    margin: 40px 0;
}

.card{
    display: flex;
    position:relative;
    flex-direction: column;
    padding: 20px;
    border: solid 1px #ccc;
    border-radius: 20px;
    min-height: 280px;
    gap: 1rem;
    flex: 1;
    padding-bottom: 100px;
}

.card:hover{
    border: solid 1.5px var(--blue);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card .header{
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card .header img{
    height: 70px;
}

.card .cta{
    display: flex;
    position:absolute;
    bottom: 20px;
}
.card .cta a{
    border: solid 1px var(--blue);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--blue);
}

.card .cta a:hover{
    background-color: var(--darkblue);
    transition: all 0.2s;
    color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.iklan{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    font-size: 2rem;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    color: white;
    text-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ess{
    display: flex;
    padding: 100px 20px 10px 20px;
    justify-content: center;
    align-items: center;
}

.ess .header{
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 0;
    text-align: center;
}
.ess .header span{
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
}

.ess .details{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: rgb(93, 93, 93);
}

.overview{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
    gap: 1rem   ;
}

.overview .left, .overview .right{
    display: flex;
    height: 100%;
    flex-direction: column;
    border: solid 1px var(--blue);
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
}

.overview .header{
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 0;
}

.overview .subheader{
    font-size: 1.8rem;
    font-weight: 300;
    padding: 20px 0;
}

.overview .details{
    display: flex;
    padding-left: 30px;
}

.overview .details ul{
    list-style-type: none;
}

.overview .details li::before{
content: "|| ";
font-weight: 600;
color: red;
text-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.overview .details span{
    font-weight: 500;
    padding-right: 10px;
}

.ups{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background-color: #f0f0f0;
}

.ups .header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.ups .header span{
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
}

.ups .cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.ups .card{
    position:relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: white;
    padding: 20px 20px 70px 20px;
    height: 100%;
}

.ups .card .details{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    padding: 20px;
}

.ups .card li:nth-child(1){
    font-weight: 600;
    list-style: none;
    padding: 10px 0 ;
    font-size: 1.1rem;
}

.ups .card .img{
    display: flex;
    height: 260px;
    background-color: #ccc;
    border-radius: 10px;
}

.ups .card .img img{
    width: 100%;
    object-fit: cover;
    object-position: top center;
    overflow: hidden;
    border-radius: 10px;
}


.ups .card .cta{
    display: flex;
    justify-content: center;
    width: 100%;
}

.ups .card .cta a{
    position: absolute;
    bottom: 10px;
    width: 90%;
    left: 0;
    display: block;
    border: solid 1px var(--blue);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--blue);
    align-items: center;
    justify-content: center;
    gap: 10px   ;
}


.ups .card .cta a:hover{
    background-color: var(--darkblue);
    transition: all 0.2s;
    color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    padding: 100px 40px;
    gap: 2rem;
}

.about .left, .about .right{
    flex: 1;
    justify-content: start;
    align-items: start;
}

.about .header, .about .objective .header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: start;
}

.about .header span{
    font-size: 1.8rem;
    font-weight: 300;
    text-align: start;
}

.about .header img{
    width: 200px;
}

.about .details{
    display: flex;
    padding: 20px 0;
    text-align: justify;
}

.about .objective .details{
    display: flex;
    flex-direction: column;
    padding: 20px 50px;
}

.objective-mission{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.objective{
    display: flex;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 10px;
    text-align: start;
}

.contact{
    display: flex;
    flex-direction: column;
    padding: 100px 20px;
    background-color: #f0f0f0;
}
.contact .header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: start;
}

.contact .details{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px , 1fr));
    width: 100%;
    gap: 2rem;
    padding: 50px 0;
}

.contact .section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
}

.section li{
    display: flex;
    list-style-type: none;
    padding: 0px 50px;
    gap: 1rem;
}

.section li img{
    width: 100px;
}

.section li:nth-child(2){
    font-weight: 600;
    text-transform: uppercase;
}

.contact iframe{
    border-radius: 10px;
    width: 100%;
}

