
body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar (global) */
.navbar-custom {
  background: linear-gradient(to right, #d6d4d4 0%, #f4f4f4 50%, #ffffff 100%);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-brand img {
  height: 60px;
}
.navbar-custom .nav-link {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  background: linear-gradient(135deg, #ffcc00, #eeff07);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.5);
}




/* ==========================================
   🏠 INDEX PAGE
========================================== */
* Carousel */
    #home .carousel-item img {
      max-height: 550px; 
      object-fit: cover; 
    }
    .carousel-indicators [data-bs-target] {
      background-color: #ff9800; 
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1); 
    }

    
    section {
      padding: 0px 0;  
    }

    /* BOX CONTENT CARD NYATU */
.features-bar {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
  }

  .feature-item {
    flex: 1;
    text-align: center;
    padding: 10px;
  }

  .feature-item i {
    font-size: 38px;
    color: #FFD700;
  }

  .feature-divider {
    width: 1px;
    height: 60px;
    background: #eee;
  }

  /* --- MOBILE RESPONSIVE FIX --- */
  @media (max-width: 768px) {
    .features-bar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 12px;
    }

    .feature-item {
      background: #fff;
     
      
     
      
    }

    .feature-divider {
      display: none !important;
    }

    .feature-item i {
      font-size: 30px;
    }

    .feature-item h5 {
      font-size: 15px;
      margin-top: 6px;
    }

    .feature-item p {
      font-size: 12px;
      margin: 0;
    }
  }
/* Desktop carousel img */
.testimonial-img {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Mobile grid img */
.testimonial-grid-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Optional: spacing fix for small screens */
@media (max-width: 576px) {
  .testimonial-grid-img {
    max-width: 95%;
  }
}


  /* Footer (global) */
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
        }

        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ffffff;
            padding: 40px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: nowrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 0;
        }

        .footer-section {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-section h3 {
            color: #FFD700;
            font-size: 15px;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: #FFD700;
            border-radius: 2px;
        }

        .contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-item i {
            color: #FFD700;
            margin-right: 10px;
            margin-top: 2px;
            font-size: 14px;
        }

        .contact-item .contact-text {
            flex: 1;
        }

        .contact-item .contact-label {
            font-size: 11px;
            color: #aaa;
            display: block;
            margin-bottom: 2px;
        }

        .contact-item .contact-value {
            color: #fff;
            font-size: 13px;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid #FFD700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD700;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 14px;
        }

        .social-links a:hover {
            background: #FFD700;
            color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #FFD700;
            padding-left: 10px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            margin-right: 5px;
        }

        .operational-time {
            background: rgba(255, 215, 0, 0.1);
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 12px;
            border-left: 3px solid #FFD700;
        }

        .operational-time .time-title {
            font-size: 12px;
            color: #FFD700;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .operational-time .time-value {
            font-size: 13px;
            color: #fff;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            margin-top: 30px;
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #aaa;
            font-size: 13px;
        }

        .footer-bottom strong {
            color: #FFD700;
        }

        @media (max-width: 1200px) {
            .footer-container {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .footer-section {
                flex: 1 1 calc(50% - 10px);
                min-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                padding: 0 20px;
            }

            .footer-section {
                flex: 1 1 100%;
                width: 100%;
            }

            .footer {
                padding: 30px 0 0;
            }
            
            .footer-section h3 {
                font-size: 16px;
                margin-bottom: 12px;
            }
            
            .contact-item .contact-value {
                font-size: 14px;
            }
            
            .footer-links a {
                font-size: 14px;
            }
            
            .operational-time {
                padding: 15px;
            }
            
            .operational-time .time-title {
                font-size: 13px;
            }
            
            .operational-time .time-value {
                font-size: 14px;
            }
            
            .social-links {
                margin-top: 20px;
            }
            
            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .footer-bottom {
                margin-top: 40px;
                padding: 25px 20px;
            }
            
            .footer-bottom p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .footer-section h3 {
                font-size: 15px;
            }
            
            .contact-item {
                margin-bottom: 15px;
            }
            
            .footer-links li {
                margin-bottom: 12px;
            }
            
    
        }