/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 10px;
  color: #ddd !important;
}

.carousel-item {
  height: 400px;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(60%);
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: center;
  padding: 0 20px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.25rem;
}



/* SECTION TITLES */
.section-title {
  border-left: 5px solid #007bff;
  padding-left: 15px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #343a40;
}

/* CARDS (PRODUCTS) */
.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.card img {
  height: 140px;
  object-fit: contain;
  padding: 15px;
  margin-top: 10px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
}

.card p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #007bff;
}

/* SCROLLABLE DIGITAL TOOLS */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  padding-top: 10px;
  scroll-snap-type: x mandatory;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-track {
  background-color: #e9ecef;
}

.scroll-container .card {
  flex-shrink: 0;
  scroll-snap-align: start;
  min-width: 250px;
}

/* BUTTONS */
.btn-success,
.btn-primary {
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.btn-success:hover,
.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* SEARCH INPUT */
form .form-control {
  border-radius: 20px;
  padding: 6px 16px;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  background-color: #343a40;
  color: #ddd;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 60px;
}

/* AOS ANIMATION DELAY FIX */
[data-aos] {
  transition-property: transform, opacity !important;
}
