/********** Template CSS **********/
:root {
    --primary: #00B074;
    --secondary: #2B9BFF;
    --light: #EFFDF5;
    --dark: #2B3940;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.center-container {
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}
.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00B074; /* Green border for a nice touch */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a soft shadow */
    display: block;
    margin: 10px auto; /* Centers the image */
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fills the space */
    border-radius: 50%; /* Keep it circular */
}
.profile-image input {
    margin-top: 10px; /* Add spacing between image and input */
    font-size: 14px;
}
/* Jobs Table Styling */
.jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
}

.jobs-table th, .jobs-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.jobs-table th {
    background-color: #00B074;
    color: white;
}

.jobs-table tr:hover {
    background-color: #f5f5f5;
}
/* Style for the dropdown */
.short-select {
    width: 200px; /* Adjust the width as needed */
    padding: 5px; /* Add padding for better appearance */
    border: 1px solid #ccc; /* Add a border */
    border-radius: 4px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background color */
    font-size: 14px; /* Adjust font size */
    cursor: pointer; /* Change cursor to pointer */
}

/* Style for the dropdown when hovered */
.short-select:hover {
    border-color: #00B074; /* Darker border on hover */
}

/* Style for the dropdown when focused */
.short-select:focus {
    outline: none; /* Remove default focus outline */
    border-color: #007bff; /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a subtle shadow */
}
button[type="submit"] {
    background-color: #00B074; /* Green background */
    color: white; /* White text */
    padding: 12px 24px; /* Spacing inside button */
    border: none; /* No border */
       font-size: 16px; /* Text size */
    cursor: pointer; /* Pointer cursor on hover */
   
}

button[type="submit"]:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-2px); /* Lift the button slightly */
}

button[type="submit"]:active {
    background-color: #388e3c; /* Even darker green when clicked */
    transform: translateY(0); /* Reset lifting on click */
}

button[type="submit"]:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 4px rgba(72, 196, 72, 0.5); /* Subtle focus shadow */
}
.recent-jobs {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 jobs per row by default */
    gap: 20px; /* Space between job cards */
}

/* For tablets (e.g., screens less than 992px wide) */
@media (max-width: 991.98px) {
    .recent-jobs {
        grid-template-columns: repeat(2, 1fr); /* 2 jobs per row */
    }
}

/* For mobile devices (e.g., screens less than 768px wide) */
@media (max-width: 767.98px) {
    .recent-jobs {
        grid-template-columns: 1fr; /* 1 job per row */
    }
}

 /* Navbar Styling */
 .navbar {
    min-height: 80px;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Brand/Logo Area */
.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

/* Nav Links */
.nav-link {
    font-weight: 600;
    color: #333 !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Desktop View */
@media (min-width: 992px) {
    .nav-link {
        margin: 0 5px;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 15px;
        left: 15%;
        background-color: var(--primary);
        transition: width 0.3s ease, left 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
        left: 15%;
    }
}

/* Mobile View */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
}

/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
.about-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}


/*** Category ***/
.cat-item {
    display: block;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border: 1px solid transparent;
    transition: .5s;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Job Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
    position: relative;
  }
  
  .team .person figure {
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .team .person img {
    transition: 0.3s all ease;
  }
  .circular-img {
    width: 200px; /* Adjust size as needed */
    height: 200px; /* Ensures a perfect circle */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    display: block; /* Removes any inline spacing issues */
    overflow: hidden; /* Prevents content from overflowing */
  }
  
  
  .team .person .person-contents {
    text-align: center;
  }
  
  .team .person .person-contents h3 {
    color: var(--heading-color);
    font-size: 24px;
  }
  
  .team .person .person-contents .position {
    color: var(--accent-color);
  }
  
  .team .person:hover img {
    transform: scale(1.05);
  }
  
  .team .person .social {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
  }
  
  .team .person .social a {
    display: block;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    background: var(--contrast-color);
    position: relative;
  }
  
  .team .person .social a>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .team .person .social a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}
.gallery-item {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background: #f9f9f9;
}
.gallery-item img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}
.download-arrow {
    display: block;
    margin: 10px 0;
    color: #00B074;
    text-decoration: none;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
}
.modal-content img {
    max-width: 100%;
    max-height: 80vh;
}
.close-btn {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}
.pagination {
    text-align: center;
    margin: 20px 0;
}
.pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    color: #00B074;
    border: 1px solid #00B074;
    border-radius: 5px;
}
.pagination a.active {
    background: #00B074;
    color: #fff;
}
.two-column-list {
    display: flex;
    flex-wrap: wrap;
    list-style-position: inside;
    padding: 0;
    column-gap: 20px;
}
.two-column-list li {
    width: 50%;
}