.navbar-brand {
    font-weight: bold;
    color: #f8f9fa !important;
    font-size: 1.5rem;
}

/* Navbar link hover effect */
.navbar-nav .nav-link {
    color: #f8f9fa !important;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: #343a40;
    border-radius: 5px;
}

/* Active link styling */
.navbar-nav .nav-item.active .nav-link {
    background-color: #495057;
    border-radius: 5px;
}

/* Navbar background color and padding */
.navbar {
    padding: 15px 0;
}

.navbar-toggler-icon {
    background-color: #f8f9fa;
}

.about_section {
    padding: 60px 0;
}

.about_section .row {
    align-items: center;
}

.about_section .img_container .img-box img {
    width: 100%;
}

.about_section .detail-box {
    background-color: #ffffff;
    padding: 45px 25px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    margin-left: -45px;
}

.about_section .detail-box p {
    margin-top: 5px;
}

.about_section .detail-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #f1db25;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
}

.about_section .detail-box a:hover {
    background-color: transparent;
    border-color: #f1db25;
    color: #f1db25;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about_section .detail-box {
        margin-left: 0;
        padding: 30px 20px;
    }
}


.service_section {
    background-color: #1c1c1c; /* Dark background for the entire section */
    padding: 60px 0;
}

.service_section .heading_container h2 {
    color: #ffffff; /* White text for the heading */
    font-size: 36px;
    margin-bottom: 30px;
    
}

.service_section .box {
    background-color: #ffffff; /* White background for each service box */
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service_section .box:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

.service_section .img-box {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.service_section .img-box svg {
    width: 50px;
    height: 50px;
    fill: #1c1c1c; /* Dark fill color for SVG */
}

.service_section .detail-box h6 {
    font-size: 18px;
    font-weight: bold;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.service_section .detail-box p {
    color: #666666; /* Light gray color for text */
    font-size: 14px;
    margin-bottom: 15px;
}

.service_section .detail-box a {
    text-decoration: none;
    color: #1c1c1c;
    font-weight: bold;
    border: 1px solid #1c1c1c;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.service_section .detail-box a:hover {
    background-color: #1c1c1c;
    color: #ffffff;
}


.info_section {
    background-color: #101010;
    color: #ffffff;
    padding: 75px 0 10px 0;
}

.info_section .row > div {
    margin-bottom: 25px;
}

.info_section h5 {
    margin-bottom: 25px;
    font-size: 24px;
}

.info_section .info_logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info_section .info_logo .navbar-brand {
    padding: 0;
    margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
    font-size: 24px;
    color: #ffffff;
}

.info_section .info_links ul {
    padding: 0;
}

.info_section .info_links ul li {
    list-style-type: none;
}

.info_section .info_links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.info_section .info_links ul li a:hover {
    color: #f1db25;
}

.info_section .info_contact {
    display: flex;
    flex-direction: column;
}

.info_section .info_contact a {
    color: #ffffff;
    margin-bottom: 10px;
    text-decoration: none;
}

.info_section .info_contact a i {
    font-size: 20px;
    margin-right: 5px;
}

.info_section .info_form form input {
    outline: none;
    border: none;
    width: 100%;
    padding: 7px 10px;
    border-radius: 30px;
}

.info_section .info_form form button {
    padding: 8px 35px;
    outline: none;
    border: none;
    color: #ffffff;
    background: #f1db25;
    border-radius: 30px;
    margin-top: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.info_section .info_form form button:hover {
    background: #e5c71a;
}

.info_section .info_form .social_box {
    margin-top: 25px;
    width: 100%;
    display: flex;
}

.info_section .info_form .social_box a {
    margin-right: 10px;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

.info_section .info_form .social_box a:hover {
    color: #f1db25;
}
