html,body{
    overflow-x: hidden !important;
}

/* Navbar */

.custom-navbar {
    font-family: 'Poppins', sans-serif;
    background-color: #fff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.custom-navbar .navbar-brand img {
    margin-right: 10px;
}

.custom-navbar .nav-link {
    font-size: 0.9rem;
    color: #2c3e50;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link i {
    color: #007bff;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover i {
    color: #0056b3;
}

.custom-navbar .nav-link span {
    margin-top: 0.5rem;
    font-weight: 600;
}

.custom-navbar .nav-link:hover span {
    color: #0056b3;
}

.custom-navbar .navbar-toggler {
    border-color: transparent;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2881, 81, 81, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* About Us Section */

.about-section {
    padding: 4rem 0;
    margin-top: 7rem;
    /* background-color: #f8f9fa; */
    /* Light background for modern look */
}

.about-imgs img {
    border-radius: 10px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    /* Dark and professional heading color */
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    /* Subtle text color */
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-highlight,
.about-target {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
    /* Use Bootstrap primary color for emphasis */
    margin-bottom: 1rem;
}

.about-description .text-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.about-description .text-link:hover {
    color: #0056b3;
    /* Slightly darker blue for hover effect */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Expertise Section */

.expertise-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.expertise-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    min-height: 270px;
    /* display: flex;
    flex-direction: column; */
    /* align-items: end; */
    /* justify-content: center; */
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 1rem;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

@media (min-width: 992px) {
    .card-img {
        height: 180px;
    }
}



/* Footer Section CSS */


.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c2bd23;
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-terms a {
    font-size: 0.85rem;
    color: #c2bd23;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-terms a:hover {
    color: #fff;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    font-size: 1.5rem;
    color: #c2bd23;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fff;
}

.footer-logo-img {
    max-width: 80px;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #c2bd23;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #999;
    padding-top: 1rem;
    color: #bbb;
}


.three-bd-banner {
    margin-top: 10rem;
}

.three-bd-banner .card {
    min-height: 200px;
    display: flex;
    justify-content: center;
}


.card-icon {
    font-size: 2.5rem;
    color: #c2bd23; /* Premium golden color */
    margin-bottom: 1rem;
    text-align: center;
}

/* Utilities Classes */

.obj-fit {
    object-fit: cover;
}

.txt-primary {
    color: #9d991c !important;
}