
.hero {
    padding: 60px 0;
}

body p{
    font-size: 18px;
}

.festival-card {
    transition: box-shadow 0.3s;
}

.festival-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.impact-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ddd;
    margin: auto;
}

@media (min-width:780px) {
    .navbar-nav {
        padding-left: 10%;
    }    
}
@media (min-width:1020px) {
    .navbar-nav {
        padding-left: 7%;
    }
    .navbar-nav .nav-item{
        padding-right: 7px;
    }
}

@media (min-width:1400px) {
    .navbar-nav .nav-item{
        padding-right: 25px;
    }
}

/* .navbar-nav .nav-item{
    padding-right: 25px;
} */

.hero{
    height: 85vh;
}
.donate-btn{
    /* border: 1px solid; */
    border-radius: 0px;
    background: #d5d5d5;
}

.donate-btn:hover{
    background: #8b8b8b;
    color: white;
}

.festival-card img{
    height: 280px;
    width: 100%;
}

.impact-card {
    background: #eee;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    margin-top: 20%;
  }
  .impact-card .circle {
    width: 150px;
    height: 150px;
    background: #ccc;
    border-radius: 50%;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
  }

  footer{
    position: relative;
    height: 300px;
    margin-top: 50px;
    clear: both;
  }

  .bg-gray{
    background-color: #eeeeee;
  }

  /* accordian */

  .accordion-button:not(.collapsed)::after,
.accordion-button::after {
  background-image: unset !important;
}

.accordion-button:not(.collapsed) {
    background-color: #eeeeee !important;
}

.accordion-button.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .accordion-body.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .left-text {
    flex-grow: 1;
  }
  .right-text {
    flex-shrink: 0;
    margin-left: auto;
  }

  /* accordian */

  /* Tab Button Styles */
  .custom-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .custom-tab {
    flex: 1;
    /* padding: 16px; */
    text-align: center;
    background-color: #d4d0d0; /* default grey background */
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  .custom-tab.active {
    background-color: #888; /* darker shade for active */
    color: white;
  }


  .tab-content-area {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-content-area.active {
    display: block;
  }

  .pill-option {
    border: 1px solid #444;
    border-radius: 25px;
    padding: 6px 14px;
    margin: 6px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    transition: background-color 0.3s, color 0.3s;
  }

  .pill-option.selected {
    background-color: #868686;
    color: white;
  }

  .pill-option .close-icon {
    font-weight: bold;
    margin-left: 8px;
    cursor: pointer;
    display: none;
  }

  .pill-option.selected .close-icon {
    display: inline;
  }

    /* Tab content styling */

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .section-title {
    font-size: 17px;
  }

  /* Radio button styling */
  .custom-radio {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    /* margin-top: 10px; */
  }

  .custom-radio input[type="radio"] {
    display: none;
  }

  .custom-radio label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
  }

  .custom-radio .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 8px;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s;
  }

  .custom-radio input[type="radio"]:checked + label .circle {
    background-color: #ccc;
  }

  .custom-radio input[type="radio"]:checked + label .circle::after {
    content: "";
    width: 13px;
    height: 13px;
    background-color: rgb(165, 165, 165);
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 50%;
  }

  .radio-group {
    margin-bottom: 1rem;
  }

  /* Radio button styling */

  /* Amount css start */

  .amount-option {
    background-color: #ccc;
    color: black;
    padding: 12px 20px;
    margin: 6px 6px 6px 0;
    cursor: pointer;
    /* border-radius: 4px; */
    font-size: 18px;
    transition: background-color 0.3s;
  }
  
  .amount-option.active {
    background-color: #888;
    font-weight: 500;
  }
  
  .amount-input-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #444;
    background-color: #ccc;
    /* border-radius: 4px; */
    overflow: hidden;
    /* margin-top: 6px; */
  }
  
  .amount-input-wrapper .dollar-prefix {
    padding: 12px;
    background-color: #aaa;
    font-weight: 500;
    font-size: 18px;
  }
  
  .amount-input-wrapper input {
    border: none;
    padding: 12px;
    font-size: 18px;
    background-color: transparent;
    outline: none;
    width: 200px;
    color: #000;
  }

  /* amount css end */


  /* modal delete */

  .custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 200, 200, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  
  .modal-content-box {
    background: white;
    padding: 40px;
    /* border-radius: 6px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 360px;
  }
  
  .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  /* Form */

  label {
    display: block;
    font-size: 18px;
    margin: 20px 0 8px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .inline-inputs {
    display: flex;
    gap: 16px;
  }

  .form-input {
    background-color: #e3e0df;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    border-radius: 2px;
  }

  .description {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
  }

  .textarea {
    height: 100px;
    resize: vertical;
  }

/* otp section */

.otp-container {
    display: flex;
    gap: 16px;
  }

  .otp-input {
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 32px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border 0.2s;
    font-family: monospace;
  }

  .otp-input.filled {
    font-size: 32px;
    font-weight: bold;
  }

  .otp-success {
    border: 2px solid #28a745 !important;
  }

  .otp-error {
    border: 2px solid #dc3545 !important;
  }

  /* history table */
  table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  th, td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 17px;
  }

  th {
    background-color: #ddd;
    font-weight: 600;
  }


  a {
    color: #000;
    text-decoration: underline;
    cursor: pointer;
  }


  input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }


  .empty_height_div{
    height: 200px;
  }