@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Monoton&display=swap');

/* #ffc107 */
:root {
  --primary-color: #fff;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    background: url('../img/bg-3.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f2027;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    flex-direction: column;
}

.spinner {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid #FF0000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 1rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.main-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
    transition: all 0.3s ease;
}

.navbar-brand img {
    /* position: absolute; */
    height: 120px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.hero {
    flex: 1;
    min-height: 0; /* Fix for scroll inside flex item */
    overflow-y: auto;
    color: white;
    padding: 1rem;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* overflow-y: auto; */
    
    /* Scrollbar styling for WebKit browsers (Chrome, Safari, Edge) */
    scrollbar-width: thin;             /* Firefox */
    scrollbar-color: #bbb transparent; /* Firefox */
}

.hero::-webkit-scrollbar {
  width: 3px; /* slim scrollbar */
}

.hero::-webkit-scrollbar-track {
  background: transparent;
}

.hero::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.hero::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero h1 {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-size: 30px;
}

.hero .container {
    max-width: 1200px;
}

.color-highlight {
    color: var(--primary-color) !important;
}

.color-white {
    color: #fff !important;
}

.text-justify {
    text-align: justify;
}

#rotating-text {
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
    font-size: 40px;
    text-transform: uppercase;
    max-width: 800px;
    letter-spacing: 3px;
    line-height: 60px;
    font-family: "Monoton", serif;
    margin-top: 120px;

}

.footer {
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer .container {
    max-width: 1200px;
}

.col-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
}

.img-profile {
    border-radius: 15px;
    max-width: 250px;
}

.txt-profile-detail {
    text-align: justify; 
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.txt-content {
    text-align: justify; 
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.img-profile-detail {
    border-radius: 10px;
    max-width: 170px;
    margin: 8px 20px 40px 0;
}

.card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: #fff;
}

.carousel-item {
    padding: 2rem 1rem;
    min-height: 200px;
  }

.carousel h3 {
    font-weight: bold;
    color: #fff;
}

.carousel p {
    font-size: 1.1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* white arrows */
}

.contact-section {
    padding: 20px 20px ;
    border-radius: 10px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-custom {
    background-color: #FF0000 !important;
    border: none;
    color: #fff;
    font-weight: bold;
}

.btn-custom:hover {
    opacity: 0.8;
}

.box-info {
    border: 1px solid rgba(255, 0, 0, 1);
    padding: 20px;
    background-color: rgba(255, 0, 0, 0.4);
    border-radius: 10px;
}

.contact-info h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.btn-contact-us {
    background-color: #FF0000 !important;
    border-radius: 2px;
}

.text-partner {
    text-decoration: none !important;
    color: #fff;
}

@media (max-width: 860px) {
    .img-profile {
        max-width: 200px;
    }

    #rotating-text {
        margin-top: 20px;
    }
}

@media (max-width: 750px) {
    .hero {
    }
}