/* 
<div class="layout-wrapper">
    <div class="layout-container">

        <div class="bg-dark text-white p-3" style="width: 200px;">
            //**SIDEBAR
        </div>

        <div class="layout-page">

            <nav class="navbar navbar-expand-lg navbar-light bg-light">
                <div class="container-fluid">
                    //**TOPBAR/NAVBAR
                </div>
            </nav>

            <main class="">
                <div class="container">
                    //**CONTENT-PAGE
                </div>
            </main>

            <footer class="text-center py-3 mt-4 border-top"> <small>© 2025 Innovators. All rights reserved.</small> </footer>
        </div>
        
    </div>
</div>
*/

/* Global Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: #333;
}

.container{
    padding: 0px;
    max-width: 100% ;
}


.nav.wide-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
/* Top Navbar */
#topNavbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  background-color: #3E85DD;
  color: white;
  z-index: 1060;
}

/* Logo */
#logo {
  width: 60px;
  height: auto;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: all 0.3s ease, left 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  font-weight: bold;
}
.nav-links a:hover::after {
  width: 50%;
}

/* Right Section */
.top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-dropdown {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-btn {
  background-color: white;
  color: #2548FA;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .language-dropdown,
  .join-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: #ffffff;
  color: #000;
  padding: 20px;
  z-index: 2050;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1); 
  overflow-y: auto;
}

#sidebar.show {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.5rem;
}

#sidebarClose {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 1.2rem;
}

.sidebar-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-nav a:hover {
  color: #2548FA;
}

/* Overlay */
#sidebarOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2049;
  display: none;
}

  
  #sidebarOverlay.show {
    display: block;
    opacity: 1;
  }

/* Section: landing-question */
#landing-question {
  background-color: #E8F3FC;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

#landing-question .question-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

#landing-question .faq-left {
  flex: 1 1 60%;
}

#landing-question .faq-left h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
}

#landing-question .faq-left h2 a {
  color: #2c58fa;
  text-decoration: none;
}

#landing-question .faq-item {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

#landing-question .faq-item:hover {
  background-color: #f0f0f0;
}

#landing-question .faq-question {
  font-size: 16px;
  color: #111;
  position: relative;
}

#landing-question .faq-question::after {
  content: url('../icon/svg/plus.svg');
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #777;
}

#landing-question .faq-right {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#landing-question .faq-contact-box {
  background-color: #0B1A63;
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

#landing-question .faq-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

#landing-question .faq-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

#landing-question .faq-desc {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.4;
}

#landing-question .faq-button {
  background-color: #2c58fa;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

#landing-question .faq-button:hover {
  background-color: #1a3ec4;
}


/* Section: landing-findjob */
#landing-findjob {
  background-color: #03185C;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

#landing-findjob h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.search-wrapper input {
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  width: 300px;
  background-color: #fff;
  color: #333;
  outline: none;
}

.search-wrapper input::placeholder {
  color: #bbb;
}

.search-wrapper button {
  padding: 14px 30px;
  background-color: #2c58fa;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-wrapper button:hover {
  background-color: #1a3ec4;
}

  /* Footer */
  footer {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #404040;
    border-top: 1px solid #eee;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin: 1rem 0;
  }
  .footer-left img.footer-logo {
    width: 20vw;
    margin-bottom: 10px;
  }
  

  .footer-right {
    display: flex;
    justify-content: space-between;
    
  }
  .footer-left ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .footer-left ul li .icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005DCF;
  }
  
  .footer-left ul li > div,
  .footer-left ul li > small {
    flex: 1; /* ini yang kamu maksud — biar bagian teks fleksibel */
    min-width: 0; /* penting agar wrapping teks bisa bekerja di mobile */
  }
  
  .footer-left ul, .footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-right a {
    text-decoration: none;
    color: #404040;
  }
  
  
  
  .social-icons a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
  }
  
  .social-icons i {
    margin-right: 5px;
  }

  .footer-bottom {
    width: 100%;
    background: #2548FA;
    color: #fff;
    
    padding: 1rem 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  





