/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Clear Sans", sans-serif;
    background: linear-gradient(45deg, #2a3b54, #3d5977);
    color: #fff;
}

/* Navbar Styling */
/* Navbar Styling */
.navbar {
    background-color: transparent;
    border-bottom: 1px solid white;
    position: static; /* Changed from fixed to static */
    width: 100%;
    z-index: 10;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar .nav-link {
    color: white;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #cccccc;
}

.navbar .btn {
    border-color: white;
    color: white;
}

.navbar .btn:hover {
    background-color: white;
    color: #2c6183;
}

.nav-item.indonesia {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
}

/* Add this to your CSS file or within a <style> tag */
.btn-spacing {
    margin-right: 10px; /* Adjust the value as needed */
}

/* Hero Section */
.hero {
    position: relative;
    /* background: url("assets/images/background.jpg") center/cover no-repeat; */
    height: 80vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding-left: 90px;
    text-align: left;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 97, 131, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 6rem; /* Increased from 5rem to 6rem for an even bigger headline */
    font-weight: bold;
}

.hero p {
    font-size: 2rem; /* Increased from 1.5rem to 2rem for even better readability */
    margin-bottom: 2.5rem; /* Increased spacing for better text separation */
}

.hero a {
    padding: 20px 40px; /* Increased padding for a more prominent button */
    font-size: 1.5rem; /* Increased font size for better visibility */
    background-color: white;
    color: #2c6183;
    border-radius: 5px;
    text-decoration: none;
}

.hero a:hover {
    background-color: #004c99; /* Keep hover state for visual consistency */
    color: white;
}

/* Buddies Section */
.buddies {
    background-color: #f7f7f7;
}

.buddies h2 {
    font-weight: 500;
}

/* Buddies Section */
.buddies img {
    max-width: 150px; /* Increased size from 100px to 150px */
    height: auto;
    margin: 0 15px; /* Adjusted spacing for better layout */
}

/* Key Values Section */
.key-values h2 {
    font-size: 4rem; /* Increased font size for a more prominent headline */
    font-weight: bolder; /* Making the text even bolder */
    color: black;
}

.key-values {
    padding-top: 5rem; /* Increased top padding */
    padding-bottom: 5rem; /* Increased bottom padding */
    background-color: rgb(
        0,
        0,
        0
    ); /* Optional: setting a light gray background color */
}

.mt-5 img {
    width: 100rem; /* Adjust the width */
    height: 40rem; /* Adjust the height */
    object-fit: cover; /* This will crop the image to fit the specified dimensions */
}

/* About Us Section */
.about-us {
    /* background: url("assets/images/bg2.png") center/cover no-repeat; */
    padding: 50px 0;
    color: #fff;
}

.about-us img {
    width: 530px; /* Adjust the width */
    height: 653px; /* Adjust the height */
    object-fit: cover; /* This will crop the image to fit the specified dimensions */
    border-radius: 10%;
}

.about-us h5 {
    font-size: 1rem; /* Increased font size for a more prominent headline */
    font-weight: bolder; /* Making the text even bolder */
}

.about-us h2 {
    font-size: 3rem;
    font-weight: bolder;
}

.about-us p {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Trainig Event Section */
.training-event h2 {
    font-size: 3rem;
    font-weight: bolder;
    color: black;
}

/* Form Section */
.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* background: url("assets/images/bg3.jpg") center/cover no-repeat; */
}

.form-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
}

.form-container h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.form-container p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.form-container label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.form-container input,
.form-container textarea {
    width: 100%; /* Pastikan elemen input dan textarea lebar penuh */
    padding: 12px; /* Sedikit penyesuaian padding untuk kenyamanan */
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    background-color: #ffc107;
    border: none;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #e0a800;
}

/* Footer Section */
footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.footer-container .logo-container {
    display: flex;
    align-items: center;
}

.footer-container img {
    height: 80px;
    margin-right: 30px;
}

.footer-container .company-info {
    color: #333;
    text-align: left;
}

.footer-container .company-info p {
    margin: 2px 0;
}

.footer-container .social-icons {
    display: flex;
    gap: 10px;
}

.footer-container .social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2e3d54;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}
.footer-container .social-icons a img {
    max-width: 30px; /* Increased size from 100px to 150px */
    height: auto;
    margin: 0;
}

.footer-container .social-icons a:hover {
    background-color: #1a2739;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* button */
.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: invert(1);
}
.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Navbar adjustments */
    .navbar-brand {
        margin-left: 20px;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    /* Hero section adjustments */
    .hero {
        padding-left: 20px;
        padding-right: 20px;
        height: 60vh;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero a {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    /* Buddies section adjustments */
    .buddies img {
        max-width: 80px;
        margin: 0 5px;
    }

    /* Key Values section adjustments */
    .key-values h2 {
        font-size: 2.5rem;
    }

    .key-values .col-md-4 {
        margin-bottom: 30px;
    }

    /* About Us section adjustments */
    .about-us img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .about-us p {
        font-size: 1rem;
    }

    /* Form section adjustments */
    .form-section {
        height: auto;
        padding: 40px 20px;
    }

    .form-container {
        padding: 20px;
    }

    /* Footer adjustments */
    .footer-container {
        flex-direction: column;
        padding: 20px;
    }

    .footer-container .logo-container {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .footer-container img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-container .company-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-container .social-icons {
        justify-content: center;
    }
}

/* Additional adjustments for extra small devices
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .buddies .carousel-item .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .buddies img {
        margin: 10px;
    }
} */
