   
        
       
        
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
       
        body{
             font-family: "Open Sans", sans-serif !important;
              
        }
         h1,h2,h3,h4,h5{
            font-family: "Inter", sans-serif;
              font-weight: 600 !important;
        }

        .btn-primary{
            background-color: #002880 !important;
        }

        .text-primary{
            color: #016DB6 !important;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--primary);
        }
        
        /* .section-title:after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: var(--secondary);
            margin: 15px 0;
        } */
        
        .about-content {
            background-color: #20262D;
        }
        
        .services {
            background-color: #f8f9fa;
            padding: 100px 0;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 50px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .products {
            padding: 100px 0;
        }
        
        .product-list {
            list-style: none;
            padding: 0;
        }
        
        .product-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        
        .product-list li:before {
            content: "•";
            color: var(--secondary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-right: 10px;
            font-size: 24px;
        }
        
        .cta {
            background: linear-gradient(to right, var(--primary), #1a2530);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .footer {
            background: #2c3e50;
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

          .footer {
            background-color: #212529; /* Dark background color */
            color: #adb5bd; /* Light grey text color */
            padding: 4rem 0;
            margin-top: auto; /* Pushes the footer to the bottom */
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
        }
        .footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .footer .icon-text {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        .footer .icon-text i {
            margin-right: 0.75rem;
            font-size: 1.25rem;
            margin-top: 0.2rem;
        }
        .footer .section-title {
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        .footer .list-unstyled li {
            margin-bottom: 0.75rem;
        }
        .footer .logo-container img {
            max-width: 150px; /* Adjust as needed */
            height: auto;
            border-radius: 0.25rem;
        }
        .footer .logo-text {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: bold;
            margin-left: 0.5rem;
        }
        .footer .address-line {
            margin-bottom: 0.5rem;
        }
        .footer .copyright {
            color: #ffffff; /* Darker grey for copyright */
            border-top: 2px solid #ffffff; /* Separator line */
            padding-top: 2rem;
            margin-top: 3rem;
        }

        .font-sans{
            font-family: 'Open Sans';
        }

          /* Carousel specific styles */
        .carousel-item img {
            height: 100%; /* Adjust height as needed */
            object-fit: cover;
            width: 100%; /* Ensure images fill the carousel width */
            
        }
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for caption */
            padding: 0.75rem 1.25rem;
            bottom: 0px; /* Adjust position */
            left: 50%;
            transform: translateX(-50%);
            width: 100%; /* Adjust width */
            margin-bottom: 0;
        }
        .carousel-caption h5 {
            color: #ffffff;
            font-size: 1.5rem;
            text-align: end;

        }


          /* Hero Section Styles */
        .hero-section {
            position: relative;
            width: 100%;
            height: 1000px; /* Adjust height as needed */
            background: url('http://googleusercontent.com/file_content/1') no-repeat center center/cover;
            color: #ffffff;
            overflow: hidden; /* Ensure content doesn't overflow */
            display: flex; /* Added flex to center content vertically */
            align-items: center; /* Vertically center content */
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
            z-index: 1;
        }
        .hero-content-wrapper { /* New wrapper for content alignment */
            position: relative;
            z-index: 2;
            width: 100%; /* Take full width of parent (container) */
            /* Removed text-align from here to control alignment on individual elements */
        }
         .hero-content-wrapper h1 {
            font-size:4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            /* text-align will be applied via Bootstrap class */
        }
        .hero-content-wrapper h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            /* text-align will be applied via Bootstrap class */
        }
        .hero-content-wrapper p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            /* text-align will be applied via Bootstrap class */
        }

         /* .detail-overlay {
            position: absolute;
            top: 15%;
            left: 10%;
            color: #ffffff;
            text-align: right;
            z-index: 1;
        } */
          .detail-overlay {
               color: #ffffff;
          }
            .detail-overlay a {
           text-decoration: none;
            color: #ffffff;
            text-align: right;
            z-index: 1;
        }

        .product-list-overlay {
            position: absolute;
            bottom: 0px;
            left: 50%;
            background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
            color: #ffffff;
            padding: 30px 20px;
            border-radius: 0rem;
            text-align: right;
            z-index: 2;
        }
        .product-list-overlay p {
            margin: 0;
            font-size: 1.25rem;
            line-height: 1.4;
        }
  /* Contact Section Styles */
        .contact-section {
            background-color: #ffffff;
            padding: 3.5rem 0;
        }
        .contact-section h1{
            color: #016DB6; /* Primary color for heading */
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
       
        .contact-section .form-control,
        .contact-section .form-select {
            border-radius: 0.375rem; /* Bootstrap default for rounded corners */
            padding: 0.75rem 1rem;
            border: 1px solid #ced4da; /* Light grey border */
        }
        .contact-section .form-label {
            font-weight: 500;
            color: #343a40; /* Darker text for labels */
        }
        .contact-section .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
            padding: 0.75rem 2.5rem;
            font-size: 1.1rem;
        }
        .contact-section .logo-text {
            color: #212529; /* Darker color for logo text in contact section */
        }
        .contact-section .contact-info-block { /* New class for the icon-text blocks in contact section */
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem; /* Default spacing */
            color: #212529;
        }
        .contact-section .contact-info-block i {
            margin-right: 0.75rem;
            font-size: 1.25rem;
            margin-top: 0.2rem;
            flex-shrink: 0; /* Prevent icon from shrinking */
        }
        .contact-section .address-line-indent { /* For indented address lines */
             margin-left: 2rem; /* Adjusted for tighter indentation */
        }
        .contact-section .email-indent { /* For indented email lines */
            margin-left: 2.2rem; /* Adjusted for tighter indentation */
        }
        .contact-section .contact-address-group {
            margin-bottom: 0.5rem; /* Space between each country's address */
        }
        .contact-section .form-check-label {
            color: #495057;
        }



        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        
            
            .services, .products, .cta {
                padding: 60px 0;
            }
        }


    :root {
      --primary: #2c3e50;
      --secondary: #e74c3c;
      --accent: #3498db;
      --light: #ecf0f1;
      --dark: #2c3e50;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Navbar awal transparan */
    .navbar {
      background-color: transparent !important;
      transition: background-color 0.3s ease, padding 0.3s ease;
      padding: 20px 0;
      z-index: 1000;
    }

    /* Navbar setelah discroll */
    .navbar.scrolled {
      background-color:#212529 !important;
      padding: 12px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 28px;
      color: white !important;
      letter-spacing: 1px;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-weight: 500;
      margin: 0 12px;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: white !important;
    }

    .navbar-toggler {
      border: none;
      color: white !important;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      width: 100%;
      height: 960px;
      color: #ffffff;
      overflow: hidden;
      display: flex;
      align-items: center;

    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .hero-content-wrapper h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .hero-content-wrapper p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .product-list-overlay {
      position: absolute;
      bottom: 0px;
      left: 50%;
      background-color: rgba(0, 0, 0, 0.6);
      color: #ffffff;
      padding: 30px 20px;
      border-radius: 0rem;
      text-align: right;
      z-index: 2;
    }

    .product-list-overlay p {
      margin: 0;
      font-size: 1.25rem;
      line-height: 1.4;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-content-wrapper h2 {
        font-size: 2rem;
      }
      .hero-content-wrapper p {
        font-size: 1rem;
      }
     
    }
 .product-card {
      border: none;
    
      transition: all 0.3s ease;
      height: 100%;
    }
    .product-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }
    .product-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .product-card .arrow {
      font-size: 20px;
      color: #0d6efd;
      font-weight: bold;
      text-decoration: none;
      padding: 8px 50px;
      border: 1px solid #016DB6;
      border-radius: 30px;
    }
    .product-card .arrow:hover {
      color: #084298;
    }

 

    .border-rd-30{
          border-radius: 30px !important;
          background-color: #002880 !important;
          padding: 10px 30px !important;
    }

    .zoom {
  transition: transform .2s; /* Animation */
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.def-color{
       color: #016DB6;
}

.blue-color{
    color: #002880;
}

.no-underline{
    text-decoration: none;
}



.catalog-nav .nav-link{
    color: #016DB6 !important;
}
.nav-pills .nav-link.active{
    background-color: #20262D !important;
}
.catalog-nav >.nav-pills> .active{
    color: #ffffff!important;
}
.nav-item .active{
    font-weight: bolder;
}

.hide{
    display: none !important;
}

.vl {
  border-left: 40px solid #002880;
  height: 100% !important;
  
}
.vl-2 {
  border-left: 40px solid #016DB6;
  height: 100% !important;

}
.vl, .vl-2, .img-about {
  opacity: 0;
  transform: translateX(-50px); /* default desktop */
  transition: all 0.8s ease-in-out;
}

/* Mobile view: ubah animasi dari bawah */
@media (max-width: 768px) {
  .vl, .vl-2, .img-about {
    transform: translateY(50px);
  }
}

.show-anim {
  opacity: 1;
  transform: translate(0, 0);
}
  /* delay biar berurutan */
  .vl.show-anim {
    transition-delay: 0.1s;
  }
  .vl-2.show-anim {
    transition-delay: 0.6s;
  }
  .img-about.show-anim {
    transition-delay: 1s;
  }


  .parallax-bg {
  position: relative;
  height: 120vh;
  overflow: hidden;
  color: white;
}

.parallax-bg .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
 
.img-bg{
      height: 90vh !important;  
}