/* navbar-menu */
.nav-link.active {    
    color: blue !important; 
       
}

#navmenu ul li:hover {
    text-decoration: underline;
    color: blue;  
}

.navbar {    
    border-bottom:1px solid rgb(199, 199, 215);
}

#WA:hover {
    background-color:#007bff;
}

/* header */
#header {
    padding: 150px 0;
}

#header h1{
    font-weight: bold;
    font-family: sans-serif;
    font-size: 3.5rem; 
}

.bg-image {
    background-image: url("img/Header-BG.jpg"); /* change to your image path */
    background-size:cover;   /* make it cover full area */
    background-position: center; /* center the image */
    background-repeat: no-repeat;
    min-height: 100vh; /* full height of screen */
   
}

blockquote {
   float:left;
}

/* main-content */
#main-content {
    display: flex;
    justify-content: space-between;
}

.box-preview-judul {
  flex: 1;
  color: aliceblue;
  margin: 0 10px;
}

/* customer-logo */
#customer-logo {
   
    background-color: #f0f0f0;
    /* background-color: #2a131335; */
}

#customer-logo h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: rgb(16, 25, 2);
    font-size: 3rem;
}

#customer-logo img {
    max-width: 100px;
    padding-top: 50px;
    padding-bottom: 10px;
    object-fit: contain;      
}

#customer-logo ul {
    list-style-type: none;
}

#customer-logo li {
    display: inline-block;    
}

#customer-logo li:hover {
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

/* customer-testimonial */
.testimonial {
    height: 400px;
    background-color: #e0f7fa;    
    /* background-color: #e9f5f9f5;     */
}

#testimonialCarousel {
    margin-top: 4rem;
}

.carousel-inner {
    color: #00796b;
}

/* certificate-logo */
#certification-logo {   
    background-color: #e9bc84ff;
    margin: auto;
    padding: 20px;
    text-align: center;
    
}

#certification-logo h1{
    margin-bottom: 50px;
    font-weight: bold;
    font-family:'Times New Roman', Times, serif;
    font-size: 3rem;
}

/* product-logo */
.product-logo {
    display: inline-block;
    border: 15px solid #8B5E3C;                 /* wood-like border color */    
    background: #f5f5f5;                        /* frame background */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);    /* shadow for depth */
    padding: 25px;                                /* frame thickness */
    width: 100%;
    align-items: center;                        
}

.product-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 6px solid #fff;           /* inner white matting */
    margin: 0 auto;
    padding: 20px;
}

/* blog */
.blog {
    min-height: 700px;
    background-color: #e9eae9f5;
    /* padding-top: 5rem; */
    padding-bottom: 5rem;    
}

.blog-card {
    height: 600px;
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    height: 250px;           
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: transform 0.4s ease;
}

.blog-card h4 {    
    font-weight: bold;
    font-family:'Segoe UI';

}

.blog-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;    
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: arial;
}

.blog-card img:hover {
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination button {
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    background: #eee;
    transition: 0.3s;
}

.pagination button.active {
    background: #007bff;
    color: white;
    font-weight: bold;
}

.pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* contact */

.contact-section {
      background: linear-gradient(135deg, #1a73e8, #0a58ca);
      color: white;
      padding: 80px 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    padding: 12px;
}

.contact-form button {
    background-color: #f9a825;
    border: none;
    padding: 6px;
    font-weight: bold;
    font-size: larger;
    border-radius: 8px;
    width: 12rem;
}

.contact-form button:hover {
    background-color: #391b02;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    margin: 0 10px;
    font-size: 22px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.1);
}

.social-icons a.facebook:hover {
    background: #1877f2; /* Facebook blue */
}

.social-icons a.instagram:hover {
    background: #e4405f; /* Instagram pink/red */
}

/* Footer */

html, body {
    height: 100%;
    margin: 0;    
}

.content {
    min-height: calc(100vh - 100px);
}

.sticky-footer {
    height: 100px;
    background: black;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;    
}

/* solution */
.display-5 {
    padding-top: 100px;
    font-weight: bold;
    font-family:'Segoe UI'; 
}

.services-img {
    height: 200px;      /* set desired height */
    width: 100%;        /* responsive full width */
    object-fit: cover;  /* crop edges instead of stretching */
}


/* FAQ */
.accordion-item{
    border: none;
}

#accordionFAQ .accordion-button {
    background-color: #eff2f3;
    color: rgb(97, 98, 100);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;      
}




