body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.8)),
                url('/img/bgsmk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.typing {
    font-size: 23px;
    font-weight: bold;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    width: 10%;
    animation: typing 10s steps(30, end) infinite,
               blink 0.7s infinite;
}

@keyframes typing {
    0%   { width: 0 }
    40%  { width: 100% }
    60%  { width: 100% }
    100% { width: 0 }
}

 .footer {
           background: rgba(13, 71, 161, 0.75); 
            color: #000408;
        }

        .footer h5 {
            color: #ffffff;
            margin-bottom: 20px;
        }

        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer a:hover {
           background: rgba(13, 71, 161, 0.75);
        }

        .footer .social-icons a {
            font-size: 20px;
            margin-right: 15px;
        }

        .footer-bottom {
           background: rgba(18, 70, 174, 0.92); 
            padding: 15px 0;
            text-align: center;
            font-size: 14px;
        }

.bi-facebook { color: #ffffff; }
.bi-instagram { color: #E1306C; }
.bi-youtube { color: #FF0000; }
.bi-tiktok { color: #000000; }
.social-icons i {
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover i {
    transform: scale(1.2);
}

.center-container {
    
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
}
.outline-fill {
  
    font-weight: 1200;
    color: white;
    -webkit-text-stroke: 1.5px #2c95c2;
}

/* GLASS NAVBAR */
.navbar-glass {
background: linear-gradient(
    300deg,   /* arah gradasi dibalik */
    rgba(0, 200, 255, 0.6) 0%,   /* turquoise terang */
    rgba(0, 123, 255, 0.75) 50%, /* biru medium */
    rgba(13, 71, 161, 0.85) 100% /* biru tua */
);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

/* Navbar ketika discroll */
.navbar-scrolled {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 12px 0;
}

/* Brand */
.navbar-brand {
    color: white;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: #ffd54f;
}

/* Nav Links */
.nav-link {
    color: white;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
    transition: 0.3s;
}

/* Hover effect */
.nav-link:hover {
    color: #ffd54f;
}

/* Animated underline */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ffd54f;
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Login Button */
.btn-login {
    background: white;
    color: #0d47a1;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-login:hover {
    background: #ffd54f;
    color: #0d47a1;
}

.navbar-toggler {
    border: none;            /* hilangkan border default */
    background-color: white; /* transparan */
    padding: 0.25rem 0.75rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Icon hamburger putih */
.navbar-toggler-icon {
    filter: invert(1);   /* putih */
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    
}

/* Hover & fokus efek */
.navbar-toggler:hover,
.navbar-toggler:focus {
    background-color: rgba(75, 164, 243, 0.858); /* sedikit highlight */
    transform: scale(1.1);
    border-radius: 8px;
}

/* Jika navbar light / gelap, icon tetap putih */
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}
.navbar-toggler.collapsed .navbar-toggler-icon {
    transform: rotate(0deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    transform: rotate(90deg); /* efek putar saat dibuka */
}

.img-responsive {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.limit-text {
  line-height: 1.5em;
  max-height: 3em;
  overflow: hidden;
  position: relative;
}

.limit-text::after {
  content: "...";
  position: absolute;
  right: 0;
  bottom: 0;
  background: white; /* sesuaikan warna background */
  padding-left: 5px;
}




.accordion-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  background: #0d6efd;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
 
}

.accordion-header:hover {
  background: #0b5ed7;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f8f9fa;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content p {
  margin: 15px 0;
}

.icon {
  transition: transform 0.3s ease;
}

/* Active State */
.accordion-item.active .accordion-content {
  max-height: 700px;
  padding: 15px 20px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.section-title{
    text-align:center;
    color:white;
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
}

.accordion{
    max-width:850px;
    margin:auto;
    background:white;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
    overflow:hidden;
}

.rotate-glow {
    animation: putar 8s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.6));
}

.accordion-header i{
    transition:0.3s;
    text-align: center;
}

.rotate{
    transform:rotate(180deg);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:0.5s ease;
    background:#f4f6f9;
}

.accordion-content.active{
    max-height:1000px;
}

.org-list{
    list-style:none;
    padding:25px;
    margin:0;
}

.org-item{
    background:white;
    padding:18px;
    margin-bottom:18px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    display:flex;
    align-items:flex-start;
    gap:15px;
    transition:0.3s;
}

.org-item:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.org-icon{
    font-size:22px;
    color:#2a5298;
    min-width:30px;
}

.org-text strong{
    display:block;
    font-size:16px;
    color:#1e3c72;
}

.org-text span{
    font-size:14px;
    color:#555;
}

.slogan{
    margin-top: -5px;
    font-size:14px;
    font-weight:600;
    background: linear-gradient(45deg,#4facfe,#00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}