
        :root {
            --color-primary: #4169E1;
            --color-primary-dark: #2f4cb0;
            --color-light: #f8faff;
        }

        html, body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh; 
            background-color: #fcfafa;
            background-image: radial-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
            background-size: 20px 20px;
            font-family: 'Poppins', sans-serif;
        }

        main {
            flex: 1; 
        }

        body::-webkit-scrollbar {
            width: 12px; 
        }

        body::-webkit-scrollbar-track {
            background: #f1f1f1; 
        }

        body::-webkit-scrollbar-thumb {
            background-color: var(--color-primary); 
            border-radius: 6px; 
            border: 2px solid #f1f1f1; 
        }

        body::-webkit-scrollbar-thumb:hover {
            background-color: #3154b7; 
        }
        
        .text-primary {
            color: black!important;
        }

        .navbar {
            height: 70px;
            box-shadow: 0 2px 6px rgba(65, 105, 225, 0.2);
        }

        .navbar-nav .nav-link {
          font-weight: 500;
          margin: 0 5px;
           transition: transform 0.3s ease, color 0.3s ease;
        }

        .navbar-nav .nav-link.active {
            color: var(--color-primary) !important;
        }

         .navbar-nav .nav-link:hover {
            transform: translateY(-2px);
        }
        .btn-kontak {
            background-color: var(--color-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
        }
        .btn-kontak:hover {
            background-color: var(--color-primary);
            color: white;
        }

        .navbar .dropdown-menu {
            border-radius: 12px;
            padding: 10px 0;
            border: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            animation: fadeDown 0.25s ease-in-out;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar .dropdown-menu .dropdown-item {
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            color: #333;
            transition: all 0.2s ease-in-out;
        }

        .navbar .dropdown-menu .dropdown-item:hover {
            background-color: rgba(0, 123, 255, 0.08); 
            color: #0d6efd;
            border-radius: 8px;
        }

    .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.8rem 0;
    border-top: 1px solid var(--color-secondary);
    z-index: 1050;
    box-shadow: 0 2px 6px rgba(65, 105, 225, 0.2);
}

.mobile-bottom-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
     transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-bottom-nav .nav-link:hover {
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-link.active {
     color: var(--color-primary);
}

a {
  color: inherit;       
  text-decoration: none; 
  font-weight: 500;
}

.desktop-only {
  display: inline;
}


.text-one {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  color: black; 
}

.highlight {
  color: var(--color-primary);
}

.deskripsi-one {
  font-weight:500;
  font-size:15px;
  line-height: 1.2;
}

.btn-custom-one {
  background-color: var(--color-primary);
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-custom-one:hover {
  background-color: #004080;
  transform: translateY(-3px);
  color: black;
}

.btn-custom-two {
  background-color: black;
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-custom-two:hover {
  background-color: #333;
  transform: translateY(-3px);
  color: white;
}

.btn-custom-three {
  background-color: transparent;
  color: var(--color-primary);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-custom-three:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.btn-custom-fastwork {
  background-color: black;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-custom-fastwork:hover {
  background-color: #597de9;
  transform: translateY(-3px);
  color: black;
    border: 2px solid black;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mySwiper {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden; 
}

.mySwiper img {
  width: 100%;
  height: 100%;
  display: block;
}

.content {
  padding-top: 80px;
  padding-bottom: 40px;
}


.section-gap {
    margin-top: 6rem;
}

.text-two {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--color-primary);
}

.deskripsi-two {
  font-weight:500;
  font-size:15px;
  line-height: 1.2;
}

.feature-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 15px;
        padding: 2rem 1.5rem;
        background-color: #fff;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .feature-card i {
        color: var(--color-primary);
        font-size: 2.5rem;
    }

    .feature-card h5 {
        font-size: 1.1rem; 
    }

    .feature-card p {
        font-size: 0.875rem;
    }


    .btn-primary {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #365ac0;
        transform: translateY(-3px);
    }

    .text-primary {
        color: var(--color-primary) !important;
    }

    .fw-bold {
        color: var(--color-primary);
    }

    strong {
      color: var(--color-primary);
    }


  .card-pricing {
  background-color: #fff; 
  color: #111; 
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
  display: flex;
  flex-direction: column;
}

.card-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.5); 
}

.card-pricing h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-pricing .price {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-pricing p.description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #555; 
}

.card-pricing ul {
    list-style: none;
    padding: 0;
    text-align: start;
}

.card-pricing ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.card-pricing ul li::before {
    content: "✔";
    color: var(--color-primary);
    margin-right: 0.8rem;
    font-weight: bold;
}

.custom-bg-gray {
  background-color: #f3f3f3;
}

.portoOwl .owl-item {
  transition: transform 0.3s;
}

.portoOwl .center-slide .card {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}

.portoOwl .owl-item .card {
  margin: 0 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.owl-stage-outer {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card-portfolio {
  background-color: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e6f1;
}

.card-portfolio img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.card-portfolio:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-portfolio:hover img {
  transform: scale(1.05);
}

.card-portfolio .card-body {
  padding: 1rem;
  background-color: var(--color-light);
}

.card-portfolio .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0;
}

.client-logo img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  max-height: 150px; 
}

.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.footer-text-one {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.footer-contact {
  color: #e5e5e5;
}

.footer-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: white;
  transition: transform 0.3s ease;
}


.footer-text-one {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  line-height: 1.4;
}

.footer-text-one .tagline {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}

.contact-info p {
  margin: 5px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.contact-info p:hover {
  color: #00c6ff; 
}

.contact-info i {
  font-size: 18px;
  color: white;
}

.footer-links h6 {
  font-weight: 700;
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.footer-links h6::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #00c6ff;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #00c6ff;
  padding-left: 5px;
}

.footer-actions .btn {
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-actions .btn:hover {
  transform: translateY(-2px);
}

.footer-actions .social-link {
  color: white;
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-actions .social-link:hover {
  color: #ffffff; 
  transform: scale(1.2);
}

 .filter-btn {
      background-color: black;
      color: white;
      border-radius: 8px;
      padding: 8px 16px;
      border: none;
      transition: all 0.3s;
    }

    .filter-btn.active {
      background-color: var(--color-primary);
      color: white;
    }

    .filter-btn:hover {
      opacity: 0.85;
    }

    .portfolio-card {
      border: 2px solid var(--color-primary);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .portfolio-title {
      font-weight: bold;
      font-size: 1rem;
    }

    .live-view {
      color: var(--color-primary);
      font-weight: 500;
    }

    .partner-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin: 20px;
      transition: transform 0.3s, filter 0.3s;
      filter: grayscale(100%); 
    }
    .partner-logo:hover {
      transform: scale(1.1);
      filter: grayscale(0%); 
    }
    .partner-section {
      text-align: center;
      padding: 50px 20px;
    }

    .transition-scale:hover {
        transform: scale(1.05);
    }

    .contact-card {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(65,105,225,0.3); 
        transition: transform 0.3s, box-shadow 0.3s;
        color: #333;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(65,105,225,0.5); 
    }

    .contact-card .card-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #4169E1; 
        transition: transform 0.3s;
    }

    .contact-card:hover i {
        transform: scale(1.2);
        transition: transform 0.3s ease;
    }

    .contact-card:hover .btn-custom-three {
        transform: translateY(-3px);
        background-color: var(--color-primary);
        color: white;
    }


    .navbar-brand img {
           width: 120px;
        }
@media (max-width: 768px) {

   .partner-logo {
      width: 40px;
      height: 40px;
    }
    
    .desktop-only {
    display: none;
  }
  .card-pricing {
                padding: 1.5rem;
            }

   .feature-card {
        padding: 1rem 0.8rem;
    }
    .feature-card i {
        font-size: 1.8rem;
    }
    .feature-card h5 {
        font-size: 0.9rem;
    }
    .feature-card p {
        font-size: 0.6rem;
    }
  .mySwiper {
    max-width: 330px;
  }

  .text-one {
    font-size: 35px;
  }

  .footer-text-one {
    font-size: 18px;
  }

  .deskripsi-one {
  font-size:12px;
}

.deskripsi-two {
  font-size:12px;
}

.btn-custom-one,
  .btn-custom-two,
  .btn-custom-three,
  .btn-custom-fastwork {
    padding: 8px 16px;      
    font-size: 0.85rem;     
    gap: 6px;               
  }
  .btn-custom-one i,
  .btn-custom-two i,
  .btn-custom-three i,
  .btn-custom-fastwork {
    font-size: 1rem;       
  }
}
