@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

body {
    font-family: 'Sora', sans-serif;
    background-color: #f8f8f8; /* Light background similar to the image */
    color: #333;
}

.nav-link {
    font-weight: bold;
    color: rgba(37, 37, 37, 1);
}
.nav-link:hover {
    color: rgba(243, 126, 82, 1);
}

.theme-bg {
    background-color: rgba(243, 126, 82, 1);
    color: #fff;
}
.theme-btn {
    background-color: rgba(243, 126, 82, 1);
    color: #fff;
    padding: 15px 30px;
}
.theme-btn:hover {
    background-color: rgb(239, 71, 8);
}
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.main-content {
    min-height: calc(100vh - 355px);
}

.hero-section {
    margin-top: 90px;
}
.hero-section img{
    width: 100%;
}
.hero-content {
    background-color: rgba(37, 37, 37, 1);
    color: #fff;
    padding: 20px 0;
}

.hero-content h1{
    font-weight: 700;
    font-size: 48px;
}

.stats-section {
    background-color: #f3f3f3; /* Lighter background for stats */
    padding: 30px 0;
    z-index: 5;
    border-radius: 1rem;
}


.stats-item h1 {
    color: rgba(243, 126, 82, 1);
    font-size: 48px;
    font-weight: 700;
}
.stats-item p {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}
.section-padding {
    padding: 80px 0;
}
.card-custom {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%; /* Ensure cards in a row have same height */
}

.about-icon {
    background: rgba(243, 126, 82, 1);
    padding: 20px;
    border-radius: 50%;
    color: #fff;
}

.card-custom:hover {
    transform: translateY(-5px);
}
.th-title {
    font-weight: 700;
    font-size: 48px;
    color: rgba(37, 37, 37, 1);
}
.th-subtitle {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: rgba(243, 126, 82, 1);
}

.service-card {
    background-color: rgba(243, 126, 82, 0.2); /* Light orange background */
    border: none;
    padding: 1.5rem;
    /*text-align: center;*/
}

.service-card .service-header{
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgb(255 209 192);
    padding-bottom: 15px;
}

.service-card i {
    color: rgba(243, 126, 82, 1); /* Darker orange icon color */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team {
    background-image: url("../img/teambg.png");
    background-repeat: no-repeat;
    background-size: 100% 280px;
    background-position-y: center;
    margin-top: 73px;
}

.team img{
    position: relative;
    bottom: 60px;

}

.faq-item .accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    border-radius: 0.5rem;
    margin-bottom: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item .accordion-button:not(.collapsed) {
    background-color: #ffede0; /* Light orange when expanded */
    color: rgba(243, 126, 82, 1);
}

.faq-note {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}

.foot-content {
    background-image: url("../img/footbg.png");
    padding: 30px;
    position: relative;
    z-index: 2;
    top: 132px;
    border-radius: 30px;
    height: 580px;
    background-repeat: no-repeat;
    background-position: center;
}
.top-footer .footbg {
    height: 132px;
    background-color: #333;
    position: relative;
}
.foot-info {
    font-weight: 400;
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
}

.footer {
    background-color: #333;
    color: #f8f8f8;
    padding: 60px 0 20px 0;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    color: rgb(222 222 222)
}
.footer-address {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    color: rgb(222 222 222)
}

.footer a:hover {
    color: rgba(243, 126, 82, 1);
}
.footer-icon {
    padding: 0 30px;
    font-size: 0;
}

.footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}
/* career page */
#career {
    padding-top: 160px;
    padding-bottom: 80px;
}
.car-subtitle {
    font-weight: 600;
    font-size: 24px;
}
.alert-career {
    background-color: #fff;
}
.alert-career .job-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}
.alert-career .job-desc {
    font-weight: 400;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    display: flex;
    align-items: center;
}
.alert-career .job-desc p{
    width: 80%;
}
.alert-career .job-desc a{
    width: 20%;
}

.upload-container {
    text-align: center;
}

.file-input-wrapper {
    border: 2px dashed #ff8c6b;
    padding: 20px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
    margin-top: 30px;
}

.file-input-wrapper:hover {
    background-color: #fffaf7; /* Slightly lighter on hover */
}

.choose-file-btn {
    font-size: 1.2rem;
    color: #ff8c6b; /* Text color matching the image */
    font-weight: 600;
    cursor: pointer;
    display: block; /* Ensures the text takes full width of the wrapper */
}

.info-text {
    color: #6c757d; /* Gray color for info text */
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.upload-cv-btn {
    background-color: #ff8c6b; /* Button background color matching the image */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    width: 100%; /* Make button full width of its container */
    transition: background-color 0.3s ease;
}
.theme-color {
    color: #ff8c6b!important;
}

.upload-cv-btn:hover {
    background-color: #e67d5c; /* Slightly darker on hover */
    color: #ffffff; /* Ensure text color remains white on hover */
}

/* contact page */
#contact {
    padding-top: 160px;
}

.contact-address {
    background: rgba(246, 223, 214, 1);
    padding: 100px;
}

.contact-address .address-box{
    min-height: 200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 51, 0.08);
}

.contact-address .address-box a{
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: rgba(37, 37, 37, 1);
}

.contact-address .address-box a:hover {
    color: #e67d5c;
}
/* Team page */
#team {
    padding-top: 160px;
    padding-bottom: 80px;
}

.team-title {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: rgba(37, 37, 37, 1);
    margin: 20px 0;
}

.team-card-1 {
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 51, 0.08);
    border-radius: 20px;
}

.team-card-1 .team-img{
    overflow: hidden;
    position: relative;
    height: 350px;
    border-radius: 20px 20px 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.team-card-1 .team-img .btn-overlay{
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    position: absolute;
    background: linear-gradient(180deg, rgba(243, 126, 82, 0) 0%, #F37E52 100%);
    height: 53px;
}
.team-card-1 .team-info{
    background-color: rgba(255, 255, 255, 1);
    min-height: 325px;
    padding: 15px;
    border-radius: 0 0 20px 20px ;
}
.team-card-1 .team-info .name{
    font-weight: 700;
    color: rgba(37, 37, 37, 1);
    font-size: 24px;
    margin-top: 10px;
}
.team-card-1 .team-info .designation{
    font-weight: 700;
    font-size: 16px;
    color: rgba(96, 96, 96, 1);
}
.team-card-1 .team-info .details{
    font-weight: 400;
    font-size: 18px;
    color: rgba(64, 64, 64, 1);
}

.text-limit-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.team-card-1 .team-info:hover .btn-overlay {
    opacity: 1;
}

.team-card-1:hover .btn-overlay {
    opacity: 1;
}
.read-more-link {
    color: rgba(243, 126, 82, 1);
    text-decoration: none;
    font-weight: 500;
}

.read-more-link:hover {
    text-decoration: underline;
}
.mm-card {
    border: 1px solid rgb(243 126 82 / 55%);
    background-color: #fff;
}
.management-image {
    padding: 30px;
    text-align: center;
}
.management-info {
    padding: 10px;
    text-align: center;
    line-height: 1;
}

.management-info .name{
    font-weight: 700;
    font-size: 24px;
    color: rgba(37, 37, 37, 1);
}
.management-info .designation{
    font-weight: 700;
    font-size: 16px;
    color: rgba(37, 37, 37, 1);
}
.management-info .details{
    font-weight: 400;
    font-size: 16px;
    color: rgba(37, 37, 37, 1);
}
.footer-title {
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(243, 126, 82, 1);
}

/* certification page*/
#certification {
    padding-top: 160px;
    padding-bottom: 80px;
}
.certificate-section {
    padding: 50px;
    background-color: #fff;
    margin-bottom: 60px;
}

/***** loader ******/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader img {
    width: 80px;
}

#service {
    padding-top: 160px;
    padding-bottom: 80px;
}

#about {
    padding-top: 80px;
    padding-bottom: 80px;
}

#about .banner {
    background-image: url("../img/about_banner.png");
    width: 100%;
    height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}
.banner-title {
    font-weight: 700;
    font-size: 64px;
    color: rgba(255, 255, 255, 1);
}
.breadcrumb .breadcrumb-item a{
    color: rgba(243, 126, 82, 1)!important;
    font-weight: bold;
}
.breadcrumb .active{
    color: rgb(255, 255, 255)!important;
    font-weight: bold;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.text-bg-theme {
    background-color: rgba(255, 237, 230, 1);
    color: #000;
}

.__lh2_3 {
    line-height: 2.3;
}
.about-bg {
    background-color: rgba(255, 248, 229, 1);
}

.feature-card {
    background-color: #ffffff; /* White background for cards */
    border-radius: 1rem; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    padding: 20px; /* Internal padding */
    text-align: left;
    height: 100%; /* Ensure all cards in a row have equal height */
    display: flex; /* Use flexbox for icon and text alignment */
    align-items: flex-start; /* Align items to the top */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* More pronounced shadow on hover */
}

.feature-card .icon-wrapper {
    background-color: #f7e9d7; /* Light beige background for icon */
    border-radius: 0.5rem; /* Rounded corners for icon background */
    padding: 12px; /* Padding around the icon */
    display: inline-flex; /* To center the icon within its background */
    align-items: center;
    justify-content: center;
    margin-right: 20px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.feature-card .icon-wrapper i {
    color: #ff7043; /* Orange color for icons */
    font-size: 1.8rem; /* Icon size */
}

.feature-card .content-wrapper {
    flex-grow: 1; /* Allow content to take remaining space */
}

.feature-card h4 {
    font-size: 20px; /* Feature title size */
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem; /* Description text size */
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0; /* Remove default paragraph margin */
}


.feature-list {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    margin-bottom: 20px;
}

.feature-list:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.feature-list .icon-wrapper {
    background-color: #f7e9d7; /* Light beige background for icon */
    border-radius: 0.5rem; /* Rounded corners for icon background */
    padding: 12px; /* Padding around the icon */
    display: inline-flex; /* To center the icon within its background */
    align-items: center;
    justify-content: center;
    margin-right: 20px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.feature-list .icon-wrapper i {
    color: #ff7043; /* Orange color for icons */
    font-size: 20px; /* Icon size */
}

.feature-list .content-wrapper {
    flex-grow: 1; /* Allow content to take remaining space */
}

.feature-list h4 {
    font-size: 20px; /* Feature title size */
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.feature-list p {
    font-size: 0.95rem; /* Description text size */
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0; /* Remove default paragraph margin */
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: transparent;
    border-bottom: 1px solid #ff7043;
}
.nav-tabs .nav-link {
    border: none;
}

.metrics-container {
    padding: 20px;
}
.metric-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee; /* Apply border-right to all for consistent spacing */
}
.metric-item:nth-child(even) {
    border-right: none; /* Remove border-right for even items (right column) */
}
.metric-item:nth-last-child(-n+2) {
    border-bottom: none; /* Remove border-bottom for the last two items (bottom row) */
}
.metric-label {
    color: rgba(243, 126, 82, 1); /* Orange-red color for labels */
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
}
.metric-value {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
}
.metric-value.currency {
    font-size: 1.5rem; /* Slightly smaller for currency */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section {
    }
    .hero-content h1 {
        font-size: 16px;
    }
    .theme-btn {
        font-size: 10px;
        margin: -30px 0 0 0;
    }
    .stats-section {
        margin-top: -30px;
        padding: 20px 0;
    }
    .stats-item {
        margin-bottom: 20px;
    }
    .section-padding {
        padding: 40px 0;
    }
    .alert-career .job-desc {
        text-align: justify;
    }
    .contact-address {
        padding: 30px;
    }
    .team {
        display: none;
    }

    .alert-career .job-desc {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .alert-career .job-desc p{
        width: 100%;
    }
    .alert-career .job-desc a{
        width: 50%;
    }
}

@media (max-width: 991px) {
    .team img {
        bottom: 47px;
    }
}
