@charset "utf-8";
/* CSS Document */

body {
    background-color: #88becb !important;
}

h3 {
	text-align: center;
	color: #636363;
}

h5 {
	text-align: center;
	color: #636363;
}

/*.sidebar {
	text-decoration: none;
	color: #636363;
}
.sidebar:hover {
	color: #88becb;
}

.commonthe {
	color: #76a3ae;
}

.commonthe:hover {
	color: #636363;
	text-decoration: underline;
}*/

/* Box Styling */
.box-style {
    background-color: white;  
    max-width: 40vw;
    margin: 5vh auto;
    box-shadow: 0px 0px 60px 8px #999;
}

/* FAQ Section */
#faq-section {
    padding: 2rem 0;
}

.faq-header {
    margin-bottom: 1rem;
}

.faq-links a {
    text-decoration: none;
    color: #007bff;
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq-links a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.faq-links a span {
    float: right;
    font-weight: bold;
}

.collapse {
    padding: 0.5rem 0 1rem;
}

/* Hamburger menu toggle button styles */
.navbar-toggler {
    background-color: #636363;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.5rem;
    border-radius: 5px;
}

.navbar-toggler-icon {
    background-image: none;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: "";
    display: block;
    background-color: white;
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
}

/* Sidebar link styles */
.nav-link.sidebar {
    color: #636363;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.nav-link.sidebar:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* For desktop (expanded view) */
@media (min-width: 992px) {
    .navbar-collapse {
        display: block !important;
    }

    .navbar-toggler {
        display: none;
    }
}


@media (max-width:700px){
	.box-style {
    background-color: white; 
    min-height: 90vh; 
    max-width: 90vw;
    margin: 5vh auto;
    box-shadow: 0px 0px 60px 8px #999;
	}
}

/* Table Styles */
.table-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures hover & striping apply correctly */
}

/* Table Header */
.table-container table thead th {
    font-weight: bold;
    text-align: left;
    padding: 12px 10px;
    background-color: #f1f1f1; /* Light gray background for headers */
}

/* Table Cells */
.table-container table tbody td {
    padding: 10px;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #636363; /* Dark gray */
    color: #FFFFFF;
    font-weight: 700;
    padding: 20px 0;
}

/* Left-aligned "Quick Links" title */
footer .text-start {
    text-align: left !important;
}

/* Keep other headers centered/right */
footer h5 {
    color: white;
    font-weight: bold;
}

/* Footer Links */
footer a {
    color: #88becb;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: white;
}

/* Split List Styling */
footer .d-flex.w-100 {
    display: flex;
    justify-content: space-between;
}

/* List Styles */
footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    list-style: none;
}

/* Gallery Styles */

.gallery-img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.gallery-img:hover {
    transform: scale(1.05);
}
