/* ===== Reset and Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background: #f8f9fa;
  color: #333;
}

/* ===== Navigation Bar ===== */
nav {
  background: white;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
nav .logo {
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-weight: bold;
}
nav ul li a:hover {
  color: rgb(11, 114, 233);
}
/* Industry Icon Styling */
.industry-icon {
  font-size: 48px;
  color: #0d6efd;
  transition: transform 0.3s ease;
}
.industry-icon:hover {
  transform: scale(1.2);
  color: #063d99;
}
h6 {
  font-weight: 600;
  color: #333;
}
footer .social-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}
footer .social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.2);
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  text-decoration: none; /* This removes the underline */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebd59;
  transform: scale(1.1);
}

.facebook i {
  color: #1877F2; /* Facebook Blue */
}

.instagram i {
  color: #E1306C; /* Instagram Pink/Red */
}

.twitter i {
  color: #1DA1F2; /* Twitter Blue */
}

.whatsapp i {
  color: #25D366; /* WhatsApp Green */
}
.social-icons a:hover i {
  opacity: 0.8;
  transform: scale(1.1);
  transition: 0.3s ease;
}

.card-hover {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card-hover .card-body {
  transition: background-color 0.3s ease;
}
.card-hover:hover .card-body {
  background-color: #f1fdf9;
}

.why-bighub {
  gap: 20px;
  align-items: flex-start;
}

.image-container {
  flex: 1 1 350px;
  max-width: 520px;
}

.content-container {
  flex: 2 1 500px;
  max-height: 450px; /* prevent layout push */
  overflow-y: auto;
}
.content-container {
  flex: 2 1 500px;
  /* Remove max-height and overflow to avoid scrollbar */
  max-height: none; /* or simply delete this line */
  overflow-y: visible; /* or just remove this */
}
.accordion-container .info-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-header h5 {
  margin: 0;
  font-weight: 600;
}

.toggle-btn {
  font-size: 20px;
  border: none;
  background: none;
  font-weight: bold;
  cursor: pointer;
}

.info-content {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}
/* Mobile phones (portrait) */
@media (max-width: 575.98px) {
  nav {
    padding: 10px 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    width: 100%;
  }
  .industry-icon {
    font-size: 36px;
  }
  .content-container {
    flex: 1 1 100%;
    max-height: none;
    overflow-y: visible;
  }
  .image-container {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .why-bighub {
    flex-direction: column;
    gap: 15px;
  }
  .accordion-container .info-card {
    padding: 12px;
  }
}

/* Tablets (portrait and landscape) */
@media (min-width: 576px) and (max-width: 767.98px) {
  nav {
    padding: 12px 20px;
  }
  nav ul {
    gap: 20px;
  }
  .industry-icon {
    font-size: 40px;
  }
  .content-container {
    flex: 2 1 60%;
    max-height: none;
    overflow-y: visible;
  }
  .image-container {
    flex: 1 1 40%;
    max-width: 480px;
  }
  .why-bighub {
    flex-direction: row;
    gap: 20px;
  }
}

/* Laptops (small desktops) */
@media (min-width: 768px) and (max-width: 991.98px) {
  nav {
    padding: 15px 25px;
  }
  nav ul {
    gap: 25px;
  }
  .industry-icon {
    font-size: 44px;
  }
  .content-container {
    flex: 2 1 60%;
  }
  .image-container {
    flex: 1 1 40%;
    max-width: 500px;
  }
  .why-bighub {
    flex-direction: row;
    gap: 25px;
  }
}

/* Desktops and larger screens */
@media (min-width: 992px) {
  nav {
    padding: 15px 30px;
  }
  nav ul {
    gap: 30px;
  }
  .industry-icon {
    font-size: 48px;
  }
  .content-container {
    flex: 2 1 500px;
    max-height: 450px; /* You can adjust or remove based on preference */
    overflow-y: auto;
  }
  .image-container {
    flex: 1 1 350px;
    max-width: 520px;
  }
  .why-bighub {
    flex-direction: row;
    gap: 20px;
  }
}















