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

:root {
    --shadow: 0 2px 2px rgb(0 0 0 / 1);
}

/* navbar */

.mynavbar {
    background-color: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(3px);
}

.mynavbar .offcanvas {
    height: 100vh;
}

.mynavbar .offcanvas .offcanvas-title {
    padding-left: 11.5rem;
}

.mynavbar .navbar-brand, .mynavbar .offcanvas-title {
    color: #1D345C;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.6rem;
}

.mynavbar .nav-link {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

/* home */
.home {
    background-image: url(img/patern.png);
    background-size: cover;
    min-height: 100vh;
    margin-top: -6rem;
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.home h2 {
    color : #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.home h3 {
    font-family: 'Poppins', sans-serif;
    color: #c99700;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.home p {
    font-family: 'Poppins', sans-serif;
    color: #525252;
    font-size: 1.6rem;
    font-weight: 500;
}

.home a {
    color: #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: #c99700;
    box-shadow: var(--shadow);
    margin-top: 1.2rem;
}

.home a:hover {
    background-color: #8a8a8a;
    color: white;
}

/* tentang kami */
.info {
    background-color: #646464;
    color: white;
    padding-top: 10rem;
    padding-bottom: 8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 8px;
}

.info a:hover {
    background-color: #c99700;
    color: white;
}

.info h2 {
    color : #c99700;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.info h3 {
    color: #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.info span {
    color: #c99700;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.info .about {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.info .description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-top: 0.9rem;
}

.info .card {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1.5px solid;
    box-shadow:  3px 3px 3px rgb(0 0 0 / 1);
    border-radius: 0.9rem;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.info .card h1 {
    color : #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 1rem;
}

.info .card p {
    color : #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* armada */
.armada {
    background-color: #ffffff;
    color: black;
    padding-top: 10rem;
    padding-bottom: 8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.armada h2 {
    color : #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-top: -2.5rem;
}

.armada .description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.armada .card {
    background-color: rgba(255, 255, 255, 0.2);
    color: black;
    border: none;
    border-radius: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 520px;
    
}

.card img {
    width: 100%; 
    height: auto; 
    aspect-ratio: 16 / 11;
}


.armada .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.12);
}

.armada .card:hover .card-body {
    color: white;
}

.armada .card-body {
    transition: color 0.3s ease;
}

.armada .card h5 {
    color : #565656;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 1rem;
    text-transform: uppercase;
}

.armada .card p {
    color : #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.armada .card .btn {
    margin-top: auto;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background-color: #717171;
    box-shadow: var(--shadow);
    position: absolute;
    margin-bottom: 2rem;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 75%;
}

.armada .card .btn:hover {
    background-color: #1D345C;
    color: white;
}

/* armada responsive */
@media (max-width: 767px) {
    .armada {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .armada h2 {
        font-size: 2rem; 
        margin-top: -1.5rem; 
    }

    .armada .card {
        min-height: 375px; 
    }

    .armada .card h5 {
        font-size: 1.5rem; 
        padding-top: 0.5rem;
    }

    .armada .card p {
        font-size: 0.9rem; 
        padding-left: 1rem; 
        padding-right: 1rem; 
    }

    .armada .card .btn {
        width: 50%; 
        margin-bottom: 1rem; 
    }
}

/* Testimoni */
.testimonii {
    background-color: #ffffff;
    color: black;
    padding-top: 10rem;
    padding-bottom: 8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonii h1 {
    color : #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-top: -0.5rem;
}

.testimonii .description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.testimoni {
    padding: 40px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.inner {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.border {
    width: 160px;
    height: 5px;
    background-color: #1D345C;
    margin: 26px auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col {
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.testimoni {
    background: #fff;
    padding: 30px;
}

.testimoni img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.name {
    text-transform: uppercase;
    margin: 20px 0;
    color : #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-weight: 600;
}

.stars {
    color: #ffbf00;
    margin-bottom: 20px;
}


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

.contact-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #878e9d;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    color : #1D345C;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-top: -0.5rem;
}

.contact-left-title hr {
    border: none;
    width: 150px;
    height: 5px;
    background-color: #1D345C;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.contact-inputs:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.12);
}


.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid #1D345C;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #1D345C, #2c5497);
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 500px;
}

@media (max-width:800px) {
    .contact-inputs {
        width: 80vw;
    }
    .contact-right {
        display: none;
    }
}

/* footer */
footer {
    padding: 0.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: linear-gradient(270deg, #2c5497, #1D345C);
}

footer a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* ikon */
.card-body i {
    font-size: 80px;
    color: #c99700;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
/* whatsapp button */
.whatsapp-button {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    background-color: #1D345C; 
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999; 
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    animation: blink 0.6s infinite;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.whatsapp-button span {
    font-size: 18px;
    font-weight: bold;
    margin: auto;
}

.whatsapp-link {
    text-decoration: none; 
    color: inherit; 
    display: inherit; 
    width: inherit; 
    height: inherit; 
}

/* button wa handphone */
@media (max-width: 767px) {
    .whatsapp-button {
        bottom: 10px; 
        right: 10px;
        padding: 6px 10px; 
    }

    .whatsapp-button img {
        width: 25px; 
    }

    .whatsapp-button span {
        font-size: 12px;
    }
}

/* responsive */
/* laptop */
@media (max-width: 1200px) {
    .info .card {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 75%;
    }
    .info .card {
        min-height: 370px;
    }
}

/* tablet */
@media (max-width: 768px) {
    html {
        font-size: 65%;
    }

    .mynavbar .nav-link {
        font-size: 2rem;
        text-align: center;
    }

    .sticky-top {
        overflow: hidden;
    }

    .mynavbar .offcanvas .offcanvas-title {
        padding-left: 10rem;
    }

    .info .card {
        min-height: 100px;
    }
}

/* handphone */
@media (max-width: 576px) {
    html {
        font-size: 60%;
        
    }
    .home h2 {
        margin-top: 8rem;
    }
    .mynavbar .offcanvas .offcanvas-title {
        padding-left: 11.7rem;
    }
    
    
}

@media screen and (max-width:960px) {
    .testimonii .col {
        flex: 100%;
        max-width: 80%;
    }
}

@media screen and (max-width:600px) {
    .testimonii .col {
        flex: 100%;
        max-width: 100%;
    }
}