/* General Styling */
.header-fier {
  text-align: center;
  margin: 5rem auto;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title Styling */
.header-fier .gsc-heading__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2b2b5e;
  line-height: 1.2;
}

/* Description Styling */
.header-fier .gsc-heading__desc {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  max-width: 600px; /* Restrict width for readability */
  line-height: 1.5;
}

/* Buttons Container */
.header-fier .gsc-heading__action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Button Styles */
.header-fier .btn-theme,
.header-fier .gsc-button {
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-fier .btn-theme {
  background-color: #00cde5;
  color: #fff;
}

.header-fier .btn-theme:hover {
  background-color: #2b2b5e;
  color: #fff;
}

.header-fier .gsc-button {
  background-color: transparent;
  color: #00cde5;
  border: 2px solid #00cde5;
}

.header-fier .gsc-button:hover {
  background-color: #2b2b5e;
  color: #fff;
  border-color: #2b2b5e;
}

/* Responsive Design for Extra Small Screens */
@media (max-width: 576px) {
  .header-fier {
    padding: 20px 10px;
    max-width: 100%; /* Use full width for smaller screens */
  }

  .header-fier .gsc-heading__title {
    font-size: 1.5rem;
  }

  .header-fier .gsc-heading__desc {
    font-size: 0.9rem;
    max-width: 100%; /* Ensure description adjusts to smaller screens */
  }

  .header-fier .gsc-heading__action {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .header-fier .btn-theme,
  .header-fier .gsc-button {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* Responsive Design for Medium Screens */
@media (min-width: 577px) and (max-width: 768px) {
  .header-fier {
    padding: 30px 15px;
    max-width: 85%; /* Slightly reduce width */
  }

  .header-fier .gsc-heading__title {
    font-size: 1.8rem;
  }

  .header-fier .gsc-heading__desc {
    font-size: 1rem;
  }

  .header-fier .btn-theme,
  .header-fier .gsc-button {
    font-size: 0.85rem;
    padding: 9px 18px;
  }
}

/* Responsive Design for Large Screens */
@media (min-width: 769px) and (max-width: 1200px) {
  .header-fier {
    max-width: 750px;
  }

  .header-fier .gsc-heading__title {
    font-size: 2rem;
  }

  .header-fier .gsc-heading__desc {
    font-size: 1.1rem;
  }

  .header-fier .btn-theme,
  .header-fier .gsc-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Design for Extra Large Screens */
@media (min-width: 1201px) {
  .header-fier {
    max-width: 900px;
    padding: 40px 20px;
  }

  .header-fier .gsc-heading__title {
    font-size: 2.2rem;
  }

  .header-fier .gsc-heading__desc {
    font-size: 1.2rem;
  }

  .header-fier .gsc-heading__action {
    gap: 20px;
  }

  .header-fier .btn-theme,
  .header-fier .gsc-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}



.el-carousel-banner.image-opacity img{
    opacity: 0.9;
}

.gbb-row .bb-inner {
     padding-top: 0px;
     padding-bottom: 0px; 
}