.gold-icon {
    color: gold;
    width: 50px;
}

/* Wrapper for all sections */
.collapsible-wrapper {
    max-width: 800px;
    margin: 20px auto;
}

/* Collapsible Container */
.collapsible-container {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    margin-bottom: 10px;
}

.collapsible-container:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Header Styling */
.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.collapsible-header:hover {
    background: #f1f1f1;
}

/* Arrow Default */
.collapsible-arrow {
    font-size: 24px;
    color: #333;
    transition: transform 0.3s, color 0.3s;
}

/* Golden Effect on Touch */
.collapsible-header:active .collapsible-arrow,
.collapsible-header:focus .collapsible-arrow {
    color: gold;
}

/* Hidden Content */
.collapsible-content {
    display: none;
    padding: 12px;
    font-size: 16px;
    color: #333;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Rotate Arrow When Active */
.rotate {
    transform: rotate(180deg);
    color: gold; /* Turn icon golden when opened */
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




footer {
    background-color: #f8f9fa;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #333;
}

footer img {
    max-width: 100%;
    height: auto;
}

footer .fs-5 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

footer .fs-6 {
    font-size: 0.875rem;
    color: #777;
}

footer .row {
    margin-bottom: 20px;
}

footer hr {
    border-top: 1px solid #e0e0e0;
}

footer .col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .col {
    text-align: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    footer .fs-5 {
        font-size: 1rem;
    }

    footer .fs-6 {
        font-size: 0.8rem;
    }

}


.pluse{
    max-height: 50px;
}

.logo2{
    max-height: 230px;
}



/* chart  */
body {
    background-color: #f8f9fa;
}
.timeGridX {
    max-width: 850px;
    margin: 20px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.day {
    height: 80px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    background: #f0f0f0;
    border-radius: 5px;
}
.day:hover {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transform: scale(1.05);
}
.header {
    font-weight: bold;
    background-color: #007bff;
    color: white;
    padding: 10px 0;
    border-radius: 5px;
}
.highlight {
    background: #ffc107 !important;
    color: #000;
}

.box-wrapper {
    background: #ffffff;
    padding: 30px;
    max-width: 650px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}
.top-buttons {
    margin: 20px 0;
}
.top-buttons .btn {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}
.top-buttons .btn:hover {
    opacity: 0.8;
}

/* Labels */
.form-label {
    font-weight: bold;
    color: #333;
}

/* Inputs */
.form-control {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}
.form-control:focus {
    border-color: #d9534f;
    box-shadow: 0 0 5px rgba(217, 83, 79, 0.5);
}

/* Centered "To" Text */
.text-between {
    font-size: 20px;
    font-weight: bold;
    color: #d9534f;
}

/* Button */
.custom-button {
    width: 100%;
    background: #d9534f;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.custom-button:hover {
    background: #c9302c;
}

/* Bottom Text */
.bottom-heading {
    font-size: 22px;
    font-weight: bold;
    color: #0275d8;
    margin-top: 20px;
}

/* Button Styling */
.top-buttons {
    margin: 20px 0;
}

.custom-btn {
    display: inline-block;
    background: #d9534f;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    margin: 5px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-btn:hover {
    background: #c9302c;
    transform: scale(1.05);
}

.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ddd;
  z-index: 1000;
}
.footer-nav a {
  color: #666;
  text-decoration:none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.footer-nav a:hover {
  color: #007bff;
}
.footer-nav i {
  font-size: 18px;
  display: block;
}



