 /* Landing Page  */

 .hero-main {
    position: relative;
  }



  .form-div {
    border: 1px solid #0a58ca;
    border-radius: 5px;
    width: 100%;
    padding: 8px 15px;
    display: flex;
  }

  
  canvas {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-section {
    position: absolute;
    top: 160px;
    left: 30px;
    right: 30px;
  }

  .hero-section h1 {
    color: #fff;
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 700 !important;
    text-align: center;
    padding-top: 130px;
  }

  

  .payment-calculate {
    background: #ffffff;
    border-radius: 10px;
    max-width: 550px;
    margin: 0 auto;
}

  [data-bs-theme="dark"] .payment-calculate {
    background: #0f0f0f;
    border-radius: 10px;
  }


  .custom-tab {
    font-weight: 400;
    color: #555;
    border: none;
    transition: all 0.3s ease-in-out;
    font-size: 1.7rem;
  }


  .custom-tab:hover {
    background-color: #f8f9fa;
    color: #000;
  }

  .custom-tab.active {
    background-color: #007bff;
    color: white;
    border-bottom: 2px solid transparent;
  }



  .tab-pane {
    border: 0px;
    border-radius: 8px;
  }

  .nav-tabs .nav-link {
    margin-bottom: calc(-1* var(--bs-nav-tabs-border-width));
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius);
    width: 100%;
  }

  .form-controls {
    border: 0;
    width: 85%;
  }

  .form-selects {
    border: 0;
    width: 15%;
  }

  :focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
  }


  /* Text Animation  */

  @keyframes textAnimation {
    0% {
      text-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
      transform: scale(1);
    }

    50% {
      text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 1);
      transform: scale(1.1);
    }

    100% {
      text-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
      transform: scale(1);
    }
  }

  .animate-text {
    font-size: 2rem;
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #ff9a8b, #ff6a00);
    background-size: 300%;
    background-clip: text;
    color: transparent;
    animation: textAnimation 2s infinite, gradientAnimation 5s ease-in-out infinite;
    margin-bottom: 40px;
  }

  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  /* Swiper  */

  .swiper {
    padding: 10px 5px;
    cursor: pointer;
  }

  .swiper-slide {
    color: #1f2937;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .swiper-slide img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
  }

  .swiper-slidea img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2px;
  }

  .swiper-slide h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-right: -29px;
    margin-top: -20px;
  }

  .swiper-slide p {
    font-size: 0.875rem;
    color: #6b7280;
  }

  .swiper-slide h3 {
    font-size: 1.275rem;
    font-weight: bold;
    margin-top: 0.4rem;
  }

  .swiper-pagination-bullet {
    background-color: #4f46e5;
    opacity: 0.6;
  }

  .swiper-pagination-bullet-active {
    background-color: #4338ca;
    opacity: 1;
  }

  /* Dark Theme */
  [data-bs-theme="dark"] .swiper {
    padding: 20px 0;
    cursor: pointer;
  }

  [data-bs-theme="dark"] .swiper-slide {
    background-color: var(--bs-secondary-bg);
    color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  [data-bs-theme="dark"] .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  }

  [data-bs-theme="dark"] .swiper-slide img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
  }

  [data-bs-theme="dark"] .swiper-slidea img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2px;
  }

  [data-bs-theme="dark"] .swiper-slide h4 {
    margin-top: -20px;
    margin-right: -29px;
    font-size: 1rem;
    font-weight: 600;


  }

  [data-bs-theme="dark"] .swiper-slide p {
    font-size: 0.875rem;
    color: #9ca3af;
  }


  [data-bs-theme="dark"] .swiper-pagination-bullet {
    background-color: #4f46e5;
    opacity: 0.6;
  }

  [data-bs-theme="dark"] .swiper-pagination-bullet-active {
    background-color: #4338ca;
    opacity: 1;
  }

  @media (max-width: 768px) {

    [data-bs-theme="light"] .swiper-slide,
    [data-bs-theme="dark"] .swiper-slide {
      padding: 1rem;
    }

    [data-bs-theme="light"] .swiper-slide h3,
    [data-bs-theme="dark"] .swiper-slide h3 {
      font-size: 1.5rem;
    }

    [data-bs-theme="light"] .swiper-slide h4,
    [data-bs-theme="dark"] .swiper-slide h4 {
      font-size: 0.875rem;
    }
  }

  /* Wrapper for the HR */
  .custom-hr-wrapper {
    display: flex;
    align-items: center;
    height: 20px;
    margin-left: 13px;
  }

  /* Custom HR Styles */
  .custom-hr {
    margin-top: 90px;
    background-color: rgb(168, 156, 156);
    height: 75.1px;
    width: 1.5px;
    margin-right: 19px;
  }


  .feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  [data-bs-theme="dark"] .feature-card {
    background: var(--bs-secondary-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }


  /* Footer  */

footer {
    background-color: #ebedf0;
}

  [data-bs-theme="dark"] footer {
    background-color: #282f36;
  }
  @media (max-width: 768px) {
  .card-custom-shadow{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    margin: 10px auto ;
  }}







.hero-section-img {
    background-image: url(../images/slide2.png);
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom:100px;
}

[data-bs-theme="dark"] .hero-section-img {
    background-image: url(../images/slide2.png) !important;
}

/* Apply styles for small screens */
@media (max-width: 768px) {
    .hero-section h1 {
        padding-top: 20px;
    }

    .hero-section-img {
        background-image: url(../images/slide2.png);
        height: 750px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        margin-bottom: 100px;
    }
}
