/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa; /* Light background color */
    color: #333; /* Default text color */
    overflow: auto;
}

.bg-dark{
    background-color:rgba(17, 40, 57, 1)!important
}

/* Navigation */
header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('bk2.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity and color as needed */
}

/* Masthead Content */
.masthead .container {
    position: relative;
    z-index: 1;
}

.masthead h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
}

.masthead p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* About Us Section */
#about {
    padding: 100px 0;
    background-color: #fff; /* White background color */
}

#about .display-4 {
    font-weight: bold;
    color: #333; /* Darker text color */
}

#about p {
    font-size: 1.25rem; /* Paragraph font size */
    line-height: 1.7; /* Line height for readability */
}

#about ul {
    list-style-type: none;
    padding-left: 0;
}

#about ul li {
    font-size: 1.1rem; /* List item font size */
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 10px;
}

#about ul li:before {
    content: '\2022'; /* Bullet point character */
    position: absolute;
    left: 0;
    color: #28a745; /* Bullet point color */
}

/* Services Section */
#services {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light background color */
}

#services .display-4 {
    font-weight: bold;
    color: #333; /* Darker text color */
    margin-bottom: 50px;
}

.card {
    border: none;
    background-color: transparent;
}

.card-title {
    font-size: 1.8rem; /* Card title font size */
    font-weight: bold;
    color: #333; /* Darker text color */
}

.card-text {
    font-size: 1.1rem; /* Card text font size */
    color: #555; /* Slightly darker text color */
}

.card-body {
    padding: 30px;
    background-color: #fff; /* White background for cards */
    border-radius: 12px; /* Rounded corners for cards */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Rounded corners for images */
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: #fff; /* White background color */
}

#contact .display-4 {
    font-weight: bold;
    color: #333; /* Darker text color */
    margin-bottom: 50px;
}

.card-body h3,
.card-body h4 {
    font-weight: bold;
    color: #333; /* Darker text color */
    margin-bottom: 10px;
}

.card-body p {
    font-size: 1.1rem; /* Paragraph font size */
    color: #555; /* Slightly darker text color */
    margin-bottom: 5px;
}

.card-body .bi {
    font-size: 2rem; /* Icon size */
    margin-right: 10px;
    color: #28a745; /* Icon color */
}

.card-body iframe {
    border: none; /* Remove border from iframe */
    border-radius: 12px; /* Rounded corners for map */
    height: 300px; /* Set iframe height */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .masthead h1 {
        font-size: 3.5rem; /* Adjust masthead heading size */
    }
    
    #about .col-lg-6 {
        margin-bottom: 50px; /* Adjust margin bottom for about us section */
    }

    .card-body {
        padding: 20px; /* Reduced padding for card bodies */
    }

    .card-title {
        font-size: 1.5rem; /* Adjust card title font size */
    }

    .card-text {
        font-size: 1rem; /* Adjust card text font size */
    }
}

@media (max-width: 768px) {
    header .navbar.fixed-top {
        padding-top: 10px; /* Reduce padding for smaller screens */
        padding-bottom: 10px; /* Reduce padding for smaller screens */
    }

    .masthead h1 {
        font-size: 2.5rem; /* Adjust masthead heading size */
    }

    #about .col-lg-6 {
        order: 2; /* Change order for about us columns */
    }

    #about .align-self-center {
        margin-top: 30px; /* Adjust margin top for image in about us section */
    }

    .card-body {
        padding: 15px; /* Further reduced padding for card bodies */
    }

    .card-title {
        font-size: 1.2rem; /* Further adjust card title font size */
    }

    .card-text {
        font-size: 0.9rem; /* Further adjust card text font size */
    }
}
