@font-face {
  font-family: 'GOTHIC';
  src: url('/assets/fonts/GOTHIC.TTF') format('truetype');
}

:root {
    --primary: #007bff;
    --dark: #1b1b1b;
    --gray: #6c757d;
    --light-bg: #f8f9fa;
    --blue-bg: #0e67d3;
}

body {
    font-family: 'GOTHIC', 'Public Sans', sans-serif;
    background: #ffffff;
    color: #333;
}

/* NAVBAR */
.navbar {
    height: 80px;
    border-bottom: 1px solid #e5e5e5;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #444 !important;
    margin-left: 25px;
}

/* HERO */
.hero-wrapper {
    padding: 80px 0;
    
    background-color: #bfdbf954;
}

.hero-slider-img {
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
}

/* ABOUT */
.about-wrapper {
    padding: 90px 0;
}

/* SERVICES */
.services-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.services-card h5 {
    font-weight: 700;
}

/* VALUES */
.value-icon {
    width: 70px;
    margin-bottom: 15px;
}
/* BLUE SECTION (Internet Solution) */
.internet-solution-section {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1172&q=80')
                center center / cover no-repeat;
    position: relative;
    padding: 80px 0;
}

.internet-solution-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #276cebe0;
    z-index: 1;
}

.internet-solution-section .container {
    position: relative;
    z-index: 2; 
}

 

.internet-solution-section .desc {
    max-width: 700px;
    margin: auto;
}

/* BRANDS */
.brands-wrapper img {
    width: 80px;
    opacity: .85;
    transition: .2s;
}

.brands-wrapper img:hover {
    opacity: 1;
}

/* FOOTER */
footer {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding-top: 40px;
}

.footer-content {
  font-family: 'GOTHIC', sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}


@keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-30px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(30px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .animate-fade-in {
        animation: fadeIn 0.8s ease-out forwards;
    }
    
    .animate-slide-left {
        animation: slideInLeft 0.8s ease-out forwards;
    }
    
    .animate-slide-right {
        animation: slideInRight 0.8s ease-out forwards;
    }
    
    .animate-float {
        animation: float 3s ease-in-out infinite;
    }
    
    .animate-pulse-slow {
        animation: pulse 2s ease-in-out infinite;
    }
    
    .stagger-delay-1 { animation-delay: 0.1s; }
    .stagger-delay-2 { animation-delay: 0.2s; }
    .stagger-delay-3 { animation-delay: 0.3s; }
    .stagger-delay-4 { animation-delay: 0.4s; }
    
    /* Hover Effects */
    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 51, 102, 0.1) !important;
    }
    
    .hover-grow {
        transition: transform 0.3s ease;
    }
    
    .hover-grow:hover {
        transform: scale(1.05);
    }
    
    .hover-border-primary:hover {
        border-color: #003366 !important;
    }
    
    /* Custom Styles */
    .text-primary {
        color: #003366 !important;
    }
    
    .border-primary {
        border-color: #003366 !important;
    }
    
    .bg-primary-light {
        background-color: #e6f2ff;
    }
    
    .gradient-border {
        position: relative;
        border: 2px solid transparent;
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #003366, #0066cc) border-box;
    }
    
    .section-divider {
        height: 3px;
        background: linear-gradient(90deg, transparent, #003366, transparent);
        margin: 40px auto;
        width: 80%;
    }
    
    .service-card {
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 51, 102, 0.1);
        border-color: #0066cc;
    }
    
    .timeline-marker {
        width: 12px;
        height: 12px;
        background: #ff6600;
        border-radius: 50%;
        position: relative;
        margin: 0 auto 10px;
    }
    
    .timeline-marker::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        border: 2px solid #ff6600;
        border-radius: 50%;
        opacity: 0.3;
    }
    
.text-title {
  display: block; 
  font-size: 28px;
  color: #104f85;
  line-height: 1.4; 
}
  
.text-desc {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.8;
    color: #cd64d5; 
}
.text-highlight {
      font-weight: bold;
  font-size: 28px; 

  color: #104f85;
}





.floating-nav-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn:hover:not(:disabled) {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
}

.nav-btn:active:not(:disabled) {
    transform: translateY(0);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #6c757d;
    color: #6c757d;
}

/* Animasi untuk konten */
.facility-item {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.footer-social {
  flex: 1;
  min-width: 180px;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* Social Icons */
.footer-social ul {
  display: flex;
  gap: 10px;
}

.footer-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #002c7ce0;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social ul li a:hover {
  background: #276cebe0;
}


.footer-bottom {
  font-family: 'GOTHIC', sans-serif;
  margin-top: 30px;
  background: #002c7ce0;
  padding: 15px 0;
  text-align: center;
  font-weight: bold; 
}

.footer-bottom p {
  font-family: 'GOTHIC', sans-serif;
  margin: 0;
  font-size: 13px;
  color: #fff;
}






/* contact */
.contact {
  padding: 20px 0;
  margin-bottom: 30px;
}

.contact .info {
  flex: 1;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .info-item .icon {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: #002c7ce0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 16px;
}

.contact .info-item h4 {
  font-size: 16px;
  margin: 0 0 5px;
  color: #333;
}

.contact .info-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
 

.contact .info-item a:hover {
  text-decoration: underline;
}

/* Form */
.contact .form {
  flex: 1;
}

.contact .form input,
.contact .form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.contact .form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact .form .btn {
  background: transparent;
  border: 2px solid #002c7ce0;
  color: #002c7ce0; 
  padding: 8px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact .form .btn:hover {
  background-color:  #002c7ce0;
  color: #ffffff; 
}

/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
  .contact .row {
    flex-direction: column !important;
  }

  .contact .info,
  .contact .form {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact .info .card,
  .contact .form .card {
    box-shadow: none;
  }

  .contact .form .btn {
    width: 100%;
  }
}




    /* Tombol navigasi dalam container */
    .bottom-right-nav-buttons {
        display: flex;
        gap: 10px;
        margin-right: 20px;
    }
       
    
    /* Responsif untuk layar kecil */
    @media (max-width: 768px) {
        .bottom-right-nav-buttons {
            margin-right: 15px;
            gap: 8px;
        }
        
        .nav-btn {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 576px) {
        .bottom-right-nav-buttons {
            margin-right: 10px;
            gap: 5px;
        }
        
        .nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 400px) {
        .bottom-right-nav-buttons {
            margin-right: 8px;
        }
        
        .nav-btn {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }
    }
    
    /* Untuk zoom ekstrem */
    @media screen and (max-width: 3000px) {
        .nav-btn {
            width: clamp(35px, 5vw, 50px);
            height: clamp(35px, 5vw, 50px);
            font-size: clamp(0.8rem, 1.2vw, 1rem);
        }
    }
    
    /* Container untuk tombol agar tidak overflow */
    .container {
        position: relative;
        overflow: visible;
    }