html {
  scroll-behavior: smooth;
}

.custom-card {
  display: none;
}
.custom-card.active {
  display: block;
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(243, 252, 251, 0.6); /* transparent overlay */
  z-index: 1;
}

.breadcrumb-area {
  position: relative;
  background: url("assest/financw.jpg") top center no-repeat;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
  color: black;
  z-index: 0;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
}
.breadcrumb-content h2 {
  font-size: 40px;
  font-weight: 400;
  color: #222;
  margin-bottom: 10px;
  /* font-weight: 600; */
}
.breadcrumb {
  font-size: 18px;
}
.breadcrumb a {
  color: rgb(147, 148, 150);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Disclosure Section */
.disclosure-container {
  width: 90%;
  background: #ffffff;
  padding: 60px 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #003366;
  border-radius: 8px;
  margin: 50px auto 50px; /* Increased top margin to separate from the image */
  animation: fadeInUp 1s ease-out forwards;
}

.disclosure-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; /* Adjust height for more fade effect */
  background: rgb(255, 255, 255);
}

.disclosure-container:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.disclosure-content h2 {
  color: #003366;
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}

.disclosure-content h4,
.disclosure-content h5 {
  color: #0044cc;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.disclosure-content p,
.disclosure-content ul {
  font-size: 18px;
  line-height: 1.4;
  color: #555;
  text-align: justify;
  padding: 2px 0;
}

.disclosure-content ul {
  padding-left: 25px;
}
.disclosure-content ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* Divider */
.divider {
  height: 3px;
  background: #0044cc;
  width: 100px;
  margin: 20px auto;
}
.disclosure-content .bold {
  font-weight: 500;
  color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
  .breadcrumb-content h2 {
    font-size: 28px;
  }
  .disclosure-content h2 {
    font-size: 26px;
  }
  .disclosure-content p {
    font-size: 16px;
  }
  .disclosure-content ul {
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-content .title {
    font-size: 22px; /* Reduce heading size on tablets */
  }

  .breadcrumb-content .breadcrumb {
    font-size: 16px; /* Decrease breadcrumb font size */
  }
}

@media (max-width: 480px) {
  .breadcrumb-content .title {
    font-size: 18px; /* Further reduce heading size on small screens */
  }

  .breadcrumb-content .breadcrumb {
    font-size: 14px; /* Decrease breadcrumb text size */
  }
  .disclosure-content .bold {
    font-weight: 500;
    font-size: 16px;
    color: black;
  }
  .disclosure-content p {
    /* font-weight: 500; */
    font-size: 16px;
    /* color:black; */
  }
  .disclosure-container {
    padding: 30px 10px;
  }
  .breadcrumb-area {
    padding: 20px 0;
  }
}

/* Sidebar */
.sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 1s ease-out forwards;
}

/* Service Box */
.service-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  animation: fadeInLeft ease-out forwards;
}

.service-box:hover {
  background: #007bff;
  color: white;
  box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.3);
  transform: translateY(-3px);
}
.service-box:hover .arrow {
  transform: translateX(5px);
}

.arrow {
  transition: transform 0.3s ease;
}

/* Contact Box */
.contact-box {
  background: linear-gradient(35deg, #007bff, rgb(190, 214, 54));
  color: black;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-top: 15px;
  animation: fadeInLeft 1s ease-out forwards;
}

.contact-box a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* New Card - Separated */
.info-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 65px; /* Increased margin to create separation */
  animation: fadeInLeft 1s ease-out forwards;
}

.info-card h5 {
  font-weight: bold;
  color: #1a1a1a;
  text-align: center;
  animation: fadeInLeft 1s ease-out forwards;
}

/* Hero Section */
.hero img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  animation: fadeInRight 1s ease-out forwards;
}

.hero h2 {
  margin-top: 15px;
  font-weight: bold;
  animation: fadeInRight 1s ease-out forwards;
}

/* Card Boxes */
.custom-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  animation: fadeInUp 1s ease-out forwards;
}
.equity-section {
  margin-bottom: 25px;
}

.equity-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333;
  position: relative;
  padding-left: 12px;
}

.equity-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 80%;
  background: #f27c00; /* orange bar */
  border-radius: 3px;
}

.pay {
  animation: fadeInUp 1s ease-out forwards;
}
.pricing-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out forwards;
}

.pay-btn {
  background: linear-gradient(35deg, #007bff, rgb(190, 214, 54));
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.pay-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #0056b3, rgb(215, 237, 49));
}
