.a-header {
    color: #fff;
    margin-left: 5px;
}

@media (min-width: 720px) {
    .navbar-brand {
        width: 260px
    }
}

.clientImg {
    width: 60% !important;
    height: 60% !important;
    border: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
}

.bg-color {
    background-color: #f5f5f5;
    padding: 15px;
}


.certificate-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.certificate-item:hover {
    transform: translateY(-10px);
}


.certificate-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid #ddd;
    border-radius: 15px;
}


.certificate-content {
    padding: 1rem;
    background-color: #f9f9f9;
}

.certificate-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.certificate-description {
    font-size: 1rem;
    color: #555;
    margin: 0;
}


@media (max-width: 768px) {
    .certificate-item {
        margin-bottom: 2rem;
    }

    .certificate-title {
        font-size: 1.1rem;
    }

    .certificate-description {
        font-size: 0.9rem;
    }
}

.career-container {
    background-color: #f4f7f9;
    /* Light background for contrast */
    padding: 5rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 20px !important;
}

.section-intro {
    font-size: 1.25rem;
    color: #7f8c8d;
    /* Soft gray for the introduction text */
    margin-bottom: 3rem;
}

.career-card {
    background-color: #ffffff;
    /* White background for the card */
    border-radius: 10px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow to keep rounded corners clean */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.career-card:hover {
    transform: scale(1.05);
    /* Zoom effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Stronger shadow on hover */
}

.career-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.career-card:hover .career-img {
    opacity: 0.8;
    /* Slight fade on hover */
}

.career-info {
    padding: 1.5rem;
}

.career-title {
    font-size: 1.5rem;
    color: #34495e;
    /* Darker color for the title */
    margin-bottom: 0.5rem;
}

.career-description {
    font-size: 1rem;
    color: #7f8c8d;
    /* Gray for description text */
    margin-bottom: 1rem;
}

.single-gallery {
    justify-content: center;
    width: fit-content;
    max-width: 1320px;
    flex-wrap: wrap;
    margin: 25px 25px !important;
}

.single-gallery img {
    width: 100%;
    height: 50%;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px;
}
.gallery-section {
    background-color: #f4f4f4; 
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-header {
    padding: 2rem 0;
}

.title-container h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.underline-effect {
    position: relative;
    display: inline-block;
}

.underline-effect::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 4px;
    background-color: #3498db; /* Highlight color */
    border-radius: 2px;
}

.highlight-heading-part {
    color: #e5b20a; /* Highlight color */
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery-item {
    max-width: 300px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.gallery-item-name {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 800;
    text-align: center;
}
 .gallery a, .gallery-item-name  {
    display: flex;
    justify-content: center;
}
.career-form-container, .career-info-container {
      width: 100% !important; 
    transition: .5s ease-in;
    /* background-color: #f5f5f5; */
}
.industry-sect .container .card-inner .box .icon {
    position: absolute;
    bottom: -.375rem;
    right: -.375rem;
    width: 5rem !important;
    height: 5rem !important;
    background: var(--clr);
    border-top-left-radius: 50%;
}
.foooter-text a{color: #fff;}
.foooter-text a:hover{color: #e5b20a;}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.pagination-link {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 16px;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.pagination-link.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination-link:hover {
    background-color: var(--app-secondary);
    color: #fff;
    border-color: var(--app-secondary);
}

.pagination-link.prev,
.pagination-link.next {
    font-weight: bold;
}

.pagination-link.disabled {
    color: #ccc;
    border-color: #ccc;
    pointer-events: none;
}
.dropdown_menuu {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 52px;
    min-width: 250px;
    perspective: 1000px;
    z-index: -1;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    grid-template-columns: repeat(1, 1fr);
    padding: 12px
}
.dropdown_menu li  .dropdown-list {
    border-bottom: none;
    padding: 10px 0;
    color: #6c757d;
}
.new_footer_top .f-title {
    margin-bottom: 30px;
    color: #ffffff !important;
}
.text-dark{color: #000;}
.text-white{color: #fff;}
.new_footer_top .f_widget.about-widget .f_list li a {
    color: #fff !important;
}
.contactAreaContainer {
    background-color: var(--app-secondary);
    position: relative;
    border-radius: 12px;
    margin: 50px auto;
    padding: 30px;
}
.p-60{padding: 0px 60px;}
.p-10{padding: 0px 15px;}
.card-image-services img {
    height: 100%;
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-size: cover;
}
.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: var(--app-secondary);
    border-color: var(--app-secondary);
    color: #fff;
    background: 0 0;
    border: 1px solid #e2e2eb;
    font-size: 24px;
}
.line-clamp3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.border-radius{border-radius: 20px;}
/* .key-point-container div img {
    width: 100px
} */
.icon-home {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
     box-shadow: 0 0
}
.cLogo-client {
    width: 280px !important;
    height: 200px;
}
.service-card .icon-wrapper img {
    width: 100%;
    border-radius: 50%;
    height: 106px;
}
.footer_bottom_text {
    background: var(--app-secondary);
    color: #fff
}
.contact-form-container input {
    border: 0;
    border: 1px solid #d3d3d3 !important;
    outline: 0;
    box-shadow: none;
    margin-top: 5px;
    border-radius: 5px !important;
    padding-left: 15px !important;
    font-size: 16px;
}
.contact-form-container textarea{
    border: 0;
    border: 1px solid #d3d3d3 !important;
    outline: 0;
    box-shadow: none;
    margin-top: 5px;
    border-radius: 5px !important;
    padding-left: 15px !important;
    font-size: 16px;
}
ul.parsley-errors-list {
    list-style: none;
    color: #ea5455;
    padding-left: 0;
    font-size: 0.857rem;
    margin: 0px;
}
@media only screen and (max-width: 768px) {
.navbar-brand {
    width: 130px !important;
}}