.bg-black{
    background-color: #000;
}
p{
    font-family : Times New Roman;
    text-align: justify;
}
.bg-blue{
    background-color: #B0E0E6;
}
.box-b{
    box-shadow: 3px 3px 2px 0px rgba(1, 0, 0, 1);
}
/* Navigation styling */
.clear-top{
    margin-top: 100px;
}
.navbar {
    background-color: #fff; /* Black */
}

.navbar-brand {
    font-weight: bold;
    font-size: 28px;
}
/* Mobile view styling */
@media (max-width: 767px) {
    .navbar-nav li{
        border-bottom: 2px dotted white;
    }
}
.navbar-nav .nav-link {
    color: #000; /* White */
    font-family : Times New Roman;
    text-align: center;
    padding: 16px;
    text-decoration: underline;
    padding: 30px 30px!important;
    margin: 0px 0px;
    transition: background-color 0.5s; /* Add transition for smooth color change */
}

/* Mouse hover effect */
.navbar-nav .nav-link:hover {
    background-color: #B0E0E6; /* Sky Blue */
    color: #000; /* White */
}

/* Home section styling */
.home-section {
    background-image: url('images/background.jpg'); /* Add your background image path */
    background-size: cover;
    background-position: center;
    color: #000; /* White */
}

.home-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Footer styling */
.footer {
    background-color: #000; /* Black */
    color: #fff; /* White */
    padding: 20px 0;
}

.footer p {
    margin: 0;
}
/* Footer styling */
.footer {
    background-color: #B0E0E6; /* Light Smoke Gray */
    color: #000; /* Black */
    padding-top: 40px;
}

.footer h4 {
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 20px;
}

.social-links {
    margin-top: 10px;
}

.social-link {
    font-size: 24px;
    color: #000; /* Black */
    margin-right: 10px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #007bff; /* Sky Blue */
}

.footer ul.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.footer ul.list-unstyled li {
    margin-bottom: 10px;
}

.footer ul.list-unstyled li a {
    color: #000; /* Black */
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul.list-unstyled li a:hover {
    color: #007bff; /* Sky Blue */
}


.testimonial {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 10px;
}

/* Gallery styling */

/* Gallery heading styling */
.branchcomb {
    background-image: url('../img/bgtop.jpg'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* White text color */
    text-align: center;text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text drop shadow */
}

.branchcomb h2 {
    font-size: 3.9rem;
    margin: 0;
}


.gallery-section {
    padding: 80px 0;
}

.gallery-item img {

    width: 300px;
    height: 300px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
