/*** START COMMONN STYLE ***/
html
{
    scroll-behavior: smooth;
}


body
{
    font-family: "Work Sans", Helvetica, Arial, sans-serif;
}

a, a:focus, a:hover 
{
    text-decoration: none;
    outline: 0;
}

h1, h2, h3, h4, h5, h6 
{
    color: #222222;
    line-height: 1.2em !important;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 600;
}

ul
{
    margin: 0px;
    padding: 0px;
}

ul > li
{
    list-style: none;
}

/*** END COMMONN STYLE ***/

/*** START HEADER STYLE ***/

.nav-header
{
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent !important; /* Pastikan background header menjadi transparan */
}

/* above navbar */

.above_navbar 
{
    background: transparent !important; /* Pastikan background above navbar menjadi transparan */
    color: white;
    height: 10px; /* Kurangi tinggi header lebih lanjut */
}

.above_navbar .bar_content
{
    overflow: hidden;
    font-size: 12px;
}

.above_navbar .company_details 
{
    float: left;
}

.above_navbar .company_details ul
{
    list-style :none;
    margin:0px;
    padding:0px;
}

.above_navbar .company_details ul li
{
    display: inline-block;
    line-height: 10px; /* Sesuaikan dengan tinggi header */
    margin-right: 10px;
}

.above_navbar .company_details ul li i
{
    color:#04dbc0;
}

.above_navbar .company_social
{
    float : right;
}

.above_navbar .company_social ul
{
    list-style :none;
    margin:0px;
    padding:0px;
}

.above_navbar .company_social ul li
{
    display: inline-block;
    line-height: 10px; /* Sesuaikan dengan tinggi header */
}

.above_navbar .company_social ul li a
{
    display: inline-block;
    color: #fff;
    padding: 0;
    margin-left: 15px;
    line-height: 45px;
}

/* navbar */
@keyframes sticky-navbar 
{
    from {top: 45;}
    to {top: 0;}
}

.sticky-navbar
{
    animation-name: sticky-navbar;
    animation-duration: 1s;
    background-color: #000000 !important;

}

.navbar
{
    background-color: transparent !important; /* Pastikan background navbar menjadi transparan */
    padding: 2px 0; /* Kurangi padding navbar lebih lanjut */
}

.navbar-light .navbar-toggler
{
    background-color: #f9f9ff;
}

.navbar-brand 
{
    font-family: "PT Sans Narrow";
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.navbar-brand img
{
    height: 200px; /* Sesuaikan ukuran gambar logo */
}

.navbar-light .navbar-brand
{
    color:white;
}

.navbar-brand:hover
{
    color:white;
}

.navbar-light .navbar-nav .active>.nav-link
{
    color: rgb gold; /* Warna teks untuk kotak aktif */
    background-color: #a73434; /* Ubah background color untuk kotak aktif */
    border-radius: 10px; /* Tambahkan border-radius untuk kotak */
    padding: 10px 20px; /* Kurangi padding dalam kotak */
    margin: 0 2px; /* Kurangi margin antar kotak */
    font-size: 15px; /* Sesuaikan ukuran font jika diperlukan */
    font-style: bold;
}

.navbar-light .navbar-nav .nav-link
{
    color: rgb(0, 0, 0); /* Warna teks */
    background-color: #a73434; /* Ubah background color untuk kotak menjadi merah */
    border-radius: 10px; /* Tambahkan border-radius untuk kotak */
    padding: 10px 20px; /* Kurangi padding dalam kotak */
    margin: 0 2px; /* Tambahkan margin untuk spasi antar kotak */
    font-size: 15px; /* Sesuaikan ukuran font jika diperlukan */
    font-style: bold;
    
}

.navbar-light .navbar-nav .nav-link:hover
{
    color: #FFD700; /* Warna teks saat hover */
    background-color: #a73434; /* Ubah background color saat hover */
}

.navbar-nav .nav-item {
    margin: 0 2px; /* Kurangi margin antar kotak */
}

.navbar-nav .nav-link {
    padding: 10px 20px; /* Kurangi padding dalam kotak */
    font-size: 15px; /* Sesuaikan ukuran font jika diperlukan */
    font-style: bold; /* Sesuaikan ukuran font jika diperlukan */
    border-radius: 10px; /* Tambahkan border-radius untuk kotak */
    background-color: #a73434; /* Ubah background color untuk kotak menjadi merah */
    color: rgb(0, 0, 0); /* Warna teks */
}

/*** END HEADER STYLE ***/

/*** START TITLE & TAGLINE & SEPARATOR STYLE ***/

.section-header 
{
    text-align: center;
    margin-bottom: 40px;
}

.section-header > .section-tagline 
{
    color: #a73434;
    font-size: 30px;
    font-weight: 400;
    font-family: "PT Sans Narrow";
    margin-bottom: 10px;
}

.section-header > .section-title 
{
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: "PT Sans Narrow";
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header > .separator 
{
    width: 150px;
    background: #04DBC0;
}

/*** END TITLE & TAGLINE & SEPARATOR STYLE ***/

/*** START HOME SECTION STYLE ***/

.home_section {
    position: relative;
    width: 100%;
    height: 50vh; /* Sesuaikan tinggi */
    overflow: hidden;
}

.home_section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7); /* Membuat video lebih gelap agar lebih elegan */
}

/* Overlay Gelap */
.home_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Lapisan gelap */
    z-index: -1;
}

/* Efek Fade-in saat halaman dimuat */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.home_section {
    animation: fadeIn 1.5s ease-in-out;
}

/*** END HOME SECTION STYLE ***/
/*** =============================================================================================== ***/
/*** START OUR SERVICES SECTION STYLE ***/

.our-services {
    background-color: #f8f9fa;
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.single-feature {
    border-radius: 12px;
    background: linear-gradient(135deg, #a73434, #8b2222);
    padding: 35px;
    margin-bottom: 30px;
    text-align: justify;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1 1 30%; /* Flex grow, shrink, and basis */
    min-height: 200px; /* Pastikan semua kotak memiliki tinggi minimal */
    flex-direction: column;
}

.single-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.single-feature h4 {
    color: #ffffff;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

.single-feature:hover h4 {
    color: #ffd700; /* Warna emas saat hover */
}

.single-feature p {
    font-size: 16px;
    line-height: 1.8;
    color: #f1f1f1;
    font-style: italic;
}

.single-feature h4 span {
    margin-right: 10px;
    font-size: 24px;
    color: #ffd700; /* Warna ikon */
}
/*** END OUR SERVICES SECTION STYLE ***/

/*** ================================================================================================================ ***/
                                /*** START ABOUT AREA SECTION STYLE ***/

.about-area .left-area img
{
    width:102%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    
    
}

.about-area .right-area h1 {
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50; /* Warna gelap elegan */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600; 
    font-size: 1.5rem; /* Atur sesuai keinginan (mis. 1.25rem, 1.5rem, dll.) */
    color: #2c3e50; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}


.my-btn 
{
    background-color: #FFD700; /* Warna latar belakang tombol emas */
    color: #000; /* Warna teks tombol */
    line-height: 42px;
    padding-left: 40px;
    padding-right: 40px;
    border: none;
    display: inline-block;
    font-weight: 500;
    position: relative;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-transform: uppercase;
}

.about-area .right-area .bttn 
{
    background: #a73434;
    color: #000000;
    border: 1px solid #a73434;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.about-area>.row 
{
    justify-content: center;
    align-items: center;
}

.about-area .right-area .my-btn:hover 
{
    background-color: #a73434; /* Warna latar belakang tombol saat hover */
    color: #FFD700; /* Warna teks tombol saat hover */
    border-color: #FFC700; /* Warna border tombol saat hover */
    background-color: #a73434;
    color: #ffffff;
    border-color: #a73434;
    box-shadow: 0px 4px 15px rgba(167, 52, 52, 0.4); /* Efek glowing merah */
}



.about-area .right-area p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #34495e; /* Nuansa warna netral yang lembut */
    margin-bottom: 1.5rem;
}

.about-area .right-area p span {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 2rem;
    color: #000000; /* Tetap mempertahankan warna hitam jika diinginkan, bisa disesuaikan */
}

                            /*** END ABOUT AREA SECTION STYLE ***/
/***    ============================================================================   ***/

/*** START OUR BRANDS SECTION STYLE ***/


.our-brands
{
    padding:50px 0px;
}

.car-brands .car-brand
{
    position: relative;
    width: 100%; /* Lebar kotak 100% dari kontainer induk */
    padding-bottom: 75%; /* Tinggi berdasarkan 4:3, yaitu 3/4 dari lebar (3/4 = 75%) */
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition-duration: 0.2s;
    
}

.car-brands .col-md-4
{
    margin-bottom: 20px;
}

.car-brands .car-brand:hover 
{
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
}

.car-brands .car-brand .brand_name
{
    padding:10px 20px 10px 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    color: #000000;
    z-index: 1;
}

.car-brands .car-brand .brand_name>h3
{
    color:rgb(255, 255, 255);
    font-size:24px;
    font-weight: 700;
    letter-spacing: 0px;
    margin:0px;
    
}

/*** END OUR BRANDS SECTION STYLE ***/

/*** START FOOTER STYLE ***/

.widget_section {
    background-color: #222227;
    padding: 50px 0;
}

.widget_section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer_widget {
    flex: 1;
    min-width: 250px; /* Sesuaikan lebar minimum */
    margin-bottom: 20px; /* Tambahkan margin bawah untuk spasi */
}

.footer_widget img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px; /* Tambahkan margin bawah untuk spasi */
}

.footer_widget p {
    color: #999;
    margin-bottom: 20px; /* Tambahkan margin bawah untuk spasi */
}

.footer_widget h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom: 25px;
}

.widget_social {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin-top: 30px;
}

.widget_social li {
    margin-right: 20px;
}

.widget_social li a {
    color: #777;
    font-size: 12px;
    transition-duration: 0.5s;
}

.widget_social li a:hover {
    color: #04DBC0;
}

.subscribe_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 0;
}

.subscribe_form .form_input {
    display: block;
    color: #fff;
    border: none;
    font-size: 14px;
    line-height: 50px;
    padding: 0 10px;
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}

.subscribe_form .submit {
    background-color: #04DBC0;
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease-in-out;
}

.subscribe_form .submit:hover {
    background-color: #fab700;
    transition: all 0.5s ease-in-out;
}

.footer_section {
    display: block;
    background-color: #222227;
    border-top: 1px solid #333;
    padding: 15px 0;
}

.footer_section .copyright {
    font-size: 14px;
    color: #ddd;
}

.footer_link {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.footer_link li {
    margin-left: 20px;
}

.footer_link li a {
    font-family: "Work Sans", sans-serif;
    color: #ddd;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer_widget ul.contact_info {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #999;
}

.footer_widget ul.contact_info li {
    padding: 0.5rem 0;
}

.footer_widget ul.contact_info li i {
    margin-right: 15px;
}

/*** END FOOTER STYLE ***/

/**** START RESERVATION SECTION STYLE ***/


.reservation_section {
    position: relative;
    width: 100%;
    height: 100vh; /* Pastikan section mengambil seluruh layar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation_section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pastikan video memenuhi layar */
    transform: translate(-50%, -50%);
    z-index: -1;
}

.reservation_section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.5); /* Overlay transparan untuk efek gelap */
    z-index: 0;
}

.reservation_section .content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.reservation_section .car-reservation-form {
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 40px rgb(0 0 0 / 10%);
    padding: 20px 40px;
    background-color: white;
    border-radius: 10px;
}

.car-reservation-form .text_header {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.5;
    margin: 20px 0px;
    text-transform: uppercase;
}

.car-reservation-form label {
    font-size: 13px;
    font-weight: bold;
}

.car-reservation-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.sbmt-bttn {
    background: #03221e;
    color: white;
    padding: 10px 25px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.sbmt-bttn:hover {
    background: #e63415;
    border-color: #5856D6;
    color: white;
}

/**** END RESERVATION SECTION STYLE ***/

/*** START CONTACT US SECTION STYLE ***/

.contact-section
{
	padding:100px 0px;
}

.contact-info h2
{
	font-size: 36px;
	color: #303133;
	margin: 0 0 8px;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: -0.04em;
}

.contact-info h3 
{
    line-height: 28px;
    margin-bottom: 20px;
}

.contact-info h4 
{
    font-size: 15px;
    line-height: 28px;
}

.contact-form 
{
    background-color: #fff;
    padding: 50px 40px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    border-radius: 3px;
}

.form-control
{
    background-color: #fff;
    border-radius: 0;
    padding: 25px 10px;
    box-shadow: none;
    border: 2px solid #eee;
}

.form-control:focus 
{
    border-color: #04DBC0;
    box-shadow: none;
    outline: none;
}

.contact_send_btn
{
    background-color: #04DBC0;
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease-in-out;
}

.contact_send_btn:hover
{
    background-color: #fab700;
    transition: all 0.5s ease-in-out;
}


/*** END CONTACT US SECTION STYLE ***/


/**** START RESERVE PAGE (reserve.php) STYLE ****/

.reserve-banner-section
{
    background-image: url('../images/reservation-banner.jpg');
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 1000px #2d2d2d8c;
    justify-content: center;
    align-items: center;
    display: flex;
}

.reserve-banner-section > h2
{
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}

.items_tab {
     border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 10px;
}
.itemListElement {
    display: flex;
    justify-content: space-between; /* Pastikan elemen berada di kiri dan kanan */
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.item_details {
    width: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1; 
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    
}
.item_select_part {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto; /* Pastikan tombol ada di kanan */
    min-width: 120px;
}
.select_item_bttn {
    min-width: 100px; /* Lebih besar agar tidak terlalu kecil */
    padding: 8px 16px;
    text-align: center;
    background-color: #03221e;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select_item_bttn:hover {
    background-color: #e63415;
}
.item_label {
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #03221e;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.item_label:hover
{
	color: white;
    border-color: #e63415;
    background-color: #e63415;
}
.item_label.active
{
	color: white !important;
    border-color: #118ca1 !important;
    background: #a71414 !important;
}
.item_label:focus
{
	box-shadow:none !important;
}
.radio_car_select {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}
.car_reservation_section
{
    padding: 20px 0px 50px 0px;
}
.car_reservation_section .client_details
{
    background-color: #ffffff; /* Warna latar belakang putih */
    padding: 30px; /* Tambahkan padding */
    border-radius: 10px; /* Tambahkan border radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan shadow */
    margin-top: 20px;
}

.car_reservation_section .client_details label
{
    font-size: 13px;
    font-weight: bold;
}

.reservation_cards p
{
    margin:0px;
    padding: 20px 10px;
    font-size:16px;
}
.reservation_cards p>span
{
    font-weight:600;
}

.table .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table .btn-group .btn {
    margin: 0 5px; /* Tambahkan margin horizontal */
}

.note-container {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #222227;
    border-top: 2px solid #dee2e6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.note-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.whatsapp-btn:hover {
    background-color: #1eb14b;
}

/**** END RESERVE PAGE (reserve.php) STYLE ****/

/* Styling for the car list REMAKE RESERVE */
.items_tab {
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 10px;
}

.client_details {
    background-color: #ffffff; /* Warna latar belakang putih */
    padding: 30px; /* Tambahkan padding */
    border-radius: 10px; /* Tambahkan border radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan shadow */
    margin-top: 20px;
}

.client_details .form-group {
    width: 100%;
    margin-bottom: 10px;
}

.client_details .form-group input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.client_details .sbmt-bttn {
    align-self: flex-end;
    background: #03221e;
    color: white;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
}

.client_details .sbmt-bttn:hover {
    background: #e63415;
    border-color: #5856D6;
    color: white;
}

.client_details {
    background-color: #ffffff; /* Warna latar belakang putih */
    padding: 30px; /* Tambahkan padding */
    border-radius: 10px; /* Tambahkan border radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan shadow */
    margin-top: 20px;
}

.client_details .form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px; /* Tambahkan margin bawah */
}

.client_details .form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 16px; /* Sesuaikan ukuran font */
}

.client_details .btn.sbmt-bttn {
    background-color: #03221e;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 20px; /* Tambahkan margin atas */
}

.client_details .btn.sbmt-bttn:hover {
    background-color: #e63415;
}

.client_details .invalid-feedback {
    color: #dc3545;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}


