/* Width and Height of the Scrollbar Track */
::-webkit-scrollbar {
  width: 7px;
  height: 10px;
}

/* Styles for the Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background-color: #79113a;
}

/* Styles on Hover for the Scrollbar Thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #5a0a26;
}

/* Styles for the Scrollbar Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
      body{
        font-family: math;
      }
      .my-button {
        background-color: #79113a;
        color: white;
      }
      .my-button:hover {
        background-color: #5e0d2d;
        color: white;
        cursor: pointer;
      }

      .navbar {
        background-color: #f8f9fa;

        position: sticky;
        top: 0;
        z-index: 100;
      }

      /* Hover effect on navigation links */
      .navbar .nav-link {
        position: relative;
        transition: transform 0.3s;
        font-weight: bolder;
      }

      .navbar .nav-link:hover {
        color: #79113a !important;
        transform: scale(1.1);
      }

      .slider-container {
        height: 100%; /* Adjust the height as needed */
      }

      .carousel-item {
        height: 100%;
      }

      .carousel-item .TopSliderImg {
        height: 657px;
        width: 100%;
      }
      .carousel-item img {
        object-fit: cover;
      }
      .carousel-caption {
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 20px;
        color: #fff;
        text-align: center;
      }
    
      .carousel-caption h2 {
        font-size: 36px;
        margin-bottom: 10px;
      }
      h2{
        font-weight: bolder;
      }
      h1{
        font-weight: bolder;
      }
      h4{
        font-weight: bolder;
      }
    
      .carousel-caption p {
        font-size: 18px;
        margin-bottom: 0;
      }

      .footer-nav li {
        list-style: none;
        margin-bottom: 10px;
      }
      .footer-contact li {
        list-style: none;
        margin-bottom: 10px;
      }

      .footer-nav a {
        color: #5b5b5b;
        text-decoration: none;
        transition: transform 0.3s;
      }

      .footer-nav a:hover {
        color: #79113a !important;
        transform: scale(1.1);
      }
    


      .video-frame {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        overflow: hidden;
        border: 4px solid #79113a;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
      }
      .video-frame:hover {
        transform: scale(1.1);
      }

      .video-frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 6px;
      }

      .my-check-circle{
        padding: 10px;
        font-size: 20px;
        border-radius: 100px;
        background-color: #79113a;
        color: #f8f9fa;
        margin-right: 10px;
      }
  .faq-section {
    text-align: center;
    padding: 40px 0;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-box {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
  }

  .faq-box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #f5f5f5;
  }

  .question h5 {
    margin: 0;
  }

  .plus-icon {
    font-size: 25px;
    font-weight: bold;
    transition: transform 0.3s;
  }

  .plus-icon.active {
    transform: rotate(45deg);
  }

  .answer {
    padding: 15px;
    display: none;
  }

  .answer.active {
    display: block;
  }


  .pricing-section {
    text-align: center;
    padding: 40px 0;
  }

  .pricing-box {
    /* border: 1px solid #ddd; */
    border: 5px solid #ebebeb;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
  }

  .pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .pricing-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .price-form{
    font-size: 20px;
    font-weight: 500;
  }

  .features {
    list-style-type: disc;
    padding: 0;
    margin-bottom: 30px;
    text-align: initial;
  }

  .features li {
    margin-bottom: 10px;
  }

  .btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #79113a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #5a0a26;
  }

  .my-text-color{
    color: #5a0a26;
  }
  .my-bg-color{
    background-color: #5a0a26;
  }
  .my-text{
    color: #747d8f;
    font-family: math;
  }

  .Termsofservice-section ul{
    list-style: decimal;
    padding-left: 20px;
  }
 
  .contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
  }

  .contact-section h2 {
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
  }

  .contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    color: #666;
  }

  .contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .contact-info li i {
    font-size: 20px;
    margin-right: 10px;
  }

  .social-links {
    margin-top: 40px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #79113a;
    color: #fff;
    border-radius: 15%;
    margin-right: 10px;
    transition: background-color 0.3s;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 25px;
  }

  .social-links a:hover {
    background-color: #5a0a26;
  }

  .form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
  }

  .Testimonial-DIV{
    background-color: #f3f3f3;
  }

  .testimonial-slider {
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    background-color: #f3f3f3;
    cursor: grab; /* Add this line to set cursor to grab */
  }

  .testimonial-card {
    border-radius: 12px;
    padding: 30px;
    text-align: center;
  }

  .testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .testimonial-name {
    font-size: 20px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 10px;
  }

  .testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 16px;
    color: #6c757d;
  }

   /* Add these lines for cursor style */
   .carousel-inner {
    cursor: grab;
  }

  .carousel-inner:active {
    cursor: grabbing;
  }

 
/* Responsive Design */
@media (max-width: 768px) {
  .carousel-item .TopSliderImg {
    height: 670px;
    width: 100%;
  }
}