@import url('https://fonts.googleapis.com/css2?family=Sedan+SC&display=swap');
/*.sedan-sc-regular {
  font-family: "Sedan SC", serif;
  font-weight: 400;
  font-style: normal;
}
*/
.img-fluid {
    border-radius: 5px; /* Add slightly rounded edges */

}

.navbar-custom {
    background-color: rgb(0, 0, 0);
    color:white;
}

button.nav-link.black {
    color:black!important;
}

.navbar-brand svg {
    height: 50px; /* Adjust height as needed */
}
.navbar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.nav-link {
    color:white!important;
    font-family: "Sedan SC", serif;
}

#logo {
    width: 750px;
}
.logo-container {
    
    background-color: #c9d8fa;
  
    
}

p, h6, h5, h4, h3, h2, h1, li, label, a, div {
    font-family: "Sedan SC", serif;
}

.accordion-body {
    font-family: "Sedan SC", serif;
}

.button {
    font-family: "Sedan SC", serif;
}

.custom-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.floating-donate-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8); /* Slightly transparent */
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    opacity: 0.7; /* Initial transparency */
}

.floating-donate-button:hover,
.floating-donate-button:focus {
    background: #000; /* Solid black on hover or focus */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    opacity: 1; /* Fully opaque on hover or focus */
}

.floating-donate-button .icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

     /* Custom Scrollbar Styles */
        /* For Webkit browsers */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #000;
            border-radius: 6px;
            border: 3px solid #fff;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .qa-section {
            margin: 40px auto;
            max-width: 800px;
        }

        .qa-section .accordion-button:not(.collapsed) {
            background-color: #000000;
            color: white;
        }

        .qa-section .accordion-button {
            background-color: #f8f9fa;
            color: #000;
        }

        .qa-section .accordion-button:hover {
            background-color: rgb(201, 216, 250);
            color: black;
        }

        .qa-section .accordion-item {
            border: none;
            border-radius: 0.5rem;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .qa-section .accordion-body {
            background: #f8f9fa;
        }
      
        .content-section {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
          }
          .nested-list {
            padding-left: 20px;
          }
          .nested-list-item {
            border: none;
            background: none;
            padding-left: 0;
          }
          .list-group-item {
            padding: 0.5rem 1rem;
          }


.btn-primary {
    background-color: rgba(201, 216, 250, 0.3);
    border:none!important;
    color:#000000;
}

.email-link {
    font-size: 1rem; /* Default font size */
  }
  @media (max-width: 576px) {
    .email-link {
      font-size: 0.875rem; /* Smaller font size on mobile */
    }
  }

 .custombutton {
    padding: 10px 20px;
    font-size: 10px;
    text-transform: uppercase;
    color: #000;
   border:none!important;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.custombutton:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Slight darkening on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly larger shadow on hover */
}


    .navbar-custom {
        background-color: black;
    }
    .navbar-custom .navbar-brand,
    .navbar-custom .nav-link,
    .navbar-custom .btn {
        color: white!important;
    }
    

    .btn-danger {
        background-color: rgba(201, 216, 250, 0.3)!important;
        color:black!important;
        border:none!important;
    }


    .btn-info {
        background-color: black!important;
        color:white!important;
        border:none!important;
    }

    .live-label {
        color: #ff0000; /* Red color for live text */
        font-weight: bold;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        padding: 2px 2px; /* Padding around the text and icon */
        margin-bottom: 5px;
    }
    
    .live-icon {
        color: #ff0000; /* Red color for the icon */
        margin-right: 5px; /* Space between icon and text */
        font-size: 12px; /* Smaller icon size */
        animation: pulse 2s infinite; /* Pulse effect */
    }
    
    @keyframes pulse {
        0% {
            transform: scale(0.75);
            opacity: 0.7;
        }
        70% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(0.75);
            opacity: 0.7;
        }
    }


    .custom-progress-bar {
        background-color: rgb(201, 216, 250); 
        color:black!important;/* Custom green color */
    }

    body {
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
    body.fade-out {
        opacity: 0;
    }
    #loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .custom-progress-bar {
        background-color: rgb(201, 216, 250);
        color: black !important;
    }
    #loading img {
        margin-bottom: 20px; /* Add some spacing between the image and the progress bar */
    }
    #loading.fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    @media (max-width: 768px) {
        .profile-image {
          width: 100%;  /* Makes the image full width */
          height: auto;
          margin: 0 0 20px 0; /* Adds space below the image */
          float: none; /* Prevents text wrapping on mobile */
        }
        .content-wrapper {
          flex-direction: column;
        }
      }
      
      
      .float-start {
        float: left;
        margin-right: 20px; /* Margin to create space between image and text */
        margin-bottom: 20px; /* Margin for spacing below the image */
        filter: brightness(1.1) contrast(1) saturate(1) sepia(10%); /* Apply a flattering filter */
        transition: filter 0.3s ease; /* Smooth transition for hover effect */
        border-radius: 10px; /* Add slightly rounded edges */
    }
      
      @media (max-width: 768px) {
        .float-start {
          width: 50%; /* Adjust the width for smaller screens */
          height: auto; /* Maintains aspect ratio */
          margin-right: 10px; /* Reduced right margin for mobile */
          margin-bottom: 10px; /* Adds space below the image */
        }
      }
      
  
      
      .content-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
      }
      .nav-link {
        position: relative;
        text-decoration: none;
        color: #000; /* Default color */
        padding: 0.5rem 1rem; /* Padding for the links */
      }
      
      .nav-item.active .nav-link::after,
      .nav-item .nav-link:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white; /* White underline for the active link */
      }
      
      .product-scroll {
        display: flex;
        overflow-x: auto;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
  
      .product-scroll::-webkit-scrollbar {
        display: none; /* Hide scrollbar for webkit browsers */
      }
  
      .product-scroll {
        -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
        scrollbar-width: none;  /* Hide scrollbar for Firefox */
      }
  
      .product-card {
        flex: 0 0 auto;
        width: 220px;
        margin-right: 15px;
        scroll-snap-align: start;
        border: 1px solid #333;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        background-color: #111;
        overflow: hidden;
        position: relative;
      }
  
      .product-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 15px;
        background: linear-gradient(45deg, rgb(201, 216, 250), rgb(121, 130, 151));
        background-size: 200% 200%;
        animation: gradient 4s linear infinite;
        z-index: -1;
      }
  
      @keyframes gradient {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }
  
      .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
       color:black!important;
      }
  
      .product-card img {
        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: cover;
        border-bottom: 1px solid #333;
        filter: grayscale(100%);
        transition: transform 0.3s, filter 0.3s;
      }
  
      .product-card:hover img {
        transform: scale(1.1);
        filter: grayscale(0%);
      }
  
      .card-body {
        padding: 15px;
        text-align: left;
      }
  
      .card-title {
        font-size: 1.2em;
        margin-bottom: 10px;
        color: white;
        text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
      }
  
   
  
      .scroll-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: black;
        border: none;
        color: white;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        font-size: 1.5em;
        transition: background-color 0.3s;
        border-radius: 50%;
      }
  
      .scroll-button.left {
        left: 10px;
      }
  
      .scroll-button.right {
        right: 10px;
      }
  
      .scroll-button:hover {
        background-color: rgba(255, 255, 255, 0.3);
      }
  
      @media (max-width: 768px) {
        .product-card {
          width: 150px;
        }
  
        .card-title {
          font-size: 1em;
        }
  
        .card-text {
          font-size: 0.8em;
        }
  
        .btn-primary {
          font-size: 0.8em;
          padding: 4px 8px;
        }
  
        .scroll-button {
          padding: 5px;
        }
      }