                                                                                                        @charset "UTF-8";

/*
Theme Name: Boimela
Author: pixel-plus
Author URI: https://themeforest.net/user/pixel-plus
Description: Boimela - Books Library ECommerce Store Html Template
Version: 1.0.0
*/


/*  CSS Index Here

01. Mixins
02. Variables
03. Buttons
04. Typography
05. About
06. Animation
07. Contact
08. Cta
09. Faq
10. Feature
11. Footer
12. Header
13. Helping
14. Hero
15. MeanMenu
16. News
17 Preloader
18. Section
19. Shop
20. Team
21. Testimonial

/*CSS Table Of Content Ends Here*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Moon+Dance&display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #E74D96;
    --header: #11112C;
    --text: #797979;
    --border: #E6E6E6;
    --border-2: #D4DCED;
    --border-3: #D0E1E7;
    --bg: #FFEFEF;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
    padding: 15px 20px;
    border-radius: 100px;
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn:before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--theme);
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}

.theme-btn:hover {
    color: var(--white);
    box-shadow: none;
}

.theme-btn:hover::before {
    width: 100%;
}

.theme-btn.style-2::before {
    background-color: var(--header);
}

.theme-btn.header-bg {
    background-color: var(--header);
}

.theme-btn.header-bg::before {
    background-color: var(--theme);
}

.theme-btn.white-bg {
    background-color: var(--white);
    color: var(--text);
}

.theme-btn.white-bg::before {
    background-color: var(--theme);
}

.theme-btn.white-bg:hover {
    color: var(--white);
}

.theme-btn.transparent-btn {
    background-color: transparent;
    color: var(--text);
    border: 1px solid rgba(92, 112, 126, 0.3);
}

.theme-btn.transparent-btn::before {
    background-color: var(--theme);
}

.theme-btn.transparent-btn:hover {
    color: var(--white);
}

@media (max-width: 767px) {
    .theme-btn {
        padding: 20px 32px;
    }
}

@media (max-width: 575px) {
    .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.theme-btn-2 {
    font-size: 16px;
    display: inline-block;
    font-weight: 700;
    color: var(--theme);
    text-transform: capitalize;
}

.theme-btn-2 i {
    margin-left: 10px;
}

.theme-btn-2:hover {
    color: var(--theme);
}


/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: url('/assets/img/logo/logo-bg.png') center center no-repeat;
    opacity: 0.05;
    background-size: 320px 300px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--header);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 120%;
}

h2 {
    font-size: 40px;
    line-height: 145%;
    font-weight: 700;
}

@media (max-width: 767px) {
    h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 145%;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

a:hover {
    color: var(--theme);
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.about-wrapper .about-image img {
    border-radius: 15px;
}

.about-wrapper .about-image {
    max-width: 728px;
    position: relative;
}

.about-wrapper .about-image .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-wrapper .about-image .video-box .video-btn {
    background-color: var(--white);
    color: var(--theme);
    display: inline-block;
    font-size: 16px;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
}

@media (max-width: 575px) {
    .about-wrapper .about-image .video-box .video-btn {
        width: 70px;
        height: 70px;
        font-size: 16px;
        line-height: 70px;
    }
}

.about-wrapper .about-image .video-box .ripple::before,
.about-wrapper .about-image .video-box .ripple::after {
    height: 90px;
    width: 90px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 575px) {
    .about-wrapper .about-image .video-box .ripple::before,
    .about-wrapper .about-image .video-box .ripple::after {
        width: 70px;
        height: 70px;
    }
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
}

.about-wrapper .about-content .link-btn {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    color: var(--theme);
    text-transform: capitalize;
    text-decoration: underline;
    margin-top: 25px;
}

.about-wrapper .about-content .link-btn i {
    transform: rotate(-40deg);
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.about-wrapper .about-content .link-btn:hover i {
    transform: rotate(0);
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.contact-wrapper .contact-left-items .contact-info-area-2 {
    padding: 30px;
    background-color: var(--theme);
    border-radius: 16px 16px 0px 0px;
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1199px) {
    .contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items {
        flex-wrap: wrap;
    }
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .icon {
    width: 55px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
    border: 2px dotted var(--white);
    border-radius: 50%;
    font-size: 30px;
    color: var(--white);
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .content p {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
    font-size: 22px;
    color: var(--white);
    text-transform: initial;
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
    color: var(--white);
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
    border: none !important;
}

.contact-wrapper .contact-left-items .video-image {
    position: relative;
}

.contact-wrapper .contact-left-items .video-image img {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 16px 16px;
}

.contact-wrapper .contact-left-items .video-image .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.contact-wrapper .contact-left-items .video-image .video-box .video-btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: var(--theme);
    background-color: var(--white);
}

.contact-wrapper .contact-left-items .video-image .video-box .ripple::before,
.contact-wrapper .contact-left-items .video-image .video-box .ripple::after {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
}

.contact-wrapper .contact-content {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .contact-wrapper .contact-content {
        margin-left: 0;
    }
}

.contact-wrapper .contact-content h2 {
    margin-bottom: 10px;
}

.contact-wrapper .contact-content .contact-form-items {
    margin-top: 30px;
}

.contact-wrapper .contact-content .contact-form-items .form-clt {
    display: grid;
    gap: 16px;
}

.contact-wrapper .contact-content .contact-form-items .form-clt span {
    color: var(--header);
    font-weight: 600;
    text-transform: capitalize;
}

.contact-wrapper .contact-content .contact-form-items .form-clt input,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    border: 1px solid #E5E5E5;
    color: var(--text);
    padding: 18px 20px;
    border-radius: 8px;
    outline: none;
    font-weight: 500;
}

.contact-wrapper .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
    font-weight: 500;
}

.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
}

.map-items .googpemap iframe {
    width: 100%;
    height: 710px;
}

@media (max-width: 767px) {
    .map-items .googpemap iframe {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .map-items .googpemap iframe {
        height: 400px;
    }
}

.common-newsletter-modal {
    border-radius: 0;
}

.common-newsletter-modal .close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
}

.common-newsletter-modal .modal-content {
    border: 0;
    border-radius: 10px;
}

.common-newsletter-modal .modal-content .offer-modal-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.common-newsletter-modal .offer-modal-right {
    text-align: center;
    padding: 30px 30px 20px 0;
}

@media (max-width: 500px) {
    .common-newsletter-modal .offer-modal-right {
        padding-right: 0;
    }
}

.common-newsletter-modal .offer-modal-right h3 {
    color: var(--black);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

@media (max-width: 500px) {
    .common-newsletter-modal .offer-modal-right h3 {
        font-size: 30px;
    }
}

.common-newsletter-modal .offer-modal-right p {
    line-height: 150%;
    padding: 14px 8px 30px 0;
}

@media (max-width: 500px) {
    .common-newsletter-modal .offer-modal-right p {
        padding: 8px 0px 20px 0;
    }
}

.common-newsletter-modal .offer-modal-right p span {
    color: var(--theme);
}

.common-newsletter-modal .offer-modal-right .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border-top-left-radius: 0;
    border-radius: 0 !important;
}

.common-newsletter-modal .offer-modal-right .input-group .form-control {
    height: 47px;
    border-radius: 10px !important;
}

.common-newsletter-modal .offer-modal-right .input-group .input-group-append {
    position: absolute;
    right: 4px;
    bottom: 4px;
}

.common-newsletter-modal .offer-modal-right .input-group .input-group-append .theme-btn {
    padding: 12px 40px;
    border-radius: 8px;
}

.common-newsletter-modal .offer-modal-right .check-boxed-modal {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 500px) {
    .common-newsletter-modal .offer-modal-right .check-boxed-modal {
        margin-top: 30px;
    }
}

.cta-banner-wrapper {
    background-attachment: fixed;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.cta-banner-wrapper .book-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .cta-banner-wrapper .book-shape img {
        width: 250px;
    }
}

@media (max-width: 991px) {
    .cta-banner-wrapper .book-shape {
        display: none;
    }
}

.cta-banner-wrapper .book-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .cta-banner-wrapper .book-shape-2 img {
        width: 250px;
    }
}

@media (max-width: 991px) {
    .cta-banner-wrapper .book-shape-2 {
        display: none;
    }
}

.cta-banner-wrapper .cta-content span {
    position: relative;
    color: var(--white);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 991px) {
    .cta-banner-wrapper .cta-content span {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .cta-banner-wrapper .cta-content span {
        font-size: 20px;
    }
    .cta-banner-wrapper .cta-content span img {
        width: 80px;
    }
}

.cta-banner-wrapper .cta-content span img {
    position: absolute;
    bottom: -10px;
    left: 0;
}

.cta-banner-wrapper .cta-content h2 {
    margin-top: 10px;
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .cta-banner-wrapper .cta-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .cta-banner-wrapper .cta-content h2 {
        font-size: 25px;
    }
    .cta-banner-wrapper .cta-content h2 br {
        display: block;
    }
}

.cta-banner-wrapper .cta-content .theme-btn {
    background-color: var(--white);
    color: var(--header);
    border: 1px solid transparent;
}

.cta-banner-wrapper .cta-content .theme-btn::before {
    background-color: var(--header);
}

.cta-banner-wrapper .cta-content .theme-btn:hover {
    border-color: var(--white);
    color: var(--white);
}

.cta-banner-wrapper-2 {
    background-attachment: fixed;
    border-radius: 20px;
}

.cta-banner-wrapper-2 .cta-content-wrappers {
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .cta-banner-wrapper-2 .cta-content-wrappers {
        padding: 0;
        flex-direction: column;
        text-align: center;
    }
}

.cta-banner-wrapper-2 .cta-content-wrappers .cta-texts span {
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .cta-banner-wrapper-2 .cta-content-wrappers .cta-texts h2 br {
        display: block;
    }
}

.cta-banner-wrapper-2 .cta-content-wrappers .ctx-btn .theme-btn {
    color: var(--header);
}

.cta-banner-wrapper-2 .cta-content-wrappers .ctx-btn .theme-btn:hover {
    color: var(--white);
}

.faq-left .nav {
    display: grid;
}

@media (max-width: 991px) {
    .faq-left .nav {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
}

.faq-left .nav .nav-link {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--header);
}

.faq-left .nav .nav-link.active {
    color: var(--theme);
}

.faq-content .accordion-item {
    border: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
}

.faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 700;
    color: var(--theme);
    letter-spacing: -0.2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--white);
    padding: 25px 30px 0;
    text-transform: capitalize;
    font-size: 20px;
    border: none;
}

.faq-content .accordion-item .accordion-header .accordion-button::after {
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    background-image: url(../../assets/img/chevron-right.svg);
    color: var(--theme);
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url(../../assets/img/chevron-down.svg);
    font-weight: 500;
    color: var(--theme);
    transform: rotate(0);
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    padding: 25px 30px;
    color: var(--header);
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
    padding-left: 30px;
    padding-top: 15px;
    color: var(--text);
    background-color: var(--white);
    padding-bottom: 25px;
    font-weight: 500;
}

@media (max-width: 1399px) {
    .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 30px;
    }
}

.feature-wrapper {
    background-color: var(--bg);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 1399px) {
    .feature-wrapper {
        flex-wrap: wrap;
        gap: 25px;
        padding: 45px 25px;
    }
}

.feature-wrapper .feature-box-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-wrapper .feature-box-items:not(:last-child) {
    border-right: 1px solid #DFDCDC;
    padding-right: 60px;
}

@media (max-width: 1600px) {
    .feature-wrapper .feature-box-items:not(:last-child) {
        border: none !important;
        padding: 0;
    }
}

.feature-wrapper .feature-box-items .content h3 {
    font-size: 20px;
}

.feature-wrapper .feature-box-items .content p {
    font-weight: 500;
}

.feature-wrapper .feature-box-items .icon {
    width: 84px;
    height: 84px;
    background-color: var(--theme);
    border-radius: 8px;
    font-size: 50px;
    line-height: 95px;
    text-align: center;
    color: var(--white);
}

.footer-widget-wrapper {
    padding: 60px 0 50px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .footer-widget-wrapper {
        padding: 50px 0 40px;
    }
}

.footer-widget-wrapper .single-footer-widget {
    margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
    font-weight: bold;
    color: var(--header);
    font-size: 23px;
    font-weight: 500;
    display: inline-block;
}

.footer-widget-wrapper .single-footer-widget .widget-head p {
    display: inline-block;
    color: var(--text);
    font-weight: 400;
    font-size: 16px;
    position: relative;
    margin-top: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-content {
    margin-top: 0px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .text {
    margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .text p {
    font-size: 14px;
    font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .footer-content .text a {
    font-size: 22px;
    font-weight: 500;
    color: var(--header);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list {
    margin-top: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li {
    font-size: 18px;
    font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li:not(.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li:last-child) {
    margin-bottom: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li i {
    color: var(--header);
    margin-right: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li a {
    color: #525252;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li a:hover {
    color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li:hover i {
    animation: icon-bounce 0.8s 1;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input input {
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(1, 15, 28, 0.1);
    border: none;
    outline: none;
    width: 100%;
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 5px;
    color: #7D7F82;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
    color: #7D7F82;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    color: var(--white);
    width: 100px;
    height: 50px;
    border-radius: 5px;
    background-color: var(--theme);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn:hover {
    background-color: var(--header);
    color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item {
    margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item h6 {
    font-size: 16px;
    font-weight: 500;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon {
    margin-top: 20px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon {
        margin-top: 20px;
    }
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    display: block;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    text-align: center;
    background-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-items li {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
    color: var(--text);
    font-weight: 400;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.footer-widget-wrapper .single-footer-widget .list-items li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 30px;
    background-color: var(--text);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
    color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a::after {
    background-color: var(--theme);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
}

.footer-bottom .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.footer-bottom .footer-wrapper p {
    color: #7E7F81;
    text-transform: capitalize;
}

.footer-bottom .footer-wrapper p span {
    color: var(--theme);
}

.footer-bottom .footer-wrapper .bottom-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-top-section {
    position: relative;
    z-index: 9;
    background: var(--white);
    border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}

.header-top-section .container-fluid {
    padding: 0 100px;
}

@media (max-width: 1199px) {
    .header-top-section .container-fluid {
        padding: 0 60px;
    }
}

@media (max-width: 991px) {
    .header-top-section .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 767px) {
    .header-top-section .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 575px) {
    .header-top-section .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 1399px) {
    .header-top-section {
        display: none;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-top-wrapper .contact-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .contact-list li {
    color: var(--header);
    font-size: 15px;
}

.header-top-wrapper .contact-list li i {
    color: var(--theme);
    margin-right: 10px;
}

.header-top-wrapper .contact-list li:not(:last-child) {
    border-right: 1px solid rgba(1, 15, 28, 0.1);
    padding-right: 20px;
}

.header-top-wrapper .contact-list li a {
    color: var(--header);
}

.header-top-wrapper .flag-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .flag-wrapper .flag-wrap {
    position: relative;
    width: 70px;
}

@media (max-width: 1399px) {
    .header-top-wrapper .flag-wrapper .flag-wrap {
        display: none;
    }
}

.header-top-wrapper .flag-wrapper .flag-wrap .nice-select {
    background: transparent;
    border: none;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}

.header-top-wrapper .flag-wrapper .flag-wrap .nice-select span {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--header);
}

.header-top-wrapper .flag-wrapper .flag-wrap .nice-select .list li {
    color: var(--header);
}

.header-top-wrapper .flag-wrapper .flag-wrap .nice-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    height: 7px;
    margin-top: -6px;
    width: 7px;
    right: -5px;
}

.header-top-wrapper .flag-wrapper .flag-wrap .nice-select.style-2 span {
    text-transform: uppercase;
}

.header-top-wrapper .flag-wrapper .flag-wrap .nice-select.style-2::after {
    right: 16px;
}

.header-top-wrapper .flag-wrapper .flag-wrap .flag {
    position: absolute;
    top: 9px;
    left: 15px;
    z-index: 1;
}

@media (max-width: 767px) {
    .header-top-wrapper .flag-wrapper .flag-wrap .flag {
        display: none;
    }
}

.header-top-wrapper .flag-wrapper .content button.account-text {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--header);
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 35px;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 12px;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    border-top: 6px solid var(--theme);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    width: 100%;
}

.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li.active>a {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:hover>a {
    color: var(--theme) !important;
    margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
    width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -100px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0px !important;
    line-height: initial;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before,
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
    display: none;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    background: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.header-main .main-menu ul li:hover>a {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .header-right {
    gap: 40px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .header-right .search-icon {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .header-main .header-right .search-icon {
        display: none;
    }
}

@media (max-width: 575px) {
    .header-main .header-right .search-icon {
        display: initial;
    }
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: static;
    background: transparent;
    z-index: 9999;
}

.header-1 .container-fluid {
    padding: 0 90px;
}

@media (max-width: 1199px) {
    .header-1 .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 500px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 500px) {
    .header-1 .header-main .logo .headero-logo img {
        width: 135px;
    }
}

.header-1 .header-main .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 500px) {
    .header-1 .header-main .header-right {
        gap: 20px;
    }
}

.header-1 .header-main .header-right .search-widget form {
    width: 100%;
    position: relative;
}

.header-1 .header-main .header-right .search-widget form input {
    background: #f8f8f8;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px;
    width: 100%;
    width: 370px;
    border: none;
    color: rgb(118, 122, 125);
    border: 1px solid rgba(1, 15, 28, 0.1);
    border-radius: 5px;
}

.header-1 .header-main .header-right .search-widget form button {
    position: absolute;
    right: 14px;
    top: 0;
    height: 100%;
    color: rgba(85, 88, 91, 0.5);
}

@media (max-width: 1399px) {
    .header-1 .header-main .header-right .search-widget {
        display: none;
    }
}

.header-1 .header-main .header-right .search-icon.style-2 {
    display: none;
}

.header-1 .header-main .header-right .search-icon.style-2 i {
    font-size: 20px;
}

@media (max-width: 575px) {
    .header-1 .header-main .header-right .search-icon.style-2 {
        display: initial;
    }
}

.header-1 .header-main .header-right .header-icon {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1399px) {
    .header-1 .header-main .header-right .header-icon {
        display: none;
    }
}

.header-1 .header-main .header-right .header-icon li a {
    color: var(--header);
    position: relative;
}

.header-1 .header-main .header-right .header-icon li a i {
    font-size: 20px;
}

.header-1 .header-main .header-right .header-icon li a .number {
    position: absolute;
    top: -9px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50px;
    line-height: 18px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 10px;
    font-weight: 400;
}

.header-1 .header-main .header-right .menu-cart {
    position: relative;
}

@media (max-width: 1199px) {
    .header-1 .header-main .header-right .menu-cart {
        display: none;
    }
}

@media (max-width: 575px) {
    .header-1 .header-main .header-right .menu-cart {
        display: initial;
    }
}

.header-1 .header-main .header-right .menu-cart .cart-box {
    background: var(--white) none repeat scroll 0 0;
    box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
    padding: 5px 20px 0px;
    position: absolute;
    left: -250px;
    top: 200%;
    transform: rotateX(90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 340px;
    border-radius: 10px;
    z-index: 9999;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li img {
    width: 90px;
    height: 90px;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product .cart-ctx {
    width: 90%;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product .cart-ctx a {
    padding: 0;
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product .cart-ctx span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-top: 10px;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product i {
    display: inline-block;
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 30px;
    background-color: var(--theme);
    text-align: center;
}

.header-1 .header-main .header-right .menu-cart .cart-box .shopping-items {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-1 .header-main .header-right .menu-cart .cart-box .shopping-items span {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    text-transform: capitalize;
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button {
    margin-top: 20px;
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn {
    padding: 14px 28px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--header);
    color: var(--header);
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn::before {
    background-color: var(--theme);
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn:hover {
    color: var(--white);
    border-color: transparent;
}

.header-1 .header-main .header-right .menu-cart .cart-icon {
    position: relative;
}

.header-1 .header-main .header-right .menu-cart .cart-icon::before {
    position: absolute;
    top: -7px;
    right: -8px;
    content: "13";
    width: 20px;
    line-height: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: var(--theme);
    color: var(--white);
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}

.header-1 .header-main .header-right .menu-cart .cart-icon i {
    color: var(--header);
    font-size: 20px;
}

.header-1 .header-main .header-right .menu-cart:hover .cart-box {
    transform: rotateX(0deg);
    visibility: visible;
}

.header-1 .header-main .sidebar__toggle {
    color: var(--header);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 .header-main .logo .header-logo-3 {
    display: none;
}

.sticky.header-1 .header-main .header-right .contact-items .content span {
    color: var(--text);
}

.sticky.header-1 .header-main .header-right .contact-items .content h6 a {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select span {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select .list li {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
}

.sticky.header-1 .header-main .header-right .social-icon {
    gap: 10px;
}

.sticky.header-1 .header-main .header-right .social-icon span {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .social-icon a {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .social-icon a:hover {
    color: var(--theme);
}

.sticky.header-1 .header-main .header-right .search-icon {
    color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li a {
    color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
    color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li:hover>a {
    color: var(--theme);
}

.sticky.header-1 .header-main .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.sticky.header-1 .header-main .sidebar__toggle {
    color: var(--header);
}

.header-logo {
    display: block;
    /* Default state */
}

.header-logo img,
.header-logo-2 img {
    height: 70px;
    width: auto;
    /* max-height: 100px; */
    object-fit: contain;
}

.footer-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    margin-left: 10px;
}

.header-logo-2 {
    display: none;
    /* Hidden by default */
}

.sticky.header-1 .header-logo {
    display: none !important;
    /* Hide first logo when sticky */
}

.sticky.header-1 .header-logo-2 {
    display: block !important;
    /* Show second logo when sticky */
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 80px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--text);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__wrapper .theme-btn {
    width: 100%;
    padding: 12px 16px;
}

.offcanvas__wrapper .theme-btn i {
    margin-left: 30px;
}

.offcanvas__wrapper .theme-btn:hover span {
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.side_bar {
    position: fixed;
    top: 0;
    right: 0px;
    width: 420px;
    height: 100%;
    background-color: var(--white);
    padding: 40px;
    padding-top: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: var(--box-shadow);
    z-index: 99999;
    overflow-y: scroll;
}

@media (max-width: 470px) {
    .side_bar {
        width: 350px;
    }
}

.side_bar .login-sidebar .form-clt {
    position: relative;
    margin-bottom: -10px;
}

.side_bar .login-sidebar .form-clt span {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 10px;
}

.side_bar .login-sidebar .form-clt input {
    border: 1px solid #bbb;
    width: 100%;
    outline: none;
    padding: 12px 20px;
    line-height: 1;
    position: relative;
}

.side_bar .login-sidebar .form-clt .icon {
    position: absolute;
    right: 20px;
    top: 50px;
}

.side_bar .login-sidebar .theme-btn {
    background-color: var(--theme);
    border-radius: 0;
    width: 100%;
}

.side_bar .login-sidebar .from-cheak-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.side_bar .login-sidebar .from-cheak-items p {
    color: var(--text);
}

.side_bar .login-sidebar .from-cheak-items .form-check-input[type=radio] {
    border-radius: 50%;
    margin-top: 8px;
}

.side_bar .login-sidebar .text {
    text-align: center;
    font-weight: 500;
    color: var(--text);
    margin-top: 15px;
}

.side_bar .login-sidebar .social-item {
    margin-top: 15px;
}

.side_bar .login-sidebar .social-item .facebook-text {
    padding: 14px 20px;
    line-height: 1;
    text-transform: uppercase;
    background-color: var(--theme);
    color: var(--white);
    width: 100%;
    display: inline-block;
    position: relative;
    text-align: center;
}

.side_bar .login-sidebar .social-item .facebook-text img {
    position: absolute;
    top: 10px;
    left: 14px;
}

.side_bar .login-sidebar .social-item .facebook-text.google-text {
    background-color: var(--theme);
    margin-top: 10px;
}

.side_bar .login-sidebar .social-item .facebook-text.google-text.style-2 {
    background-color: var(--theme);
}

.side_bar .login-sidebar .user-icon-box {
    text-align: center;
    margin-top: 20px;
}

.side_bar .login-sidebar .user-icon-box p {
    font-weight: 500;
    font-size: 14px;
    color: var(--header);
    margin-top: 10px;
}

.side_bar .login-sidebar .user-icon-box a {
    display: inline-block;
    text-transform: uppercase;
}

.side_bar .x-mark-icon {
    position: absolute;
    right: 40px;
    top: 25px;
    text-align: center;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    color: var(--header);
}

.side_bar .x-mark-icon:hover {
    transform: rotate(90deg);
}

.side_bar p {
    color: var(--white);
}

.side_bar .cart-title {
    margin-bottom: 20px;
}

.side_bar .cart-title h4 {
    color: var(--header);
}

.side_bar_hidden {
    visibility: hidden;
    opacity: 0;
    right: -30px;
}

.error-items {
    text-align: center;
}

.error-items .error-image {
    max-width: 690px;
    margin: 0 auto;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    margin-top: 30px;
    font-size: 60px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .error-items h2 {
        font-size: 44px;
        line-height: 125%;
    }
}

@media (max-width: 575px) {
    .error-items h2 {
        font-size: 34px;
        line-height: 120%;
    }
}

.error-items h2 span {
    font-weight: 400;
    color: var(--theme);
}

.error-items p {
    font-size: 18px;
    font-weight: 500;
    color: var(--header);
    margin-bottom: 40px;
}

.breadcrumb-wrapper {
    padding: 173px 0;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper {
        padding: 150px 0;
    }
}

@media (max-width: 991px) {
    .breadcrumb-wrapper {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .breadcrumb-wrapper {
        padding: 70px 0;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--header);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 36px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--theme);
    text-transform: capitalize;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--header);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--header);
    font-size: 12px;
}

.error-items {
    text-align: center;
}

.error-items .error-image {
    max-width: 690px;
    margin: 0 auto;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    margin-top: 30px;
    font-size: 60px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .error-items h2 {
        font-size: 44px;
        line-height: 125%;
    }
}

@media (max-width: 575px) {
    .error-items h2 {
        font-size: 34px;
        line-height: 120%;
    }
}

.error-items h2 span {
    font-weight: 400;
    color: var(--theme);
}

.error-items p {
    font-size: 18px;
    font-weight: 500;
    color: var(--header);
    margin-bottom: 40px;
}

.bd-header__category-nav .category__items-2 {
    position: absolute;
    left: 0;
    width: 98%;
    z-index: 10;
    max-width: 350px;
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 0 0 8px 8px;
}

.bd-category__click {
    height: 60px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    color: var(--theme);
    width: 200px;
    border: 1px solid #E5E5E5;
    text-transform: capitalize;
    font-size: 18px;
    position: relative;
    gap: 15px;
    cursor: pointer;
}

.bd-category__click.items-open:before {
    transform: rotate(180deg);
}

.bd-category__click:before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    right: 20px;
}

.bd-category__click span {
    font-weight: 600;
}

.bd-category__click span i {
    margin-right: 10px;
}

.bd-category__click.style-2,
.bd-category__click.style-3,
.bd-category__click.style-4 {
    background-color: var(--white);
}

.category-item ul li:not(:last-child) {
    border-bottom: 1px solid #E5E5E5;
}

.category-item ul li a {
    display: flex;
    color: var(--header);
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    line-height: 1;
    font-weight: 400;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.category-item ul li:hover {
    background-color: var(--theme);
    color: var(--white);
}

.category-item ul li:hover a {
    color: var(--white);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ml-50 {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .ml-50 {
        margin-left: 0;
    }
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.array-button .array-prev {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    border: 2px solid var(--white);
}

.array-button .array-prev:hover {
    background-color: var(--header);
    color: var(--white);
}

.array-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 50%;
    border: 2px solid var(--white);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.array-button .array-next:hover {
    background-color: var(--header);
    color: var(--white);
}

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

.mt-60 {
    margin-top: 55px;
}

.mb-40 {
    margin-bottom: 40px;
}


/* Background utility class */

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}


/* Nice Select Custom Styling - Corrected Version */

.nice-select {
    background-color: var(--white, #ffffff);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 6px;
    padding: 12px 16px;
    width: 100%;
    height: auto;
    min-height: 50px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: var(--text, #333333);
    transition: all 0.3s ease;
}

.nice-select:focus,
.nice-select:hover {
    border-color: var(--theme, #007bff);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.nice-select .current {
    margin-right: 30px;
    color: var(--text, #333333);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nice-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text, #333333);
    transition: transform 0.3s ease;
}

.nice-select.open::after {
    transform: translateY(-50%) rotate(180deg);
}

.nice-select.open .list {
    background: var(--white, #ffffff);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    position: absolute;
    left: 0;
    top: 100%;
}

.nice-select .list {
    display: none;
}

.nice-select.open .list {
    display: block;
}

.nice-select .option {
    padding: 12px 16px;
    color: var(--text, #333333);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.nice-select .option:hover {
    background-color: var(--bg, #f8f9fa);
    color: var(--header, #333333);
}

.nice-select .option.selected {
    background-color: var(--theme, #007bff);
    color: var(--white, #ffffff);
    font-weight: 500;
}

.nice-select .option.selected.focus,
.nice-select .option.focus {
    background-color: var(--theme, #007bff);
    color: var(--white, #ffffff);
    outline: none;
}

.nice-select .option:first-child {
    border-radius: 6px 6px 0 0;
}

.nice-select .option:last-child {
    border-radius: 0 0 6px 6px;
}


/* Form control styling to match */

.form-clt select,
.form-clt input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 6px;
    font-size: 16px;
    color: var(--text, #333333);
    background-color: var(--white, #ffffff);
    transition: all 0.3s ease;
}

.form-clt select:focus,
.form-clt input:focus {
    border-color: var(--theme, #007bff);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-clt label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--header, #333333);
}


/* Responsive adjustments */

@media (max-width: 767px) {
    .nice-select {
        font-size: 14px;
        padding: 10px 14px;
        min-height: 45px;
    }
    .nice-select .option {
        padding: 10px 14px;
        font-size: 14px;
    }
}


/* Page navigation styling (keeping your existing styles) */

.page-nav-wrap {
    margin-top: 50px;
}

.page-nav-wrap ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1199px) {
    .page-nav-wrap ul {
        flex-wrap: wrap;
    }
}

.page-nav-wrap ul li .previous {
    padding: 12px 16px;
    background-color: transparent;
    font-weight: 600;
    color: var(--header);
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .previous:hover {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap ul li .next {
    padding: 12px 16px;
    background-color: var(--theme);
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .next:hover {
    background-color: var(--bg);
    color: var(--header);
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    padding: 8px 19px;
    background: var(--bg);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    color: var(--header);
    border-radius: 4px;
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 0px;
        width: 50px;
        height: 50px;
        line-height: 35px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

.form-check-input:checked {
    background-color: var(--theme) !important;
    border-color: var(--theme) !important;
}

.mb-40 {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .mb-40 {
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .mb-40 {
        margin-bottom: 25px;
    }
}

.pt-100 {
    padding-top: 100px;
}

@media (max-width: 991px) {
    .pt-100 {
        padding-top: 80px;
    }
}

.pb-145 {
    padding-bottom: 145px;
}

@media (max-width: 991px) {
    .pb-145 {
        padding-bottom: 80px;
    }
}

.footer-bg {
    background-color: var(--header);
}

.margin-bottom-30 {
    margin-bottom: -30px;
}

.section-bg {
    background-color: var(--bg);
}

.cursor-follower {
    position: fixed;
    background: var(--theme);
    border: 1px solid var(--theme);
    width: 15px;
    height: 15px;
    border-radius: 100%;
    z-index: 999999;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    transform: translate(2px, 2px);
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.hero-1 {
    position: relative;
    padding: 170px 0 260px;
}

@media (max-width: 1199px) {
    .hero-1 {
        padding: 100px 0 0;
    }
}

@media (max-width: 991px) {
    .hero-1 {
        padding: 80px 0 0;
    }
}

.hero-1 .book-shape {
    position: absolute;
    left: 8.5%;
    bottom: -30px;
}

@media (max-width: 1199px) {
    .hero-1 .book-shape {
        display: none;
    }
}

.hero-1 .book-shape-2 {
    position: absolute;
    top: 26%;
    right: 2%;
}

@media (max-width: 1199px) {
    .hero-1 .book-shape-2 {
        display: none;
    }
}

.hero-1 .girl-img {
    position: absolute;
    bottom: -30px;
    right: 8.5%;
}

.hero-1 .girl-img img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1600px) {
    .hero-1 .girl-img {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .hero-1 .girl-img {
        position: static;
    }
}

.hero-1 .hero-main-wrapper .hero-content h4 {
    color: var(--theme);
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .hero-1 .hero-main-wrapper .hero-content h4 {
        font-size: 18px;
    }
}

.hero-1 .hero-main-wrapper .hero-content h4 span {
    background-color: var(--header);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

@media (max-width: 575px) {
    .hero-1 .hero-main-wrapper .hero-content h4 span {
        margin-left: 5px;
        font-size: 10px;
    }
}

.hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 80px;
    color: var(--white);
    margin-bottom: 45px;
}

.hero-1 .hero-main-wrapper .hero-content h1 .line-shape {
    position: relative;
    color: var(--theme);
}

.hero-1 .hero-main-wrapper .hero-content h1 .line-shape img {
    position: absolute;
    width: 95%;
    bottom: -30px;
    left: 10px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-main-wrapper .hero-content h1 .line-shape img {
        bottom: -20px;
    }
}

@media (max-width: 1399px) {
    .hero-1 .hero-main-wrapper .hero-content h1 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-main-wrapper .hero-content h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-main-wrapper .hero-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-main-wrapper .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-main-wrapper .hero-content h1 {
        font-size: 28px;
    }
}

.hero-1 .hero-main-wrapper .hero-content p {
    color: var(--white);
}

@media (max-width: 991px) {
    .hero-1 .hero-main-wrapper .hero-content p {
        max-width: 500px;
    }
    .hero-1 .hero-main-wrapper .hero-content p br {
        display: none;
    }
}

.hero-1 .hero-main-wrapper .hero-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-main-wrapper .hero-btn {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn {
    background-color: var(--white);
    padding: 15px 20px;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn:hover {
    color: var(--white);
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn.style-2 {
    background-color: var(--theme);
    color: var(--white);
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn.style-2::before {
    background-color: var(--white);
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn.style-2:hover {
    color: var(--header);
}

.hero-2 {
    position: relative;
    background-color: var(--bg);
}

.hero-2 .book-shape,
.hero-2 .bg-shape1,
.hero-2 .book-shape-2 {
    position: absolute;
}

.hero-2 .book-shape {
    left: 0;
    bottom: -30px;
}

@media (max-width: 1199px) {
    .hero-2 .book-shape {
        display: none;
    }
}

.hero-2 .book-shape-2 {
    top: 23%;
    right: 33.5%;
    z-index: 9;
}

@media (max-width: 1199px) {
    .hero-2 .book-shape-2 {
        display: none;
    }
}

.hero-2 .bg-shape1 {
    bottom: 0;
    right: 0;
}

@media (max-width: 1600px) {
    .hero-2 .bg-shape1 {
        right: -9.6%;
    }
}

@media (max-width: 1199px) {
    .hero-2 .bg-shape1 {
        display: none;
    }
}

.hero-2 .hero-items .hero-content {
    padding-top: 190px;
    padding-bottom: 250px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-items .hero-content {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-items .hero-content {
        padding: 80px 0;
    }
}

.hero-2 .girl-image {
    position: absolute;
    bottom: 0;
}

.hero-2 .girl-image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .hero-2 .girl-image {
        position: static;
    }
}

.hero-2 .hero-content h6 {
    color: var(--theme);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.hero-2 .hero-content h1 {
    position: relative;
    color: var(--header);
    font-family: "Inter", sans-serif;
    font-size: 74px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 30px;
    z-index: 2;
}

.hero-2 .hero-content h1 span {
    color: var(--theme);
    position: relative;
}

.hero-2 .hero-content h1 span img {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 35px;
    }
}

.hero-2 .hero-content p {
    margin: 40px 0;
}

.hero-2 .hero-content .form-clt {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content .form-clt {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.hero-2 .hero-content .form-clt .theme-btn {
    padding: 15px 20px;
    background-color: var(--white);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.hero-2 .hero-content .form-clt .theme-btn:hover {
    color: var(--white);
}

.hero-2 .hero-content .form-clt .theme-btn.style-2 {
    background-color: var(--theme);
    color: var(--white);
}

.hero-2 .hero-content .form-clt .theme-btn.style-2:hover {
    color: var(--header);
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav>ul .homemenu-items {
        flex-wrap: wrap;
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
    position: relative;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav>ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px;
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.news-card-items {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(92, 112, 126, 0.2);
}

.news-card-items .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-items .news-image .post-box {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: var(--theme);
    color: var(--white);
    padding: 10px 12px;
    border-radius: 8px;
    line-height: 1;
    z-index: 9;
}

.news-card-items .news-image img {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 20px 20px 0 20px;
}

.news-card-items .news-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-card-items .news-content {
    padding: 25px 30px;
}

.news-card-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.news-card-items .news-content ul li {
    font-size: 14px;
    font-weight: 500;
}

.news-card-items .news-content ul li i {
    color: var(--theme);
    margin-right: 8px;
}

.news-card-items .news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.news-card-items .news-content h3 a:hover {
    color: var(--theme);
}

.news-card-items .news-content .theme-btn-2 {
    color: var(--text);
    font-weight: 600;
}

.news-card-items .news-content .theme-btn-2:hover {
    color: var(--theme);
}

.news-card-items.style-2 {
    border: none;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.news-card-items:hover .news-image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-card-items:hover .news-image img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-standard-wrapper .news-standard-items {
    border: 1px solid #E5E5E5;
    padding: 30px;
    border-radius: 10px;
}

.news-standard-wrapper .news-standard-items:not(:last-child) {
    margin-bottom: 20px;
}

.news-standard-wrapper .news-standard-items .news-thumb {
    position: relative;
}

.news-standard-wrapper .news-standard-items .news-thumb img {
    width: 100%;
    height: 100%;
}

.news-standard-wrapper .news-standard-items .news-thumb .post {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--theme);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 8px;
}

.news-standard-wrapper .news-standard-items .news-content {
    margin-top: 20px;
    position: relative;
    z-index: 9;
}

.news-standard-wrapper .news-standard-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .news-standard-wrapper .news-standard-items .news-content ul {
        gap: 20px;
    }
}

.news-standard-wrapper .news-standard-items .news-content ul li {
    font-size: 16px;
    font-weight: 500;
}

.news-standard-wrapper .news-standard-items .news-content ul li i {
    color: var(--theme);
    margin-right: 5px;
}

.news-standard-wrapper .news-standard-items .news-content h3 {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 30px;
}

@media (max-width: 575px) {
    .news-standard-wrapper .news-standard-items .news-content h3 {
        font-size: 26px;
        line-height: 125%;
    }
}

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: transparent;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--theme) 4.85%, rgba(84, 62, 232, 0) 96.39%);
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
    display: inline-block;
    font-size: 22px;
}

.main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: var(--white);
    font-size: 16px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border: 1px solid #E5E5E5;
    border-radius: 4px;
}

.main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    color: var(--theme);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 0 4px 4px 0;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: transparent;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    border: 1px solid #E1DBD2;
    border-radius: 4px;
    font-size: 18px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1199px) {
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
        flex-wrap: wrap;
    }
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    margin-bottom: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
    color: var(--theme);
    font-weight: 600;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
    color: var(--theme);
    margin-right: 5px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 11px 15px;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    background: var(--white);
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0;
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 580px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
        height: 400px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
}

@media (max-width: 1199px) {
    .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
    font-size: 14px;
    font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
    color: var(--theme);
    margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        font-size: 24px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-radius: 10px;
    padding: 40px;
    background-color: var(--bg);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    color: var(--text);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
}

.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: transparent;
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
}

.news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 26px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid #E5E5E5;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con {
    margin-bottom: 10px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    font-weight: 600;
    font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--theme);
    font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 4px;
    padding: 7px 18px;
    font-weight: 400;
    background-color: var(--theme);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply:hover {
    background-color: var(--theme);
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt span {
    color: var(--header);
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid #E5E5E5;
    padding: 16px 20px;
    font-weight: 500;
    border-radius: 8px;
    color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 160px;
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "Inter", sans-serif, "Inter", sans-serif;
    text-align: center;
    user-select: none;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--header);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Inter", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: var(--bg);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.back-to-top {
    border-radius: 12px;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top:hover {
    background-color: #b94b40;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.section-title {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 25px;
    }
}

.section-title p {
    font-family: "Source Sans 3", sans-serif;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
    z-index: 9;
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 90px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

.shop-box-items {
    margin-top: 40px;
}

.shop-box-items .star i {
    color: var(--theme);
}

.shop-box-items .shop-button {
    margin-top: 30px;
}

.shop-box-items .shop-button .theme-btn {
    width: 100%;
    background-color: var(--bg);
    color: var(--theme);
}

.shop-box-items .shop-button .theme-btn:hover {
    color: var(--white);
}

.shop-box-items .book-thumb {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 285px;
}

.shop-box-items .book-thumb img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    object-fit: contain;
}

.shop-box-items .book-thumb .post-box {
    position: absolute;
    left: 24px;
    top: 20px;
    display: grid;
    gap: 6px;
}

.shop-box-items .book-thumb .post-box li {
    background-color: var(--theme);
    color: var(--white);
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 16px;
    line-height: 1;
}

.shop-box-items .book-thumb .post-box li:nth-child(2) {
    background-color: var(--theme);
}

.shop-box-items .book-thumb .shop-icon {
    gap: 8px;
    position: absolute;
    top: 26px;
    right: 26px;
}

.shop-box-items .book-thumb .shop-icon li {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
}

.shop-box-items .book-thumb .shop-icon li a i,
.shop-box-items .book-thumb .shop-icon li a .icon {
    color: var(--text);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-box-items .book-thumb .shop-icon li:hover {
    background-color: var(--theme);
}

.shop-box-items .book-thumb .shop-icon li:hover i {
    color: var(--white);
}

.shop-box-items .book-thumb .shop-icon li:hover .icon {
    filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-box-items .shop-content {
    margin-top: 20px;
}

.shop-box-items .shop-content .price-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.shop-box-items .shop-content .price-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme);
}

.shop-box-items .shop-content .price-list li del {
    font-weight: 500;
    color: rgba(92, 112, 126, 0.8);
}

.shop-box-items .shop-content .price-list li:nth-child(2) {
    font-weight: 600;
    color: var(--text);
}

.shop-box-items .shop-content .price-list li:nth-child(2) i {
    color: #FFA900;
    margin-right: 8px;
}

.shop-box-items .shop-content .shop-button {
    margin-top: 20px;
}

.shop-box-items .shop-content .shop-button .theme-btn {
    background: rgba(84, 62, 232, 0.1);
    color: var(--theme);
    width: 100%;
    padding: 17px 40px;
}

.shop-box-items .shop-content .shop-button .theme-btn i {
    margin: 0;
    margin-right: 10px;
}

.shop-box-items .shop-content .shop-button .theme-btn::before {
    background-color: var(--theme);
}

.shop-box-items .shop-content .shop-button .theme-btn:hover {
    color: var(--white);
}

.shop-box-items:hover .book-thumb img {
    transform: scale(1.1);
}

.shop-box-items:hover .book-thumb .shop-icon li {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.shop-box-items.style-2 .book-thumb {
    position: relative;
}

.shop-box-items.style-2 .book-thumb .shop-button {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-box-items.style-2 .book-thumb .shop-button .theme-btn {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    font-weight: 600;
}

.shop-box-items.style-2 .book-thumb .shop-button .theme-btn i {
    margin-right: 5px;
}

.shop-box-items.style-2 .shop-content p {
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 10px;
}

.shop-box-items.style-2 .shop-content .price-list {
    display: flex;
    margin-top: 5px;
    justify-content: start;
    gap: 10px;
}

.shop-box-items.style-2 .shop-content .price-list del {
    color: #5C707E;
    font-weight: 500;
}

.shop-box-items.style-2 .shop-content h5 {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-2 .shop-content h3 {
    color: var(--header);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.shop-box-items.style-2 .shop-content .author-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.shop-box-items.style-2 .shop-content .author-post .authot-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-box-items.style-2 .shop-content .author-post .authot-list .content {
    font-weight: 500;
}

.shop-box-items.style-2 .shop-content .author-post li {
    font-weight: 600;
}

.shop-box-items.style-2 .shop-content .author-post li i {
    color: var(--theme);
}

.shop-box-items.style-2:hover .book-thumb .shop-button {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.shop-box-items.style-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    place-items: center;
    gap: 40px;
}

@media (max-width: 1199px) {
    .shop-box-items.style-3 {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .shop-box-items.style-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.shop-box-items.style-3 .book-thumb {
    position: relative;
    padding: 30px 30px 60px;
}

.shop-box-items.style-3 .book-thumb>a img {
    width: 155px;
    height: 240px;
}

.shop-box-items.style-3 .book-thumb .shop-button {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-box-items.style-3 .book-thumb .shop-button .theme-btn {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    font-weight: 600;
}

.shop-box-items.style-3 .book-thumb .shop-button .theme-btn i {
    margin-right: 5px;
}

.shop-box-items.style-3 .shop-content {
    margin-top: 0;
}

.shop-box-items.style-3 .shop-content .book-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .shop-box-items.style-3 .shop-content .book-category {
        flex-wrap: wrap;
    }
}

.shop-box-items.style-3 .shop-content .book-category-badge {
    display: inline-flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background-color: var(--theme);
    color: var(--white);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.shop-box-items.style-3 .shop-content .book-category li i {
    color: #FFA900;
}

.shop-box-items.style-3 .shop-content p {
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 10px;
}

.shop-box-items.style-3 .shop-content .price-list {
    display: flex;
    margin-top: 5px;
    margin-bottom: 50px;
    justify-content: start;
    gap: 10px;
}

@media (max-width: 575px) {
    .shop-box-items.style-3 .shop-content .price-list {
        margin-bottom: 35px;
    }
}

.shop-box-items.style-3 .shop-content .price-list li {
    color: var(--theme);
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-3 .shop-content .price-list del {
    color: rgba(92, 112, 126, 0.8);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-3 .shop-content h5 {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-3 .shop-content h3 {
    color: var(--header);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.shop-box-items.style-3 .shop-content .author-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    margin-bottom: 20px;
}

.shop-box-items.style-3 .shop-content .author-post .authot-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-box-items.style-3 .shop-content .author-post .authot-list .content {
    font-weight: 500;
}

.shop-box-items.style-3 .shop-content .author-post li {
    font-weight: 600;
}

.shop-box-items.style-3 .shop-content .author-post li i {
    color: var(--theme);
}

.shop-box-items.style-3:hover .book-thumb .shop-button {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.shop-box-items.style-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    place-content: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 767px) {
    .shop-box-items.style-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.shop-box-items.style-4 .book-thumb {
    position: relative;
    display: grid;
    align-items: center;
    padding: 45px 30px 45px;
    width: 245px;
    height: 100%;
}

@media (max-width: 1600px) {
    .shop-box-items.style-4 .book-thumb {
        width: 190px;
    }
}

@media (max-width: 1399px) {
    .shop-box-items.style-4 .book-thumb {
        width: 300px;
    }
}

@media (max-width: 1199px) {
    .shop-box-items.style-4 .book-thumb {
        width: 200px;
    }
}

.shop-box-items.style-4 .book-thumb>a img {
    width: 155px;
    height: 240px;
}

.shop-box-items.style-4 .book-thumb .shop-button {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-box-items.style-4 .book-thumb .shop-button .theme-btn {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    font-weight: 600;
}

.shop-box-items.style-4 .book-thumb .shop-button .theme-btn i {
    margin-right: 5px;
}

.shop-box-items.style-4 .shop-content {
    margin-top: 0;
    margin-left: 40px;
}

@media (max-width: 767px) {
    .shop-box-items.style-4 .shop-content {
        margin-left: 0px;
        margin-top: 50px;
    }
}

.shop-box-items.style-4 .shop-content .book-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.shop-box-items.style-4 .shop-content .book-category-badge {
    display: inline-flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background-color: var(--theme);
    color: var(--white);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.shop-box-items.style-4 .shop-content .book-category li i {
    color: var(--theme);
}

.shop-box-items.style-4 .shop-content h5 {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-4 .shop-content h3 {
    color: var(--header);
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    text-transform: capitalize;
}

@media (max-width: 1600px) {
    .shop-box-items.style-4 .shop-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .shop-box-items.style-4 .shop-content h3 {
        font-size: 28px;
    }
}

.shop-box-items.style-4 .shop-content .author-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 35px;
}

.shop-box-items.style-4 .shop-content .author-post .authot-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-box-items.style-4 .shop-content .author-post .authot-list .content {
    font-weight: 500;
}

.shop-box-items.style-4 .shop-content .author-post li {
    font-weight: 600;
}

.shop-box-items.style-4 .shop-content .author-post li i {
    color: var(--theme);
}

.shop-box-items.style-4 .shop-content .book-availablity {
    display: flex;
    align-items: center;
}

.shop-box-items.style-4 .shop-content .book-availablity .details {
    margin-right: 40px;
}

.shop-box-items.style-4 .shop-content .price-list {
    display: flex;
    margin-top: 5px;
    margin-bottom: 15px;
    justify-content: start;
    gap: 10px;
}

.shop-box-items.style-4 .shop-content .price-list li {
    color: var(--theme);
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-4 .shop-content .price-list del {
    color: rgba(92, 112, 126, 0.8);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-4 .shop-content .progress-line {
    position: relative;
    width: 310px;
    height: 7px;
    border-radius: 30px;
    background-color: #DCDDE2;
    margin-bottom: 5px;
    z-index: 2;
}

@media (max-width: 991px) {
    .shop-box-items.style-4 .shop-content .progress-line {
        width: 260px;
    }
}

@media (max-width: 767px) {
    .shop-box-items.style-4 .shop-content .progress-line {
        width: 190px;
    }
}

.shop-box-items.style-4 .shop-content .progress-line:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 249px;
    height: 7px;
    border-radius: 30px;
    background: var(--theme);
    margin-bottom: 10px;
    z-index: 3;
}

@media (max-width: 991px) {
    .shop-box-items.style-4 .shop-content .progress-line:before {
        width: 180px;
    }
}

@media (max-width: 767px) {
    .shop-box-items.style-4 .shop-content .progress-line:before {
        width: 130px;
    }
}

.shop-box-items.style-4 .shop-content p {
    color: var(--header);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.shop-box-items.style-4 .shop-content .shop-btn {
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.shop-box-items.style-4 .shop-content .shop-btn a i {
    font-size: 24px;
    color: var(--white);
}

.shop-box-items.style-4:hover .book-thumb .shop-button {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.shop-box-items {
    margin-top: 40px;
}

.shop-box-items .star i {
    color: var(--theme);
}

.shop-box-items .shop-button {
    margin-top: 30px;
}

.shop-box-items .shop-button .theme-btn {
    width: 100%;
    background-color: var(--bg);
    color: var(--theme);
}

.shop-box-items .shop-button .theme-btn:hover {
    color: var(--white);
}

.shop-box-items .book-thumb {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 292px;
}

.shop-box-items .book-thumb img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    object-fit: contain;
}

.shop-box-items .book-thumb .post-box {
    position: absolute;
    left: 24px;
    top: 20px;
    display: grid;
    gap: 6px;
}

.shop-box-items .book-thumb .post-box li {
    background-color: var(--header);
    color: var(--white);
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 16px;
    line-height: 1;
}

.shop-box-items .book-thumb .post-box li:nth-child(2) {
    background-color: var(--theme);
}

.shop-box-items .book-thumb .post-box li.style-2 {
    background-color: var(--theme);
}

.shop-box-items .book-thumb .shop-icon {
    gap: 8px;
    position: absolute;
    top: 26px;
    right: 15px;
}

.shop-box-items .book-thumb .shop-icon li {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
}

.shop-box-items .book-thumb .shop-icon li a i,
.shop-box-items .book-thumb .shop-icon li a .icon {
    color: var(--text);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-box-items .book-thumb .shop-icon li:hover {
    background-color: var(--theme);
}

.shop-box-items .book-thumb .shop-icon li:hover i {
    color: var(--white);
}

.shop-box-items .book-thumb .shop-icon li:hover .icon {
    filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-box-items .shop-content {
    margin-top: 20px;
}

.shop-box-items .shop-content .price-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.shop-box-items .shop-content .price-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.shop-box-items .shop-content .price-list li del {
    font-weight: 500;
    color: rgba(92, 112, 126, 0.8);
}

.shop-box-items .shop-content .price-list li:nth-child(2) {
    font-weight: 600;
    color: var(--text);
}

.shop-box-items .shop-content .price-list li:nth-child(2) i {
    color: #FFA900;
    margin-right: 8px;
}

.shop-box-items .shop-content .shop-button {
    margin-top: 20px;
}

.shop-box-items .shop-content .shop-button .theme-btn {
    background: var(--bg);
    color: var(--theme);
    width: 100%;
    padding: 17px 40px;
}

.shop-box-items .shop-content .shop-button .theme-btn i {
    margin: 0;
    margin-right: 10px;
}

.shop-box-items .shop-content .shop-button .theme-btn::before {
    background-color: var(--theme);
}

.shop-box-items .shop-content .shop-button .theme-btn:hover {
    color: var(--white);
}

.shop-box-items:hover .book-thumb img {
    transform: scale(1.1);
}

.shop-box-items:hover .book-thumb .shop-icon li {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.shop-box-items.style-2 .book-thumb {
    position: relative;
}

.shop-box-items.style-2 .book-thumb .shop-button {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-box-items.style-2 .book-thumb .shop-button .theme-btn {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    font-weight: 600;
}

.shop-box-items.style-2 .book-thumb .shop-button .theme-btn i {
    margin-right: 5px;
}

.shop-box-items.style-2 .shop-content p {
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 10px;
}

.shop-box-items.style-2 .shop-content .price-list {
    display: flex;
    margin-top: 10px;
    justify-content: start;
    gap: 10px;
}

.shop-box-items.style-2 .shop-content .price-list del {
    color: var(--theme);
    font-weight: 500;
}

.shop-box-items.style-2 .shop-content h5 {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.shop-box-items.style-2 .shop-content h3 {
    color: var(--header);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.shop-box-items.style-2 .shop-content .author-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.shop-box-items.style-2 .shop-content .author-post .authot-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-box-items.style-2 .shop-content .author-post .authot-list .content {
    font-weight: 500;
    font-size: 14px;
}

.shop-box-items.style-2 .shop-content .author-post li {
    font-weight: 600;
}

.shop-box-items.style-2 .shop-content .author-post li i {
    color: var(--theme);
}

.shop-box-items.style-2:hover .book-thumb .shop-button {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.book-catagories-wrapper {
    padding: 0 30px 0px;
}

.book-catagories-wrapper .section-title {
    max-width: 430px;
    margin: 0 auto 30px;
    text-align: center;
}

@media (max-width: 767px) {
    .book-catagories-wrapper .section-title {
        margin-bottom: 0;
    }
}

.book-catagories-wrapper .section-title .icon {
    display: block;
    margin-bottom: 10px;
}

.book-catagories-wrapper .section-title h2 {
    color: var(--white);
}

.book-catagories-wrapper .book-catagories-items {
    margin-top: 30px;
    text-align: center;
}

.book-catagories-wrapper .book-catagories-items .book-thumb {
    position: relative;
    padding: 25px 50px 40px;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.book-catagories-wrapper .book-catagories-items .book-thumb .book-box {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    background-color: var(--theme);
    padding: 4px 10px;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.book-catagories-wrapper .book-catagories-items .book-thumb:hover {
    background-color: var(--theme);
}

.book-catagories-wrapper .book-catagories-items .book-thumb:hover .book-box {
    background-color: var(--white);
    color: var(--theme);
}

.book-catagories-wrapper .book-catagories-items .book-content h6 {
    font-weight: 700;
}

.book-catagories-wrapper .book-catagories-items .book-content h6 a {
    color: var(--white);
}

.book-catagories-wrapper .book-catagories-items .book-content h6 a:hover {
    color: var(--theme);
}

.book-shop-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

@media (max-width: 1600px) {
    .book-shop-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .book-shop-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .book-shop-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .book-shop-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.book-shop-wrapper .cta-shop-box {
    background-color: var(--theme);
    padding: 20px 27px;
    margin-top: 40px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}

@media (max-width: 991px) {
    .book-shop-wrapper .cta-shop-box {
        text-align: center;
        display: none;
    }
}

.book-shop-wrapper .cta-shop-box .girl-shape {
    position: absolute;
    bottom: 0;
    right: 15px;
}

@media (max-width: 1600px) {
    .book-shop-wrapper .cta-shop-box .girl-shape {
        display: none;
    }
}

@media (max-width: 1199px) {
    .book-shop-wrapper .cta-shop-box .girl-shape {
        display: block;
    }
}

@media (max-width: 991px) {
    .book-shop-wrapper .cta-shop-box .girl-shape {
        display: none;
    }
}

.book-shop-wrapper .cta-shop-box .girl-shape img {
    transform: scaleX(-1);
    height: 285px;
}

.book-shop-wrapper .cta-shop-box .boy-shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1600px) {
    .book-shop-wrapper .cta-shop-box .boy-shape {
        display: none;
    }
}

@media (max-width: 1199px) {
    .book-shop-wrapper .cta-shop-box .boy-shape {
        display: block;
    }
}

@media (max-width: 991px) {
    .book-shop-wrapper .cta-shop-box .boy-shape {
        display: none;
    }
}

.book-shop-wrapper .cta-shop-box .boy-shape img {
    width: 100%;
    height: 100%;
}

.book-shop-wrapper .cta-shop-box .circle-shape {
    position: absolute;
    bottom: -113px;
    left: 10px;
    z-index: -1;
}

@media (max-width: 1600px) {
    .book-shop-wrapper .cta-shop-box .circle-shape {
        display: none;
    }
}

@media (max-width: 1199px) {
    .book-shop-wrapper .cta-shop-box .circle-shape {
        display: block;
    }
}

@media (max-width: 991px) {
    .book-shop-wrapper .cta-shop-box .circle-shape {
        display: none;
    }
}

.book-shop-wrapper .cta-shop-box h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .book-shop-wrapper .cta-shop-box h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .book-shop-wrapper .cta-shop-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .book-shop-wrapper .cta-shop-box h2 {
        font-size: 24px;
    }
}

.book-shop-wrapper .cta-shop-box h6 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 25px;
}

.book-shop-wrapper .cta-shop-box .theme-btn {
    padding: 16px 30px;
    background-color: var(--white);
    color: var(--header);
}

.book-shop-wrapper .cta-shop-box .theme-btn::before {
    background-color: var(--header);
}

.book-shop-wrapper .cta-shop-box .theme-btn:hover {
    color: var(--white);
}

.book-shop-wrapper.style-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    place-content: center;
    gap: 30px;
}

@media (max-width: 1600px) {
    .book-shop-wrapper.style-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1399px) {
    .book-shop-wrapper.style-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .book-shop-wrapper.style-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575px) {
    .book-shop-wrapper.style-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.top-ratting-book-wrapper {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 16px;
}

.top-ratting-book-wrapper .section-title-area .section-title h2 {
    font-size: 26px;
}

.top-ratting-book-wrapper .top-ratting-box-items {
    margin-top: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    border: 1px solid rgba(92, 112, 126, 0.15);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 767px) {
    .top-ratting-book-wrapper .top-ratting-box-items {
        flex-wrap: wrap;
    }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
    background-color: var(--bg);
    max-width: 104px;
    padding: 15px 20px;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
        max-width: 100%;
        width: 100%;
    }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-thumb img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
    object-fit: contain;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content {
    width: 100%;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content h5 {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content li:hover a img {
    filter: invert(100%) brightness(250%) contrast(100%);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 470px) {
    .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header h3 a:hover {
    color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon {
    gap: 8px;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li {
    cursor: pointer;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li a i {
    color: var(--text);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li:hover {
    background-color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li:hover i {
    color: var(--white);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content span {
    font-weight: 700;
    color: var(--text);
    display: inline-block;
    margin-bottom: 0px;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .author-post .authot-list .content {
    font-size: 14px;
    font-weight: 500;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content del {
    font-weight: 500;
    color: rgba(92, 112, 126, 0.8);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 470px) {
    .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .star {
    color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
    background: var(--bg);
    color: var(--theme);
    padding: 12px 30px;
    border-radius: 6px;
}

@media (max-width: 575px) {
    .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
        width: 100%;
    }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn i {
    margin: 0;
    margin-right: 10px;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn::before {
    background-color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn:hover {
    color: var(--white);
}

.top-ratting-book-wrapper .top-ratting-box-items:hover .book-thumb img {
    transform: scale(1.1);
}

.top-ratting-book-wrapper .shop-banner {
    margin-top: 30px;
}

.top-ratting-book-wrapper .shop-banner .shop-thumb {
    height: 768px;
    border-radius: 16px;
    position: relative;
}

@media (max-width: 1399px) {
    .top-ratting-book-wrapper .shop-banner .shop-thumb {
        height: 650px;
    }
}

@media (max-width: 991px) {
    .top-ratting-book-wrapper .shop-banner .shop-thumb {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .top-ratting-book-wrapper .shop-banner .shop-thumb {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .top-ratting-book-wrapper .shop-banner .shop-thumb {
        height: 420px;
    }
}

.top-ratting-book-wrapper .shop-banner .shop-thumb .shop-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 52%;
}

@media (max-width: 1600px) {
    .top-ratting-book-wrapper .shop-banner .shop-thumb .shop-button {
        width: 60%;
    }
}

@media (max-width: 1399px) {
    .top-ratting-book-wrapper .shop-banner .shop-thumb .shop-button {
        width: initial;
    }
}

.top-ratting-book-wrapper .theme-btn::before {
    background-color: var(--header);
}

.shop-default-wrapper .woocommerce-notices-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(92, 112, 126, 0.3);
    padding: 0 20px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .shop-default-wrapper .woocommerce-notices-wrapper {
        flex-wrap: wrap;
        padding: 20px 15px;
        gap: 20px;
        justify-content: center;
    }
}

.shop-default-wrapper .woocommerce-notices-wrapper p {
    font-weight: 500;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 99;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select {
    padding: 18px 20px;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    background-color: transparent;
    font-weight: 500;
}

@media (max-width: 767px) {
    .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select {
        padding: 0 20px;
    }
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select::after {
    border-bottom: 1px solid var(--text);
    border-right: 1px solid var(--text);
    height: 10px;
    width: 10px;
    right: -5px;
    top: 30px;
}

@media (max-width: 767px) {
    .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select::after {
        top: 15px;
    }
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select .list {
    right: -80px;
    background-color: var(--bg);
    width: 220px;
    padding: 12px 20px;
    border-radius: 0;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select .option {
    border: none;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select span {
    color: var(--text);
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon {
    margin-left: 10px;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon.active a {
    color: var(--theme);
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon-2.active a {
    color: var(--theme);
}

.shop-default-wrapper .main-sidebar {
    margin-top: 50px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget {
    background-color: var(--white);
    border: 0px;
    border-radius: 10px;
    padding: 0px;
    margin-bottom: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget.mb-50 {
    margin-bottom: 50px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title h5 {
    position: relative;
    padding-bottom: 15px;
    border-image-slice: 2;
    display: inline-block;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title h5::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 2px;
    width: 83px;
    background: linear-gradient(90deg, var(--theme) 4.85%, rgba(1, 46, 74, 0) 96.39%);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .search-input {
    width: 100%;
    height: 60px;
    padding: 16px 20px;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #D0E1E7;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .search-icon {
    position: absolute;
    right: 30px;
    cursor: pointer;
    color: #888;
    top: 15px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills {
    display: block;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link {
    display: flex;
    width: 100%;
    padding: 20px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--border-3);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    padding: 20px;
    align-items: center;
    gap: 10px;
    color: var(--header);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    background-color: transparent;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link.active,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link:hover {
    background-color: var(--theme);
    color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status_stock {
    margin-bottom: 10px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status_stock,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status_sale {
    width: 100%;
    padding: 20px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--border-3);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select .option {
    background-color: var(--white);
    color: var(--header);
    font-size: 16px;
    line-height: 150%;
    padding: 10px;
    min-height: initial;
    font-weight: 500;
    border: 1px solid var(--border-3);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select .option:hover {
    background-color: var(--theme);
    color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    opacity: 1;
    display: block;
    pointer-events: auto;
    transform: scale(1.15) translate(-13%, 11%);
    -moz-transform: scale(1.15) translate(-13%, 11%);
    -o-transform: scale(1.15) translate(-13%, 11%);
    -webkit-transform: scale(1.15) translate(-13%, 11%);
    -ms-transform: scale(1.15) translate(-13%, 11%);
}

@media (max-width: 1600px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
        pointer-events: auto;
        transform: scale(1.15) translate(-14%, 11%);
        -moz-transform: scale(1.15) translate(-14%, 11%);
        -o-transform: scale(1.15) translate(-14%, 11%);
        -webkit-transform: scale(1.15) translate(-14%, 11%);
        -ms-transform: scale(1.15) translate(-14%, 11%);
    }
}

@media (max-width: 1199px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
        pointer-events: auto;
        transform: scale(1.15) translate(-16%, 11%);
        -moz-transform: scale(1.15) translate(-16%, 11%);
        -o-transform: scale(1.15) translate(-16%, 11%);
        -webkit-transform: scale(1.15) translate(-16%, 11%);
        -ms-transform: scale(1.15) translate(-16%, 11%);
    }
}

@media (max-width: 991px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
        pointer-events: auto;
        transform: scale(1.15) translate(-11%, 11%);
        -moz-transform: scale(1.15) translate(-11%, 11%);
        -o-transform: scale(1.15) translate(-11%, 11%);
        -webkit-transform: scale(1.15) translate(-11%, 11%);
        -ms-transform: scale(1.15) translate(-11%, 11%);
    }
}

@media (max-width: 767px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
        pointer-events: auto;
        transform: scale(1.15) translate(-12%, 11%);
        -moz-transform: scale(1.15) translate(-12%, 11%);
        -o-transform: scale(1.15) translate(-12%, 11%);
        -webkit-transform: scale(1.15) translate(-12%, 11%);
        -ms-transform: scale(1.15) translate(-12%, 11%);
    }
}

@media (max-width: 575px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
        pointer-events: auto;
        transform: scale(1.15) translate(-12%, 11%);
        -moz-transform: scale(1.15) translate(-12%, 11%);
        -o-transform: scale(1.15) translate(-12%, 11%);
        -webkit-transform: scale(1.15) translate(-12%, 11%);
        -ms-transform: scale(1.15) translate(-12%, 11%);
    }
}

@media (max-width: 500px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
        pointer-events: auto;
        transform: scale(1.15) translate(-13%, 11%);
        -moz-transform: scale(1.15) translate(-13%, 11%);
        -o-transform: scale(1.15) translate(-13%, 11%);
        -webkit-transform: scale(1.15) translate(-13%, 11%);
        -ms-transform: scale(1.15) translate(-13%, 11%);
    }
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select::after {
    height: 8px;
    width: 8px;
    right: 0px;
    top: 15px;
    border-color: var(--header);
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input {
    margin-top: 10px;
    position: relative;
}

@media (max-width: 1600px) {
    .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input {
        flex-wrap: wrap;
    }
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .field {
    display: flex;
    align-items: center;
    font-size: 18px;
    width: 16%;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .field span {
    font-size: 18px;
    font-weight: 500;
    color: var(--header);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .separators {
    margin-left: -12px;
    padding-right: 12px;
    font-size: 24px;
    line-height: 42px;
    font-weight: 500;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .field input {
    height: 100%;
    outline: none;
    background: transparent;
    border: unset;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    padding: 0;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .field input span {
    font-weight: 500;
    color: var(--header);
    font-size: 16px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=number]::-webkit-outer-spin-button,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .separator {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .slider {
    height: 6.75px;
    position: relative;
    background: var(--header);
    border-radius: 5px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--theme);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .range-input {
    position: relative;
    display: flex;
    justify-content: center;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .range-input input {
    position: absolute;
    width: 100%;
    height: 6.75px;
    top: -7px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    outline: none;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=range]::-webkit-slider-thumb {
    height: 17px;
    width: 7px;
    border-radius: 5px;
    background: var(--theme);
    border: 1.125px solid var(--theme);
    pointer-events: auto;
    -webkit-appearance: none;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .filter-btn {
    padding: 8px 30px;
    background-color: var(--theme);
    color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .filter-size .input-save:not(:last-child) {
    margin-bottom: 20px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .filter-size .input-save input {
    width: 20px;
    height: 19px;
    background-color: var(--theme);
    outline: none;
    color: var(--theme);
    padding: 5px;
    border-radius: 4px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .filter-size .input-save label {
    margin-left: 20px;
    color: var(--header);
    text-transform: capitalize;
    font-weight: 600;
    text-transform: capitalize;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single {
    position: relative;
    padding-left: 18px;
    cursor: pointer;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single:not(:last-child) {
    margin-bottom: 10px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid rgb(229, 229, 229);
    top: 5px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark::after {
    content: "";
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
    background-color: var(--theme);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    top: -5px;
    left: 5px;
    color: var(--theme);
    font-size: 11px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
    display: block;
    color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color {
    font-weight: 600;
    color: var(--header);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color .star {
    color: #FFA41B;
    margin-right: 5px;
}

.shop-default-wrapper .shop-list-items {
    margin-top: 30px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 45px;
}

@media (max-width: 1399px) {
    .shop-default-wrapper .shop-list-items {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.shop-default-wrapper .shop-list-items .shop-list-thumb {
    border-radius: 10px;
    background: rgba(248, 248, 248, 0.97);
    padding: 50px 95px;
    margin: 10px;
    position: relative;
}

@media (max-width: 575px) {
    .shop-default-wrapper .shop-list-items .shop-list-thumb {
        padding: 50px;
    }
}

.shop-default-wrapper .shop-list-items .shop-list-thumb img {
    object-fit: cover;
}

.shop-default-wrapper .shop-list-items .shop-list-thumb .post-box {
    position: absolute;
    left: 24px;
    top: 20px;
    display: grid;
    gap: 6px;
    text-align: center;
}

.shop-default-wrapper .shop-list-items .shop-list-thumb .post-box li {
    background-color: var(--header);
    color: var(--white);
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 16px;
    line-height: 1;
}

.shop-default-wrapper .shop-list-items .shop-list-thumb .post-box li:nth-child(2) {
    background-color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content {
    padding-right: 50px;
}

@media (max-width: 1399px) {
    .shop-default-wrapper .shop-list-items .shop-list-content {
        padding-right: 0;
        text-align: center;
        padding: 0 30px 20px;
    }
}

.shop-default-wrapper .shop-list-items .shop-list-content h3 {
    font-size: 22px;
    margin-bottom: 7px;
}

.shop-default-wrapper .shop-list-items .shop-list-content h5 {
    font-weight: 700;
    color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content .star {
    color: #FFA900;
    margin: 10px 0;
}

.shop-default-wrapper .shop-list-items .shop-list-content p {
    font-weight: 500;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .shop-default-wrapper .shop-list-items .shop-list-content .shop-btn {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn {
    background: var(--bg);
    color: var(--theme);
    padding: 15px 70px;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn i {
    margin: 0;
    margin-right: 10px;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn::before {
    background-color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn:hover {
    color: var(--white);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon {
    gap: 8px;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li {
    cursor: pointer;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li a i {
    color: var(--text);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li:hover {
    background-color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li:hover i {
    color: var(--white);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li:hover .icon {
    filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-details-wrapper .shop-details-image .shop-details-thumb {
    border-radius: 16px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    background: #F8F8F8;
    text-align: center;
    padding: 65px 40px;
}

@media (max-width: 767px) {
    .shop-details-wrapper .shop-details-image .shop-details-thumb {
        padding: 40px 25px;
    }
}

@media (max-width: 575px) {
    .shop-details-wrapper .shop-details-image .shop-details-thumb {
        padding: 30px 15px;
    }
}

.shop-details-wrapper .shop-details-image .nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.shop-details-wrapper .shop-details-image .nav .nav-item .nav-link {
    border-radius: 8px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    background: #F8F8F8;
    text-align: center;
    margin: 0 auto;
}

.shop-details-wrapper .shop-details-image .nav .nav-item .nav-link.active {
    border: 1px solid var(--theme);
}

.shop-details-wrapper .shop-details-content {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .shop-details-wrapper .shop-details-content {
        margin-left: 0;
    }
}

.shop-details-wrapper .shop-details-content .title-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .shop-details-wrapper .shop-details-content .title-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.shop-details-wrapper .shop-details-content .title-wrapper h2 {
    font-size: 36px;
}

.shop-details-wrapper .shop-details-content .title-wrapper h5 {
    color: #57C600;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
}

.shop-details-wrapper .shop-details-content .star {
    margin-top: 12px;
    margin-bottom: 10px;
}

.shop-details-wrapper .shop-details-content .star a {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
}

.shop-details-wrapper .shop-details-content .star .color-2 {
    color: #67687A;
    opacity: 0.3;
}

.shop-details-wrapper .shop-details-content .star span {
    margin-left: 10px;
    font-weight: 600;
    font-size: 14px;
}

.shop-details-wrapper .shop-details-content p {
    font-weight: 500;
}

.shop-details-wrapper .shop-details-content .price-list {
    gap: 200px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .shop-details-wrapper .shop-details-content .price-list {
        gap: 30px;
        flex-wrap: wrap;
    }
}

.shop-details-wrapper .shop-details-content .price-list h3 {
    font-size: 30px;
    color: var(--theme);
    font-weight: 700;
}

.shop-details-wrapper .shop-details-content .price-list h5 {
    color: #57C600;
    font-size: 20px;
    font-weight: 600;
}

.shop-details-wrapper .shop-details-content .cart-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 25px;
}

@media (max-width: 1399px) {
    .shop-details-wrapper .shop-details-content .cart-wrapper {
        flex-wrap: wrap;
    }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket {
    width: 190px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    padding: 11px 30px;
    border-radius: 100px;
    line-height: 1;
    justify-content: space-between;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty button,
.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty input {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header);
    font-weight: 400;
    font-size: 22px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty input {
    text-align: center;
    border-radius: 0;
    border: none;
    outline: none;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn {
    padding: 18px 40px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn:hover {
    color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn:hover::before {
    background-color: var(--bg);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn.style-2 {
    background-color: var(--bg);
    border: 1px solid var(--theme);
    color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn.style-2::before {
    background-color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn.style-2:hover {
    color: var(--white);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon {
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon:hover {
    background-color: transparent;
    border-color: var(--theme);
    color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon-2 {
    width: 50px;
    height: 50px;
    line-height: 43px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-color: transparent;
    color: var(--header);
    border: 1px solid rgba(79, 83, 108, 0.3);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon-2:hover {
    background-color: var(--theme);
    border-color: transparent;
    color: var(--white);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon-2:hover img {
    filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog {
    max-width: 625px;
    margin: 135px auto;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content {
    position: relative;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 20px;
}

@media (max-width: 767px) {
    .shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body {
        margin: 10px;
    }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .close-btn {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 5;
}

@media (max-width: 767px) {
    .shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .close-btn {
        top: 0%;
        right: 0%;
    }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .close-btn .btn-close {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #DDD8FB;
    color: var(--white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox {
    padding: 20px 30px;
}

@media (max-width: 767px) {
    .shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox {
        padding: 5px;
    }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox .content h3 {
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox .content p {
    color: #4F536C;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.shop-details-wrapper .shop-details-content .category-box {
    border-radius: 16px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    padding: 10px;
    margin-top: 30px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.shop-details-wrapper .shop-details-content .category-box .category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-radius: 10px;
    background: rgba(248, 248, 248, 0.97);
    padding: 30px 25px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 1199px) {
    .shop-details-wrapper .shop-details-content .category-box .category-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .shop-details-wrapper .shop-details-content .category-box .category-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

.shop-details-wrapper .shop-details-content .category-box .category-list ul li {
    font-weight: 500;
}

.shop-details-wrapper .shop-details-content .category-box .category-list ul li:not(:last-child) {
    margin-bottom: 15px;
}

.shop-details-wrapper .shop-details-content .category-box .category-list ul li span {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    padding-right: 10px;
}

.shop-details-wrapper .shop-details-content .box-check {
    border-radius: 16px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    padding: 10px;
    margin-top: 30px;
}

.shop-details-wrapper .shop-details-content .box-check .check-list {
    display: flex;
    align-items: center;
    gap: 50px;
    border-radius: 10px;
    background: rgba(248, 248, 248, 0.97);
    padding: 30px 25px;
}

@media (max-width: 1199px) {
    .shop-details-wrapper .shop-details-content .box-check .check-list {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.shop-details-wrapper .shop-details-content .box-check .check-list ul li {
    font-weight: 500;
}

.shop-details-wrapper .shop-details-content .box-check .check-list ul li:not(:last-child) {
    margin-bottom: 15px;
}

.shop-details-wrapper .shop-details-content .box-check .check-list ul li i {
    color: var(--theme);
    margin-right: 10px;
}

.shop-details-wrapper .shop-details-content .social-icon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .shop-details-wrapper .shop-details-content .social-icon {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .shop-details-wrapper .single-tab {
        margin-top: -10px;
    }
}

.shop-details-wrapper .single-tab .nav {
    justify-content: center;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
    font-size: 24px;
    font-weight: 700;
}

.shop-details-wrapper .single-tab .nav .nav-link.active {
    position: relative;
}

.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
    color: var(--theme);
}

.shop-details-wrapper .single-tab .nav .nav-link.active::before {
    position: absolute;
    bottom: -21px;
    left: 0;
    height: 2px;
    width: 100%;
    content: "";
    background: var(--theme);
    transition: 0.3s;
}

@media (max-width: 470px) {
    .shop-details-wrapper .single-tab .nav .nav-link.active::before {
        display: none;
    }
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
    font-size: 18px;
}

.shop-details-wrapper .single-tab .description-items p {
    font-weight: 500;
}

.shop-details-wrapper .single-tab .table-responsive .table tbody tr .text-1 {
    font-weight: 600;
    color: var(--text);
    padding: 18px 0px 18px 20px;
    line-height: 1;
    width: 135px;
}

.shop-details-wrapper .single-tab .table-responsive .table tbody tr .text-2 {
    font-weight: 400;
    color: var(--text);
    padding: 18px 20px;
    line-height: 1;
}

.shop-details-wrapper .single-tab .review-wrap-area {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 12px;
}

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-wrap-area {
        flex-wrap: wrap;
        gap: 20px !important;
    }
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content {
    width: 100%;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont {
    margin-bottom: 10px;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont h5 {
    font-size: 20px;
    font-weight: 600;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont span {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .star {
    color: var(--theme);
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content p {
    font-weight: 500;
}

.shop-details-wrapper .single-tab .review-title h4 {
    font-size: 24px;
    font-weight: 700;
}

.shop-details-wrapper .single-tab .review-title .rate-now {
    margin-top: 15px;
    gap: 15px;
}

.shop-details-wrapper .single-tab .review-title .rate-now p {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--header);
}

.shop-details-wrapper .single-tab .review-title .rate-now i {
    font-size: 16px;
    color: #FFA41B;
}

.shop-details-wrapper .single-tab .review-form {
    margin-top: 40px;
}

.shop-details-wrapper .single-tab .review-form .form-clt span {
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    display: inline-block;
    margin-bottom: 15px;
}

.shop-details-wrapper .single-tab .review-form .form-clt input,
.shop-details-wrapper .single-tab .review-form .form-clt textarea {
    width: 100%;
    outline: none;
    border: 1px solid #E3E3E3;
    padding: 18px 25px;
    color: var(--text);
    background-color: transparent;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 8px;
    font-weight: 500;
}

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-form .form-clt input,
    .shop-details-wrapper .single-tab .review-form .form-clt textarea {
        padding: 15px 20px;
    }
}

.shop-details-wrapper .single-tab .review-form .form-clt textarea {
    padding-bottom: 160px;
}

.shop-details-wrapper .single-tab .review-form .from-customradio .form-check-label {
    color: var(--header);
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .main-cart-wrapper .table-responsive .table {
        width: 700px;
        overflow-x: scroll;
    }
}

.main-cart-wrapper .table-responsive .table thead tr th {
    font-size: 24px;
    font-weight: 600;
    color: var(--header);
    padding-bottom: 20px;
    padding-left: 0;
}

.main-cart-wrapper .table-responsive .table tbody tr td {
    vertical-align: middle;
    padding: 20px 0;
}

.main-cart-wrapper .table-responsive .table tbody tr td .cart-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    text-transform: capitalize;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    padding: 5px 15px;
    border-radius: 9px;
    line-height: 1;
    justify-content: center;
    width: 140px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty .qtyminus {
    margin: 0 10px 0 0;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty .qtyminus,
.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty .qtyplus {
    padding: 10px;
    text-align: center;
    border-radius: 50%;
    background: #F5F5F5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty button,
.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty input {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header);
    font-weight: 400;
    font-size: 18px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty input {
    text-align: center;
    border-radius: 0;
    border: unset;
    outline: none;
    width: 50px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .cart-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    display: inline-block;
    margin-right: 60px;
    margin-left: 10px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .subtotal-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    display: inline-block;
    margin-left: 10px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-title span {
    opacity: 0;
    visibility: hidden;
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    display: inline-block;
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-text {
    font-size: 14px;
    color: var(--header);
    font-weight: 500;
}

.main-cart-wrapper .table-responsive .table tbody tr td .stock-title {
    color: #57C600;
    font-size: 16px;
    font-weight: 600;
    margin-right: 60px;
    display: inline-block;
}

.main-cart-wrapper .table-responsive .table tbody tr td .stock-title-two {
    color: var(--theme);
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

@media (max-width: 991px) {
    .main-cart-wrapper .table-responsive .table tbody tr td .stock-title {
        margin-right: 0;
    }
}

.main-cart-wrapper .table-responsive .table.style-2 {
    width: 100%;
}

.main-cart-wrapper .table-responsive .theme-btn {
    border-radius: 43px;
    background-color: var(--theme);
    width: 100%;
    -webkit-border-radius: 43px;
    -moz-border-radius: 43px;
    -ms-border-radius: 43px;
    -o-border-radius: 43px;
}

.main-cart-wrapper .table-responsive .theme-btn:hover {
    background-color: var(--border);
}

.main-cart-wrapper .cart-total {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    background: var(--white);
}

.main-cart-wrapper .cart-total .table thead tr th {
    color: #1A1A1A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.main-cart-wrapper .cart-total .table tbody tr td .sub-title {
    color: #4F536C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.main-cart-wrapper .cart-total .table tbody tr td .sub-price {
    color: #012E4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.main-cart-wrapper .cart-total .table tbody tr td .sub-price-total {
    color: #FF6500;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
}

.main-cart-wrapper .cart-wrapper-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .main-cart-wrapper .cart-wrapper-footer {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.main-cart-wrapper .cart-wrapper-footer form {
    border: 1px solid var(--border);
    padding: 0 8px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-cart-wrapper .cart-wrapper-footer form input {
    padding: 5px 5px;
    border: none;
    text-transform: capitalize;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: var(--text);
    height: 50px;
}

@media (max-width: 575px) {
    .main-cart-wrapper .cart-wrapper-footer form input {
        width: 140px;
    }
}

.main-cart-wrapper .cart-wrapper-footer form button {
    outline: none;
    border: none;
}

.main-cart-wrapper .cart-wrapper-footer form .theme-btn {
    border-radius: 6px;
    background-color: var(--theme);
    padding: 20px 24px;
    right: -33%;
    min-width: 80px;
    margin-left: 20px;
}

.main-cart-wrapper .cart-wrapper-footer form .theme-btn::before {
    background-color: var(--header);
}

.main-cart-wrapper .cart-wrapper-footer .theme-btn {
    border-radius: 6px;
    background-color: var(--theme);
}

.main-cart-wrapper .cart-wrapper-footer .theme-btn::before {
    background-color: var(--header);
}

.checkout-radio {
    padding: 24px;
}

.checkout-radio .primary-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 16px;
    color: var(--header);
    text-transform: capitalize;
}

.checkout-radio h4 {
    color: var(--header);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 30px;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    box-shadow: none;
    outline: none;
    border: 1px solid #E5E5E5;
    font-weight: 500;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
    color: var(--header);
    text-transform: capitalize;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
    margin-bottom: 12px;
}

@media (max-width: 500px) {
    .checkout-radio {
        padding: 10px;
    }
}

.checkout-radio .payment-save {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.checkout-radio .payment-save input {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background-color: var(--theme);
    outline: none;
    color: var(--header);
}

.checkout-radio .payment-save label {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single h4 {
    color: var(--header);
    margin-bottom: 20px;
    line-height: 1;
    font-weight: 600;
    font-size: 30px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single span {
    font-weight: 500;
    color: var(--header);
    display: inline-block;
    margin-bottom: 15px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 19px 24px;
    color: var(--header);
    text-transform: capitalize;
    font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea::placeholder,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select::placeholder,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input::placeholder {
    color: rgba(92, 112, 126, 0.5);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
    color: var(--header);
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
    background-color: var(--white);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
    font-size: 18px;
    color: var(--header);
    font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
    border-right: 1px solid var(--header);
    border-bottom: 1px solid var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea {
    padding-bottom: 180px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
    color: var(--header);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
    margin-bottom: 24px;
}

@media (max-width: 575px) {
    .checkout-single-wrapper .boxshado-single {
        padding: 14px;
    }
}

.checkout-single-wrapper .checkout-single-bg {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 32px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
    border: 1px solid var(--border);
    background: transparent;
    text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form textarea#notes {
    padding-bottom: 180px;
}

@media (max-width: 575px) {
    .checkout-single-wrapper .checkout-single-bg {
        padding: 14px;
    }
}

.checkout-single-wrapper .payment-save {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-single-wrapper .payment-save input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #67687A;
    outline: none;
    color: var(--header);
}

.checkout-single-wrapper .payment-save label {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--header);
}

.checkout-single-wrapper .payment-save.style-2 {
    margin-top: 20px;
}

.checkout-single-wrapper .payment-save.style-2 label {
    font-size: 24px;
    font-weight: 500;
}

.checkout-order-area h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.checkout-order-area .product-checout-area .checkout-item {
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.checkout-order-area .product-checout-area .checkout-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
}

.checkout-order-area .product-checout-area .checkout-item .from-customradio {
    margin-bottom: 20px;
    gap: 40px;
    justify-content: end;
}

.checkout-order-area .product-checout-area .checkout-item .from-customradio .form-check-label {
    color: var(--header);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.checkout-order-area .product-checout-area .checkout-item-2 {
    margin-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
}

.checkout-order-area .product-checout-area .checkout-item-2 .from-customradio-2 {
    gap: 10px;
    align-items: center;
}

@media (max-width: 1199px) {
    .checkout-order-area .product-checout-area .checkout-item-2 .from-customradio-2 {
        flex-wrap: wrap;
    }
}

.checkout-order-area .product-checout-area .checkout-item-2 .from-customradio-2 .form-check-label {
    color: var(--header);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.checkout-order-area .product-checout-area .checkout-item-2 p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

.checkout-order-area .product-checout-area .checkout-item-2 .brand-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkout-order-area .product-checout-area .checkout-item-2 .brand-logo li {
    border: 1px solid #E3E3E3;
    padding: 5px 15px;
    border-radius: 6px;
}

.banner-book-card-items {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.banner-book-card-items .book-shape {
    position: absolute;
    right: 100px;
    bottom: 0;
}

@media (max-width: 991px) {
    .banner-book-card-items .book-shape {
        display: none;
    }
}

.banner-book-card-items .book-shape img {
    width: 150px;
}

.banner-book-card-items .book-shape-2 {
    position: absolute;
    right: 55px;
    bottom: 0;
}

@media (max-width: 991px) {
    .banner-book-card-items .book-shape-2 {
        display: none;
    }
}

.banner-book-card-items .book-shape-2 img {
    width: 300px;
}

.banner-book-card-items .book-shape-3 {
    position: absolute;
    right: 30%;
    bottom: 0;
}

@media (max-width: 991px) {
    .banner-book-card-items .book-shape-3 {
        display: none;
    }
}

.banner-book-card-items .book-shape-3 img {
    width: 200px;
}

.banner-book-card-items .banner-book-content {
    padding: 30px 30px 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .banner-book-card-items .banner-book-content {
        padding: 30px 10px 60px;
    }
}

@media (max-width: 575px) {
    .banner-book-card-items .banner-book-content {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .banner-book-card-items .banner-book-content .banner-text {
        width: 80%;
    }
}

.banner-book-card-items .banner-book-content .banner-text span {
    display: inline-block;
    color: var(--theme);
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 0px 20px;
    border-radius: 100px;
    background-color: var(--white);
    margin-bottom: 10px;
}

.banner-book-card-items .banner-book-content .banner-text h2 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .banner-book-card-items .banner-book-content .banner-text h2 {
        font-size: 20px;
    }
}

.banner-book-card-items .banner-book-content .banner-text p {
    color: var(--white);
}

.banner-book-card-items .banner-book-content .banner-icons {
    width: 55px;
    height: 55px;
    display: inline-block;
    line-height: 55px;
    text-align: center;
    background-color: var(--bg);
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.banner-book-card-items .banner-book-content .banner-icons:hover {
    background-color: var(--theme);
}

.banner-book-card-items .banner-book-content .banner-icons:hover img {
    filter: brightness(0) invert(1);
}

.featured-books-section .swiper {
    overflow: visible !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.featured-books-section .swiper-pagination {
    top: 106%;
}

@media (max-width: 767px) {
    .featured-books-section .swiper-pagination {
        display: none;
    }
}

.featured-books-section .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 1px solid var(--theme);
    border-radius: 50%;
    opacity: 1;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.featured-books-section .swiper-pagination .swiper-pagination-bullet-active {
    position: relative;
    width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 1px solid var(--theme);
}

.featured-books-section .swiper-pagination .swiper-pagination-bullet-active:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    background-color: var(--theme);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.team-box-items {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
    margin-bottom: 30px;
}

.team-box-items .team-image {
    position: relative;
}

.team-box-items .team-image .thumb {
    text-align: center;
    margin: 0 auto;
}

.team-box-items .team-image .thumb img {
    max-width: 100%;
}

.team-box-items .team-image .shape-img {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.team-box-items .team-content {
    margin-top: 43px;
    border: 1.9px dashed var(--theme);
    padding: 20px 15px;
    border-radius: 8px;
}

.team-box-items .team-content h6 {
    font-size: 16px;
    font-weight: 600;
}

.team-box-items .team-content h6 a:hover {
    color: var(--theme);
}

.team-box-items .team-content p {
    font-size: 12px;
    font-weight: 500;
}

.team-section {
    position: relative;
}

.team-section .array-button {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.team-section .array-button .array-prev {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    z-index: 9;
}

.team-section .array-button .array-next {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    z-index: 9;
}

.team-section:hover .array-button {
    opacity: 1;
    visibility: visible;
}

.team-details-wrapper {
    background-color: var(--bg);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 9;
    position: relative;
}

@media (max-width: 1399px) {
    .team-details-wrapper {
        gap: 25px;
        flex-wrap: wrap;
    }
}

@media (max-width: 1199px) {
    .team-details-wrapper {
        padding: 30px;
    }
}

.team-details-wrapper .team-details-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 470px) {
    .team-details-wrapper .team-details-items {
        flex-wrap: wrap;
    }
}

.team-details-wrapper .team-details-items .details-image {
    border: 1px dashed var(--theme);
    max-width: 186px;
    border-radius: 50%;
    padding: 8px;
}

@media (max-width: 575px) {
    .team-details-wrapper .team-details-items .details-image {
        margin: 0 auto;
    }
}

.team-details-wrapper .team-details-items .details-image img {
    width: 100%;
    height: 100%;
}

.team-details-wrapper .team-details-items .details-content h3 {
    font-size: 24px;
    color: var(--header);
}

.team-details-wrapper .team-details-items .details-content span {
    font-weight: 500;
    color: var(--header);
}

.team-details-wrapper .team-details-items .details-content .social-icon {
    margin-top: 20px;
    gap: 10px;
    position: relative;
    z-index: 9;
}

.team-details-wrapper .team-details-items .details-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--header);
    background-color: transparent;
    color: var(--theme);
    border-radius: 50%;
}

.team-details-wrapper .team-details-items .details-content .social-icon a:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: transparent;
}

.team-details-wrapper p {
    max-width: 550px;
    color: var(--header);
    font-weight: 500;
}

.team-details-wrapper .details-counter-area {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 575px) {
    .team-details-wrapper .details-counter-area {
        gap: 15px;
    }
}

.team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid var(--text);
}

.team-details-wrapper .details-counter-area .counter-items h2 {
    font-size: 24px;
    color: var(--header);
    font-weight: 700;
}

.team-details-wrapper .details-counter-area .counter-items p {
    font-size: 24px;
    font-weight: 700;
    color: var(--header);
    max-width: initial;
}

.testimonial-card-items {
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 40px;
    margin-bottom: 40px;
}

.testimonial-card-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-card-items .client-info .client-img {
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial-card-items .client-info .client-img .icon {
    position: absolute;
    left: -25px;
    bottom: -35px;
}

.testimonial-card-items .client-info .client-img .icon .shape {
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
}

.testimonial-card-items .client-info .content h3 {
    color: #121315;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.4px;
}

.testimonial-card-items p {
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonial-card-items .star {
    color: var(--theme);
}

.testimonial-section {
    margin-bottom: -40px;
}

@media (min-width: 1400px) {
    .testimonial-slider {
        margin-right: -170px;
    }
}

.testimonial-slider .swiper-slide {
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
}

.testimonial-slider .swiper-slide-active .testimonial-card-items {
    border-top: 3px solid var(--theme);
    background-color: var(--white);
    box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
}


/*# sourceMappingURL=main.css.map */

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    display: inline-block;
    padding: 6px 0 !important;
    color: #fff;
}

.owl-carousel .owl-nav button.owl-next {
    padding-right: 14px !important;
    padding-left: 7px !important;
    border-radius: 0 40px 40px 0;
}

.owl-carousel .owl-nav button.owl-prev {
    padding-right: 7px !important;
    padding-left: 14px !important;
    border-radius: 40px 0 0 40px;
}

.page-section {
    position: relative;
    /* padding-top: 80px; */
    padding-bottom: 80px;
    overflow: hidden;
}

.page-hero {
    position: relative;
    height: 550px;
    z-index: 10;
}

.page-banner {
    position: relative;
    height: 300px;
    z-index: 10;
}

.page-hero.overlay-dark::before,
.page-banner.overlay-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 53, 49, 0.7);
    z-index: 1;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    font-size: 14px;
}

.hero-section,
.banner-section {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    z-index: 10;
}

.hero-section .subhead {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #db7f7f;
    /* Changed from #000000 to white for better visibility */
    font-weight: 500;
}

.hero-section h1 {
    margin-bottom: 32px;
    color: #ffffff;
    /* Changed from var(--theme) to white */
    font-weight: 500;
}


/* Additional styling for better text visibility */

.hero-section {
    text-shadow: none !important;
}

.input-navbar {
    width: auto;
    max-width: 280px;
}

.input-navbar .input-group-text {
    background-color: #fff;
}

.input-navbar .form-control {
    height: calc(1.5em + 1rem + 2px);
}

.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.service-card-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid #ff9800;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin: 15px;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.service-card-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 0 25px 25px 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--theme);
    line-height: 1.4;
}

.service-button .contact-btn {
    background: #fff;
    color: #666;
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-button .contact-btn:hover {
    background: linear-gradient(45deg, #ff9800, #ffc107);
    color: #fff;
    border-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .service-content {
        padding: 0 20px 20px 20px;
    }
    .service-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .service-image {
        height: 180px;
        margin: 12px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 160px;
        margin: 10px;
    }
    .service-content h3 {
        font-size: 16px;
    }
    .service-button .contact-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}


/* Career Card Hover Effects */

.career-card {
    background: #fff;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}


/* Content overlay */

.career-card>div {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}


/* Description hover effect */

.career-description {
    transition: all 0.4s ease-in-out;
}


/* Salary badge hover effect */

.salary-badge {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 3;
}


/* Qualification tags hover effect */

.qualification-tag {
    background-color: #0B71B9;
    color: #fff;
}

.career-email {
    transition: all 0.4s ease-in-out;
}


/* Resume required hover effect */

.resume-required {
    transition: all 0.4s ease-in-out;
}


/* Button hover effect */

.career-btn {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 3;
}


/* Add subtle animation to the card */

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}


/* Smooth transitions for all child elements */

.career-card * {
    transition: all 0.4s ease-in-out;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 50%;
    border: 3px solid #E74D96;
    padding: 3px;
    background-color: white;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.client-service {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 8px;
}

.rating {
    color: #ffa502;
    font-size: 14px;
}

.testimonial-body {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    color: rgba(255, 71, 87, 0.1);
    font-size: 40px;
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-text {
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    font-style: italic;
    padding-left: 10px;
}

.testimonial-results {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.results-title {
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    text-align: center;
}

.results-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.single-result {
    justify-content: center;
}

.result-image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-divider {
    color: #E74D96;
    font-size: 20px;
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #E74D96;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.result-image:hover .result-img {
    transform: scale(1.1);
}


/* Responsive styles */

@media (max-width: 767px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    .client-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .results-gallery {
        flex-direction: column;
    }
    .result-divider {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

.blog-detail-card {
    border: 1px solid #e9ecef;
}

.blog-title {
    line-height: 1.4;
}

.meta-item {
    font-size: 0.9rem;
    color: #6c757d;
}

.meta-divider {
    color: #dee2e6;
    font-weight: bold;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.content-text p {
    margin-bottom: 1rem;
}

.tag-item {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background-color: #007bff !important;
    color: white !important;
}

.share-buttons .btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
}

.placeholder-image {
    border: 2px dashed #dee2e6;
}

@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    .share-buttons {
        align-self: center;
    }
}

.service-content * {
    text-align: left !important;
}

.service-content p,
.service-content div,
.service-content li {
    text-align: left !important;
}

.service-points li {
    text-align: left !important;
}

.career-details-section {
    background: #f8f9fa;
    min-height: 80vh;
}


/* Job Header Card */

.job-header-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.job-meta i {
    color: var(--theme-color, #007bff);
}

.salary-info {
    text-align: right;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 180px;
}

.salary-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.salary-amount {
    display: block;
    font-size: 19px;
    font-weight: 700;
}


/* Job Sections */

.job-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--theme-color, #007bff);
}

.job-description,
.job-requirements,
.job-responsibilities,
.job-benefits {
    color: #666;
    line-height: 1.8;
}

.job-description ul,
.job-requirements ul,
.job-responsibilities ul,
.job-benefits ul {
    padding-left: 20px;
}

.job-description li,
.job-requirements li,
.job-responsibilities li,
.job-benefits li {
    margin-bottom: 8px;
}


/* Qualification Tags */

.qualification-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qualification-tag {
    background: #0B71B9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.qualification-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}


/* Sidebar */

.career-sidebar {
    position: sticky;
    top: 20px;
}

.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    color: var(--theme-color, #007bff);
    font-size: 18px;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--theme-color, #007bff);
}

.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.apply-btn.primary {
    background: var(--theme-color, #007bff);
    color: #fff;
}

.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}


/* Job Summary */

.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.summary-label i {
    color: var(--theme-color, #007bff);
}

.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}


/* Share Buttons */

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}

.share-btn.copy {
    background: #6c757d;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Back Button */

.back-to-careers {
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color, #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color, #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--theme-color, #007bff);
    color: #fff;
    text-decoration: none;
}

.back-btn i {
    margin-right: 8px;
}


/* Modal Styles */

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}


/* Responsive Design */

@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}


/* Hero Banner Slider */

.hero-banner-slider {
    position: relative;
}

.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--theme);
}

.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}

.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}

.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.5;
}

.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}

.hero-section {
    text-shadow: none !important;
}

.hero-1 {
    position: relative;
    z-index: 1;
}

.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

top: -15px;
left: -10px;

}
.testimonial-text {
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    font-style: italic;
    padding-left: 10px;
}
.testimonial-results {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}
.results-title {
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    text-align: center;
}
.results-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.single-result {
    justify-content: center;
}
.result-image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.result-divider {
    color: #E74D96;
    font-size: 20px;
}
.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #E74D96;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
}
.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.result-image:hover .result-img {
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 767px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .client-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .results-gallery {
        flex-direction: column;
    }
    
    .result-divider {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
.blog-detail-card {
    border: 1px solid #e9ecef;
}
.blog-title {
    line-height: 1.4;
}
.meta-item {
    font-size: 0.9rem;
    color: #6c757d;
}
.meta-divider {
    color: #dee2e6;
    font-weight: bold;
}
.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}
.content-text p {
    margin-bottom: 1rem;
}
.tag-item {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.tag-item:hover {
    background-color: #007bff !important;
    color: white !important;
}
.share-buttons .btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.share-buttons .btn:hover {
    transform: translateY(-2px);
}
.placeholder-image {
    border: 2px dashed #dee2e6;
}
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .share-buttons {
        align-self: center;
    }
}
.service-content * {
    text-align: left !important;
}
.service-content p,
.service-content div,
.service-content li {
    text-align: left !important;
}
.service-points li {
    text-align: left !important;
}
.career-details-section {
    background: #f8f9fa;
    min-height: 80vh;
}

/* Job Header Card */
.job-header-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.job-meta i {
    color: var(--theme-color, #007bff);
}
.salary-info {
    text-align: right;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 180px;
}
.salary-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}
.salary-amount {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

/* Job Sections */
.job-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title i {
    color: var(--theme-color, #007bff);
}
.job-description,
.job-requirements,
.job-responsibilities,
.job-benefits {
    color: #666;
    line-height: 1.8;
}
.job-description ul,
.job-requirements ul,
.job-responsibilities ul,
.job-benefits ul {
    padding-left: 20px;
}
.job-description li,
.job-requirements li,
.job-responsibilities li,
.job-benefits li {
    margin-bottom: 8px;
}

/* Qualification Tags */
.qualification-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qualification-tag {
    background: #0B71B9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.qualification-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Sidebar */
.career-sidebar {
    position: sticky;
    top: 20px;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color, #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color, #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color, #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color, #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color, #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color, #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color, #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.service-content div,
.service-content li {
    text-align: left !important;
}
.service-points li {
    text-align: left !important;
}
.career-details-section {
    background: #f8f9fa;
    min-height: 80vh;
}

/* Job Header Card */
.job-header-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.job-meta i {
    color: var(--theme-color, #007bff);
}
.salary-info {
    text-align: right;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 180px;
}
.salary-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}
.salary-amount {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

/* Job Sections */
.job-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title i {
    color: var(--theme-color, #007bff);
}
.job-description,
.job-requirements,
.job-responsibilities,
.job-benefits {
    color: #666;
    line-height: 1.8;
}
.job-description ul,
.job-requirements ul,
.job-responsibilities ul,
.job-benefits ul {
    padding-left: 20px;
}
.job-description li,
.job-requirements li,
.job-responsibilities li,
.job-benefits li {
    margin-bottom: 8px;
}

/* Qualification Tags */
.qualification-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qualification-tag {
    background: #0B71B9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.qualification-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Sidebar */
.career-sidebar {
    position: sticky;
    top: 20px;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color, #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color, #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color, #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color, #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color, #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color, #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color, #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color, #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color, #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color, #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color, #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color, #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color, #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color, #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.job-header-content {
    flex-direction: column;
}
.salary-info {
    text-align: left;
    min-width: auto;
    width: 100%;
}
.career-sidebar {
    position: static;
    margin-top: 30px;
}

}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,
    0,
    0,
    0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;

}
.testimonial-card-items .client-info .client-img .icon {
    position: absolute;
    left: -25px;
    bottom: -35px;
}
.testimonial-card-items .client-info .client-img .icon .shape {
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
}
.testimonial-card-items .client-info .content h3 {
    color: #121315;
    font-family: "Inter",
    sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.testimonial-card-items p {
    font-weight: 500;
    margin-bottom: 30px;
}
.testimonial-card-items .star {
    color: var(--theme);
}
.testimonial-section {
    margin-bottom: -40px;
}
@media (min-width: 1400px) {
    .testimonial-slider {
        margin-right: -170px;
    }
}
.testimonial-slider .swiper-slide {
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
}
.testimonial-slider .swiper-slide-active .testimonial-card-items {
    border-top: 3px solid var(--theme);
    background-color: var(--white);
    box-shadow: 0px 4px 25px 0px rgba(51,
    39,
    39,
    0.06);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
}

/*# sourceMappingURL=main.css.map */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    display: inline-block;
    padding: 6px 0 !important;
    color: #fff;
}
.owl-carousel .owl-nav button.owl-next {
    padding-right: 14px !important;
    padding-left: 7px !important;
    border-radius: 0 40px 40px 0;
}
.owl-carousel .owl-nav button.owl-prev {
    padding-right: 7px !important;
    padding-left: 14px !important;
    border-radius: 40px 0 0 40px;
}
.page-section {
    position: relative;
    /* padding-top: 80px; */
    padding-bottom: 80px;
    overflow: hidden;
}
.page-hero {
    position: relative;
    height: 550px;
    z-index: 10;
}
.page-banner {
    position: relative;
    height: 300px;
    z-index: 10;
}
.page-hero.overlay-dark::before,
.page-banner.overlay-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52,
    53,
    49,
    0.7);
    z-index: 1;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    font-size: 14px;
}
.hero-section,
.banner-section {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    z-index: 10;
}
.hero-section .subhead {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #db7f7f;
    /* Changed from #000000 to white for better visibility */
    font-weight: 500;
}
.hero-section h1 {
    margin-bottom: 32px;
    color: #ffffff;
    /* Changed from var(--theme) to white */
    font-weight: 500;
}

/* Additional styling for better text visibility */
.hero-section {
    text-shadow: none !important;
}
.input-navbar {
    width: auto;
    max-width: 280px;
}
.input-navbar .input-group-text {
    background-color: #fff;
}
.input-navbar .form-control {
    height: calc(1.5em+1rem+2px);
}
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.service-card-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,
    0,
    0,
    0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
}
.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,
    0,
    0,
    0.12);
    border: 2px solid #ff9800;
}
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin: 15px;
    border-radius: 10px;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.service-card-item:hover .service-image img {
    transform: scale(1.05);
}
.service-content {
    padding: 0 25px 25px 25px;
    text-align: center;
}
.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--theme);
    line-height: 1.4;
}
.service-button .contact-btn {
    background: #fff;
    color: #666;
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}
.service-button .contact-btn:hover {
    background: linear-gradient(45deg,
    #ff9800,
    #ffc107);
    color: #fff;
    border-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,
    152,
    0,
    0.3);
}
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .service-content {
        padding: 0 20px 20px 20px;
    }
    .service-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .service-image {
        height: 180px;
        margin: 12px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .service-image {
        height: 160px;
        margin: 10px;
    }
    .service-content h3 {
        font-size: 16px;
    }
    .service-button .contact-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Career Card Hover Effects */
.career-card {
    background: #fff;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Content overlay */
.career-card>div {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

/* Description hover effect */
.career-description {
    transition: all 0.4s ease-in-out;
}

/* Salary badge hover effect */
.salary-badge {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 3;
}

/* Qualification tags hover effect */
.qualification-tag {
    background-color: #0B71B9;
    color: #fff;
}
.career-email {
    transition: all 0.4s ease-in-out;
}

/* Resume required hover effect */
.resume-required {
    transition: all 0.4s ease-in-out;
}

/* Button hover effect */
.career-btn {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 3;
}

/* Add subtle animation to the card */
@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Smooth transitions for all child elements */
.career-card * {
    transition: all 0.4s ease-in-out;
}
.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,
    0,
    0,
    0.08);
    margin: 20px 10px;
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
    border: 1px solid rgba(0,
    0,
    0,
    0.05);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,
    0,
    0,
    0.12);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.client-avatar {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 50%;
    border: 3px solid #E74D96;
    padding: 3px;
    background-color: white;
    overflow: hidden;
}
.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.client-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}
.client-service {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 8px;
}
.rating {
    color: #ffa502;
    font-size: 14px;
}
.testimonial-body {
    position: relative;
    margin-bottom: 25px;
}
.quote-icon {
    color: rgba(255,
    71,
    87,
    0.1);
    font-size: 40px;
    position: absolute;
    top: -15px;
    left: -10px;
}
.testimonial-text {
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    font-style: italic;
    padding-left: 10px;
}
.testimonial-results {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}
.results-title {
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    text-align: center;
}
.results-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
gle-result {
    justify-content: center;
}
.result-image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.1);
}
.result-divider {
    color: #E74D96;
    font-size: 20px;
}
.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #E74D96;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
}
.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.result-image:hover .result-img {
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 767px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    .client-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .results-gallery {
        flex-direction: column;
    }
    .result-divider {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
.blog-detail-card {
    border: 1px solid #e9ecef;
}
.blog-title {
    line-height: 1.4;
}
.meta-item {
    font-size: 0.9rem;
    color: #6c757d;
}
.meta-divider {
    color: #dee2e6;
    font-weight: bold;
}
.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}
.content-text p {
    margin-bottom: 1rem;
}
.tag-item {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.tag-item:hover {
    background-color: #007bff !important;
    color: white !important;
}
.share-buttons .btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.share-buttons .btn:hover {
    transform: translateY(-2px);
}
.placeholder-image {
    border: 2px dashed #dee2e6;
}
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    .share-buttons {
        align-self: center;
    }
}
.service-content * {
    text-align: left !important;
}
.service-content p,
.service-content div,
.service-content li {
    text-align: left !important;
}
.service-points li {
    text-align: left !important;
}
.career-details-section {
    background: #f8f9fa;
    min-height: 80vh;
}

/* Job Header Card */
.job-header-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.job-meta i {
    color: var(--theme-color,
    #007bff);
}
.salary-info {
    text-align: right;
    background: linear-gradient(135deg,
    #28a745 0%,
    #20c997 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 180px;
}
.salary-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}
.salary-amount {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

/* Job Sections */
.job-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title i {
    color: var(--theme-color,
    #007bff);
}
.job-description,
.job-requirements,
.job-responsibilities,
.job-benefits {
    color: #666;
    line-height: 1.8;
}
.job-description ul,
.job-requirements ul,
.job-responsibilities ul,
.job-benefits ul {
    padding-left: 20px;
}
.job-description li,
.job-requirements li,
.job-responsibilities li,
.job-benefits li {
    margin-bottom: 8px;
}

/* Qualification Tags */
.qualification-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qualification-tag {
    background: #0B71B9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.qualification-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,
    123,
    255,
    0.3);
}

/* Sidebar */
.career-sidebar {
    position: sticky;
    top: 20px;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color,
    #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color,
    #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color,
    #007bff);
    color: #fff;
}
ly-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color,
    #007bff);
    .summary-value {
        color: #333;
        font-weight: 500;
        font-size: 14px;
    }
    /* Share Buttons */
    .share-buttons {
        display: flex;
        gap: 10px;
    }
    .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .share-btn.linkedin {
        background: #0077b5;
        color: #fff;
    }
    .share-btn.twitter {
        background: #1da1f2;
        color: #fff;
    }
    .share-btn.facebook {
        background: #4267b2;
        color: #fff;
    }
    .share-btn.copy {
        background: #6c757d;
        color: #fff;
    }
    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,
        0,
        0,
        0.2);
    }
    /* Back Button */
    .back-to-careers {
        text-align: center;
    }
    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--theme-color,
        #007bff);
        text-decoration: none;
        font-weight: 500;
        padding: 10px 20px;
        border: 2px solid var(--theme-color,
        #007bff);
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    .back-btn:hover {
        background: var(--theme-color,
        #007bff);
        color: #fff;
        text-decoration: none;
    }
    .back-btn i {
        margin-right: 8px;
    }
    /* Modal Styles */
    .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 40px rgba(0,
        0,
        0,
        0.15);
    }
    .modal-header {
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 25px;
    }
    .modal-body {
        padding: 25px;
    }
    .modal-footer {
        border-top: 1px solid #f0f0f0;
        padding: 20px 25px;
    }
    /* Responsive Design */
    @media (max-width: 992px) {
        .job-header-content {
            flex-direction: column;
        }
        .salary-info {
            text-align: left;
            min-width: auto;
            width: 100%;
        }
        .career-sidebar {
            position: static;
            margin-top: 30px;
        }
    }
    @media (max-width: 768px) {
        .job-title {
            font-size: 24px;
        }
        .job-meta {
            flex-direction: column;
            gap: 10px;
        }
        .job-header-card,
        .job-section,
        .apply-card,
        .job-summary-card,
        .share-job-card {
            padding: 20px;
        }
        .qualification-tags-container {
            justify-content: center;
        }
    }
    /* Hero Banner Slider */
    .hero-banner-slider {
        position: relative;
    }
    .hero-banner-slider .swiper-button-next,
    .hero-banner-slider .swiper-button-prev {
        width: 50px;
        height: 50px;
        background-color: rgba(255,
        255,
        255,
        0.9);
        border-radius: 50%;
        color: var(--theme);
    }
    .hero-banner-slider .swiper-button-next:after,
    .hero-banner-slider .swiper-button-prev:after {
        font-size: 20px;
    }
    .hero-banner-slider .swiper-pagination {
        bottom: 20px;
    }
    .hero-banner-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255,
        255,
        255,
        0.9);
        opacity: 0.5;
    }
    .hero-banner-slider .swiper-pagination-bullet-active {
        opacity: 1;
        background-color: var(--theme);
    }
    .hero-section {
        text-shadow: none !important;
    }
    .hero-1 {
        position: relative;
        z-index: 1;
    }
    .hero-1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,
        0,
        0,
        0.1);
        z-index: 0;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--header);
    background-color: transparent;
    color: var(--theme);
    border-radius: 50%;
}
.team-details-wrapper .team-details-items .details-content .social-icon a:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: transparent;
}
.team-details-wrapper p {
    max-width: 550px;
    color: var(--header);
    font-weight: 500;
}
.team-details-wrapper .details-counter-area {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 575px) {
    .team-details-wrapper .details-counter-area {
        gap: 15px;
    }
}
.team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid var(--text);
}
.team-details-wrapper .details-counter-area .counter-items h2 {
    font-size: 24px;
    color: var(--header);
    font-weight: 700;
}
.team-details-wrapper .details-counter-area .counter-items p {
    font-size: 24px;
    font-weight: 700;
    color: var(--header);
    max-width: initial;
}
.testimonial-card-items {
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: 0px 4px 50px 0px rgba(0,
    0,
    0,
    0.1);
    padding: 40px 40px;
    margin-bottom: 40px;
}
.testimonial-card-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.testimonial-card-items .client-info .client-img {
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.testimonial-card-items .client-info .client-img .icon {
    position: absolute;
    left: -25px;
    bottom: -35px;
}
.testimonial-card-items .client-info .client-img .icon .shape {
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
}
.testimonial-card-items .client-info .content h3 {
    color: #121315;
    font-family: "Inter",
    sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.testimonial-card-items p {
    font-weight: 500;
    margin-bottom: 30px;
}
.testimonial-card-items .star {
    color: var(--theme);
}
.testimonial-section {
    margin-bottom: -40px;
}
@media (min-width: 1400px) {
    .testimonial-slider {
        margin-right: -170px;
    }
}
.testimonial-slider .swiper-slide {
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
}
.testimonial-slider .swiper-slide-active .testimonial-card-items {
    border-top: 3px solid var(--theme);
    background-color: var(--white);
    box-shadow: 0px 4px 25px 0px rgba(51,
    39,
    39,
    0.06);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
}

/*# sourceMappingURL=main.css.map */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    display: inline-block;
    padding: 6px 0 !important;
    color: #fff;
}
.owl-carousel .owl-nav button.owl-next {
    padding-right: 14px !important;
    padding-left: 7px !important;
    border-radius: 0 40px 40px 0;
}
.owl-carousel .owl-nav button.owl-prev {
    padding-right: 7px !important;
    padding-left: 14px !important;
    border-radius: 40px 0 0 40px;
}
.page-section {
    position: relative;
    /* padding-top: 80px; */
    padding-bottom: 80px;
    overflow: hidden;
}
.page-hero {
    position: relative;
    height: 550px;
    z-index: 10;
}
.page-banner {
    position: relative;
    height: 300px;
    z-index: 10;
}
.page-hero.overlay-dark::before,
.page-banner.overlay-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52,
    53,
    49,
    0.7);
    z-index: 1;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    font-size: 14px;
}
.hero-section,
.banner-section {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    z-index: 10;
}
.hero-section .subhead {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #db7f7f;
    /* Changed from #000000 to white for better visibility */
    font-weight: 500;
}
.hero-section h1 {
    margin-bottom: 32px;
    color: #ffffff;
    /* Changed from var(--theme) to white */
    font-weight: 500;
}

/* Additional styling for better text visibility */
.hero-section {
    text-shadow: none !important;
}
.input-navbar {
    width: auto;
    max-width: 280px;
}
.input-navbar .input-group-text {
    background-color: #fff;
}
.input-navbar .form-control {
    height: calc(1.5em+1rem+2px);
}
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.service-card-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,
    0,
    0,
    0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
}
.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,
    0,
    0,
    0.12);
    border: 2px solid #ff9800;
}
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin: 15px;
    border-radius: 10px;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.service-card-item:hover .service-image img {
    transform: scale(1.05);
}
.service-content {
    padding: 0 25px 25px 25px;
    text-align: center;
}
.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--theme);
    line-height: 1.4;
}
.service-button .contact-btn {
    background: #fff;
    color: #666;
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}
.service-button .contact-btn:hover {
    background: linear-gradient(45deg,
    #ff9800,
    #ffc107);
    color: #fff;
    border-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,
    152,
    0,
    0.3);
}
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .service-content {
        padding: 0 20px 20px 20px;
    }
    .service-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .service-image {
        height: 180px;
        margin: 12px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .service-image {
        height: 160px;
        margin: 10px;
    }
    .service-content h3 {
        font-size: 16px;
    }
    .service-button .contact-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Career Card Hover Effects */
.career-card {
    background: #fff;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Content overlay */
.career-card>div {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

/* Description hover effect */
.career-description {
    transition: all 0.4s ease-in-out;
}

/* Salary badge hover effect */
.salary-badge {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 3;
}

/* Qualification tags hover effect */
.qualification-tag {
    background-color: #0B71B9;
    color: #fff;
}
.career-email {
    transition: all 0.4s ease-in-out;
}

/* Resume required hover effect */
.resume-required {
    transition: all 0.4s ease-in-out;
}

/* Button hover effect */
.career-btn {
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 3;
}

/* Add subtle animation to the card */
@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Smooth transitions for all child elements */
.career-card * {
    transition: all 0.4s ease-in-out;
}
.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,
    0,
    0,
    0.08);
    margin: 20px 10px;
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
    border: 1px solid rgba(0,
    0,
    0,
    0.05);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,
    0,
    0,
    0.12);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.client-avatar {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 50%;
    border: 3px solid #E74D96;
    padding: 3px;
    background-color: white;
    overflow: hidden;
}
.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.client-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}
.client-service {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 8px;
}
.rating {
    color: #ffa502;
    font-size: 14px;
}
.testimonial-body {
    position: relative;
    margin-bottom: 25px;
}
.quote-icon {
    color: rgba(255,
    71,
    87,
    0.1);
    font-size: 40px;
    position: absolute;
    top: -15px;
    left: -10px;
}
.testimonial-text {
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    font-style: italic;
    padding-left: 10px;
}
.testimonial-results {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}
.results-title {
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    text-align: center;
}
.results-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.single-result {
    justify-content: center;
}
.result-image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.1);
}
.result-divider {
    color: #E74D96;
    font-size: 20px;
}
.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #E74D96;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
}
.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.result-image:hover .result-img {
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 767px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    .client-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .results-gallery {
        flex-direction: column;
    }
    .result-divider {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
.blog-detail-card {
    border: 1px solid #e9ecef;
}
.blog-title {
    line-height: 1.4;
}
.meta-item {
    font-size: 0.9rem;
    color: #6c757d;
}
.meta-divider {
    color: #dee2e6;
    font-weight: bold;
}
.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}
.content-text p {
    margin-bottom: 1rem;
}
.tag-item {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.tag-item:hover {
    background-color: #007bff !important;
    color: white !important;
}
.share-buttons .btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.share-buttons .btn:hover {
    transform: translateY(-2px);
}
.placeholder-image {
    border: 2px dashed #dee2e6;
}
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    .share-buttons {
        align-self: center;
    }
}
.service-content * {
    text-align: left !important;
}
.service-content p,
.service-content div,
.service-content li {
    text-align: left !important;
}
.service-points li {
    text-align: left !important;
}
.career-details-section {
    background: #f8f9fa;
    min-height: 80vh;
}

/* Job Header Card */
.job-header-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.job-meta i {
    color: var(--theme-color,
    #007bff);
}
.salary-info {
    text-align: right;
    background: linear-gradient(135deg,
    #28a745 0%,
    #20c997 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 180px;
}
.salary-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}
.salary-amount {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

/* Job Sections */
.job-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title i {
    color: var(--theme-color,
    #007bff);
}
.job-description,
.job-requirements,
.job-responsibilities,
.job-benefits {
    color: #666;
    line-height: 1.8;
}
.job-description ul,
.job-requirements ul,
.job-responsibilities ul,
.job-benefits ul {
    padding-left: 20px;
}
.job-description li,
.job-requirements li,
.job-responsibilities li,
.job-benefits li {
    margin-bottom: 8px;
}

/* Qualification Tags */
.qualification-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qualification-tag {
    background: #0B71B9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.qualification-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,
    123,
    255,
    0.3);
}

/* Sidebar */
.career-sidebar {
    position: sticky;
    top: 20px;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color,
    #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color,
    #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color,
    #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color,
    #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color,
    #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color,
    #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color,
    #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,
    0,
    0,
    0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,
    0,
    0,
    0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.job-benefits ul {
    padding-left: 20px;
}
.job-description li,
.job-requirements li,
.job-responsibilities li,
.job-benefits li {
    margin-bottom: 8px;
}

/* Qualification Tags */
.qualification-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qualification-tag {
    background: #0B71B9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.qualification-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,
    123,
    255,
    0.3);
}

/* Sidebar */
.career-sidebar {
    position: sticky;
    top: 20px;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color,
    #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color,
    #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color,
    #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color,
    #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color,
    #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color,
    #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color,
    #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,
    0,
    0,
    0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,
    0,
    0,
    0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color,
    #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color,
    #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color,
    #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color,
    #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color,
    #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color,
    #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color,
    #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,
    0,
    0,
    0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,
    0,
    0,
    0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color,
    #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color,
    #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color,
    #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color,
    #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color,
    #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color,
    #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color,
    #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,
    0,
    0,
    0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    border-radius: 50%;
    color: var(--theme);
}
.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
.hero-banner-slider .swiper-pagination {
    bottom: 20px;
}
.hero-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    opacity: 0.5;
}
.hero-banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--theme);
}
.hero-section {
    text-shadow: none !important;
}
.hero-1 {
    position: relative;
    z-index: 1;
}
.hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,
    0,
    0,
    0.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.apply-card,
.job-summary-card,
.share-job-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,
    0,
    0,
    0.08);
    border: 1px solid #f0f0f0;
}
.apply-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.apply-header p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}
.contact-item i {
    color: var(--theme-color,
    #007bff);
    font-size: 18px;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.contact-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.contact-value:hover {
    color: var(--theme-color,
    #007bff);
}
.resume-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.apply-btn.primary {
    background: var(--theme-color,
    #007bff);
    color: #fff;
}
.apply-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.apply-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}
.apply-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Job Summary */
.job-summary-card h4,
.share-job-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.summary-label i {
    color: var(--theme-color,
    #007bff);
}
.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}
.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}
.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}
.share-btn.copy {
    background: #6c757d;
    color: #fff;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.2);
}

/* Back Button */
.back-to-careers {
    text-align: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color,
    #007bff);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--theme-color,
    #007bff);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--theme-color,
    #007bff);
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,
    0,
    0,
    0.15);
}
.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-header-content {
        flex-direction: column;
    }
    .salary-info {
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    .career-sidebar {
        position: static;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .job-title {
        font-size: 24px;
    }
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    .job-header-card,
    .job-section,
    .apply-card,
    .job-summary-card,
    .share-job-card {
        padding: 20px;
    }
    .qualification-tags-container {
        justify-content: center;
    }
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}
.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,
    255,
    255,
    0.9);
    border-radius: 50%;
    color: var(--theme);
    .hero-banner-slider .swiper-button-next:after,
    .hero-banner-slider .swiper-button-prev:after {
        font-size: 20px;
    }
    .hero-banner-slider .swiper-pagination {
        bottom: 20px;
        .hero-banner-slider .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.9);
            opacity: 0.5;
        }
        .hero-banner-slider .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--theme);
        }
        .hero-section {
            text-shadow: none !important;
        }
        .hero-1 {
            position: relative;
            z-index: 1;
        }
        .hero-1::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        box-shadow: 0 5px 25px rgba(0,
        0,
        0,
        0.08);
        border: 1px solid #f0f0f0;
    }
    .apply-header h4 {
        color: #333;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .apply-header p {
        color: #666;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .contact-info {
        margin-bottom: 20px;
    }
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
    }
    .contact-item i {
        color: var(--theme-color,
        #007bff);
        font-size: 18px;
        margin-top: 2px;
    }
    .contact-label {
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 4px;
    }
    .contact-value {
        color: #333;
        font-weight: 500;
        text-decoration: none;
    }
    .contact-value:hover {
        color: var(--theme-color,
        #007bff);
    }
    .resume-note {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff3cd;
        color: #856404;
        padding: 10px 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 13px;
    }
    .apply-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .apply-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .apply-btn.primary {
        background: var(--theme-color,
        #007bff);
        color: #fff;
    }
    ly-btn.primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
        color: #fff;
        text-decoration: none;
    }
    .apply-btn.secondary {
        background: #f8f9fa;
        color: #333;
        border: 2px solid #e9ecef;
    }
    .apply-btn.secondary:hover {
        background: #e9ecef;
        border-color: #dee2e6;
    }
    /* Job Summary */
    .job-summary-card h4,
    .share-job-card h4 {
        color: #333;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .summary-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .summary-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    .summary-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .summary-label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
    }
    .summary-label i {
        color: var(--theme-color,
        #007bff);
        .summary-value {
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }
        /* Share Buttons */
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .share-btn.linkedin {
            background: #0077b5;
            color: #fff;
        }
        .share-btn.twitter {
            background: #1da1f2;
            color: #fff;
        }
        .share-btn.facebook {
            background: #4267b2;
            color: #fff;
        }
        .share-btn.copy {
            background: #6c757d;
            color: #fff;
        }
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        /* Back Button */
        .back-to-careers {
            text-align: center;
        }
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--theme-color, #007bff);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
            border: 2px solid var(--theme-color, #007bff);
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .back-btn:hover {
            background: var(--theme-color, #007bff);
            color: #fff;
            text-decoration: none;
        }
        .back-btn i {
            margin-right: 8px;
        }
        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }
        .modal-header {
            border-bottom: 1px solid #f0f0f0;
            padding: 20px 25px;
        }
        .modal-body {
            padding: 25px;
        }
        .modal-footer {
            border-top: 1px solid #f0f0f0;
            padding: 20px 25px;
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .job-header-content {
                flex-direction: column;
            }
            
            .salary-info {
                text-align: left;
                min-width: auto;
                width: 100%;
            }
            
            .career-sidebar {
                position: static;
                margin-top: 30px;
            }
        }
        @media (max-width: 768px) {
            .job-title {
                font-size: 24px;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .job-header-card,
            .job-section,
            .apply-card,
            .job-summary-card,
            .share-job-card {
                padding: 20px;
            }
            
            .qualification-tags-container {
                justify-content: center;
            }
        }
        /* Hero Banner Slider */
        .hero-banner-slider {
            position: relative;
        }
        .hero-banner-slider .swiper-button-next,
        .hero-banner-slider .swiper-button-prev {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            color: var(--theme);
        }
        .hero-banner-slider .swiper-button-next:after,
        .hero-banner-slider .swiper-button-prev:after {
            font-size: 20px;
        }
        .hero-banner-slider .swiper-pagination {
            bottom: 20px;
        }
        .hero-banner-slider .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.9);
            opacity: 0.5;
        }
        .hero-banner-slider .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--theme);
        }
        .hero-section {
            text-shadow: none !important;
        }
        .hero-1 {
            position: relative;
            z-index: 1;
        }
        .hero-1::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        border: 1px solid var(--header);
        background-color: transparent;
        color: var(--theme);
        border-radius: 50%;
    }
    .team-details-wrapper .team-details-items .details-content .social-icon a:hover {
        background-color: var(--white);
        color: var(--theme);
        border-color: transparent;
    }
    .team-details-wrapper p {
        max-width: 550px;
        color: var(--header);
        font-weight: 500;
    }
    .team-details-wrapper .details-counter-area {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    @media (max-width: 575px) {
        .team-details-wrapper .details-counter-area {
            gap: 15px;
        }
    }
    .team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
        padding-right: 20px;
        border-right: 1px solid var(--text);
    }
    .team-details-wrapper .details-counter-area .counter-items h2 {
        font-size: 24px;
        color: var(--header);
        font-weight: 700;
    }
    .team-details-wrapper .details-counter-area .counter-items p {
        font-size: 24px;
        font-weight: 700;
        color: var(--header);
        max-width: initial;
    }
    .testimonial-card-items {
        margin-top: 30px;
        background-color: var(--white);
        box-shadow: 0px 4px 50px 0px rgba(0,
        0,
        0,
        0.1);
        padding: 40px 40px;
        margin-bottom: 40px;
    }
    .testimonial-card-items .client-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .testimonial-card-items .client-info .client-img {
        width: 70px;
        height: 70px;
        position: relative;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }
    .testimonial-card-items .client-info .client-img .icon {
        position: absolute;
        left: -25px;
        bottom: -35px;
    }
    .testimonial-card-items .client-info .client-img .icon .shape {
        transition: all 0.1s;
        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        -ms-transition: all 0.1s;
        -o-transition: all 0.1s;
    }
    .testimonial-card-items .client-info .content h3 {
        color: #121315;
        font-family: "Inter",
        sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        letter-spacing: -0.4px;
    }
    .testimonial-card-items p {
        font-weight: 500;
        margin-bottom: 30px;
    }
    .testimonial-card-items .star {
        color: var(--theme);
    }
    .testimonial-section {
        margin-bottom: -40px;
    }
    @media (min-width: 1400px) {
        .testimonial-slider {
            margin-right: -170px;
        }
    }
    .testimonial-slider .swiper-slide {
        transition: all 3s;
        -webkit-transition: all 3s;
        -moz-transition: all 3s;
        -ms-transition: all 3s;
        -o-transition: all 3s;
    }
    .testimonial-slider .swiper-slide-active .testimonial-card-items {
        border-top: 3px solid var(--theme);
        background-color: var(--white);
        box-shadow: 0px 4px 25px 0px rgba(51,
        39,
        39,
        0.06);
        transition: all 1s;
        -webkit-transition: all 1s;
        -moz-transition: all 1s;
        -ms-transition: all 1s;
        -o-transition: all 1s;
    }
    .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
        filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
    }
    /*# sourceMappingURL=main.css.map */
    .owl-carousel .owl-nav button.owl-next,
    -carousel .owl-nav button.owl-prev {
        display: inline-block;
        padding: 6px 0 !important;
        color: #fff;
    }
    .owl-carousel .owl-nav button.owl-next {
        padding-right: 14px !important;
        padding-left: 7px !important;
        border-radius: 0 40px 40px 0;
    }
    .owl-carousel .owl-nav button.owl-prev {
        padding-right: 7px !important;
        padding-left: 14px !important;
        border-radius: 40px 0 0 40px;
    }
    .page-section {
        position: relative;
        /* padding-top: 80px; */
        padding-bottom: 80px;
        overflow: hidden;
    }
    .page-hero {
        position: relative;
        height: 550px;
        z-index: 10;
    }
    .page-banner {
        position: relative;
        height: 300px;
        z-index: 10;
    }
    .page-hero.overlay-dark::before,
    .page-banner.overlay-dark::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(52,
        53,
        49,
        0.7);
        z-index: 1;
    }
    .page-banner .breadcrumb-item,
    .page-banner .breadcrumb-item a {
        font-size: 14px;
    }
    o-section,
    .banner-section {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
        color: #ffffff;
        z-index: 10;
    }
    .hero-section .subhead {
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #db7f7f;
        /* Changed from #000000 to white for better visibility */
        font-weight: 500;
    }
    .hero-section h1 {
        margin-bottom: 32px;
        color: #ffffff;
        /* Changed from var(--theme) to white */
        font-weight: 500;
    }
    /* Additional styling for better text visibility */
    .hero-section {
        text-shadow: none !important;
    }
    .input-navbar {
        width: auto;
        max-width: 280px;
    }
    .input-navbar .input-group-text {
        background-color: #fff;
    }
    .input-navbar .form-control {
        height: calc(1.5em+1rem+2px);
    }
    .services-section {
        background: #f8f9fa;
        padding: 80px 0;
    }
    .service-card-item {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0,
        0,
        0,
        0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 2px solid #f0f0f0;
        position: relative;
    }
    .service-card-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0,
        0,
        0,
        0.12);
        border: 2px solid #ff9800;
    }
    .service-image {
        position: relative;
        height: 200px;
        overflow: hidden;
        margin: 15px;
        border-radius: 10px;
    }
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 10px;
    }
    .service-card-item:hover .service-image img {
        transform: scale(1.05);
    }
    .service-content {
        padding: 0 25px 25px 25px;
        text-align: center;
    }
    .service-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--theme);
        line-height: 1.4;
    }
    .service-button .contact-btn {
        background: #fff;
        color: #666;
        padding: 10px 25px;
        border: 2px solid #e0e0e0;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }
    .service-button .contact-btn:hover {
        background: linear-gradient(45deg,
        #ff9800,
        #ffc107);
        color: #fff;
        border-color: #ff9800;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255,
        152,
        0,
        0.3);
    }
    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }
    /* Mobile Responsive */
    ia (max-width: 768px) {
        .services-section {
            padding: 60px 0;
        }
        .service-content {
            padding: 0 20px 20px 20px;
        }
        .service-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        .service-image {
            height: 180px;
            margin: 12px;
        }
        .section-title h2 {
            font-size: 28px;
        }
    }
    @media (max-width: 576px) {
        .service-image {
            height: 160px;
            margin: 10px;
        }
        .service-content h3 {
            font-size: 16px;
        }
        .service-button .contact-btn {
            padding: 8px 20px;
            font-size: 13px;
        }
    }
    /* Career Card Hover Effects */
    .career-card {
        background: #fff;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }
    /* Content overlay */
    .career-card>div {
        position: relative;
        z-index: 2;
        transition: all 0.4s ease-in-out;
    }
    /* Description hover effect */
    .career-description {
        transition: all 0.4s ease-in-out;
    }
    /* Salary badge hover effect */
    .salary-badge {
        transition: all 0.4s ease-in-out;
        position: relative;
        z-index: 3;
    }
    /* Qualification tags hover effect */
    .qualification-tag {
        background-color: #0B71B9;
        color: #fff;
    }
    .career-email {
        transition: all 0.4s ease-in-out;
    }
    esume required hover effect */ .resume-required {
        transition: all 0.4s ease-in-out;
    }
    /* Button hover effect */
    .career-btn {
        transition: all 0.4s ease-in-out;
        position: relative;
        z-index: 3;
    }
    /* Add subtle animation to the card */
    @keyframes cardFloat {
        0%,
        100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-3px);
        }
    }
    /* Smooth transitions for all child elements */
    .career-card * {
        transition: all 0.4s ease-in-out;
    }
    .testimonial-card {
        background-color: #ffffff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,
        0,
        0,
        0.08);
        margin: 20px 10px;
        transition: transform 0.3s ease,
        box-shadow 0.3s ease;
        border: 1px solid rgba(0,
        0,
        0,
        0.05);
        height: 100%;
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,
        0,
        0,
        0.12);
    }
    .testimonial-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .client-avatar {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        margin-right: 20px;
        border-radius: 50%;
        border: 3px solid #E74D96;
        padding: 3px;
        background-color: white;
        overflow: hidden;
    }
    .avatar-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }
    .client-details h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #2c3e50;
    }
    .client-service {
        font-size: 14px;
        color: #7f8c8d;
        display: block;
        margin-bottom: 8px;
    }
    .rating {
        color: #ffa502;
        font-size: 14px;
    }
    .testimonial-body {
        position: relative;
        margin-bottom: 25px;
    }
    .quote-icon {
        color: rgba(255,
        71,
        87,
        0.1);
        font-size: 40px;
        position: absolute;
        top: -15px;
        left: -10px;
    }
    .testimonial-text {
        position: relative;
        font-size: 16px;
        line-height: 1.7;
        color: #5a6c7d;
        font-style: italic;
        padding-left: 10px;
    }
    .testimonial-results {
        background-color: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        margin-top: 20px;
    }
    .results-title {
        font-size: 16px;
        font-weight: 600;
        color: #34495e;
        margin-bottom: 15px;
        text-align: center;
    }
    .results-gallery {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .single-result {
        justify-content: center;
    }
    .result-image {
        position: relative;
        width: 140px;
        height: 140px;
        border-radius: 10px;
        overflow: hidden;
        border: 3px solid white;
        box-shadow: 0 5px 15px rgba(0,
        0,
        0,
        0.1);
    }
    .result-divider {
        color: #E74D96;
        font-size: 20px;
    }
    .image-label {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #E74D96;
        color: white;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
        z-index: 1;
    }
    .result-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .result-image:hover .result-img {
        transform: scale(1.1);
    }
    /* Responsive styles */
    @media (max-width: 767px) {
        .testimonial-header {
            flex-direction: column;
            text-align: center;
        }
        .client-avatar {
            margin-right: 0;
            margin-bottom: 15px;
        }
        .results-gallery {
            flex-direction: column;
        }
        .result-divider {
            transform: rotate(90deg);
            margin: 10px 0;
        }
    }
    .blog-detail-card {
        border: 1px solid #e9ecef;
    }
    .blog-title {
        line-height: 1.4;
    }
    .meta-item {
        font-size: 0.9rem;
        color: #6c757d;
    }
    .meta-divider {
        color: #dee2e6;
        font-weight: bold;
    }
    .content-text img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 15px 0;
    }
    .content-text p {
        margin-bottom: 1rem;
    }
    .tag-item {
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }
    .tag-item:hover {
        background-color: #007bff !important;
        color: white !important;
    }
    .share-buttons .btn {
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .share-buttons .btn:hover {
        transform: translateY(-2px);
    }
    .placeholder-image {
        border: 2px dashed #dee2e6;
    }
    @media (max-width: 768px) {
        .d-flex.justify-content-between {
            flex-direction: column;
            gap: 1rem;
        }
        .share-buttons {
            align-self: center;
        }
    }
    .service-content * {
        text-align: left !important;
    }
    .service-content p,
    .service-content div,
    .service-content li {
        text-align: left !important;
    }
    .service-points li {
        text-align: left !important;
    }
    .career-details-section {
        background: #f8f9fa;
        min-height: 80vh;
    }
    /* Job Header Card */
    .job-header-card {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 25px rgba(0,
        0,
        0,
        0.08);
        border: 1px solid #f0f0f0;
    }
    .job-header-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    .job-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    .job-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .job-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
    }
    .job-meta i {
        color: var(--theme-color,
        #007bff);
    }
    .salary-info {
        text-align: right;
        background: linear-gradient(135deg,
        #28a745 0%,
        #20c997 100%);
        color: #fff;
        padding: 20px;
        border-radius: 12px;
        min-width: 180px;
    }
    .salary-label {
        display: block;
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 5px;
    }
    .salary-amount {
        display: block;
        font-size: 19px;
        font-weight: 700;
    }
    /* Job Sections */
    .job-section {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 25px rgba(0,
        0,
        0,
        0.08);
        border: 1px solid #f0f0f0;
    }
    .section-title {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .section-title i {
        color: var(--theme-color,
        #007bff);
    }
    .job-description,
    .job-requirements,
    .job-responsibilities,
    .job-benefits {
        color: #666;
        line-height: 1.8;
    }
    .job-description ul,
    .job-requirements ul,
    .job-responsibilities ul,
    .job-benefits ul {
        padding-left: 20px;
    }
    .job-description li,
    .job-requirements li,
    .job-responsibilities li,
    .job-benefits li {
        margin-bottom: 8px;
    }
    /* Qualification Tags */
    .qualification-tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .qualification-tag {
        background: #0B71B9;
        color: #fff;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    .qualification-tag:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,
        123,
        255,
        0.3);
    }
    /* Sidebar */
    .career-sidebar {
        position: sticky;
        top: 20px;
    }
    .apply-card,
    .job-summary-card,
    .share-job-card {
        background: #fff;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 5px 25px rgba(0,
        0,
        0,
        0.08);
        border: 1px solid #f0f0f0;
    }
    .apply-header h4 {
        color: #333;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .apply-header p {
        color: #666;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .contact-info {
        margin-bottom: 20px;
    }
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
    }
    .contact-item i {
        color: var(--theme-color,
        #007bff);
        font-size: 18px;
        margin-top: 2px;
    }
    .contact-label {
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 4px;
    }
    .contact-value {
        color: #333;
        font-weight: 500;
        text-decoration: none;
    }
    .contact-value:hover {
        color: var(--theme-color,
        #007bff);
    }
    .resume-note {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff3cd;
        color: #856404;
        padding: 10px 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 13px;
    }
    .apply-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .apply-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .apply-btn.primary {
        background: var(--theme-color,
        #007bff);
        color: #fff;
    }
    .apply-btn.primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
        color: #fff;
        text-decoration: none;
    }
    .apply-btn.secondary {
        background: #f8f9fa;
        color: #333;
        border: 2px solid #e9ecef;
    }
    .apply-btn.secondary:hover {
        background: #e9ecef;
        border-color: #dee2e6;
    }
    /* Job Summary */
    .job-summary-card h4,
    .share-job-card h4 {
        color: #333;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .summary-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .summary-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    .summary-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .summary-label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
    }
    .summary-label i {
        color: var(--theme-color,
        #007bff);
    }
    .summary-value {
        color: #333;
        font-weight: 500;
        font-size: 14px;
    }
    /* Share Buttons */
    .share-buttons {
        display: flex;
        gap: 10px;
    }
    .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .share-btn.linkedin {
        background: #0077b5;
        color: #fff;
    }
    .share-btn.twitter {
        background: #1da1f2;
        color: #fff;
    }
    .share-btn.facebook {
        background: #4267b2;
        color: #fff;
    }
    .share-btn.copy {
        background: #6c757d;
        color: #fff;
    }
    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,
        0,
        0,
        0.2);
    }
    /* Back Button */
    .back-to-careers {
        text-align: center;
    }
    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--theme-color,
        #007bff);
        text-decoration: none;
        font-weight: 500;
        padding: 10px 20px;
        border: 2px solid var(--theme-color,
        #007bff);
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    .back-btn:hover {
        background: var(--theme-color,
        #007bff);
        color: #fff;
        text-decoration: none;
    }
    .back-btn i {
        margin-right: 8px;
    }
    /* Modal Styles */
    .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 40px rgba(0,
        0,
        0,
        0.15);
        .modal-header {
            border-bottom: 1px solid #f0f0f0;
            padding: 20px 25px;
        }
        .modal-body {
            padding: 25px;
        }
        .modal-footer {
            border-top: 1px solid #f0f0f0;
            padding: 20px 25px;
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .job-header-content {
                flex-direction: column;
            }
            
            .salary-info {
                text-align: left;
                min-width: auto;
                width: 100%;
            }
            
            .career-sidebar {
                position: static;
                margin-top: 30px;
            }
            
            @media (max-width: 768px) {
                .job-title {
                    font-size: 24px;
                }
                .job-meta {
                    flex-direction: column;
                    gap: 10px;
                }
                .job-header-card,
                .job-section,
                .apply-card,
                .job-summary-card,
                .share-job-card {
                    padding: 20px;
                }
                .qualification-tags-container {
                    justify-content: center;
                }
            }
            /* Hero Banner Slider */
            
            .hero-banner-slider {
                position: relative;
            }
            
            .hero-banner-slider .swiper-button-next,
            .hero-banner-slider .swiper-button-prev {
                width: 50px;
                height: 50px;
                background-color: rgba(255, 255, 255, 0.9);
                border-radius: 50%;
                color: var(--theme);
            }
            
            .hero-banner-slider .swiper-button-next:after,
            .hero-banner-slider .swiper-button-prev:after {
                font-size: 20px;
            }
            
            .hero-banner-slider .swiper-pagination {
                bottom: 20px;
            }
            
            .hero-banner-slider .swiper-pagination-bullet {
                width: 12px;
                height: 12px;
                background-color: rgba(255, 255, 255, 0.9);
                opacity: 0.5;
            }
            
            .hero-banner-slider .swiper-pagination-bullet-active {
                opacity: 1;
                background-color: var(--theme);
            }
            
            .hero-section {
                text-shadow: none !important;
            }
            
            .hero-1 {
                position: relative;
                z-index: 1;
            }
            
            .hero-1::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.1);
                z-index: 0;
            }
            
            .hero-content {
                position: relative;
                z-index: 2;
            }
        }
        .summary-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }
        .summary-label i {
            color: var(--theme-color, #007bff);
        }
        .summary-value {
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }
        /* Share Buttons */
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .share-btn.linkedin {
            background: #0077b5;
            color: #fff;
        }
        .share-btn.twitter {
            background: #1da1f2;
            color: #fff;
        }
        .share-btn.facebook {
            background: #4267b2;
            color: #fff;
        }
        .share-btn.copy {
            background: #6c757d;
            color: #fff;
        }
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        /* Back Button */
        .back-to-careers {
            text-align: center;
        }
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--theme-color, #007bff);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
            border: 2px solid var(--theme-color, #007bff);
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .back-btn:hover {
            background: var(--theme-color, #007bff);
            color: #fff;
            text-decoration: none;
        }
        .back-btn i {
            margin-right: 8px;
        }
        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }
        .modal-header {
            border-bottom: 1px solid #f0f0f0;
            padding: 20px 25px;
        }
        .modal-body {
            padding: 25px;
        }
        .modal-footer {
            border-top: 1px solid #f0f0f0;
            padding: 20px 25px;
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .job-header-content {
                flex-direction: column;
            }
            
            .salary-info {
                text-align: left;
                min-width: auto;
                width: 100%;
            }
            
            .career-sidebar {
                position: static;
                margin-top: 30px;
            }
        }
        @media (max-width: 768px) {
            .job-title {
                font-size: 24px;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .job-header-card,
            .job-section,
            .apply-card,
            .job-summary-card,
            .share-job-card {
                padding: 20px;
            }
            
            .qualification-tags-container {
                justify-content: center;
            }
        }
        /* Hero Banner Slider */
        .hero-banner-slider {
            position: relative;
        }
        .hero-banner-slider .swiper-button-next,
        .hero-banner-slider .swiper-button-prev {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            color: var(--theme);
        }
        .hero-banner-slider .swiper-button-next:after,
        .hero-banner-slider .swiper-button-prev:after {
            font-size: 20px;
        }
        .hero-banner-slider .swiper-pagination {
            bottom: 20px;
        }
        .hero-banner-slider .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.9);
            opacity: 0.5;
        }
        .hero-banner-slider .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--theme);
        }
        .hero-section {
            text-shadow: none !important;
        }
        .hero-1 {
            position: relative;
            z-index: 1;
        }
        .hero-1::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .job-header-content {
            flex-direction: column;
        }
        .salary-info {
            text-align: left;
            min-width: auto;
            width: 100%;
        }
        .career-sidebar {
            position: static;
            margin-top: 30px;
        }
    }
    @media (max-width: 768px) {
        .job-title {
            font-size: 24px;
        }
        .job-meta {
            flex-direction: column;
            gap: 10px;
        }
        .job-header-card,
        .job-section,
        .apply-card,
        .job-summary-card,
        .share-job-card {
            padding: 20px;
        }
        .qualification-tags-container {
            justify-content: center;
        }
    }
    /* Hero Banner Slider */
    .hero-banner-slider {
        position: relative;
    }
    .hero-banner-slider .swiper-button-next,
    .hero-banner-slider .swiper-button-prev {
        width: 50px;
        height: 50px;
        background-color: rgba(255,
        255,
        255,
        0.9);
        border-radius: 50%;
        color: var(--theme);
    }
    .hero-banner-slider .swiper-button-next:after,
    .hero-banner-slider .swiper-button-prev:after {
        font-size: 20px;
    }
    .hero-banner-slider .swiper-pagination {
        bottom: 20px;
    }
    .hero-banner-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255,
        255,
        255,
        0.9);
        opacity: 0.5;
    }
    .hero-banner-slider .swiper-pagination-bullet-active {
        opacity: 1;
        background-color: var(--theme);
    }
    .hero-section {
        text-shadow: none !important;
    }
    .hero-1 {
        position: relative;
        z-index: 1;
    }
    .hero-1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,
        0,
        0,
        0.1);
        z-index: 0;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.testimonial-card-items .client-info .client-img .icon {
    position: absolute;
    left: -25px;
    bottom: -35px;
}
.testimonial-card-items .client-info .client-img .icon .shape {
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
}
.testimonial-card-items .client-info .content h3 {
    color: #121315;
    font-family: "Inter",
    sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.testimonial-card-items p {
    font-weight: 500;
    margin-bottom: 30px;
}
.testimonial-card-items .star {
    color: var(--theme);
}
.testimonial-section {
    margin-bottom: -40px;
}
@media (min-width: 1400px) {
    .testimonial-slider {
        margin-right: -170px;
    }
}
.testimonial-slider .swiper-slide {
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
}
.testimonial-slider .swiper-slide-active .testimonial-card-items {
    border-top: 3px solid var(--theme);
    background-color: var(--white);
    box-shadow: 0px 4px 25px 0px rgba(51,
    39,
    39,
    0.06);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
    /*# sourceMappingURL=main.css.map */
    -carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        display: inline-block;
        padding: 6px 0 !important;
        color: #fff;
    }
    .owl-carousel .owl-nav button.owl-next {
        padding-right: 14px !important;
        padding-left: 7px !important;
        border-radius: 0 40px 40px 0;
    }
    .owl-carousel .owl-nav button.owl-prev {
        padding-right: 7px !important;
        padding-left: 14px !important;
        border-radius: 40px 0 0 40px;
    }
    .page-section {
        position: relative;
        /* padding-top: 80px; */
        padding-bottom: 80px;
        overflow: hidden;
        .page-hero {
            position: relative;
            height: 550px;
            z-index: 10;
        }
        .page-banner {
            position: relative;
            height: 300px;
            z-index: 10;
        }
        .page-hero.overlay-dark::before,
        .page-banner.overlay-dark::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(52, 53, 49, 0.7);
            z-index: 1;
            .page-banner .breadcrumb-item,
            .page-banner .breadcrumb-item a {
                font-size: 14px;
                .hero-section,
                .banner-section {
                    position: relative;
                    display: -ms-flexbox;
                    display: flex;
                    -ms-flex-align: center;
                    align-items: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    height: 100%;
                    color: #ffffff;
                    z-index: 10;
                }
                .hero-section .subhead {
                    text-transform: uppercase;
                    letter-spacing: 4px;
                    color: #db7f7f;
                    /* Changed from #000000 to white for better visibility */
                    font-weight: 500;
                }
                .hero-section h1 {
                    margin-bottom: 32px;
                    color: #ffffff;
                    /* Changed from var(--theme) to white */
                    font-weight: 500;
                }
                /* Additional styling for better text visibility */
                .hero-section {
                    text-shadow: none !important;
                }
                .input-navbar {
                    width: auto;
                    max-width: 280px;
                }
                .input-navbar .input-group-text {
                    background-color: #fff;
                }
                .input-navbar .form-control {
                    height: calc(1.5em + 1rem + 2px);
                }
                .services-section {
                    background: #f8f9fa;
                    padding: 80px 0;
                }
                .service-card-item {
                    background: #fff;
                    border-radius: 15px;
                    overflow: hidden;
                    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                    transition: all 0.3s ease;
                    height: 100%;
                    border: 2px solid #f0f0f0;
                    position: relative;
                }
                .service-card-item:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                    border: 2px solid #ff9800;
                }
                .service-image {
                    position: relative;
                    height: 200px;
                    overflow: hidden;
                    margin: 15px;
                    border-radius: 10px;
                }
                .service-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.3s ease;
                    border-radius: 10px;
                }
                .service-card-item:hover .service-image img {
                    transform: scale(1.05);
                }
                .service-content {
                    padding: 0 25px 25px 25px;
                    text-align: center;
                }
                .service-content h3 {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 20px;
                    color: var(--theme);
                    line-height: 1.4;
                }
                .service-button .contact-btn {
                    background: #fff;
                    color: #666;
                    padding: 10px 25px;
                    border: 2px solid #e0e0e0;
                    border-radius: 25px;
                    text-decoration: none;
                    font-weight: 500;
                    font-size: 14px;
                    transition: all 0.3s ease;
                    display: inline-block;
                }
                vice-button .contact-btn:hover {
                    background: linear-gradient(45deg, #ff9800, #ffc107);
                    color: #fff;
                    border-color: #ff9800;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                }
                .section-title h2 {
                    font-size: 36px;
                    font-weight: 700;
                    color: #333;
                    margin-bottom: 20px;
                }
                obile Responsive */ @media (max-width: 768px) {
                    .services-section {
                        padding: 60px 0;
                    }
                    .service-content {
                        padding: 0 20px 20px 20px;
                    }
                    .service-content h3 {
                        font-size: 18px;
                        margin-bottom: 15px;
                    }
                    .service-image {
                        height: 180px;
                        margin: 12px;
                    }
                    .section-title h2 {
                        font-size: 28px;
                    }
                }
                @media (max-width: 576px) {
                    .service-image {
                        height: 160px;
                        margin: 10px;
                    }
                    .service-content h3 {
                        font-size: 16px;
                    }
                    .service-button .contact-btn {
                        padding: 8px 20px;
                        font-size: 13px;
                    }
                }
                /* Career Card Hover Effects */
                .career-card {
                    background: #fff;
                    transition: all 0.4s ease-in-out;
                    overflow: hidden;
                    position: relative;
                    cursor: pointer;
                }
                /* Content overlay */
                .career-card>div {
                    position: relative;
                    z-index: 2;
                    transition: all 0.4s ease-in-out;
                }
                /* Description hover effect */
                .career-description {
                    transition: all 0.4s ease-in-out;
                }
                /* Salary badge hover effect */
                .salary-badge {
                    transition: all 0.4s ease-in-out;
                    position: relative;
                    z-index: 3;
                }
                /* Qualification tags hover effect */
                .qualification-tag {
                    background-color: #0B71B9;
                    color: #fff;
                }
                .career-email {
                    transition: all 0.4s ease-in-out;
                }
                /* Resume required hover effect */
                .resume-required {
                    transition: all 0.4s ease-in-out;
                }
                /* Button hover effect */
                .career-btn {
                    transition: all 0.4s ease-in-out;
                    position: relative;
                    z-index: 3;
                }
                /* Add subtle animation to the card */
                @keyframes cardFloat {
                    0%,
                    100% {
                        transform: translateY(0px);
                    }
                    50% {
                        transform: translateY(-3px);
                    }
                }
                /* Smooth transitions for all child elements */
                .career-card * {
                    transition: all 0.4s ease-in-out;
                }
                .testimonial-card {
                    background-color: #ffffff;
                    border-radius: 15px;
                    padding: 30px;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                    margin: 20px 10px;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    border: 1px solid rgba(0, 0, 0, 0.05);
                    height: 100%;
                }
                .testimonial-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                }
                .testimonial-header {
                    display: flex;
                    align-items: center;
                    margin-bottom: 20px;
                }
                .client-avatar {
                    width: 70px;
                    height: 70px;
                    flex-shrink: 0;
                    margin-right: 20px;
                    border-radius: 50%;
                    border: 3px solid #E74D96;
                    padding: 3px;
                    background-color: white;
                    overflow: hidden;
                }
                .avatar-img {
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    object-fit: cover;
                }
                .client-details h3 {
                    font-size: 18px;
                    font-weight: 700;
                    margin-bottom: 5px;
                    color: #2c3e50;
                }
                .client-service {
                    font-size: 14px;
                    color: #7f8c8d;
                    display: block;
                    margin-bottom: 8px;
                }
                .rating {
                    color: #ffa502;
                    font-size: 14px;
                }
                .testimonial-body {
                    position: relative;
                    margin-bottom: 25px;
                }
                .quote-icon {
                    color: rgba(255, 71, 87, 0.1);
                    font-size: 40px;
                    position: absolute;
                    top: -15px;
                    left: -10px;
                }
                .testimonial-text {
                    position: relative;
                    font-size: 16px;
                    line-height: 1.7;
                    color: #5a6c7d;
                    font-style: italic;
                    padding-left: 10px;
                }
                .testimonial-results {
                    background-color: #f8f9fa;
                    border-radius: 12px;
                    padding: 20px;
                    margin-top: 20px;
                }
                .results-title {
                    font-size: 16px;
                    font-weight: 600;
                    color: #34495e;
                    margin-bottom: 15px;
                    text-align: center;
                }
                .results-gallery {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 15px;
                }
                gle-result {
                    justify-content: center;
                }
                .result-image {
                    position: relative;
                    width: 140px;
                    height: 140px;
                    border-radius: 10px;
                    overflow: hidden;
                    border: 3px solid white;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                }
                .result-divider {
                    color: #E74D96;
                    font-size: 20px;
                }
                .image-label {
                    position: absolute;
                    top: 10px;
                    left: 10px;
                    background-color: #E74D96;
                    color: white;
                    font-size: 12px;
                    font-weight: 600;
                    padding: 4px 10px;
                    border-radius: 20px;
                    z-index: 1;
                }
                .result-img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }
                ult-image:hover .result-img {
                    transform: scale(1.1);
                }
                /* Responsive styles */
                @media (max-width: 767px) {
                    .testimonial-header {
                        flex-direction: column;
                        text-align: center;
                    }
                    .client-avatar {
                        margin-right: 0;
                        margin-bottom: 15px;
                    }
                    .results-gallery {
                        flex-direction: column;
                    }
                    .result-divider {
                        transform: rotate(90deg);
                        margin: 10px 0;
                    }
                }
                .blog-detail-card {
                    border: 1px solid #e9ecef;
                }
                .blog-title {
                    line-height: 1.4;
                }
                .meta-item {
                    font-size: 0.9rem;
                    color: #6c757d;
                }
                .meta-divider {
                    color: #dee2e6;
                    font-weight: bold;
                }
                .content-text img {
                    max-width: 100%;
                    height: auto;
                    border-radius: 8px;
                    margin: 15px 0;
                }
                .content-text p {
                    margin-bottom: 1rem;
                }
                .tag-item {
                    font-size: 0.85rem;
                    transition: all 0.3s ease;
                }
                .tag-item:hover {
                    background-color: #007bff !important;
                    color: white !important;
                }
                .share-buttons .btn {
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                }
                .share-buttons .btn:hover {
                    transform: translateY(-2px);
                }
                .placeholder-image {
                    border: 2px dashed #dee2e6;
                }
                @media (max-width: 768px) {
                    .d-flex.justify-content-between {
                        flex-direction: column;
                        gap: 1rem;
                    }
                    .share-buttons {
                        align-self: center;
                    }
                }
                .service-content * {
                    text-align: left !important;
                }
                .service-content p,
                .service-content div,
                .service-content li {
                    text-align: left !important;
                }
                .service-points li {
                    text-align: left !important;
                }
                .career-details-section {
                    background: #f8f9fa;
                    min-height: 80vh;
                }
                /* Job Header Card */
                .job-header-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 30px;
                    margin-bottom: 30px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .job-header-content {
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-start;
                    gap: 20px;
                }
                .job-title {
                    font-size: 32px;
                    font-weight: 700;
                    color: #333;
                    margin-bottom: 15px;
                    line-height: 1.2;
                }
                .job-meta {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                }
                .job-meta span {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .job-meta i {
                    color: var(--theme-color, #007bff);
                }
                .salary-info {
                    text-align: right;
                    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                    color: #fff;
                    padding: 20px;
                    border-radius: 12px;
                    min-width: 180px;
                }
                .salary-label {
                    display: block;
                    font-size: 14px;
                    opacity: 0.9;
                    margin-bottom: 5px;
                }
                .salary-amount {
                    display: block;
                    font-size: 19px;
                    font-weight: 700;
                }
                /* Job Sections */
                .job-section {
                    background: #fff;
                    border-radius: 15px;
                    padding: 30px;
                    margin-bottom: 30px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .section-title {
                    font-size: 20px;
                    font-weight: 600;
                    color: #333;
                    margin-bottom: 20px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }
                .section-title i {
                    color: var(--theme-color, #007bff);
                }
                .job-description,
                .job-requirements,
                .job-responsibilities,
                .job-benefits {
                    color: #666;
                    line-height: 1.8;
                }
                .job-description ul,
                .job-requirements ul,
                .job-responsibilities ul,
                .job-benefits ul {
                    padding-left: 20px;
                }
                .job-description li,
                .job-requirements li,
                .job-responsibilities li,
                .job-benefits li {
                    margin-bottom: 8px;
                }
                /* Qualification Tags */
                .qualification-tags-container {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 12px;
                }
                .qualification-tag {
                    background: #0B71B9;
                    color: #fff;
                    padding: 8px 16px;
                    border-radius: 20px;
                    font-size: 13px;
                    font-weight: 500;
                    transition: all 0.3s ease;
                }
                .qualification-tag:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                }
                /* Sidebar */
                .career-sidebar {
                    position: sticky;
                    top: 20px;
                }
                .apply-card,
                .job-summary-card,
                .share-job-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 25px;
                    margin-bottom: 25px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .apply-header h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .apply-header p {
                    color: #666;
                    margin-bottom: 20px;
                    font-size: 14px;
                }
                .contact-info {
                    margin-bottom: 20px;
                }
                .contact-item {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    padding: 15px;
                    background: #f8f9fa;
                    border-radius: 10px;
                }
                .contact-item i {
                    color: var(--theme-color, #007bff);
                    font-size: 18px;
                    margin-top: 2px;
                }
                .contact-label {
                    display: block;
                    font-size: 12px;
                    color: #666;
                    margin-bottom: 4px;
                }
                .contact-value {
                    color: #333;
                    font-weight: 500;
                    text-decoration: none;
                }
                .contact-value:hover {
                    color: var(--theme-color, #007bff);
                }
                .resume-note {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff3cd;
                    color: #856404;
                    padding: 10px 15px;
                    border-radius: 8px;
                    margin-bottom: 20px;
                    font-size: 13px;
                }
                .apply-actions {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                }
                .apply-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    padding: 12px 20px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 500;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .apply-btn.primary {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                }
                ly-btn.primary:hover {
                    background: #0056b3;
                    transform: translateY(-2px);
                    color: #fff;
                    text-decoration: none;
                }
                .apply-btn.secondary {
                    background: #f8f9fa;
                    color: #333;
                    border: 2px solid #e9ecef;
                }
                .apply-btn.secondary:hover {
                    background: #e9ecef;
                    border-color: #dee2e6;
                }
                /* Job Summary */
                .job-summary-card h4,
                .share-job-card h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 20px;
                }
                .summary-items {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }
                .summary-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 15px;
                    border-bottom: 1px solid #f0f0f0;
                }
                mary-item:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }
                .summary-label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .summary-label i {
                    color: var(--theme-color, #007bff);
                    .summary-value {
                        color: #333;
                        font-weight: 500;
                        font-size: 14px;
                    }
                    /* Share Buttons */
                    .share-buttons {
                        display: flex;
                        gap: 10px;
                    }
                    .share-btn {
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        border: none;
                        cursor: pointer;
                    }
                    .share-btn.linkedin {
                        background: #0077b5;
                        color: #fff;
                    }
                    .share-btn.twitter {
                        background: #1da1f2;
                        color: #fff;
                    }
                    .share-btn.facebook {
                        background: #4267b2;
                        color: #fff;
                    }
                    .share-btn.copy {
                        background: #6c757d;
                        color: #fff;
                    }
                    .share-btn:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                    }
                    /* Back Button */
                    .back-to-careers {
                        text-align: center;
                    }
                    .back-btn {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        color: var(--theme-color, #007bff);
                        text-decoration: none;
                        font-weight: 500;
                        padding: 10px 20px;
                        border: 2px solid var(--theme-color, #007bff);
                        border-radius: 25px;
                        transition: all 0.3s ease;
                    }
                    .back-btn:hover {
                        background: var(--theme-color, #007bff);
                        color: #fff;
                        text-decoration: none;
                    }
                    .back-btn i {
                        margin-right: 8px;
                    }
                    /* Modal Styles */
                    .modal-content {
                        border-radius: 15px;
                        border: none;
                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                    }
                    .modal-header {
                        border-bottom: 1px solid #f0f0f0;
                        padding: 20px 25px;
                    }
                    .modal-body {
                        padding: 25px;
                    }
                    .modal-footer {
                        border-top: 1px solid #f0f0f0;
                        padding: 20px 25px;
                    }
                    /* Responsive Design */
                    @media (max-width: 992px) {
                        .job-header-content {
                            flex-direction: column;
                        }
                        .salary-info {
                            text-align: left;
                            min-width: auto;
                            width: 100%;
                        }
                        .career-sidebar {
                            position: static;
                            margin-top: 30px;
                        }
                    }
                    @media (max-width: 768px) {
                        .job-title {
                            font-size: 24px;
                        }
                        .job-meta {
                            flex-direction: column;
                            gap: 10px;
                        }
                        .job-header-card,
                        .job-section,
                        .apply-card,
                        .job-summary-card,
                        .share-job-card {
                            padding: 20px;
                        }
                        .qualification-tags-container {
                            justify-content: center;
                        }
                    }
                    /* Hero Banner Slider */
                    .hero-banner-slider {
                        position: relative;
                    }
                    .hero-banner-slider .swiper-button-next,
                    .hero-banner-slider .swiper-button-prev {
                        width: 50px;
                        height: 50px;
                        background-color: rgba(255, 255, 255, 0.9);
                        border-radius: 50%;
                        color: var(--theme);
                    }
                    .hero-banner-slider .swiper-button-next:after,
                    .hero-banner-slider .swiper-button-prev:after {
                        font-size: 20px;
                    }
                    .hero-banner-slider .swiper-pagination {
                        bottom: 20px;
                    }
                    .hero-banner-slider .swiper-pagination-bullet {
                        width: 12px;
                        height: 12px;
                        background-color: rgba(255, 255, 255, 0.9);
                        opacity: 0.5;
                    }
                    .hero-banner-slider .swiper-pagination-bullet-active {
                        opacity: 1;
                        background-color: var(--theme);
                    }
                    .hero-section {
                        text-shadow: none !important;
                    }
                    .hero-1 {
                        position: relative;
                        z-index: 1;
                    }
                    .hero-1::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.1);
                        z-index: 0;
                    }
                    .hero-content {
                        position: relative;
                        z-index: 2;
                    }
                    width: 36px;
                    height: 36px;
                    line-height: 36px;
                    text-align: center;
                    border: 1px solid var(--header);
                    background-color: transparent;
                    color: var(--theme);
                    border-radius: 50%;
                }
                .team-details-wrapper .team-details-items .details-content .social-icon a:hover {
                    background-color: var(--white);
                    color: var(--theme);
                    border-color: transparent;
                }
                .team-details-wrapper p {
                    max-width: 550px;
                    color: var(--header);
                    font-weight: 500;
                }
                .team-details-wrapper .details-counter-area {
                    display: flex;
                    align-items: center;
                    gap: 40px;
                }
                @media (max-width: 575px) {
                    .team-details-wrapper .details-counter-area {
                        gap: 15px;
                    }
                }
                .team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
                    padding-right: 20px;
                    border-right: 1px solid var(--text);
                }
                .team-details-wrapper .details-counter-area .counter-items h2 {
                    font-size: 24px;
                    color: var(--header);
                    font-weight: 700;
                }
                .team-details-wrapper .details-counter-area .counter-items p {
                    font-size: 24px;
                    font-weight: 700;
                    color: var(--header);
                    max-width: initial;
                }
                .testimonial-card-items {
                    margin-top: 30px;
                    background-color: var(--white);
                    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
                    padding: 40px 40px;
                    margin-bottom: 40px;
                }
                .testimonial-card-items .client-info {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                }
                .testimonial-card-items .client-info .client-img {
                    width: 70px;
                    height: 70px;
                    position: relative;
                    border-radius: 50%;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    -ms-border-radius: 50%;
                    -o-border-radius: 50%;
                }
                .testimonial-card-items .client-info .client-img .icon {
                    position: absolute;
                    left: -25px;
                    bottom: -35px;
                }
                .testimonial-card-items .client-info .client-img .icon .shape {
                    transition: all 0.1s;
                    -webkit-transition: all 0.1s;
                    -moz-transition: all 0.1s;
                    -ms-transition: all 0.1s;
                    -o-transition: all 0.1s;
                }
                .testimonial-card-items .client-info .content h3 {
                    color: #121315;
                    font-family: "Inter", sans-serif;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 28px;
                    letter-spacing: -0.4px;
                }
                .testimonial-card-items p {
                    font-weight: 500;
                    margin-bottom: 30px;
                }
                .testimonial-card-items .star {
                    color: var(--theme);
                }
                .testimonial-section {
                    margin-bottom: -40px;
                }
                @media (min-width: 1400px) {
                    .testimonial-slider {
                        margin-right: -170px;
                    }
                }
                .testimonial-slider .swiper-slide {
                    transition: all 3s;
                    -webkit-transition: all 3s;
                    -moz-transition: all 3s;
                    -ms-transition: all 3s;
                    -o-transition: all 3s;
                }
                .testimonial-slider .swiper-slide-active .testimonial-card-items {
                    border-top: 3px solid var(--theme);
                    background-color: var(--white);
                    box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                    transition: all 1s;
                    -webkit-transition: all 1s;
                    -moz-transition: all 1s;
                    -ms-transition: all 1s;
                    -o-transition: all 1s;
                }
                .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                }
                /*# sourceMappingURL=main.css.map */
                -carousel .owl-nav button.owl-next,
                .owl-carousel .owl-nav button.owl-prev {
                    display: inline-block;
                    padding: 6px 0 !important;
                    color: #fff;
                }
                .owl-carousel .owl-nav button.owl-next {
                    padding-right: 14px !important;
                    padding-left: 7px !important;
                    border-radius: 0 40px 40px 0;
                }
                .owl-carousel .owl-nav button.owl-prev {
                    padding-right: 7px !important;
                    padding-left: 14px !important;
                    border-radius: 40px 0 0 40px;
                }
                .page-section {
                    position: relative;
                    /* padding-top: 80px; */
                    padding-bottom: 80px;
                    overflow: hidden;
                }
                .page-hero {
                    position: relative;
                    height: 550px;
                    z-index: 10;
                }
                .page-banner {
                    position: relative;
                    height: 300px;
                    z-index: 10;
                }
                .page-hero.overlay-dark::before,
                .page-banner.overlay-dark::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(52, 53, 49, 0.7);
                    z-index: 1;
                }
                .page-banner .breadcrumb-item,
                .page-banner .breadcrumb-item a {
                    font-size: 14px;
                    .hero-section,
                    .banner-section {
                        position: relative;
                        display: -ms-flexbox;
                        display: flex;
                        -ms-flex-align: center;
                        align-items: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        height: 100%;
                        color: #ffffff;
                        z-index: 10;
                    }
                    .hero-section .subhead {
                        text-transform: uppercase;
                        letter-spacing: 4px;
                        color: #db7f7f;
                        /* Changed from #000000 to white for better visibility */
                        font-weight: 500;
                    }
                    .hero-section h1 {
                        margin-bottom: 32px;
                        color: #ffffff;
                        /* Changed from var(--theme) to white */
                        font-weight: 500;
                    }
                    /* Additional styling for better text visibility */
                    .hero-section {
                        text-shadow: none !important;
                    }
                    .input-navbar {
                        width: auto;
                        max-width: 280px;
                    }
                    .input-navbar .input-group-text {
                        background-color: #fff;
                    }
                    .input-navbar .form-control {
                        height: calc(1.5em + 1rem + 2px);
                    }
                    .services-section {
                        background: #f8f9fa;
                        padding: 80px 0;
                    }
                    .service-card-item {
                        background: #fff;
                        border-radius: 15px;
                        overflow: hidden;
                        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                        transition: all 0.3s ease;
                        height: 100%;
                        border: 2px solid #f0f0f0;
                        position: relative;
                    }
                    .service-card-item:hover {
                        transform: translateY(-8px);
                        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                        border: 2px solid #ff9800;
                    }
                    .service-image {
                        position: relative;
                        height: 200px;
                        overflow: hidden;
                        margin: 15px;
                        border-radius: 10px;
                    }
                    .service-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.3s ease;
                        border-radius: 10px;
                    }
                    .service-card-item:hover .service-image img {
                        transform: scale(1.05);
                    }
                    .service-content {
                        padding: 0 25px 25px 25px;
                        text-align: center;
                    }
                    .service-content h3 {
                        font-size: 20px;
                        font-weight: 600;
                        margin-bottom: 20px;
                        color: var(--theme);
                        line-height: 1.4;
                    }
                    .service-button .contact-btn {
                        background: #fff;
                        color: #666;
                        padding: 10px 25px;
                        border: 2px solid #e0e0e0;
                        border-radius: 25px;
                        text-decoration: none;
                        font-weight: 500;
                        font-size: 14px;
                        transition: all 0.3s ease;
                        display: inline-block;
                    }
                    vice-button .contact-btn:hover {
                        background: linear-gradient(45deg, #ff9800, #ffc107);
                        color: #fff;
                        border-color: #ff9800;
                        transform: translateY(-2px);
                        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                    }
                    .section-title h2 {
                        font-size: 36px;
                        font-weight: 700;
                        color: #333;
                        margin-bottom: 20px;
                    }
                    obile Responsive */ @media (max-width: 768px) {
                        .services-section {
                            padding: 60px 0;
                        }
                        .service-content {
                            padding: 0 20px 20px 20px;
                        }
                        .service-content h3 {
                            font-size: 18px;
                            margin-bottom: 15px;
                        }
                        .service-image {
                            height: 180px;
                            margin: 12px;
                        }
                        .section-title h2 {
                            font-size: 28px;
                        }
                    }
                    @media (max-width: 576px) {
                        .service-image {
                            height: 160px;
                            margin: 10px;
                        }
                        .service-content h3 {
                            font-size: 16px;
                        }
                        .service-button .contact-btn {
                            padding: 8px 20px;
                            font-size: 13px;
                        }
                    }
                    /* Career Card Hover Effects */
                    .career-card {
                        background: #fff;
                        transition: all 0.4s ease-in-out;
                        overflow: hidden;
                        position: relative;
                        cursor: pointer;
                    }
                    /* Content overlay */
                    .career-card>div {
                        position: relative;
                        z-index: 2;
                        transition: all 0.4s ease-in-out;
                    }
                    /* Description hover effect */
                    .career-description {
                        transition: all 0.4s ease-in-out;
                    }
                    /* Salary badge hover effect */
                    .salary-badge {
                        transition: all 0.4s ease-in-out;
                        position: relative;
                        z-index: 3;
                    }
                    /* Qualification tags hover effect */
                    .qualification-tag {
                        background-color: #0B71B9;
                        color: #fff;
                    }
                    .career-email {
                        transition: all 0.4s ease-in-out;
                    }
                    /* Resume required hover effect */
                    .resume-required {
                        transition: all 0.4s ease-in-out;
                    }
                    /* Button hover effect */
                    .career-btn {
                        transition: all 0.4s ease-in-out;
                        position: relative;
                        z-index: 3;
                    }
                    /* Add subtle animation to the card */
                    @keyframes cardFloat {
                        0%,
                        100% {
                            transform: translateY(0px);
                        }
                        50% {
                            transform: translateY(-3px);
                        }
                    }
                    /* Smooth transitions for all child elements */
                    .career-card * {
                        transition: all 0.4s ease-in-out;
                    }
                    .testimonial-card {
                        background-color: #ffffff;
                        border-radius: 15px;
                        padding: 30px;
                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                        margin: 20px 10px;
                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                        border: 1px solid rgba(0, 0, 0, 0.05);
                        height: 100%;
                    }
                    .testimonial-card:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                    }
                    .testimonial-header {
                        display: flex;
                        align-items: center;
                        margin-bottom: 20px;
                    }
                    .client-avatar {
                        width: 70px;
                        height: 70px;
                        flex-shrink: 0;
                        margin-right: 20px;
                        border-radius: 50%;
                        border: 3px solid #E74D96;
                        padding: 3px;
                        background-color: white;
                        overflow: hidden;
                    }
                    .avatar-img {
                        width: 100%;
                        height: 100%;
                        border-radius: 50%;
                        object-fit: cover;
                    }
                    .client-details h3 {
                        font-size: 18px;
                        font-weight: 700;
                        margin-bottom: 5px;
                        color: #2c3e50;
                    }
                    .client-service {
                        font-size: 14px;
                        color: #7f8c8d;
                        display: block;
                        margin-bottom: 8px;
                    }
                    .rating {
                        color: #ffa502;
                        font-size: 14px;
                    }
                    .testimonial-body {
                        position: relative;
                        margin-bottom: 25px;
                    }
                    .quote-icon {
                        color: rgba(255, 71, 87, 0.1);
                        font-size: 40px;
                        position: absolute;
                        top: -15px;
                        left: -10px;
                    }
                    .testimonial-text {
                        position: relative;
                        font-size: 16px;
                        line-height: 1.7;
                        color: #5a6c7d;
                        font-style: italic;
                        padding-left: 10px;
                    }
                    .testimonial-results {
                        background-color: #f8f9fa;
                        border-radius: 12px;
                        padding: 20px;
                        margin-top: 20px;
                    }
                    .results-title {
                        font-size: 16px;
                        font-weight: 600;
                        color: #34495e;
                        margin-bottom: 15px;
                        text-align: center;
                    }
                    .results-gallery {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 15px;
                    }
                    .single-result {
                        justify-content: center;
                    }
                    .result-image {
                        position: relative;
                        width: 140px;
                        height: 140px;
                        border-radius: 10px;
                        overflow: hidden;
                        border: 3px solid white;
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    }
                    .result-divider {
                        color: #E74D96;
                        font-size: 20px;
                    }
                    .image-label {
                        position: absolute;
                        top: 10px;
                        left: 10px;
                        background-color: #E74D96;
                        color: white;
                        font-size: 12px;
                        font-weight: 600;
                        padding: 4px 10px;
                        border-radius: 20px;
                        z-index: 1;
                    }
                    .result-img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.5s ease;
                    }
                    ult-image:hover .result-img {
                        transform: scale(1.1);
                    }
                    /* Responsive styles */
                    @media (max-width: 767px) {
                        .testimonial-header {
                            flex-direction: column;
                            text-align: center;
                        }
                        .client-avatar {
                            margin-right: 0;
                            margin-bottom: 15px;
                        }
                        .results-gallery {
                            flex-direction: column;
                        }
                        .result-divider {
                            transform: rotate(90deg);
                            margin: 10px 0;
                        }
                    }
                    .blog-detail-card {
                        border: 1px solid #e9ecef;
                    }
                    .blog-title {
                        line-height: 1.4;
                    }
                    .meta-item {
                        font-size: 0.9rem;
                        color: #6c757d;
                    }
                    .meta-divider {
                        color: #dee2e6;
                        font-weight: bold;
                    }
                    .content-text img {
                        max-width: 100%;
                        height: auto;
                        border-radius: 8px;
                        margin: 15px 0;
                    }
                    .content-text p {
                        margin-bottom: 1rem;
                    }
                    .tag-item {
                        font-size: 0.85rem;
                        transition: all 0.3s ease;
                    }
                    .tag-item:hover {
                        background-color: #007bff !important;
                        color: white !important;
                    }
                    .share-buttons .btn {
                        border-radius: 50%;
                        width: 35px;
                        height: 35px;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        transition: all 0.3s ease;
                    }
                    .share-buttons .btn:hover {
                        transform: translateY(-2px);
                    }
                    .placeholder-image {
                        border: 2px dashed #dee2e6;
                    }
                    @media (max-width: 768px) {
                        .d-flex.justify-content-between {
                            flex-direction: column;
                            gap: 1rem;
                        }
                        .share-buttons {
                            align-self: center;
                        }
                    }
                    .service-content * {
                        text-align: left !important;
                    }
                    .service-content p,
                    .service-content div,
                    .service-content li {
                        text-align: left !important;
                    }
                    .service-points li {
                        text-align: left !important;
                    }
                    .career-details-section {
                        background: #f8f9fa;
                        min-height: 80vh;
                    }
                    /* Job Header Card */
                    .job-header-card {
                        background: #fff;
                        border-radius: 15px;
                        padding: 30px;
                        margin-bottom: 30px;
                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                        border: 1px solid #f0f0f0;
                    }
                    .job-header-content {
                        display: flex;
                        justify-content: space-between;
                        align-items: flex-start;
                        gap: 20px;
                    }
                    .job-title {
                        font-size: 32px;
                        font-weight: 700;
                        color: #333;
                        margin-bottom: 15px;
                        line-height: 1.2;
                    }
                    .job-meta {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 20px;
                    }
                    .job-meta span {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        color: #666;
                        font-size: 14px;
                    }
                    .job-meta i {
                        color: var(--theme-color, #007bff);
                    }
                    .salary-info {
                        text-align: right;
                        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                        color: #fff;
                        padding: 20px;
                        border-radius: 12px;
                        min-width: 180px;
                    }
                    .salary-label {
                        display: block;
                        font-size: 14px;
                        opacity: 0.9;
                        margin-bottom: 5px;
                    }
                    .salary-amount {
                        display: block;
                        font-size: 19px;
                        font-weight: 700;
                    }
                    /* Job Sections */
                    .job-section {
                        background: #fff;
                        border-radius: 15px;
                        padding: 30px;
                        margin-bottom: 30px;
                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                        border: 1px solid #f0f0f0;
                    }
                    .section-title {
                        font-size: 20px;
                        font-weight: 600;
                        color: #333;
                        margin-bottom: 20px;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                    }
                    .section-title i {
                        color: var(--theme-color, #007bff);
                    }
                    .job-description,
                    .job-requirements,
                    .job-responsibilities,
                    .job-benefits {
                        color: #666;
                        line-height: 1.8;
                    }
                    .job-description ul,
                    .job-requirements ul,
                    .job-responsibilities ul,
                    .job-benefits ul {
                        padding-left: 20px;
                    }
                    .job-description li,
                    .job-requirements li,
                    .job-responsibilities li,
                    .job-benefits li {
                        margin-bottom: 8px;
                    }
                    /* Qualification Tags */
                    .qualification-tags-container {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 12px;
                    }
                    .qualification-tag {
                        background: #0B71B9;
                        color: #fff;
                        padding: 8px 16px;
                        border-radius: 20px;
                        font-size: 13px;
                        font-weight: 500;
                        transition: all 0.3s ease;
                    }
                    .qualification-tag:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                    }
                    /* Sidebar */
                    .career-sidebar {
                        position: sticky;
                        top: 20px;
                    }
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        background: #fff;
                        border-radius: 15px;
                        padding: 25px;
                        margin-bottom: 25px;
                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                        border: 1px solid #f0f0f0;
                    }
                    .apply-header h4 {
                        color: #333;
                        font-weight: 600;
                        margin-bottom: 8px;
                    }
                    .apply-header p {
                        color: #666;
                        margin-bottom: 20px;
                        font-size: 14px;
                    }
                    .contact-info {
                        margin-bottom: 20px;
                    }
                    .contact-item {
                        display: flex;
                        align-items: flex-start;
                        gap: 12px;
                        padding: 15px;
                        background: #f8f9fa;
                        border-radius: 10px;
                    }
                    .contact-item i {
                        color: var(--theme-color, #007bff);
                        font-size: 18px;
                        margin-top: 2px;
                    }
                    .contact-label {
                        display: block;
                        font-size: 12px;
                        color: #666;
                        margin-bottom: 4px;
                    }
                    .contact-value {
                        color: #333;
                        font-weight: 500;
                        text-decoration: none;
                    }
                    .contact-value:hover {
                        color: var(--theme-color, #007bff);
                    }
                    .resume-note {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        background: #fff3cd;
                        color: #856404;
                        padding: 10px 15px;
                        border-radius: 8px;
                        margin-bottom: 20px;
                        font-size: 13px;
                    }
                    .apply-actions {
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                    }
                    .apply-btn {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 8px;
                        padding: 12px 20px;
                        border-radius: 8px;
                        text-decoration: none;
                        font-weight: 500;
                        transition: all 0.3s ease;
                        border: none;
                        cursor: pointer;
                    }
                    .apply-btn.primary {
                        background: var(--theme-color, #007bff);
                        color: #fff;
                    }
                    .apply-btn.primary:hover {
                        background: #0056b3;
                        transform: translateY(-2px);
                        color: #fff;
                        text-decoration: none;
                    }
                    .apply-btn.secondary {
                        background: #f8f9fa;
                        color: #333;
                        border: 2px solid #e9ecef;
                    }
                    .apply-btn.secondary:hover {
                        background: #e9ecef;
                        border-color: #dee2e6;
                    }
                    /* Job Summary */
                    .job-summary-card h4,
                    .share-job-card h4 {
                        color: #333;
                        font-weight: 600;
                        margin-bottom: 20px;
                    }
                    .summary-items {
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                    }
                    .summary-item {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        padding-bottom: 15px;
                        border-bottom: 1px solid #f0f0f0;
                    }
                    .summary-item:last-child {
                        border-bottom: none;
                        padding-bottom: 0;
                    }
                    .summary-label {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        color: #666;
                        font-size: 14px;
                    }
                    .summary-label i {
                        color: var(--theme-color, #007bff);
                    }
                    .summary-value {
                        color: #333;
                        font-weight: 500;
                        font-size: 14px;
                    }
                    /* Share Buttons */
                    .share-buttons {
                        display: flex;
                        gap: 10px;
                    }
                    .share-btn {
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        border: none;
                        cursor: pointer;
                    }
                    .share-btn.linkedin {
                        background: #0077b5;
                        color: #fff;
                    }
                    .share-btn.twitter {
                        background: #1da1f2;
                        color: #fff;
                    }
                    .share-btn.facebook {
                        background: #4267b2;
                        color: #fff;
                    }
                    .share-btn.copy {
                        background: #6c757d;
                        color: #fff;
                    }
                    .share-btn:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                    }
                    /* Back Button */
                    .back-to-careers {
                        text-align: center;
                    }
                    .back-btn {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        color: var(--theme-color, #007bff);
                        text-decoration: none;
                        font-weight: 500;
                        padding: 10px 20px;
                        border: 2px solid var(--theme-color, #007bff);
                        border-radius: 25px;
                        transition: all 0.3s ease;
                    }
                    .back-btn:hover {
                        background: var(--theme-color, #007bff);
                        color: #fff;
                        text-decoration: none;
                    }
                    .back-btn i {
                        margin-right: 8px;
                    }
                    /* Modal Styles */
                    .modal-content {
                        border-radius: 15px;
                        border: none;
                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                    }
                    .modal-header {
                        border-bottom: 1px solid #f0f0f0;
                        padding: 20px 25px;
                    }
                    al-body {
                        padding: 25px;
                    }
                    .modal-footer {
                        border-top: 1px solid #f0f0f0;
                        padding: 20px 25px;
                    }
                    /* Responsive Design */
                    @media (max-width: 992px) {
                        .job-header-content {
                            flex-direction: column;
                        }
                        .salary-info {
                            text-align: left;
                            min-width: auto;
                            width: 100%;
                        }
                        .career-sidebar {
                            position: static;
                            margin-top: 30px;
                        }
                    }
                    @media (max-width: 768px) {
                        .job-title {
                            font-size: 24px;
                        }
                        .job-meta {
                            flex-direction: column;
                            gap: 10px;
                        }
                        .job-header-card,
                        .job-section,
                        .apply-card,
                        .job-summary-card,
                        .share-job-card {
                            padding: 20px;
                        }
                        .qualification-tags-container {
                            justify-content: center;
                        }
                    }
                    /* Hero Banner Slider */
                    .hero-banner-slider {
                        position: relative;
                    }
                    .hero-banner-slider .swiper-button-next,
                    .hero-banner-slider .swiper-button-prev {
                        width: 50px;
                        height: 50px;
                        background-color: rgba(255, 255, 255, 0.9);
                        border-radius: 50%;
                        color: var(--theme);
                    }
                    .hero-banner-slider .swiper-button-next:after,
                    .hero-banner-slider .swiper-button-prev:after {
                        font-size: 20px;
                    }
                    .hero-banner-slider .swiper-pagination {
                        bottom: 20px;
                    }
                    .hero-banner-slider .swiper-pagination-bullet {
                        width: 12px;
                        height: 12px;
                        background-color: rgba(255, 255, 255, 0.9);
                        opacity: 0.5;
                    }
                    .hero-banner-slider .swiper-pagination-bullet-active {
                        opacity: 1;
                        background-color: var(--theme);
                    }
                    .hero-section {
                        text-shadow: none !important;
                    }
                    .hero-1 {
                        position: relative;
                        z-index: 1;
                    }
                    .hero-1::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.1);
                        z-index: 0;
                    }
                    .hero-content {
                        position: relative;
                        z-index: 2;
                    }
                }
                .summary-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 15px;
                    border-bottom: 1px solid #f0f0f0;
                }
                .summary-item:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }
                .summary-label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .summary-label i {
                    color: var(--theme-color, #007bff);
                }
                .summary-value {
                    color: #333;
                    font-weight: 500;
                    font-size: 14px;
                }
                /* Share Buttons */
                .share-buttons {
                    display: flex;
                    gap: 10px;
                }
                .share-btn {
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .share-btn.linkedin {
                    background: #0077b5;
                    color: #fff;
                }
                .share-btn.twitter {
                    background: #1da1f2;
                    color: #fff;
                }
                .share-btn.facebook {
                    background: #4267b2;
                    color: #fff;
                }
                .share-btn.copy {
                    background: #6c757d;
                    color: #fff;
                }
                .share-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                }
                /* Back Button */
                .back-to-careers {
                    text-align: center;
                }
                .back-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    color: var(--theme-color, #007bff);
                    text-decoration: none;
                    font-weight: 500;
                    padding: 10px 20px;
                    border: 2px solid var(--theme-color, #007bff);
                    border-radius: 25px;
                    transition: all 0.3s ease;
                }
                .back-btn:hover {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                    text-decoration: none;
                }
                .back-btn i {
                    margin-right: 8px;
                }
                /* Modal Styles */
                .modal-content {
                    border-radius: 15px;
                    border: none;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                }
                .modal-header {
                    border-bottom: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                al-body {
                    padding: 25px;
                }
                .modal-footer {
                    border-top: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                /* Responsive Design */
                @media (max-width: 992px) {
                    .job-header-content {
                        flex-direction: column;
                    }
                    .salary-info {
                        text-align: left;
                        min-width: auto;
                        width: 100%;
                    }
                    .career-sidebar {
                        position: static;
                        margin-top: 30px;
                    }
                }
                @media (max-width: 768px) {
                    .job-title {
                        font-size: 24px;
                    }
                    .job-meta {
                        flex-direction: column;
                        gap: 10px;
                    }
                    .job-header-card,
                    .job-section,
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        padding: 20px;
                    }
                    .qualification-tags-container {
                        justify-content: center;
                    }
                }
                /* Hero Banner Slider */
                .hero-banner-slider {
                    position: relative;
                }
                .hero-banner-slider .swiper-button-next,
                .hero-banner-slider .swiper-button-prev {
                    width: 50px;
                    height: 50px;
                    background-color: rgba(255, 255, 255, 0.9);
                    border-radius: 50%;
                    color: var(--theme);
                }
                .hero-banner-slider .swiper-button-next:after,
                .hero-banner-slider .swiper-button-prev:after {
                    font-size: 20px;
                }
                .hero-banner-slider .swiper-pagination {
                    bottom: 20px;
                }
                .hero-banner-slider .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.9);
                    opacity: 0.5;
                }
                .hero-banner-slider .swiper-pagination-bullet-active {
                    opacity: 1;
                    background-color: var(--theme);
                }
                .hero-section {
                    text-shadow: none !important;
                }
                .hero-1 {
                    position: relative;
                    z-index: 1;
                }
                .hero-1::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.1);
                    z-index: 0;
                }
                .hero-content {
                    position: relative;
                    z-index: 2;
                }
                .service-content div,
                .service-content li {
                    text-align: left !important;
                }
                .service-points li {
                    text-align: left !important;
                }
                .career-details-section {
                    background: #f8f9fa;
                    min-height: 80vh;
                }
                /* Job Header Card */
                .job-header-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 30px;
                    margin-bottom: 30px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .job-header-content {
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-start;
                    gap: 20px;
                }
                .job-title {
                    font-size: 32px;
                    font-weight: 700;
                    color: #333;
                    margin-bottom: 15px;
                    line-height: 1.2;
                }
                .job-meta {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                }
                .job-meta span {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .job-meta i {
                    color: var(--theme-color, #007bff);
                }
                .salary-info {
                    text-align: right;
                    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                    color: #fff;
                    padding: 20px;
                    border-radius: 12px;
                    min-width: 180px;
                }
                .salary-label {
                    display: block;
                    font-size: 14px;
                    opacity: 0.9;
                    margin-bottom: 5px;
                }
                .salary-amount {
                    display: block;
                    font-size: 19px;
                    font-weight: 700;
                }
                /* Job Sections */
                .job-section {
                    background: #fff;
                    border-radius: 15px;
                    padding: 30px;
                    margin-bottom: 30px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .section-title {
                    font-size: 20px;
                    font-weight: 600;
                    color: #333;
                    margin-bottom: 20px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }
                .section-title i {
                    color: var(--theme-color, #007bff);
                }
                .job-description,
                .job-requirements,
                .job-responsibilities,
                .job-benefits {
                    color: #666;
                    line-height: 1.8;
                }
                .job-description ul,
                .job-requirements ul,
                .job-responsibilities ul,
                .job-benefits ul {
                    padding-left: 20px;
                }
                .job-description li,
                .job-requirements li,
                .job-responsibilities li,
                .job-benefits li {
                    margin-bottom: 8px;
                }
                /* Qualification Tags */
                .qualification-tags-container {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 12px;
                }
                .qualification-tag {
                    background: #0B71B9;
                    color: #fff;
                    padding: 8px 16px;
                    border-radius: 20px;
                    font-size: 13px;
                    font-weight: 500;
                    transition: all 0.3s ease;
                }
                .qualification-tag:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                }
                /* Sidebar */
                .career-sidebar {
                    position: sticky;
                    top: 20px;
                }
                .apply-card,
                .job-summary-card,
                .share-job-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 25px;
                    margin-bottom: 25px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .apply-header h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .apply-header p {
                    color: #666;
                    margin-bottom: 20px;
                    font-size: 14px;
                }
                .contact-info {
                    margin-bottom: 20px;
                }
                .contact-item {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    padding: 15px;
                    background: #f8f9fa;
                    border-radius: 10px;
                }
                .contact-item i {
                    color: var(--theme-color, #007bff);
                    font-size: 18px;
                    margin-top: 2px;
                }
                .contact-label {
                    display: block;
                    font-size: 12px;
                    color: #666;
                    margin-bottom: 4px;
                }
                .contact-value {
                    color: #333;
                    font-weight: 500;
                    text-decoration: none;
                }
                .contact-value:hover {
                    color: var(--theme-color, #007bff);
                }
                .resume-note {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff3cd;
                    color: #856404;
                    padding: 10px 15px;
                    border-radius: 8px;
                    margin-bottom: 20px;
                    font-size: 13px;
                }
                .apply-actions {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                }
                .apply-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    padding: 12px 20px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 500;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .apply-btn.primary {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                }
                .apply-btn.primary:hover {
                    background: #0056b3;
                    transform: translateY(-2px);
                    color: #fff;
                    text-decoration: none;
                }
                .apply-btn.secondary {
                    background: #f8f9fa;
                    color: #333;
                    border: 2px solid #e9ecef;
                }
                .apply-btn.secondary:hover {
                    background: #e9ecef;
                    border-color: #dee2e6;
                }
                /* Job Summary */
                .job-summary-card h4,
                .share-job-card h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 20px;
                }
                .summary-items {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }
                .summary-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 15px;
                    border-bottom: 1px solid #f0f0f0;
                }
                .summary-item:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }
                .summary-label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .summary-label i {
                    color: var(--theme-color, #007bff);
                }
                .summary-value {
                    color: #333;
                    font-weight: 500;
                    font-size: 14px;
                }
                /* Share Buttons */
                .share-buttons {
                    display: flex;
                    gap: 10px;
                }
                .share-btn {
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .share-btn.linkedin {
                    background: #0077b5;
                    color: #fff;
                }
                .share-btn.twitter {
                    background: #1da1f2;
                    color: #fff;
                }
                .share-btn.facebook {
                    background: #4267b2;
                    color: #fff;
                }
                .share-btn.copy {
                    background: #6c757d;
                    color: #fff;
                }
                .share-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                }
                /* Back Button */
                .back-to-careers {
                    text-align: center;
                }
                .back-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    color: var(--theme-color, #007bff);
                    text-decoration: none;
                    font-weight: 500;
                    padding: 10px 20px;
                    border: 2px solid var(--theme-color, #007bff);
                    border-radius: 25px;
                    transition: all 0.3s ease;
                }
                .back-btn:hover {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                    text-decoration: none;
                }
                .back-btn i {
                    margin-right: 8px;
                }
                /* Modal Styles */
                .modal-content {
                    border-radius: 15px;
                    border: none;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                }
                .modal-header {
                    border-bottom: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                al-body {
                    padding: 25px;
                }
                .modal-footer {
                    border-top: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                /* Responsive Design */
                @media (max-width: 992px) {
                    .job-header-content {
                        flex-direction: column;
                    }
                    .salary-info {
                        text-align: left;
                        min-width: auto;
                        width: 100%;
                    }
                    .career-sidebar {
                        position: static;
                        margin-top: 30px;
                    }
                }
                @media (max-width: 768px) {
                    .job-title {
                        font-size: 24px;
                    }
                    .job-meta {
                        flex-direction: column;
                        gap: 10px;
                    }
                    .job-header-card,
                    .job-section,
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        padding: 20px;
                    }
                    .qualification-tags-container {
                        justify-content: center;
                    }
                }
                /* Hero Banner Slider */
                .hero-banner-slider {
                    position: relative;
                }
                .hero-banner-slider .swiper-button-next,
                .hero-banner-slider .swiper-button-prev {
                    width: 50px;
                    height: 50px;
                    background-color: rgba(255, 255, 255, 0.9);
                    border-radius: 50%;
                    color: var(--theme);
                }
                .hero-banner-slider .swiper-button-next:after,
                .hero-banner-slider .swiper-button-prev:after {
                    font-size: 20px;
                }
                .hero-banner-slider .swiper-pagination {
                    bottom: 20px;
                }
                .hero-banner-slider .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.9);
                    opacity: 0.5;
                }
                .hero-banner-slider .swiper-pagination-bullet-active {
                    opacity: 1;
                    background-color: var(--theme);
                }
                .hero-section {
                    text-shadow: none !important;
                }
                .hero-1 {
                    position: relative;
                    z-index: 1;
                }
                .hero-1::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.1);
                    z-index: 0;
                }
                .hero-content {
                    position: relative;
                    z-index: 2;
                }
                .apply-card,
                .job-summary-card,
                .share-job-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 25px;
                    margin-bottom: 25px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .apply-header h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .apply-header p {
                    color: #666;
                    margin-bottom: 20px;
                    font-size: 14px;
                }
                .contact-info {
                    margin-bottom: 20px;
                }
                .contact-item {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    padding: 15px;
                    background: #f8f9fa;
                    border-radius: 10px;
                }
                .contact-item i {
                    color: var(--theme-color, #007bff);
                    font-size: 18px;
                    margin-top: 2px;
                }
                .contact-label {
                    display: block;
                    font-size: 12px;
                    color: #666;
                    margin-bottom: 4px;
                }
                .contact-value {
                    color: #333;
                    font-weight: 500;
                    text-decoration: none;
                }
                .contact-value:hover {
                    color: var(--theme-color, #007bff);
                }
                .resume-note {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff3cd;
                    color: #856404;
                    padding: 10px 15px;
                    border-radius: 8px;
                    margin-bottom: 20px;
                    font-size: 13px;
                }
                .apply-actions {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                }
                .apply-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    padding: 12px 20px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 500;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .apply-btn.primary {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                }
                .apply-btn.primary:hover {
                    background: #0056b3;
                    transform: translateY(-2px);
                    color: #fff;
                    text-decoration: none;
                }
                .apply-btn.secondary {
                    background: #f8f9fa;
                    color: #333;
                    border: 2px solid #e9ecef;
                }
                .apply-btn.secondary:hover {
                    background: #e9ecef;
                    border-color: #dee2e6;
                }
                /* Job Summary */
                .job-summary-card h4,
                .share-job-card h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 20px;
                }
                .summary-items {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }
                .summary-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 15px;
                    border-bottom: 1px solid #f0f0f0;
                }
                .summary-item:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }
                .summary-label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .summary-label i {
                    color: var(--theme-color, #007bff);
                }
                .summary-value {
                    color: #333;
                    font-weight: 500;
                    font-size: 14px;
                }
                /* Share Buttons */
                .share-buttons {
                    display: flex;
                    gap: 10px;
                }
                .share-btn {
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .share-btn.linkedin {
                    background: #0077b5;
                    color: #fff;
                }
                .share-btn.twitter {
                    background: #1da1f2;
                    color: #fff;
                }
                .share-btn.facebook {
                    background: #4267b2;
                    color: #fff;
                }
                .share-btn.copy {
                    background: #6c757d;
                    color: #fff;
                }
                .share-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                }
                /* Back Button */
                .back-to-careers {
                    text-align: center;
                }
                .back-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    color: var(--theme-color, #007bff);
                    text-decoration: none;
                    font-weight: 500;
                    padding: 10px 20px;
                    border: 2px solid var(--theme-color, #007bff);
                    border-radius: 25px;
                    transition: all 0.3s ease;
                }
                .back-btn:hover {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                    text-decoration: none;
                }
                .back-btn i {
                    margin-right: 8px;
                }
                /* Modal Styles */
                .modal-content {
                    border-radius: 15px;
                    border: none;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                }
                .modal-header {
                    border-bottom: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                al-body {
                    padding: 25px;
                }
                .modal-footer {
                    border-top: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                /* Responsive Design */
                @media (max-width: 992px) {
                    .job-header-content {
                        flex-direction: column;
                    }
                    .salary-info {
                        text-align: left;
                        min-width: auto;
                        width: 100%;
                    }
                    .career-sidebar {
                        position: static;
                        margin-top: 30px;
                    }
                }
                @media (max-width: 768px) {
                    .job-title {
                        font-size: 24px;
                    }
                    .job-meta {
                        flex-direction: column;
                        gap: 10px;
                    }
                    .job-header-card,
                    .job-section,
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        padding: 20px;
                    }
                    .qualification-tags-container {
                        justify-content: center;
                    }
                }
                /* Hero Banner Slider */
                .hero-banner-slider {
                    position: relative;
                }
                .hero-banner-slider .swiper-button-next,
                .hero-banner-slider .swiper-button-prev {
                    width: 50px;
                    height: 50px;
                    background-color: rgba(255, 255, 255, 0.9);
                    border-radius: 50%;
                    color: var(--theme);
                }
                .hero-banner-slider .swiper-button-next:after,
                .hero-banner-slider .swiper-button-prev:after {
                    font-size: 20px;
                }
                .hero-banner-slider .swiper-pagination {
                    bottom: 20px;
                }
                .hero-banner-slider .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.9);
                    opacity: 0.5;
                }
                .hero-banner-slider .swiper-pagination-bullet-active {
                    opacity: 1;
                    background-color: var(--theme);
                }
                .hero-section {
                    text-shadow: none !important;
                }
                .hero-1 {
                    position: relative;
                    z-index: 1;
                }
                .hero-1::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.1);
                    z-index: 0;
                }
                .hero-content {
                    position: relative;
                    z-index: 2;
                }
                .apply-card,
                .job-summary-card,
                .share-job-card {
                    background: #fff;
                    border-radius: 15px;
                    padding: 25px;
                    margin-bottom: 25px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                    border: 1px solid #f0f0f0;
                }
                .apply-header h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .apply-header p {
                    color: #666;
                    margin-bottom: 20px;
                    font-size: 14px;
                }
                .contact-info {
                    margin-bottom: 20px;
                }
                .contact-item {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    padding: 15px;
                    background: #f8f9fa;
                    border-radius: 10px;
                }
                .contact-item i {
                    color: var(--theme-color, #007bff);
                    font-size: 18px;
                    margin-top: 2px;
                }
                .contact-label {
                    display: block;
                    font-size: 12px;
                    color: #666;
                    margin-bottom: 4px;
                }
                .contact-value {
                    color: #333;
                    font-weight: 500;
                    text-decoration: none;
                }
                .contact-value:hover {
                    color: var(--theme-color, #007bff);
                }
                .resume-note {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff3cd;
                    color: #856404;
                    padding: 10px 15px;
                    border-radius: 8px;
                    margin-bottom: 20px;
                    font-size: 13px;
                }
                .apply-actions {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                }
                .apply-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    padding: 12px 20px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 500;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .apply-btn.primary {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                }
                .apply-btn.primary:hover {
                    background: #0056b3;
                    transform: translateY(-2px);
                    color: #fff;
                    text-decoration: none;
                }
                .apply-btn.secondary {
                    background: #f8f9fa;
                    color: #333;
                    border: 2px solid #e9ecef;
                }
                .apply-btn.secondary:hover {
                    background: #e9ecef;
                    border-color: #dee2e6;
                }
                /* Job Summary */
                .job-summary-card h4,
                .share-job-card h4 {
                    color: #333;
                    font-weight: 600;
                    margin-bottom: 20px;
                }
                .summary-items {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }
                .summary-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 15px;
                    border-bottom: 1px solid #f0f0f0;
                }
                .summary-item:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }
                .summary-label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: #666;
                    font-size: 14px;
                }
                .summary-label i {
                    color: var(--theme-color, #007bff);
                }
                .summary-value {
                    color: #333;
                    font-weight: 500;
                    font-size: 14px;
                }
                /* Share Buttons */
                .share-buttons {
                    display: flex;
                    gap: 10px;
                }
                .share-btn {
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                }
                .share-btn.linkedin {
                    background: #0077b5;
                    color: #fff;
                }
                .share-btn.twitter {
                    background: #1da1f2;
                    color: #fff;
                }
                .share-btn.facebook {
                    background: #4267b2;
                    color: #fff;
                }
                .share-btn.copy {
                    background: #6c757d;
                    color: #fff;
                }
                .share-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                }
                /* Back Button */
                .back-to-careers {
                    text-align: center;
                }
                .back-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    color: var(--theme-color, #007bff);
                    text-decoration: none;
                    font-weight: 500;
                    padding: 10px 20px;
                    border: 2px solid var(--theme-color, #007bff);
                    border-radius: 25px;
                    transition: all 0.3s ease;
                }
                .back-btn:hover {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                    text-decoration: none;
                }
                .back-btn i {
                    margin-right: 8px;
                }
                /* Modal Styles */
                .modal-content {
                    border-radius: 15px;
                    border: none;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                }
                .modal-header {
                    border-bottom: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                al-body {
                    padding: 25px;
                }
                .modal-footer {
                    border-top: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                /* Responsive Design */
                @media (max-width: 992px) {
                    .job-header-content {
                        flex-direction: column;
                    }
                    .salary-info {
                        text-align: left;
                        min-width: auto;
                        width: 100%;
                    }
                    .career-sidebar {
                        position: static;
                        margin-top: 30px;
                    }
                }
                @media (max-width: 768px) {
                    .job-title {
                        font-size: 24px;
                    }
                    .job-meta {
                        flex-direction: column;
                        gap: 10px;
                    }
                    .job-header-card,
                    .job-section,
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        padding: 20px;
                    }
                    .qualification-tags-container {
                        justify-content: center;
                    }
                }
                /* Hero Banner Slider */
                .hero-banner-slider {
                    position: relative;
                }
                .hero-banner-slider .swiper-button-next,
                .hero-banner-slider .swiper-button-prev {
                    width: 50px;
                    height: 50px;
                    background-color: rgba(255, 255, 255, 0.9);
                    border-radius: 50%;
                    color: var(--theme);
                }
                .hero-banner-slider .swiper-button-next:after,
                .hero-banner-slider .swiper-button-prev:after {
                    font-size: 20px;
                }
                .hero-banner-slider .swiper-pagination {
                    bottom: 20px;
                }
                .hero-banner-slider .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.9);
                    opacity: 0.5;
                }
                .hero-banner-slider .swiper-pagination-bullet-active {
                    opacity: 1;
                    background-color: var(--theme);
                }
                .hero-section {
                    text-shadow: none !important;
                }
                .hero-1 {
                    position: relative;
                    z-index: 1;
                }
                .hero-1::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.1);
                    z-index: 0;
                }
                .hero-content {
                    position: relative;
                    z-index: 2;
                    border-radius: 25px;
                    transition: all 0.3s ease;
                }
                .back-btn:hover {
                    background: var(--theme-color, #007bff);
                    color: #fff;
                    text-decoration: none;
                }
                .back-btn i {
                    margin-right: 8px;
                }
                /* Modal Styles */
                .modal-content {
                    border-radius: 15px;
                    border: none;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                }
                .modal-header {
                    border-bottom: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                al-body {
                    padding: 25px;
                }
                .modal-footer {
                    border-top: 1px solid #f0f0f0;
                    padding: 20px 25px;
                }
                /* Responsive Design */
                @media (max-width: 992px) {
                    .job-header-content {
                        flex-direction: column;
                    }
                    .salary-info {
                        text-align: left;
                        min-width: auto;
                        width: 100%;
                    }
                    .career-sidebar {
                        position: static;
                        margin-top: 30px;
                    }
                }
                @media (max-width: 768px) {
                    .job-title {
                        font-size: 24px;
                    }
                    .job-meta {
                        flex-direction: column;
                        gap: 10px;
                    }
                    .job-header-card,
                    .job-section,
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        padding: 20px;
                    }
                    .qualification-tags-container {
                        justify-content: center;
                    }
                }
                /* Hero Banner Slider */
                .hero-banner-slider {
                    position: relative;
                }
                .hero-banner-slider .swiper-button-next,
                .hero-banner-slider .swiper-button-prev {
                    width: 50px;
                    height: 50px;
                    background-color: rgba(255, 255, 255, 0.9);
                    border-radius: 50%;
                    color: var(--theme);
                }
                .hero-banner-slider .swiper-button-next:after,
                .hero-banner-slider .swiper-button-prev:after {
                    font-size: 20px;
                }
                .hero-banner-slider .swiper-pagination {
                    bottom: 20px;
                }
                .hero-banner-slider .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.9);
                    opacity: 0.5;
                }
                .hero-banner-slider .swiper-pagination-bullet-active {
                    opacity: 1;
                    background-color: var(--theme);
                }
                .hero-section {
                    text-shadow: none !important;
                }
                .hero-1 {
                    position: relative;
                    z-index: 1;
                }
                .hero-1::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.1);
                    z-index: 0;
                }
                .hero-content {
                    position: relative;
                    z-index: 2;
                }
                .job-header-content {
                    flex-direction: column;
                }
                .salary-info {
                    text-align: left;
                    min-width: auto;
                    width: 100%;
                }
                .career-sidebar {
                    position: static;
                    margin-top: 30px;
                }
                @media (max-width: 768px) {
                    .job-title {
                        font-size: 24px;
                    }
                    .job-meta {
                        flex-direction: column;
                        gap: 10px;
                    }
                    .job-header-card,
                    .job-section,
                    .apply-card,
                    .job-summary-card,
                    .share-job-card {
                        padding: 20px;
                    }
                    .qualification-tags-container {
                        justify-content: center;
                    }
                }
                /* Hero Banner Slider */
                .hero-banner-slider {
                    position: relative;
                }
                .hero-banner-slider .swiper-button-next,
                .hero-banner-slider .swiper-button-prev {
                    width: 50px;
                    height: 50px;
                    background-color: rgba(255, 255, 255, 0.9);
                    border-radius: 50%;
                    color: var(--theme);
                }
                o-banner-slider .swiper-button-next:after,
                .hero-banner-slider .swiper-button-prev:after {
                    font-size: 20px;
                }
                .hero-banner-slider .swiper-pagination {
                    bottom: 20px;
                }
                o-banner-slider .swiper-pagination-bullet {
                    width: 12px;
                    height: 12px;
                    background-color: rgba(255, 255, 255, 0.9);
                    opacity: 0.5;
                    .hero-banner-slider .swiper-pagination-bullet-active {
                        opacity: 1;
                        background-color: var(--theme);
                    }
                    .hero-section {
                        text-shadow: none !important;
                    }
                    .hero-1 {
                        position: relative;
                        z-index: 1;
                    }
                    .hero-1::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.1);
                        z-index: 0;
                    }
                    .hero-content {
                        position: relative;
                        z-index: 2;
                        -webkit-border-radius: 50%;
                        -moz-border-radius: 50%;
                        -ms-border-radius: 50%;
                        -o-border-radius: 50%;
                    }
                    timonial-card-items .client-info .client-img .icon {
                        position: absolute;
                        left: -25px;
                        bottom: -35px;
                    }
                    .testimonial-card-items .client-info .client-img .icon .shape {
                        transition: all 0.1s;
                        -webkit-transition: all 0.1s;
                        -moz-transition: all 0.1s;
                        -ms-transition: all 0.1s;
                        -o-transition: all 0.1s;
                    }
                    timonial-card-items .client-info .content h3 {
                        color: #121315;
                        font-family: "Inter", sans-serif;
                        font-size: 20px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 28px;
                        letter-spacing: -0.4px;
                    }
                    .testimonial-card-items p {
                        font-weight: 500;
                        margin-bottom: 30px;
                        .testimonial-card-items .star {
                            color: var(--theme);
                        }
                        .testimonial-section {
                            margin-bottom: -40px;
                        }
                        @media (min-width: 1400px) {
                            .testimonial-slider {
                                margin-right: -170px;
                            }
                        }
                        .testimonial-slider .swiper-slide {
                            transition: all 3s;
                            -webkit-transition: all 3s;
                            -moz-transition: all 3s;
                            -ms-transition: all 3s;
                            -o-transition: all 3s;
                        }
                        .testimonial-slider .swiper-slide-active .testimonial-card-items {
                            border-top: 3px solid var(--theme);
                            background-color: var(--white);
                            box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                            transition: all 1s;
                            -webkit-transition: all 1s;
                            -moz-transition: all 1s;
                            -ms-transition: all 1s;
                            -o-transition: all 1s;
                        }
                        timonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                            filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                        }
                        /*# sourceMappingURL=main.css.map */
                        -carousel .owl-nav button.owl-next,
                        -carousel .owl-nav button.owl-prev {
                            display: inline-block;
                            padding: 6px 0 !important;
                            color: #fff;
                        }
                        .owl-carousel .owl-nav button.owl-next {
                            padding-right: 14px !important;
                            padding-left: 7px !important;
                            border-radius: 0 40px 40px 0;
                        }
                        .owl-carousel .owl-nav button.owl-prev {
                            padding-right: 7px !important;
                            padding-left: 14px !important;
                            border-radius: 40px 0 0 40px;
                        }
                        .page-section {
                            position: relative;
                            /* padding-top: 80px; */
                            padding-bottom: 80px;
                            overflow: hidden;
                        }
                        .page-hero {
                            position: relative;
                            height: 550px;
                            z-index: 10;
                        }
                        .page-banner {
                            position: relative;
                            height: 300px;
                            z-index: 10;
                        }
                        .page-hero.overlay-dark::before,
                        e-banner.overlay-dark::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background: rgba(52, 53, 49, 0.7);
                            z-index: 1;
                        }
                        .page-banner .breadcrumb-item,
                        .page-banner .breadcrumb-item a {
                            font-size: 14px;
                        }
                        o-section,
                        .banner-section {
                            position: relative;
                            display: -ms-flexbox;
                            display: flex;
                            -ms-flex-align: center;
                            align-items: center;
                            -ms-flex-pack: center;
                            justify-content: center;
                            height: 100%;
                            color: #ffffff;
                            z-index: 10;
                            .hero-section .subhead {
                                text-transform: uppercase;
                                letter-spacing: 4px;
                                color: #db7f7f;
                                /* Changed from #000000 to white for better visibility */
                                font-weight: 500;
                            }
                            .hero-section h1 {
                                margin-bottom: 32px;
                                color: #ffffff;
                                /* Changed from var(--theme) to white */
                                font-weight: 500;
                            }
                            /* Additional styling for better text visibility */
                            o-section {
                                text-shadow: none !important;
                            }
                            .input-navbar {
                                width: auto;
                                max-width: 280px;
                            }
                            .input-navbar .input-group-text {
                                background-color: #fff;
                            }
                            ut-navbar .form-control {
                                height: calc(1.5em+1rem+2px);
                            }
                            .services-section {
                                background: #f8f9fa;
                                padding: 80px 0;
                            }
                            .service-card-item {
                                background: #fff;
                                border-radius: 15px;
                                overflow: hidden;
                                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                transition: all 0.3s ease;
                                height: 100%;
                                border: 2px solid #f0f0f0;
                                position: relative;
                            }
                            .service-card-item:hover {
                                transform: translateY(-8px);
                                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                border: 2px solid #ff9800;
                            }
                            .service-image {
                                position: relative;
                                height: 200px;
                                overflow: hidden;
                                margin: 15px;
                                border-radius: 10px;
                            }
                            .service-image img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transition: transform 0.3s ease;
                                border-radius: 10px;
                            }
                            .service-card-item:hover .service-image img {
                                transform: scale(1.05);
                            }
                            .service-content {
                                padding: 0 25px 25px 25px;
                                text-align: center;
                            }
                            vice-content h3 {
                                font-size: 20px;
                                font-weight: 600;
                                margin-bottom: 20px;
                                color: var(--theme);
                                line-height: 1.4;
                            }
                            .service-button .contact-btn {
                                background: #fff;
                                color: #666;
                                padding: 10px 25px;
                                border: 2px solid #e0e0e0;
                                border-radius: 25px;
                                text-decoration: none;
                                font-weight: 500;
                                font-size: 14px;
                                transition: all 0.3s ease;
                                display: inline-block;
                            }
                            .service-button .contact-btn:hover {
                                background: linear-gradient(45deg, #ff9800, #ffc107);
                                color: #fff;
                                border-color: #ff9800;
                                transform: translateY(-2px);
                                box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                .section-title h2 {
                                    font-size: 36px;
                                    font-weight: 700;
                                    color: #333;
                                    margin-bottom: 20px;
                                }
                                /* Mobile Responsive */
                                ia (max-width: 768px) {
                                    .services-section {
                                        padding: 60px 0;
                                    }
                                    .service-content {
                                        padding: 0 20px 20px 20px;
                                    }
                                    .service-content h3 {
                                        font-size: 18px;
                                        margin-bottom: 15px;
                                    }
                                    .service-image {
                                        height: 180px;
                                        margin: 12px;
                                    }
                                    .section-title h2 {
                                        font-size: 28px;
                                    }
                                    @media (max-width: 576px) {
                                        .service-image {
                                            height: 160px;
                                            margin: 10px;
                                        }
                                        .service-content h3 {
                                            font-size: 16px;
                                        }
                                        .service-button .contact-btn {
                                            padding: 8px 20px;
                                            font-size: 13px;
                                        }
                                    }
                                    /* Career Card Hover Effects */
                                    eer-card {
                                        background: #fff;
                                        transition: all 0.4s ease-in-out;
                                        overflow: hidden;
                                        position: relative;
                                        cursor: pointer;
                                    }
                                    /* Content overlay */
                                    eer-card>div {
                                        position: relative;
                                        z-index: 2;
                                        transition: all 0.4s ease-in-out;
                                    }
                                    escription hover effect */ .career-description {
                                        transition: all 0.4s ease-in-out;
                                    }
                                    /* Salary badge hover effect */
                                    .salary-badge {
                                        transition: all 0.4s ease-in-out;
                                        position: relative;
                                        z-index: 3;
                                    }
                                    /* Qualification tags hover effect */
                                    lification-tag {
                                        background-color: #0B71B9;
                                        color: #fff;
                                    }
                                    email {
                                        transition: all 0.4s ease-in-out;
                                    }
                                    esume required hover effect */ .resume-required {
                                        transition: all 0.4s ease-in-out;
                                    }
                                    utton hover effect */ .career-btn {
                                        transition: all 0.4s ease-in-out;
                                        position: relative;
                                        z-index: 3;
                                    }
                                    dd subtle animation to the card */ @keyframes cardFloat {
                                        0%,
                                        100% {
                                            transform: translateY(0px);
                                        }
                                        50% {
                                            transform: translateY(-3px);
                                        }
                                    }
                                    /* Smooth transitions for all child elements */
                                    .career-card * {
                                        transition: all 0.4s ease-in-out;
                                    }
                                    timonial-card {
                                        background-color: #ffffff;
                                        border-radius: 15px;
                                        padding: 30px;
                                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                        margin: 20px 10px;
                                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                                        border: 1px solid rgba(0, 0, 0, 0.05);
                                        height: 100%;
                                    }
                                    nial-card:hover {
                                        transform: translateY(-5px);
                                        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                        .testimonial-header {
                                            display: flex;
                                            align-items: center;
                                            margin-bottom: 20px;
                                        }
                                        ent-avatar {
                                            width: 70px;
                                            height: 70px;
                                            flex-shrink: 0;
                                            margin-right: 20px;
                                            border-radius: 50%;
                                            border: 3px solid #E74D96;
                                            padding: 3px;
                                            background-color: white;
                                            overflow: hidden;
                                        }
                                        .avatar-img {
                                            width: 100%;
                                            height: 100%;
                                            border-radius: 50%;
                                            object-fit: cover;
                                        }
                                        .client-details h3 {
                                            font-size: 18px;
                                            font-weight: 700;
                                            margin-bottom: 5px;
                                            color: #2c3e50;
                                        }
                                        .client-service {
                                            font-size: 14px;
                                            color: #7f8c8d;
                                            display: block;
                                            margin-bottom: 8px;
                                        }
                                        .rating {
                                            color: #ffa502;
                                            font-size: 14px;
                                        }
                                        .testimonial-body {
                                            position: relative;
                                            margin-bottom: 25px;
                                            .quote-icon {
                                                color: rgba(255, 71, 87, 0.1);
                                                font-size: 40px;
                                                position: absolute;
                                                top: -15px;
                                                left: -10px;
                                            }
                                            .testimonial-text {
                                                position: relative;
                                                font-size: 16px;
                                                line-height: 1.7;
                                                color: #5a6c7d;
                                                font-style: italic;
                                                padding-left: 10px;
                                            }
                                            .testimonial-results {
                                                background-color: #f8f9fa;
                                                border-radius: 12px;
                                                padding: 20px;
                                                margin-top: 20px;
                                            }
                                            .results-title {
                                                font-size: 16px;
                                                font-weight: 600;
                                                color: #34495e;
                                                margin-bottom: 15px;
                                                text-align: center;
                                            }
                                            .results-gallery {
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                gap: 15px;
                                            }
                                            gle-result {
                                                justify-content: center;
                                            }
                                            .result-image {
                                                position: relative;
                                                width: 140px;
                                                height: 140px;
                                                border-radius: 10px;
                                                overflow: hidden;
                                                border: 3px solid white;
                                                shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                .result-divider {
                                                    color: #E74D96;
                                                    font-size: 20px;
                                                    .image-label {
                                                        position: absolute;
                                                        top: 10px;
                                                        left: 10px;
                                                        background-color: #E74D96;
                                                        color: white;
                                                        font-size: 12px;
                                                        font-weight: 600;
                                                        padding: 4px 10px;
                                                        border-radius: 20px;
                                                        z-index: 1;
                                                    }
                                                    .result-img {
                                                        width: 100%;
                                                        height: 100%;
                                                        object-fit: cover;
                                                        transition: transform 0.5s ease;
                                                        .result-image:hover .result-img {
                                                            transform: scale(1.1);
                                                        }
                                                        /* Responsive styles */
                                                        @media (max-width: 767px) {
                                                            .testimonial-header {
                                                                flex-direction: column;
                                                                text-align: center;
                                                            }
                                                            .client-avatar {
                                                                margin-right: 0;
                                                                margin-bottom: 15px;
                                                            }
                                                            .results-gallery {
                                                                flex-direction: column;
                                                            }
                                                            .result-divider {
                                                                transform: rotate(90deg);
                                                                margin: 10px 0;
                                                            }
                                                        }
                                                        .blog-detail-card {
                                                            border: 1px solid #e9ecef;
                                                        }
                                                        .blog-title {
                                                            line-height: 1.4;
                                                        }
                                                        a-item {
                                                            font-size: 0.9rem;
                                                            color: #6c757d;
                                                        }
                                                        .meta-divider {
                                                            color: #dee2e6;
                                                            font-weight: bold;
                                                        }
                                                        .content-text img {
                                                            max-width: 100%;
                                                            height: auto;
                                                            border-radius: 8px;
                                                            margin: 15px 0;
                                                        }
                                                        .content-text p {
                                                            margin-bottom: 1rem;
                                                        }
                                                        .tag-item {
                                                            font-size: 0.85rem;
                                                            transition: all 0.3s ease;
                                                        }
                                                        .tag-item:hover {
                                                            background-color: #007bff !important;
                                                            color: white !important;
                                                        }
                                                        .share-buttons .btn {
                                                            border-radius: 50%;
                                                            width: 35px;
                                                            height: 35px;
                                                            display: inline-flex;
                                                            align-items: center;
                                                            justify-content: center;
                                                            transition: all 0.3s ease;
                                                        }
                                                        .share-buttons .btn:hover {
                                                            transform: translateY(-2px);
                                                        }
                                                        .placeholder-image {
                                                            border: 2px dashed #dee2e6;
                                                        }
                                                        @media (max-width: 768px) {
                                                            .d-flex.justify-content-between {
                                                                flex-direction: column;
                                                                gap: 1rem;
                                                            }
                                                            .share-buttons {
                                                                align-self: center;
                                                            }
                                                        }
                                                        .service-content * {
                                                            text-align: left !important;
                                                        }
                                                        .service-content p,
                                                        .service-content div,
                                                        .service-content li {
                                                            text-align: left !important;
                                                        }
                                                        .service-points li {
                                                            text-align: left !important;
                                                        }
                                                        .career-details-section {
                                                            background: #f8f9fa;
                                                            min-height: 80vh;
                                                        }
                                                        /* Job Header Card */
                                                        .job-header-card {
                                                            background: #fff;
                                                            border-radius: 15px;
                                                            padding: 30px;
                                                            margin-bottom: 30px;
                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                            border: 1px solid #f0f0f0;
                                                        }
                                                        .job-header-content {
                                                            display: flex;
                                                            justify-content: space-between;
                                                            align-items: flex-start;
                                                            gap: 20px;
                                                        }
                                                        .job-title {
                                                            font-size: 32px;
                                                            font-weight: 700;
                                                            color: #333;
                                                            margin-bottom: 15px;
                                                            line-height: 1.2;
                                                        }
                                                        .job-meta {
                                                            display: flex;
                                                            flex-wrap: wrap;
                                                            gap: 20px;
                                                        }
                                                        .job-meta span {
                                                            display: flex;
                                                            align-items: center;
                                                            gap: 8px;
                                                            color: #666;
                                                            font-size: 14px;
                                                        }
                                                        .job-meta i {
                                                            color: var(--theme-color, #007bff);
                                                        }
                                                        .salary-info {
                                                            text-align: right;
                                                            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                            color: #fff;
                                                            padding: 20px;
                                                            border-radius: 12px;
                                                            min-width: 180px;
                                                        }
                                                        .salary-label {
                                                            display: block;
                                                            font-size: 14px;
                                                            opacity: 0.9;
                                                            margin-bottom: 5px;
                                                        }
                                                        .salary-amount {
                                                            display: block;
                                                            font-size: 19px;
                                                            font-weight: 700;
                                                        }
                                                        /* Job Sections */
                                                        .job-section {
                                                            background: #fff;
                                                            border-radius: 15px;
                                                            padding: 30px;
                                                            margin-bottom: 30px;
                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                            border: 1px solid #f0f0f0;
                                                        }
                                                        .section-title {
                                                            font-size: 20px;
                                                            font-weight: 600;
                                                            color: #333;
                                                            margin-bottom: 20px;
                                                            display: flex;
                                                            align-items: center;
                                                            gap: 10px;
                                                        }
                                                        .section-title i {
                                                            color: var(--theme-color, #007bff);
                                                        }
                                                        .job-description,
                                                        .job-requirements,
                                                        .job-responsibilities,
                                                        .job-benefits {
                                                            color: #666;
                                                            line-height: 1.8;
                                                        }
                                                        .job-description ul,
                                                        .job-requirements ul,
                                                        .job-responsibilities ul,
                                                        .job-benefits ul {
                                                            padding-left: 20px;
                                                        }
                                                        .job-description li,
                                                        .job-requirements li,
                                                        .job-responsibilities li,
                                                        .job-benefits li {
                                                            margin-bottom: 8px;
                                                        }
                                                        /* Qualification Tags */
                                                        .qualification-tags-container {
                                                            display: flex;
                                                            flex-wrap: wrap;
                                                            gap: 12px;
                                                        }
                                                        .qualification-tag {
                                                            background: #0B71B9;
                                                            color: #fff;
                                                            padding: 8px 16px;
                                                            border-radius: 20px;
                                                            font-size: 13px;
                                                            font-weight: 500;
                                                            transition: all 0.3s ease;
                                                        }
                                                        .qualification-tag:hover {
                                                            transform: translateY(-2px);
                                                            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                        }
                                                        /* Sidebar */
                                                        .career-sidebar {
                                                            position: sticky;
                                                            top: 20px;
                                                        }
                                                        .apply-card,
                                                        .job-summary-card,
                                                        .share-job-card {
                                                            background: #fff;
                                                            border-radius: 15px;
                                                            padding: 25px;
                                                            margin-bottom: 25px;
                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                            border: 1px solid #f0f0f0;
                                                        }
                                                        .apply-header h4 {
                                                            color: #333;
                                                            font-weight: 600;
                                                            margin-bottom: 8px;
                                                            .apply-header p {
                                                                color: #666;
                                                                margin-bottom: 20px;
                                                                font-size: 14px;
                                                            }
                                                            .contact-info {
                                                                margin-bottom: 20px;
                                                            }
                                                            .contact-item {
                                                                display: flex;
                                                                align-items: flex-start;
                                                                gap: 12px;
                                                                padding: 15px;
                                                                background: #f8f9fa;
                                                                border-radius: 10px;
                                                            }
                                                            .contact-item i {
                                                                color: var(--theme-color, #007bff);
                                                                font-size: 18px;
                                                                margin-top: 2px;
                                                            }
                                                            .contact-label {
                                                                display: block;
                                                                font-size: 12px;
                                                                color: #666;
                                                                margin-bottom: 4px;
                                                            }
                                                            .contact-value {
                                                                color: #333;
                                                                font-weight: 500;
                                                                text-decoration: none;
                                                            }
                                                            .contact-value:hover {
                                                                color: var(--theme-color, #007bff);
                                                            }
                                                            .resume-note {
                                                                display: flex;
                                                                align-items: center;
                                                                gap: 8px;
                                                                background: #fff3cd;
                                                                color: #856404;
                                                                padding: 10px 15px;
                                                                border-radius: 8px;
                                                                margin-bottom: 20px;
                                                                font-size: 13px;
                                                            }
                                                            .apply-actions {
                                                                display: flex;
                                                                flex-direction: column;
                                                                gap: 10px;
                                                            }
                                                            .apply-btn {
                                                                display: flex;
                                                                align-items: center;
                                                                justify-content: center;
                                                                gap: 8px;
                                                                padding: 12px 20px;
                                                                border-radius: 8px;
                                                                text-decoration: none;
                                                                font-weight: 500;
                                                                transition: all 0.3s ease;
                                                                border: none;
                                                                cursor: pointer;
                                                            }
                                                            .apply-btn.primary {
                                                                background: var(--theme-color, #007bff);
                                                                color: #fff;
                                                            }
                                                            ly-btn.primary:hover {
                                                                background: #0056b3;
                                                                transform: translateY(-2px);
                                                                color: #fff;
                                                                text-decoration: none;
                                                            }
                                                            .apply-btn.secondary {
                                                                background: #f8f9fa;
                                                                color: #333;
                                                                border: 2px solid #e9ecef;
                                                            }
                                                            .apply-btn.secondary:hover {
                                                                background: #e9ecef;
                                                                border-color: #dee2e6;
                                                            }
                                                            /* Job Summary */
                                                            .job-summary-card h4,
                                                            .share-job-card h4 {
                                                                color: #333;
                                                                font-weight: 600;
                                                                margin-bottom: 20px;
                                                            }
                                                            .summary-items {
                                                                display: flex;
                                                                flex-direction: column;
                                                                gap: 15px;
                                                                .summary-item {
                                                                    display: flex;
                                                                    justify-content: space-between;
                                                                    align-items: center;
                                                                    padding-bottom: 15px;
                                                                    border-bottom: 1px solid #f0f0f0;
                                                                }
                                                                .summary-item:last-child {
                                                                    border-bottom: none;
                                                                    padding-bottom: 0;
                                                                }
                                                                .summary-label {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    color: #666;
                                                                    font-size: 14px;
                                                                }
                                                                .summary-label i {
                                                                    color: var(--theme-color, #007bff);
                                                                    .summary-value {
                                                                        color: #333;
                                                                        font-weight: 500;
                                                                        font-size: 14px;
                                                                    }
                                                                    /* Share Buttons */
                                                                    .share-buttons {
                                                                        display: flex;
                                                                        gap: 10px;
                                                                    }
                                                                    .share-btn {
                                                                        width: 45px;
                                                                        height: 45px;
                                                                        border-radius: 50%;
                                                                        display: flex;
                                                                        align-items: center;
                                                                        justify-content: center;
                                                                        text-decoration: none;
                                                                        transition: all 0.3s ease;
                                                                        border: none;
                                                                        cursor: pointer;
                                                                    }
                                                                    .share-btn.linkedin {
                                                                        background: #0077b5;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn.twitter {
                                                                        background: #1da1f2;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn.facebook {
                                                                        background: #4267b2;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn.copy {
                                                                        background: #6c757d;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn:hover {
                                                                        transform: translateY(-3px);
                                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                                    }
                                                                    /* Back Button */
                                                                    .back-to-careers {
                                                                        text-align: center;
                                                                    }
                                                                    .back-btn {
                                                                        display: inline-flex;
                                                                        align-items: center;
                                                                        gap: 8px;
                                                                        color: var(--theme-color, #007bff);
                                                                        text-decoration: none;
                                                                        font-weight: 500;
                                                                        padding: 10px 20px;
                                                                        border: 2px solid var(--theme-color, #007bff);
                                                                        border-radius: 25px;
                                                                        transition: all 0.3s ease;
                                                                    }
                                                                    .back-btn:hover {
                                                                        background: var(--theme-color, #007bff);
                                                                        color: #fff;
                                                                        text-decoration: none;
                                                                    }
                                                                    .back-btn i {
                                                                        margin-right: 8px;
                                                                    }
                                                                    /* Modal Styles */
                                                                    .modal-content {
                                                                        border-radius: 15px;
                                                                        border: none;
                                                                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                                    }
                                                                    .modal-header {
                                                                        border-bottom: 1px solid #f0f0f0;
                                                                        padding: 20px 25px;
                                                                    }
                                                                    .modal-body {
                                                                        padding: 25px;
                                                                    }
                                                                    .modal-footer {
                                                                        border-top: 1px solid #f0f0f0;
                                                                        padding: 20px 25px;
                                                                    }
                                                                    /* Responsive Design */
                                                                    @media (max-width: 992px) {
                                                                        .job-header-content {
                                                                            flex-direction: column;
                                                                        }
                                                                        .salary-info {
                                                                            text-align: left;
                                                                            min-width: auto;
                                                                            width: 100%;
                                                                        }
                                                                        .career-sidebar {
                                                                            position: static;
                                                                            margin-top: 30px;
                                                                        }
                                                                    }
                                                                    @media (max-width: 768px) {
                                                                        .job-title {
                                                                            font-size: 24px;
                                                                        }
                                                                        .job-meta {
                                                                            flex-direction: column;
                                                                            gap: 10px;
                                                                        }
                                                                        .job-header-card,
                                                                        .job-section,
                                                                        .apply-card,
                                                                        .job-summary-card,
                                                                        .share-job-card {
                                                                            padding: 20px;
                                                                        }
                                                                        .qualification-tags-container {
                                                                            justify-content: center;
                                                                        }
                                                                    }
                                                                    /* Hero Banner Slider */
                                                                    .hero-banner-slider {
                                                                        position: relative;
                                                                    }
                                                                    .hero-banner-slider .swiper-button-next,
                                                                    .hero-banner-slider .swiper-button-prev {
                                                                        width: 50px;
                                                                        height: 50px;
                                                                        background-color: rgba(255, 255, 255, 0.9);
                                                                        border-radius: 50%;
                                                                        color: var(--theme);
                                                                    }
                                                                    .hero-banner-slider .swiper-button-next:after,
                                                                    .hero-banner-slider .swiper-button-prev:after {
                                                                        font-size: 20px;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination {
                                                                        bottom: 20px;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                                        width: 12px;
                                                                        height: 12px;
                                                                        background-color: rgba(255, 255, 255, 0.9);
                                                                        opacity: 0.5;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                                        opacity: 1;
                                                                        background-color: var(--theme);
                                                                    }
                                                                    .hero-section {
                                                                        text-shadow: none !important;
                                                                    }
                                                                    .hero-1 {
                                                                        position: relative;
                                                                        z-index: 1;
                                                                    }
                                                                    .hero-1::before {
                                                                        content: "";
                                                                        position: absolute;
                                                                        top: 0;
                                                                        left: 0;
                                                                        width: 100%;
                                                                        height: 100%;
                                                                        background-color: rgba(0, 0, 0, 0.1);
                                                                        z-index: 0;
                                                                    }
                                                                    .hero-content {
                                                                        position: relative;
                                                                        z-index: 2;
                                                                    }
                                                                    width: 36px;
                                                                    height: 36px;
                                                                    line-height: 36px;
                                                                    text-align: center;
                                                                    border: 1px solid var(--header);
                                                                    background-color: transparent;
                                                                    color: var(--theme);
                                                                    border-radius: 50%;
                                                                }
                                                                .team-details-wrapper .team-details-items .details-content .social-icon a:hover {
                                                                    background-color: var(--white);
                                                                    color: var(--theme);
                                                                    border-color: transparent;
                                                                }
                                                                .team-details-wrapper p {
                                                                    max-width: 550px;
                                                                    color: var(--header);
                                                                    font-weight: 500;
                                                                    .team-details-wrapper .details-counter-area {
                                                                        display: flex;
                                                                        align-items: center;
                                                                        gap: 40px;
                                                                        @media (max-width: 575px) {
                                                                            .team-details-wrapper .details-counter-area {
                                                                                gap: 15px;
                                                                            }
                                                                        }
                                                                        .team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
                                                                            padding-right: 20px;
                                                                            border-right: 1px solid var(--text);
                                                                        }
                                                                        .team-details-wrapper .details-counter-area .counter-items h2 {
                                                                            font-size: 24px;
                                                                            color: var(--header);
                                                                            font-weight: 700;
                                                                        }
                                                                        .team-details-wrapper .details-counter-area .counter-items p {
                                                                            font-size: 24px;
                                                                            font-weight: 700;
                                                                            color: var(--header);
                                                                            max-width: initial;
                                                                        }
                                                                        .testimonial-card-items {
                                                                            margin-top: 30px;
                                                                            background-color: var(--white);
                                                                            box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
                                                                            padding: 40px 40px;
                                                                            margin-bottom: 40px;
                                                                        }
                                                                        .testimonial-card-items .client-info {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 20px;
                                                                        }
                                                                        .testimonial-card-items .client-info .client-img {
                                                                            width: 70px;
                                                                            height: 70px;
                                                                            position: relative;
                                                                            border-radius: 50%;
                                                                            -webkit-border-radius: 50%;
                                                                            -moz-border-radius: 50%;
                                                                            -ms-border-radius: 50%;
                                                                            -o-border-radius: 50%;
                                                                        }
                                                                        .testimonial-card-items .client-info .client-img .icon {
                                                                            position: absolute;
                                                                            left: -25px;
                                                                            bottom: -35px;
                                                                        }
                                                                        .testimonial-card-items .client-info .client-img .icon .shape {
                                                                            transition: all 0.1s;
                                                                            -webkit-transition: all 0.1s;
                                                                            -moz-transition: all 0.1s;
                                                                            -ms-transition: all 0.1s;
                                                                            -o-transition: all 0.1s;
                                                                        }
                                                                        .testimonial-card-items .client-info .content h3 {
                                                                            color: #121315;
                                                                            font-family: "Inter", sans-serif;
                                                                            font-size: 20px;
                                                                            font-style: normal;
                                                                            font-weight: 600;
                                                                            line-height: 28px;
                                                                            letter-spacing: -0.4px;
                                                                        }
                                                                        .testimonial-card-items p {
                                                                            font-weight: 500;
                                                                            margin-bottom: 30px;
                                                                        }
                                                                        .testimonial-card-items .star {
                                                                            color: var(--theme);
                                                                        }
                                                                        .testimonial-section {
                                                                            margin-bottom: -40px;
                                                                        }
                                                                        @media (min-width: 1400px) {
                                                                            .testimonial-slider {
                                                                                margin-right: -170px;
                                                                            }
                                                                        }
                                                                        .testimonial-slider .swiper-slide {
                                                                            transition: all 3s;
                                                                            -webkit-transition: all 3s;
                                                                            -moz-transition: all 3s;
                                                                            -ms-transition: all 3s;
                                                                            -o-transition: all 3s;
                                                                        }
                                                                        .testimonial-slider .swiper-slide-active .testimonial-card-items {
                                                                            border-top: 3px solid var(--theme);
                                                                            background-color: var(--white);
                                                                            box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                                                                            transition: all 1s;
                                                                            -webkit-transition: all 1s;
                                                                            -moz-transition: all 1s;
                                                                            -ms-transition: all 1s;
                                                                            -o-transition: all 1s;
                                                                        }
                                                                        .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                                                                            filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                                                                        }
                                                                        /*# sourceMappingURL=main.css.map */
                                                                        .owl-carousel .owl-nav button.owl-next,
                                                                        .owl-carousel .owl-nav button.owl-prev {
                                                                            display: inline-block;
                                                                            padding: 6px 0 !important;
                                                                            color: #fff;
                                                                        }
                                                                        .owl-carousel .owl-nav button.owl-next {
                                                                            padding-right: 14px !important;
                                                                            padding-left: 7px !important;
                                                                            border-radius: 0 40px 40px 0;
                                                                        }
                                                                        .owl-carousel .owl-nav button.owl-prev {
                                                                            padding-right: 7px !important;
                                                                            padding-left: 14px !important;
                                                                            border-radius: 40px 0 0 40px;
                                                                        }
                                                                        .page-section {
                                                                            position: relative;
                                                                            /* padding-top: 80px; */
                                                                            padding-bottom: 80px;
                                                                            overflow: hidden;
                                                                        }
                                                                        .page-hero {
                                                                            position: relative;
                                                                            height: 550px;
                                                                            z-index: 10;
                                                                        }
                                                                        .page-banner {
                                                                            position: relative;
                                                                            height: 300px;
                                                                            z-index: 10;
                                                                        }
                                                                        .page-hero.overlay-dark::before,
                                                                        .page-banner.overlay-dark::before {
                                                                            content: "";
                                                                            position: absolute;
                                                                            top: 0;
                                                                            left: 0;
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            background: rgba(52, 53, 49, 0.7);
                                                                            z-index: 1;
                                                                        }
                                                                        .page-banner .breadcrumb-item,
                                                                        .page-banner .breadcrumb-item a {
                                                                            font-size: 14px;
                                                                        }
                                                                        .hero-section,
                                                                        .banner-section {
                                                                            position: relative;
                                                                            display: -ms-flexbox;
                                                                            display: flex;
                                                                            -ms-flex-align: center;
                                                                            align-items: center;
                                                                            -ms-flex-pack: center;
                                                                            justify-content: center;
                                                                            height: 100%;
                                                                            color: #ffffff;
                                                                            z-index: 10;
                                                                        }
                                                                        .hero-section .subhead {
                                                                            text-transform: uppercase;
                                                                            letter-spacing: 4px;
                                                                            color: #db7f7f;
                                                                            /* Changed from #000000 to white for better visibility */
                                                                            font-weight: 500;
                                                                        }
                                                                        .hero-section h1 {
                                                                            margin-bottom: 32px;
                                                                            color: #ffffff;
                                                                            /* Changed from var(--theme) to white */
                                                                            font-weight: 500;
                                                                        }
                                                                        /* Additional styling for better text visibility */
                                                                        .hero-section {
                                                                            text-shadow: none !important;
                                                                        }
                                                                        .input-navbar {
                                                                            width: auto;
                                                                            max-width: 280px;
                                                                        }
                                                                        .input-navbar .input-group-text {
                                                                            background-color: #fff;
                                                                        }
                                                                        .input-navbar .form-control {
                                                                            height: calc(1.5em + 1rem + 2px);
                                                                        }
                                                                        .services-section {
                                                                            background: #f8f9fa;
                                                                            padding: 80px 0;
                                                                        }
                                                                        .service-card-item {
                                                                            background: #fff;
                                                                            border-radius: 15px;
                                                                            overflow: hidden;
                                                                            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                                                            transition: all 0.3s ease;
                                                                            height: 100%;
                                                                            border: 2px solid #f0f0f0;
                                                                            position: relative;
                                                                        }
                                                                        .service-card-item:hover {
                                                                            transform: translateY(-8px);
                                                                            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                                                            border: 2px solid #ff9800;
                                                                        }
                                                                        .service-image {
                                                                            position: relative;
                                                                            height: 200px;
                                                                            overflow: hidden;
                                                                            margin: 15px;
                                                                            border-radius: 10px;
                                                                        }
                                                                        .service-image img {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            object-fit: cover;
                                                                            transition: transform 0.3s ease;
                                                                            border-radius: 10px;
                                                                        }
                                                                        .service-card-item:hover .service-image img {
                                                                            transform: scale(1.05);
                                                                        }
                                                                        .service-content {
                                                                            padding: 0 25px 25px 25px;
                                                                            text-align: center;
                                                                        }
                                                                        .service-content h3 {
                                                                            font-size: 20px;
                                                                            font-weight: 600;
                                                                            margin-bottom: 20px;
                                                                            color: var(--theme);
                                                                            line-height: 1.4;
                                                                        }
                                                                        .service-button .contact-btn {
                                                                            background: #fff;
                                                                            color: #666;
                                                                            padding: 10px 25px;
                                                                            border: 2px solid #e0e0e0;
                                                                            border-radius: 25px;
                                                                            text-decoration: none;
                                                                            font-weight: 500;
                                                                            font-size: 14px;
                                                                            transition: all 0.3s ease;
                                                                            display: inline-block;
                                                                        }
                                                                        .service-button .contact-btn:hover {
                                                                            background: linear-gradient(45deg, #ff9800, #ffc107);
                                                                            color: #fff;
                                                                            border-color: #ff9800;
                                                                            transform: translateY(-2px);
                                                                            box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                                                        }
                                                                        .section-title h2 {
                                                                            font-size: 36px;
                                                                            font-weight: 700;
                                                                            color: #333;
                                                                            margin-bottom: 20px;
                                                                        }
                                                                        /* Mobile Responsive */
                                                                        @media (max-width: 768px) {
                                                                            .services-section {
                                                                                padding: 60px 0;
                                                                            }
                                                                            .service-content {
                                                                                padding: 0 20px 20px 20px;
                                                                            }
                                                                            .service-content h3 {
                                                                                font-size: 18px;
                                                                                margin-bottom: 15px;
                                                                            }
                                                                            .service-image {
                                                                                height: 180px;
                                                                                margin: 12px;
                                                                            }
                                                                            .section-title h2 {
                                                                                font-size: 28px;
                                                                            }
                                                                        }
                                                                        @media (max-width: 576px) {
                                                                            .service-image {
                                                                                height: 160px;
                                                                                margin: 10px;
                                                                            }
                                                                            .service-content h3 {
                                                                                font-size: 16px;
                                                                            }
                                                                            .service-button .contact-btn {
                                                                                padding: 8px 20px;
                                                                                font-size: 13px;
                                                                            }
                                                                        }
                                                                        /* Career Card Hover Effects */
                                                                        .career-card {
                                                                            background: #fff;
                                                                            transition: all 0.4s ease-in-out;
                                                                            overflow: hidden;
                                                                            position: relative;
                                                                            cursor: pointer;
                                                                        }
                                                                        /* Content overlay */
                                                                        .career-card>div {
                                                                            position: relative;
                                                                            z-index: 2;
                                                                            transition: all 0.4s ease-in-out;
                                                                        }
                                                                        /* Description hover effect */
                                                                        .career-description {
                                                                            transition: all 0.4s ease-in-out;
                                                                        }
                                                                        /* Salary badge hover effect */
                                                                        .salary-badge {
                                                                            transition: all 0.4s ease-in-out;
                                                                            position: relative;
                                                                            z-index: 3;
                                                                        }
                                                                        /* Qualification tags hover effect */
                                                                        .qualification-tag {
                                                                            background-color: #0B71B9;
                                                                            color: #fff;
                                                                        }
                                                                        .career-email {
                                                                            transition: all 0.4s ease-in-out;
                                                                        }
                                                                        /* Resume required hover effect */
                                                                        .resume-required {
                                                                            transition: all 0.4s ease-in-out;
                                                                        }
                                                                        /* Button hover effect */
                                                                        .career-btn {
                                                                            transition: all 0.4s ease-in-out;
                                                                            position: relative;
                                                                            z-index: 3;
                                                                        }
                                                                        /* Add subtle animation to the card */
                                                                        @keyframes cardFloat {
                                                                            0%,
                                                                            100% {
                                                                                transform: translateY(0px);
                                                                            }
                                                                            50% {
                                                                                transform: translateY(-3px);
                                                                            }
                                                                        }
                                                                        /* Smooth transitions for all child elements */
                                                                        .career-card * {
                                                                            transition: all 0.4s ease-in-out;
                                                                        }
                                                                        .testimonial-card {
                                                                            background-color: #ffffff;
                                                                            border-radius: 15px;
                                                                            padding: 30px;
                                                                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                                            margin: 20px 10px;
                                                                            transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                                            border: 1px solid rgba(0, 0, 0, 0.05);
                                                                            height: 100%;
                                                                        }
                                                                        .testimonial-card:hover {
                                                                            transform: translateY(-5px);
                                                                            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                                                        }
                                                                        .testimonial-header {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            margin-bottom: 20px;
                                                                        }
                                                                        .client-avatar {
                                                                            width: 70px;
                                                                            height: 70px;
                                                                            flex-shrink: 0;
                                                                            margin-right: 20px;
                                                                            border-radius: 50%;
                                                                            border: 3px solid #E74D96;
                                                                            padding: 3px;
                                                                            background-color: white;
                                                                            overflow: hidden;
                                                                        }
                                                                        .avatar-img {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            border-radius: 50%;
                                                                            object-fit: cover;
                                                                        }
                                                                        .client-details h3 {
                                                                            font-size: 18px;
                                                                            font-weight: 700;
                                                                            margin-bottom: 5px;
                                                                            color: #2c3e50;
                                                                        }
                                                                        .client-service {
                                                                            font-size: 14px;
                                                                            color: #7f8c8d;
                                                                            display: block;
                                                                            margin-bottom: 8px;
                                                                        }
                                                                        .rating {
                                                                            color: #ffa502;
                                                                            font-size: 14px;
                                                                        }
                                                                        .testimonial-body {
                                                                            position: relative;
                                                                            margin-bottom: 25px;
                                                                        }
                                                                        .quote-icon {
                                                                            color: rgba(255, 71, 87, 0.1);
                                                                            font-size: 40px;
                                                                            position: absolute;
                                                                            top: -15px;
                                                                            left: -10px;
                                                                        }
                                                                        .testimonial-text {
                                                                            position: relative;
                                                                            font-size: 16px;
                                                                            line-height: 1.7;
                                                                            color: #5a6c7d;
                                                                            font-style: italic;
                                                                            padding-left: 10px;
                                                                        }
                                                                        .testimonial-results {
                                                                            background-color: #f8f9fa;
                                                                            border-radius: 12px;
                                                                            padding: 20px;
                                                                            margin-top: 20px;
                                                                        }
                                                                        .results-title {
                                                                            font-size: 16px;
                                                                            font-weight: 600;
                                                                            color: #34495e;
                                                                            margin-bottom: 15px;
                                                                            text-align: center;
                                                                        }
                                                                        .results-gallery {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            justify-content: center;
                                                                            gap: 15px;
                                                                        }
                                                                        .single-result {
                                                                            justify-content: center;
                                                                        }
                                                                        .result-image {
                                                                            position: relative;
                                                                            width: 140px;
                                                                            height: 140px;
                                                                            border-radius: 10px;
                                                                            overflow: hidden;
                                                                            border: 3px solid white;
                                                                            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                                        }
                                                                        .result-divider {
                                                                            color: #E74D96;
                                                                            font-size: 20px;
                                                                        }
                                                                        .image-label {
                                                                            position: absolute;
                                                                            top: 10px;
                                                                            left: 10px;
                                                                            background-color: #E74D96;
                                                                            color: white;
                                                                            font-size: 12px;
                                                                            font-weight: 600;
                                                                            padding: 4px 10px;
                                                                            border-radius: 20px;
                                                                            z-index: 1;
                                                                        }
                                                                        .result-img {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            object-fit: cover;
                                                                            transition: transform 0.5s ease;
                                                                        }
                                                                        .result-image:hover .result-img {
                                                                            transform: scale(1.1);
                                                                        }
                                                                        /* Responsive styles */
                                                                        @media (max-width: 767px) {
                                                                            .testimonial-header {
                                                                                flex-direction: column;
                                                                                text-align: center;
                                                                            }
                                                                            .client-avatar {
                                                                                margin-right: 0;
                                                                                margin-bottom: 15px;
                                                                            }
                                                                            .results-gallery {
                                                                                flex-direction: column;
                                                                            }
                                                                            .result-divider {
                                                                                transform: rotate(90deg);
                                                                                margin: 10px 0;
                                                                            }
                                                                        }
                                                                        .blog-detail-card {
                                                                            border: 1px solid #e9ecef;
                                                                        }
                                                                        .blog-title {
                                                                            line-height: 1.4;
                                                                        }
                                                                        .meta-item {
                                                                            font-size: 0.9rem;
                                                                            color: #6c757d;
                                                                        }
                                                                        .meta-divider {
                                                                            color: #dee2e6;
                                                                            font-weight: bold;
                                                                        }
                                                                        .content-text img {
                                                                            max-width: 100%;
                                                                            height: auto;
                                                                            border-radius: 8px;
                                                                            margin: 15px 0;
                                                                        }
                                                                        .content-text p {
                                                                            margin-bottom: 1rem;
                                                                        }
                                                                        .tag-item {
                                                                            font-size: 0.85rem;
                                                                            transition: all 0.3s ease;
                                                                        }
                                                                        .tag-item:hover {
                                                                            background-color: #007bff !important;
                                                                            color: white !important;
                                                                        }
                                                                        .share-buttons .btn {
                                                                            border-radius: 50%;
                                                                            width: 35px;
                                                                            height: 35px;
                                                                            display: inline-flex;
                                                                            align-items: center;
                                                                            justify-content: center;
                                                                            transition: all 0.3s ease;
                                                                        }
                                                                        .share-buttons .btn:hover {
                                                                            transform: translateY(-2px);
                                                                        }
                                                                        .placeholder-image {
                                                                            border: 2px dashed #dee2e6;
                                                                        }
                                                                        @media (max-width: 768px) {
                                                                            .d-flex.justify-content-between {
                                                                                flex-direction: column;
                                                                                gap: 1rem;
                                                                            }
                                                                            .share-buttons {
                                                                                align-self: center;
                                                                            }
                                                                        }
                                                                        .service-content * {
                                                                            text-align: left !important;
                                                                        }
                                                                        .service-content p,
                                                                        .service-content div,
                                                                        .service-content li {
                                                                            text-align: left !important;
                                                                        }
                                                                        .service-points li {
                                                                            text-align: left !important;
                                                                        }
                                                                        .career-details-section {
                                                                            background: #f8f9fa;
                                                                            min-height: 80vh;
                                                                        }
                                                                        /* Job Header Card */
                                                                        .job-header-card {
                                                                            background: #fff;
                                                                            border-radius: 15px;
                                                                            padding: 30px;
                                                                            margin-bottom: 30px;
                                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                            border: 1px solid #f0f0f0;
                                                                        }
                                                                        .job-header-content {
                                                                            display: flex;
                                                                            justify-content: space-between;
                                                                            align-items: flex-start;
                                                                            gap: 20px;
                                                                        }
                                                                        .job-title {
                                                                            font-size: 32px;
                                                                            font-weight: 700;
                                                                            color: #333;
                                                                            margin-bottom: 15px;
                                                                            line-height: 1.2;
                                                                        }
                                                                        .job-meta {
                                                                            display: flex;
                                                                            flex-wrap: wrap;
                                                                            gap: 20px;
                                                                        }
                                                                        .job-meta span {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            color: #666;
                                                                            font-size: 14px;
                                                                        }
                                                                        .job-meta i {
                                                                            color: var(--theme-color, #007bff);
                                                                        }
                                                                        .salary-info {
                                                                            text-align: right;
                                                                            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                                            color: #fff;
                                                                            padding: 20px;
                                                                            border-radius: 12px;
                                                                            min-width: 180px;
                                                                        }
                                                                        .salary-label {
                                                                            display: block;
                                                                            font-size: 14px;
                                                                            opacity: 0.9;
                                                                            margin-bottom: 5px;
                                                                        }
                                                                        .salary-amount {
                                                                            display: block;
                                                                            font-size: 19px;
                                                                            font-weight: 700;
                                                                        }
                                                                        /* Job Sections */
                                                                        .job-section {
                                                                            background: #fff;
                                                                            border-radius: 15px;
                                                                            padding: 30px;
                                                                            margin-bottom: 30px;
                                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                            border: 1px solid #f0f0f0;
                                                                        }
                                                                        .section-title {
                                                                            font-size: 20px;
                                                                            font-weight: 600;
                                                                            color: #333;
                                                                            margin-bottom: 20px;
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 10px;
                                                                        }
                                                                        .section-title i {
                                                                            color: var(--theme-color, #007bff);
                                                                        }
                                                                        .job-description,
                                                                        .job-requirements,
                                                                        .job-responsibilities,
                                                                        .job-benefits {
                                                                            color: #666;
                                                                            line-height: 1.8;
                                                                        }
                                                                        .job-description ul,
                                                                        .job-requirements ul,
                                                                        .job-responsibilities ul,
                                                                        .job-benefits ul {
                                                                            padding-left: 20px;
                                                                        }
                                                                        .job-description li,
                                                                        .job-requirements li,
                                                                        .job-responsibilities li,
                                                                        .job-benefits li {
                                                                            margin-bottom: 8px;
                                                                        }
                                                                        /* Qualification Tags */
                                                                        .qualification-tags-container {
                                                                            display: flex;
                                                                            flex-wrap: wrap;
                                                                            gap: 12px;
                                                                        }
                                                                        .qualification-tag {
                                                                            background: #0B71B9;
                                                                            color: #fff;
                                                                            padding: 8px 16px;
                                                                            border-radius: 20px;
                                                                            font-size: 13px;
                                                                            font-weight: 500;
                                                                            transition: all 0.3s ease;
                                                                        }
                                                                        .qualification-tag:hover {
                                                                            transform: translateY(-2px);
                                                                            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                                        }
                                                                        /* Sidebar */
                                                                        .career-sidebar {
                                                                            position: sticky;
                                                                            top: 20px;
                                                                        }
                                                                        .apply-card,
                                                                        .job-summary-card,
                                                                        .share-job-card {
                                                                            background: #fff;
                                                                            border-radius: 15px;
                                                                            padding: 25px;
                                                                            margin-bottom: 25px;
                                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                            border: 1px solid #f0f0f0;
                                                                        }
                                                                        .apply-header h4 {
                                                                            color: #333;
                                                                            font-weight: 600;
                                                                            margin-bottom: 8px;
                                                                        }
                                                                        .apply-header p {
                                                                            color: #666;
                                                                            margin-bottom: 20px;
                                                                            font-size: 14px;
                                                                        }
                                                                        .contact-info {
                                                                            margin-bottom: 20px;
                                                                        }
                                                                        .contact-item {
                                                                            display: flex;
                                                                            align-items: flex-start;
                                                                            gap: 12px;
                                                                            padding: 15px;
                                                                            background: #f8f9fa;
                                                                            border-radius: 10px;
                                                                        }
                                                                        .contact-item i {
                                                                            color: var(--theme-color, #007bff);
                                                                            font-size: 18px;
                                                                            margin-top: 2px;
                                                                        }
                                                                        .contact-label {
                                                                            display: block;
                                                                            font-size: 12px;
                                                                            color: #666;
                                                                            margin-bottom: 4px;
                                                                        }
                                                                        .contact-value {
                                                                            color: #333;
                                                                            font-weight: 500;
                                                                            text-decoration: none;
                                                                        }
                                                                        .contact-value:hover {
                                                                            color: var(--theme-color, #007bff);
                                                                        }
                                                                        .resume-note {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            background: #fff3cd;
                                                                            color: #856404;
                                                                            padding: 10px 15px;
                                                                            border-radius: 8px;
                                                                            margin-bottom: 20px;
                                                                            font-size: 13px;
                                                                        }
                                                                        ly-actions {
                                                                            display: flex;
                                                                            flex-direction: column;
                                                                            gap: 10px;
                                                                        }
                                                                        ly-btn {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            justify-content: center;
                                                                            gap: 8px;
                                                                            padding: 12px 20px;
                                                                            border-radius: 8px;
                                                                            text-decoration: none;
                                                                            font-weight: 500;
                                                                            transition: all 0.3s ease;
                                                                            border: none;
                                                                            cursor: pointer;
                                                                        }
                                                                        .apply-btn.primary {
                                                                            background: var(--theme-color, #007bff);
                                                                            color: #fff;
                                                                        }
                                                                        .apply-btn.primary:hover {
                                                                            background: #0056b3;
                                                                            transform: translateY(-2px);
                                                                            color: #fff;
                                                                            text-decoration: none;
                                                                        }
                                                                        .apply-btn.secondary {
                                                                            background: #f8f9fa;
                                                                            color: #333;
                                                                            border: 2px solid #e9ecef;
                                                                        }
                                                                        .apply-btn.secondary:hover {
                                                                            background: #e9ecef;
                                                                            border-color: #dee2e6;
                                                                        }
                                                                        /* Job Summary */
                                                                        .job-summary-card h4,
                                                                        .share-job-card h4 {
                                                                            color: #333;
                                                                            font-weight: 600;
                                                                            margin-bottom: 20px;
                                                                        }
                                                                        .summary-items {
                                                                            display: flex;
                                                                            flex-direction: column;
                                                                            gap: 15px;
                                                                        }
                                                                        .summary-item {
                                                                            display: flex;
                                                                            justify-content: space-between;
                                                                            align-items: center;
                                                                            padding-bottom: 15px;
                                                                            border-bottom: 1px solid #f0f0f0;
                                                                        }
                                                                        .summary-item:last-child {
                                                                            border-bottom: none;
                                                                            padding-bottom: 0;
                                                                        }
                                                                        .summary-label {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            color: #666;
                                                                            font-size: 14px;
                                                                        }
                                                                        .summary-label i {
                                                                            color: var(--theme-color, #007bff);
                                                                        }
                                                                        .summary-value {
                                                                            color: #333;
                                                                            font-weight: 500;
                                                                            font-size: 14px;
                                                                        }
                                                                        /* Share Buttons */
                                                                        .share-buttons {
                                                                            display: flex;
                                                                            gap: 10px;
                                                                        }
                                                                        .share-btn {
                                                                            width: 45px;
                                                                            height: 45px;
                                                                            border-radius: 50%;
                                                                            display: flex;
                                                                            align-items: center;
                                                                            justify-content: center;
                                                                            text-decoration: none;
                                                                            transition: all 0.3s ease;
                                                                            border: none;
                                                                            cursor: pointer;
                                                                        }
                                                                        .share-btn.linkedin {
                                                                            background: #0077b5;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn.twitter {
                                                                            background: #1da1f2;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn.facebook {
                                                                            background: #4267b2;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn.copy {
                                                                            background: #6c757d;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn:hover {
                                                                            transform: translateY(-3px);
                                                                            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                                        }
                                                                        /* Back Button */
                                                                        .back-to-careers {
                                                                            text-align: center;
                                                                        }
                                                                        .back-btn {
                                                                            display: inline-flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            color: var(--theme-color, #007bff);
                                                                            text-decoration: none;
                                                                            font-weight: 500;
                                                                            padding: 10px 20px;
                                                                            border: 2px solid var(--theme-color, #007bff);
                                                                            border-radius: 25px;
                                                                            transition: all 0.3s ease;
                                                                        }
                                                                        .back-btn:hover {
                                                                            background: var(--theme-color, #007bff);
                                                                            color: #fff;
                                                                            text-decoration: none;
                                                                        }
                                                                        .back-btn i {
                                                                            margin-right: 8px;
                                                                        }
                                                                        /* Modal Styles */
                                                                        .modal-content {
                                                                            border-radius: 15px;
                                                                            border: none;
                                                                            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                                        }
                                                                        .modal-header {
                                                                            border-bottom: 1px solid #f0f0f0;
                                                                            padding: 20px 25px;
                                                                        }
                                                                        .modal-body {
                                                                            padding: 25px;
                                                                        }
                                                                        .modal-footer {
                                                                            border-top: 1px solid #f0f0f0;
                                                                            padding: 20px 25px;
                                                                        }
                                                                        /* Responsive Design */
                                                                        @media (max-width: 992px) {
                                                                            .job-header-content {
                                                                                flex-direction: column;
                                                                            }
                                                                            .salary-info {
                                                                                text-align: left;
                                                                                min-width: auto;
                                                                                width: 100%;
                                                                            }
                                                                            .career-sidebar {
                                                                                position: static;
                                                                                margin-top: 30px;
                                                                            }
                                                                        }
                                                                        @media (max-width: 768px) {
                                                                            .job-title {
                                                                                font-size: 24px;
                                                                            }
                                                                            .job-meta {
                                                                                flex-direction: column;
                                                                                gap: 10px;
                                                                            }
                                                                            .job-header-card,
                                                                            .job-section,
                                                                            .apply-card,
                                                                            .job-summary-card,
                                                                            .share-job-card {
                                                                                padding: 20px;
                                                                            }
                                                                            .qualification-tags-container {
                                                                                justify-content: center;
                                                                            }
                                                                        }
                                                                        /* Hero Banner Slider */
                                                                        .hero-banner-slider {
                                                                            position: relative;
                                                                        }
                                                                        .hero-banner-slider .swiper-button-next,
                                                                        .hero-banner-slider .swiper-button-prev {
                                                                            width: 50px;
                                                                            height: 50px;
                                                                            background-color: rgba(255, 255, 255, 0.9);
                                                                            border-radius: 50%;
                                                                            color: var(--theme);
                                                                        }
                                                                        .hero-banner-slider .swiper-button-next:after,
                                                                        .hero-banner-slider .swiper-button-prev:after {
                                                                            font-size: 20px;
                                                                        }
                                                                        .hero-banner-slider .swiper-pagination {
                                                                            bottom: 20px;
                                                                        }
                                                                        .hero-banner-slider .swiper-pagination-bullet {
                                                                            width: 12px;
                                                                            height: 12px;
                                                                            background-color: rgba(255, 255, 255, 0.9);
                                                                            opacity: 0.5;
                                                                        }
                                                                        .hero-banner-slider .swiper-pagination-bullet-active {
                                                                            opacity: 1;
                                                                            background-color: var(--theme);
                                                                        }
                                                                        .hero-section {
                                                                            text-shadow: none !important;
                                                                        }
                                                                        .hero-1 {
                                                                            position: relative;
                                                                            z-index: 1;
                                                                        }
                                                                        .hero-1::before {
                                                                            content: "";
                                                                            position: absolute;
                                                                            top: 0;
                                                                            left: 0;
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            background-color: rgba(0, 0, 0, 0.1);
                                                                            z-index: 0;
                                                                        }
                                                                        .hero-content {
                                                                            position: relative;
                                                                            z-index: 2;
                                                                        }
                                                                        .hero-section {
                                                                            text-shadow: none !important;
                                                                        }
                                                                        .hero-1 {
                                                                            position: relative;
                                                                            z-index: 1;
                                                                        }
                                                                        .hero-1::before {
                                                                            content: "";
                                                                            position: absolute;
                                                                            top: 0;
                                                                            left: 0;
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            background-color: rgba(0, 0, 0, 0.1);
                                                                            z-index: 0;
                                                                        }
                                                                        .hero-content {
                                                                            position: relative;
                                                                            z-index: 2;
                                                                        }
                                                                        .apply-card,
                                                                        .job-summary-card,
                                                                        .share-job-card {
                                                                            background: #fff;
                                                                            border-radius: 15px;
                                                                            padding: 25px;
                                                                            margin-bottom: 25px;
                                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                            border: 1px solid #f0f0f0;
                                                                        }
                                                                        .apply-header h4 {
                                                                            color: #333;
                                                                            font-weight: 600;
                                                                            margin-bottom: 8px;
                                                                        }
                                                                        .apply-header p {
                                                                            color: #666;
                                                                            margin-bottom: 20px;
                                                                            font-size: 14px;
                                                                        }
                                                                        .contact-info {
                                                                            margin-bottom: 20px;
                                                                        }
                                                                        .contact-item {
                                                                            display: flex;
                                                                            align-items: flex-start;
                                                                            gap: 12px;
                                                                            padding: 15px;
                                                                            background: #f8f9fa;
                                                                            border-radius: 10px;
                                                                        }
                                                                        .contact-item i {
                                                                            color: var(--theme-color, #007bff);
                                                                            font-size: 18px;
                                                                            margin-top: 2px;
                                                                        }
                                                                        .contact-label {
                                                                            display: block;
                                                                            font-size: 12px;
                                                                            color: #666;
                                                                            margin-bottom: 4px;
                                                                        }
                                                                        .contact-value {
                                                                            color: #333;
                                                                            font-weight: 500;
                                                                            text-decoration: none;
                                                                        }
                                                                        .contact-value:hover {
                                                                            color: var(--theme-color, #007bff);
                                                                        }
                                                                        .resume-note {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            background: #fff3cd;
                                                                            color: #856404;
                                                                            padding: 10px 15px;
                                                                            border-radius: 8px;
                                                                            margin-bottom: 20px;
                                                                            font-size: 13px;
                                                                        }
                                                                        .apply-actions {
                                                                            display: flex;
                                                                            flex-direction: column;
                                                                            gap: 10px;
                                                                        }
                                                                        .apply-btn {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            justify-content: center;
                                                                            gap: 8px;
                                                                            padding: 12px 20px;
                                                                            border-radius: 8px;
                                                                            text-decoration: none;
                                                                            font-weight: 500;
                                                                            transition: all 0.3s ease;
                                                                            border: none;
                                                                            cursor: pointer;
                                                                        }
                                                                        .apply-btn.primary {
                                                                            background: var(--theme-color, #007bff);
                                                                            color: #fff;
                                                                        }
                                                                        .apply-btn.primary:hover {
                                                                            background: #0056b3;
                                                                            transform: translateY(-2px);
                                                                            color: #fff;
                                                                            text-decoration: none;
                                                                        }
                                                                        .apply-btn.secondary {
                                                                            background: #f8f9fa;
                                                                            color: #333;
                                                                            border: 2px solid #e9ecef;
                                                                        }
                                                                        .apply-btn.secondary:hover {
                                                                            background: #e9ecef;
                                                                            border-color: #dee2e6;
                                                                        }
                                                                        /* Job Summary */
                                                                        .job-summary-card h4,
                                                                        .share-job-card h4 {
                                                                            color: #333;
                                                                            font-weight: 600;
                                                                            margin-bottom: 20px;
                                                                        }
                                                                        .summary-items {
                                                                            display: flex;
                                                                            flex-direction: column;
                                                                            gap: 15px;
                                                                        }
                                                                        .summary-item {
                                                                            display: flex;
                                                                            justify-content: space-between;
                                                                            align-items: center;
                                                                            padding-bottom: 15px;
                                                                            border-bottom: 1px solid #f0f0f0;
                                                                        }
                                                                        .summary-item:last-child {
                                                                            border-bottom: none;
                                                                            padding-bottom: 0;
                                                                        }
                                                                        .summary-label {
                                                                            display: flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            color: #666;
                                                                            font-size: 14px;
                                                                        }
                                                                        .summary-label i {
                                                                            color: var(--theme-color, #007bff);
                                                                        }
                                                                        .summary-value {
                                                                            color: #333;
                                                                            font-weight: 500;
                                                                            font-size: 14px;
                                                                        }
                                                                        /* Share Buttons */
                                                                        .share-buttons {
                                                                            display: flex;
                                                                            gap: 10px;
                                                                        }
                                                                        .share-btn {
                                                                            width: 45px;
                                                                            height: 45px;
                                                                            border-radius: 50%;
                                                                            display: flex;
                                                                            align-items: center;
                                                                            justify-content: center;
                                                                            text-decoration: none;
                                                                            transition: all 0.3s ease;
                                                                            border: none;
                                                                            cursor: pointer;
                                                                        }
                                                                        .share-btn.linkedin {
                                                                            background: #0077b5;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn.twitter {
                                                                            background: #1da1f2;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn.facebook {
                                                                            background: #4267b2;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn.copy {
                                                                            background: #6c757d;
                                                                            color: #fff;
                                                                        }
                                                                        .share-btn:hover {
                                                                            transform: translateY(-3px);
                                                                            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                                        }
                                                                        /* Back Button */
                                                                        .back-to-careers {
                                                                            text-align: center;
                                                                        }
                                                                        .back-btn {
                                                                            display: inline-flex;
                                                                            align-items: center;
                                                                            gap: 8px;
                                                                            color: var(--theme-color, #007bff);
                                                                            text-decoration: none;
                                                                            font-weight: 500;
                                                                            padding: 10px 20px;
                                                                            border: 2px solid var(--theme-color, #007bff);
                                                                            border-radius: 25px;
                                                                            transition: all 0.3s ease;
                                                                        }
                                                                        .back-btn:hover {
                                                                            background: var(--theme-color, #007bff);
                                                                            color: #fff;
                                                                            text-decoration: none;
                                                                        }
                                                                        .back-btn i {
                                                                            margin-right: 8px;
                                                                        }
                                                                        /* Modal Styles */
                                                                        .modal-content {
                                                                            border-radius: 15px;
                                                                            border: none;
                                                                            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                                        }
                                                                        .modal-header {
                                                                            border-bottom: 1px solid #f0f0f0;
                                                                            padding: 20px 25px;
                                                                        }
                                                                        .modal-body {
                                                                            padding: 25px;
                                                                        }
                                                                        .modal-footer {
                                                                            border-top: 1px solid #f0f0f0;
                                                                            padding: 20px 25px;
                                                                        }
                                                                        /* Responsive Design */
                                                                        @media (max-width: 992px) {
                                                                            .job-header-content {
                                                                                flex-direction: column;
                                                                            }
                                                                            .salary-info {
                                                                                text-align: left;
                                                                                min-width: auto;
                                                                                width: 100%;
                                                                            }
                                                                            .career-sidebar {
                                                                                position: static;
                                                                                margin-top: 30px;
                                                                            }
                                                                        }
                                                                        @media (max-width: 768px) {
                                                                            .job-title {
                                                                                font-size: 24px;
                                                                            }
                                                                            .job-meta {
                                                                                flex-direction: column;
                                                                                gap: 10px;
                                                                            }
                                                                            .job-header-card,
                                                                            .job-section,
                                                                            .apply-card,
                                                                            .job-summary-card,
                                                                            .share-job-card {
                                                                                padding: 20px;
                                                                            }
                                                                            .qualification-tags-container {
                                                                                justify-content: center;
                                                                            }
                                                                        }
                                                                        /* Hero Banner Slider */
                                                                        .hero-banner-slider {
                                                                            position: relative;
                                                                        }
                                                                        .hero-banner-slider .swiper-button-next,
                                                                        .hero-banner-slider .swiper-button-prev {
                                                                            width: 50px;
                                                                            height: 50px;
                                                                            background-color: rgba(255, 255, 255, 0.9);
                                                                            border-radius: 50%;
                                                                            color: var(--theme);
                                                                        }
                                                                        .hero-banner-slider .swiper-button-next:after,
                                                                        .hero-banner-slider .swiper-button-prev:after {
                                                                            font-size: 20px;
                                                                        }
                                                                        .hero-banner-slider .swiper-pagination {
                                                                            bottom: 20px;
                                                                        }
                                                                        .hero-banner-slider .swiper-pagination-bullet {
                                                                            width: 12px;
                                                                            height: 12px;
                                                                            background-color: rgba(255, 255, 255, 0.9);
                                                                            opacity: 0.5;
                                                                        }
                                                                        .hero-banner-slider .swiper-pagination-bullet-active {
                                                                            opacity: 1;
                                                                            background-color: var(--theme);
                                                                        }
                                                                        .hero-section {
                                                                            text-shadow: none !important;
                                                                        }
                                                                        .hero-1 {
                                                                            position: relative;
                                                                            z-index: 1;
                                                                        }
                                                                        .hero-1::before {
                                                                            content: "";
                                                                            position: absolute;
                                                                            top: 0;
                                                                            left: 0;
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            background-color: rgba(0, 0, 0, 0.1);
                                                                            z-index: 0;
                                                                        }
                                                                        .hero-content {
                                                                            position: relative;
                                                                            z-index: 2;
                                                                        }
                                                                        .job-header-content {
                                                                            flex-direction: column;
                                                                        }
                                                                        .salary-info {
                                                                            text-align: left;
                                                                            min-width: auto;
                                                                            width: 100%;
                                                                        }
                                                                        .career-sidebar {
                                                                            position: static;
                                                                            margin-top: 30px;
                                                                        }
                                                                    }
                                                                    @media (max-width: 768px) {
                                                                        .job-title {
                                                                            font-size: 24px;
                                                                        }
                                                                        .job-meta {
                                                                            flex-direction: column;
                                                                            gap: 10px;
                                                                        }
                                                                        .job-header-card,
                                                                        .job-section,
                                                                        .apply-card,
                                                                        .job-summary-card,
                                                                        .share-job-card {
                                                                            padding: 20px;
                                                                        }
                                                                        .qualification-tags-container {
                                                                            justify-content: center;
                                                                        }
                                                                    }
                                                                    /* Hero Banner Slider */
                                                                    .hero-banner-slider {
                                                                        position: relative;
                                                                    }
                                                                    .hero-banner-slider .swiper-button-next,
                                                                    .hero-banner-slider .swiper-button-prev {
                                                                        width: 50px;
                                                                        height: 50px;
                                                                        background-color: rgba(255, 255, 255, 0.9);
                                                                        border-radius: 50%;
                                                                        color: var(--theme);
                                                                    }
                                                                    .hero-banner-slider .swiper-button-next:after,
                                                                    .hero-banner-slider .swiper-button-prev:after {
                                                                        font-size: 20px;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination {
                                                                        bottom: 20px;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                                        width: 12px;
                                                                        height: 12px;
                                                                        background-color: rgba(255, 255, 255, 0.9);
                                                                        opacity: 0.5;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                                        opacity: 1;
                                                                        background-color: var(--theme);
                                                                    }
                                                                    .hero-section {
                                                                        text-shadow: none !important;
                                                                    }
                                                                    .hero-1 {
                                                                        position: relative;
                                                                        z-index: 1;
                                                                    }
                                                                    .hero-1::before {
                                                                        content: "";
                                                                        position: absolute;
                                                                        top: 0;
                                                                        left: 0;
                                                                        width: 100%;
                                                                        height: 100%;
                                                                        background-color: rgba(0, 0, 0, 0.1);
                                                                        z-index: 0;
                                                                    }
                                                                    .hero-content {
                                                                        position: relative;
                                                                        z-index: 2;
                                                                    }
                                                                    -webkit-border-radius: 50%;
                                                                    -moz-border-radius: 50%;
                                                                    -ms-border-radius: 50%;
                                                                    -o-border-radius: 50%;
                                                                }
                                                                .testimonial-card-items .client-info .client-img .icon {
                                                                    position: absolute;
                                                                    left: -25px;
                                                                    bottom: -35px;
                                                                }
                                                                .testimonial-card-items .client-info .client-img .icon .shape {
                                                                    transition: all 0.1s;
                                                                    -webkit-transition: all 0.1s;
                                                                    -moz-transition: all 0.1s;
                                                                    -ms-transition: all 0.1s;
                                                                    -o-transition: all 0.1s;
                                                                }
                                                                .testimonial-card-items .client-info .content h3 {
                                                                    color: #121315;
                                                                    font-family: "Inter", sans-serif;
                                                                    font-size: 20px;
                                                                    font-style: normal;
                                                                    font-weight: 600;
                                                                    line-height: 28px;
                                                                    letter-spacing: -0.4px;
                                                                }
                                                                .testimonial-card-items p {
                                                                    font-weight: 500;
                                                                    margin-bottom: 30px;
                                                                }
                                                                .testimonial-card-items .star {
                                                                    color: var(--theme);
                                                                }
                                                                .testimonial-section {
                                                                    margin-bottom: -40px;
                                                                }
                                                                @media (min-width: 1400px) {
                                                                    .testimonial-slider {
                                                                        margin-right: -170px;
                                                                    }
                                                                }
                                                                .testimonial-slider .swiper-slide {
                                                                    transition: all 3s;
                                                                    -webkit-transition: all 3s;
                                                                    -moz-transition: all 3s;
                                                                    -ms-transition: all 3s;
                                                                    -o-transition: all 3s;
                                                                }
                                                                .testimonial-slider .swiper-slide-active .testimonial-card-items {
                                                                    border-top: 3px solid var(--theme);
                                                                    background-color: var(--white);
                                                                    box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                                                                    transition: all 1s;
                                                                    -webkit-transition: all 1s;
                                                                    -moz-transition: all 1s;
                                                                    -ms-transition: all 1s;
                                                                    -o-transition: all 1s;
                                                                }
                                                                .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                                                                    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                                                                }
                                                                /*# sourceMappingURL=main.css.map */
                                                                .owl-carousel .owl-nav button.owl-next,
                                                                .owl-carousel .owl-nav button.owl-prev {
                                                                    display: inline-block;
                                                                    padding: 6px 0 !important;
                                                                    color: #fff;
                                                                }
                                                                .owl-carousel .owl-nav button.owl-next {
                                                                    padding-right: 14px !important;
                                                                    padding-left: 7px !important;
                                                                    border-radius: 0 40px 40px 0;
                                                                }
                                                                .owl-carousel .owl-nav button.owl-prev {
                                                                    padding-right: 7px !important;
                                                                    padding-left: 14px !important;
                                                                    border-radius: 40px 0 0 40px;
                                                                }
                                                                .page-section {
                                                                    position: relative;
                                                                    /* padding-top: 80px; */
                                                                    padding-bottom: 80px;
                                                                    overflow: hidden;
                                                                }
                                                                .page-hero {
                                                                    position: relative;
                                                                    height: 550px;
                                                                    z-index: 10;
                                                                }
                                                                .page-banner {
                                                                    position: relative;
                                                                    height: 300px;
                                                                    z-index: 10;
                                                                }
                                                                .page-hero.overlay-dark::before,
                                                                .page-banner.overlay-dark::before {
                                                                    content: "";
                                                                    position: absolute;
                                                                    top: 0;
                                                                    left: 0;
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    background: rgba(52, 53, 49, 0.7);
                                                                    z-index: 1;
                                                                }
                                                                .page-banner .breadcrumb-item,
                                                                .page-banner .breadcrumb-item a {
                                                                    font-size: 14px;
                                                                }
                                                                .hero-section,
                                                                .banner-section {
                                                                    position: relative;
                                                                    display: -ms-flexbox;
                                                                    display: flex;
                                                                    -ms-flex-align: center;
                                                                    align-items: center;
                                                                    -ms-flex-pack: center;
                                                                    justify-content: center;
                                                                    height: 100%;
                                                                    color: #ffffff;
                                                                    z-index: 10;
                                                                }
                                                                .hero-section .subhead {
                                                                    text-transform: uppercase;
                                                                    letter-spacing: 4px;
                                                                    color: #db7f7f;
                                                                    /* Changed from #000000 to white for better visibility */
                                                                    font-weight: 500;
                                                                }
                                                                .hero-section h1 {
                                                                    margin-bottom: 32px;
                                                                    color: #ffffff;
                                                                    /* Changed from var(--theme) to white */
                                                                    font-weight: 500;
                                                                }
                                                                /* Additional styling for better text visibility */
                                                                .hero-section {
                                                                    text-shadow: none !important;
                                                                }
                                                                .input-navbar {
                                                                    width: auto;
                                                                    max-width: 280px;
                                                                }
                                                                .input-navbar .input-group-text {
                                                                    background-color: #fff;
                                                                }
                                                                .input-navbar .form-control {
                                                                    height: calc(1.5em+1rem+2px);
                                                                }
                                                                .services-section {
                                                                    background: #f8f9fa;
                                                                    padding: 80px 0;
                                                                }
                                                                .service-card-item {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    overflow: hidden;
                                                                    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                                                    transition: all 0.3s ease;
                                                                    height: 100%;
                                                                    border: 2px solid #f0f0f0;
                                                                    position: relative;
                                                                }
                                                                .service-card-item:hover {
                                                                    transform: translateY(-8px);
                                                                    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                                                    border: 2px solid #ff9800;
                                                                }
                                                                .service-image {
                                                                    position: relative;
                                                                    height: 200px;
                                                                    overflow: hidden;
                                                                    margin: 15px;
                                                                    border-radius: 10px;
                                                                }
                                                                .service-image img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    object-fit: cover;
                                                                    transition: transform 0.3s ease;
                                                                    border-radius: 10px;
                                                                }
                                                                .service-card-item:hover .service-image img {
                                                                    transform: scale(1.05);
                                                                }
                                                                .service-content {
                                                                    padding: 0 25px 25px 25px;
                                                                    text-align: center;
                                                                }
                                                                .service-content h3 {
                                                                    font-size: 20px;
                                                                    font-weight: 600;
                                                                    margin-bottom: 20px;
                                                                    color: var(--theme);
                                                                    line-height: 1.4;
                                                                }
                                                                .service-button .contact-btn {
                                                                    background: #fff;
                                                                    color: #666;
                                                                    padding: 10px 25px;
                                                                    border: 2px solid #e0e0e0;
                                                                    border-radius: 25px;
                                                                    text-decoration: none;
                                                                    font-weight: 500;
                                                                    font-size: 14px;
                                                                    transition: all 0.3s ease;
                                                                    display: inline-block;
                                                                }
                                                                .service-button .contact-btn:hover {
                                                                    background: linear-gradient(45deg, #ff9800, #ffc107);
                                                                    color: #fff;
                                                                    border-color: #ff9800;
                                                                    transform: translateY(-2px);
                                                                    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                                                }
                                                                .section-title h2 {
                                                                    font-size: 36px;
                                                                    font-weight: 700;
                                                                    color: #333;
                                                                    margin-bottom: 20px;
                                                                }
                                                                /* Mobile Responsive */
                                                                @media (max-width: 768px) {
                                                                    .services-section {
                                                                        padding: 60px 0;
                                                                    }
                                                                    .service-content {
                                                                        padding: 0 20px 20px 20px;
                                                                    }
                                                                    .service-content h3 {
                                                                        font-size: 18px;
                                                                        margin-bottom: 15px;
                                                                    }
                                                                    .service-image {
                                                                        height: 180px;
                                                                        margin: 12px;
                                                                    }
                                                                    .section-title h2 {
                                                                        font-size: 28px;
                                                                    }
                                                                }
                                                                @media (max-width: 576px) {
                                                                    .service-image {
                                                                        height: 160px;
                                                                        margin: 10px;
                                                                    }
                                                                    .service-content h3 {
                                                                        font-size: 16px;
                                                                    }
                                                                    .service-button .contact-btn {
                                                                        padding: 8px 20px;
                                                                        font-size: 13px;
                                                                    }
                                                                }
                                                                /* Career Card Hover Effects */
                                                                .career-card {
                                                                    background: #fff;
                                                                    transition: all 0.4s ease-in-out;
                                                                    overflow: hidden;
                                                                    position: relative;
                                                                    cursor: pointer;
                                                                }
                                                                /* Content overlay */
                                                                .career-card>div {
                                                                    position: relative;
                                                                    z-index: 2;
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Description hover effect */
                                                                .career-description {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Salary badge hover effect */
                                                                .salary-badge {
                                                                    transition: all 0.4s ease-in-out;
                                                                    position: relative;
                                                                    z-index: 3;
                                                                }
                                                                /* Qualification tags hover effect */
                                                                .qualification-tag {
                                                                    background-color: #0B71B9;
                                                                    color: #fff;
                                                                }
                                                                .career-email {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Resume required hover effect */
                                                                .resume-required {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Button hover effect */
                                                                .career-btn {
                                                                    transition: all 0.4s ease-in-out;
                                                                    position: relative;
                                                                    z-index: 3;
                                                                }
                                                                /* Add subtle animation to the card */
                                                                @keyframes cardFloat {
                                                                    0%,
                                                                    100% {
                                                                        transform: translateY(0px);
                                                                    }
                                                                    50% {
                                                                        transform: translateY(-3px);
                                                                    }
                                                                }
                                                                /* Smooth transitions for all child elements */
                                                                .career-card * {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                .testimonial-card {
                                                                    background-color: #ffffff;
                                                                    border-radius: 15px;
                                                                    padding: 30px;
                                                                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                                    margin: 20px 10px;
                                                                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                                    border: 1px solid rgba(0, 0, 0, 0.05);
                                                                    height: 100%;
                                                                }
                                                                .testimonial-card:hover {
                                                                    transform: translateY(-5px);
                                                                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                                                }
                                                                .testimonial-header {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    margin-bottom: 20px;
                                                                }
                                                                .client-avatar {
                                                                    width: 70px;
                                                                    height: 70px;
                                                                    flex-shrink: 0;
                                                                    margin-right: 20px;
                                                                    border-radius: 50%;
                                                                    border: 3px solid #E74D96;
                                                                    padding: 3px;
                                                                    background-color: white;
                                                                    overflow: hidden;
                                                                }
                                                                .avatar-img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    border-radius: 50%;
                                                                    object-fit: cover;
                                                                }
                                                                .client-details h3 {
                                                                    font-size: 18px;
                                                                    font-weight: 700;
                                                                    margin-bottom: 5px;
                                                                    color: #2c3e50;
                                                                }
                                                                .client-service {
                                                                    font-size: 14px;
                                                                    color: #7f8c8d;
                                                                    display: block;
                                                                    margin-bottom: 8px;
                                                                }
                                                                .rating {
                                                                    color: #ffa502;
                                                                    font-size: 14px;
                                                                }
                                                                .testimonial-body {
                                                                    position: relative;
                                                                    margin-bottom: 25px;
                                                                }
                                                                .quote-icon {
                                                                    color: rgba(255, 71, 87, 0.1);
                                                                    font-size: 40px;
                                                                    position: absolute;
                                                                    top: -15px;
                                                                    left: -10px;
                                                                }
                                                                .testimonial-text {
                                                                    position: relative;
                                                                    font-size: 16px;
                                                                    line-height: 1.7;
                                                                    color: #5a6c7d;
                                                                    font-style: italic;
                                                                    padding-left: 10px;
                                                                }
                                                                .testimonial-results {
                                                                    background-color: #f8f9fa;
                                                                    border-radius: 12px;
                                                                    padding: 20px;
                                                                    margin-top: 20px;
                                                                }
                                                                .results-title {
                                                                    font-size: 16px;
                                                                    font-weight: 600;
                                                                    color: #34495e;
                                                                    margin-bottom: 15px;
                                                                    text-align: center;
                                                                }
                                                                .results-gallery {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    gap: 15px;
                                                                }
                                                                gle-result {
                                                                    justify-content: center;
                                                                }
                                                                .result-image {
                                                                    position: relative;
                                                                    width: 140px;
                                                                    height: 140px;
                                                                    border-radius: 10px;
                                                                    overflow: hidden;
                                                                    border: 3px solid white;
                                                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                                }
                                                                .result-divider {
                                                                    color: #E74D96;
                                                                    font-size: 20px;
                                                                }
                                                                .image-label {
                                                                    position: absolute;
                                                                    top: 10px;
                                                                    left: 10px;
                                                                    background-color: #E74D96;
                                                                    color: white;
                                                                    font-size: 12px;
                                                                    font-weight: 600;
                                                                    padding: 4px 10px;
                                                                    border-radius: 20px;
                                                                    z-index: 1;
                                                                }
                                                                .result-img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    object-fit: cover;
                                                                    transition: transform 0.5s ease;
                                                                }
                                                                .result-image:hover .result-img {
                                                                    transform: scale(1.1);
                                                                }
                                                                /* Responsive styles */
                                                                @media (max-width: 767px) {
                                                                    .testimonial-header {
                                                                        flex-direction: column;
                                                                        text-align: center;
                                                                    }
                                                                    .client-avatar {
                                                                        margin-right: 0;
                                                                        margin-bottom: 15px;
                                                                    }
                                                                    .results-gallery {
                                                                        flex-direction: column;
                                                                    }
                                                                    .result-divider {
                                                                        transform: rotate(90deg);
                                                                        margin: 10px 0;
                                                                    }
                                                                }
                                                                .blog-detail-card {
                                                                    border: 1px solid #e9ecef;
                                                                }
                                                                .blog-title {
                                                                    line-height: 1.4;
                                                                }
                                                                .meta-item {
                                                                    font-size: 0.9rem;
                                                                    color: #6c757d;
                                                                }
                                                                .meta-divider {
                                                                    color: #dee2e6;
                                                                    font-weight: bold;
                                                                }
                                                                .content-text img {
                                                                    max-width: 100%;
                                                                    height: auto;
                                                                    border-radius: 8px;
                                                                    margin: 15px 0;
                                                                }
                                                                .content-text p {
                                                                    margin-bottom: 1rem;
                                                                }
                                                                .tag-item {
                                                                    font-size: 0.85rem;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .tag-item:hover {
                                                                    background-color: #007bff !important;
                                                                    color: white !important;
                                                                }
                                                                .share-buttons .btn {
                                                                    border-radius: 50%;
                                                                    width: 35px;
                                                                    height: 35px;
                                                                    display: inline-flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .share-buttons .btn:hover {
                                                                    transform: translateY(-2px);
                                                                }
                                                                .placeholder-image {
                                                                    border: 2px dashed #dee2e6;
                                                                }
                                                                @media (max-width: 768px) {
                                                                    .d-flex.justify-content-between {
                                                                        flex-direction: column;
                                                                        gap: 1rem;
                                                                    }
                                                                    .share-buttons {
                                                                        align-self: center;
                                                                    }
                                                                }
                                                                .service-content * {
                                                                    text-align: left !important;
                                                                }
                                                                .service-content p,
                                                                .service-content div,
                                                                .service-content li {
                                                                    text-align: left !important;
                                                                }
                                                                .service-points li {
                                                                    text-align: left !important;
                                                                }
                                                                .career-details-section {
                                                                    background: #f8f9fa;
                                                                    min-height: 80vh;
                                                                }
                                                                /* Job Header Card */
                                                                .job-header-card {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    padding: 30px;
                                                                    margin-bottom: 30px;
                                                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                    border: 1px solid #f0f0f0;
                                                                }
                                                                .job-header-content {
                                                                    display: flex;
                                                                    justify-content: space-between;
                                                                    align-items: flex-start;
                                                                    gap: 20px;
                                                                }
                                                                .job-title {
                                                                    font-size: 32px;
                                                                    font-weight: 700;
                                                                    color: #333;
                                                                    margin-bottom: 15px;
                                                                    line-height: 1.2;
                                                                }
                                                                .job-meta {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    gap: 20px;
                                                                }
                                                                .job-meta span {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    color: #666;
                                                                    font-size: 14px;
                                                                }
                                                                .job-meta i {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .salary-info {
                                                                    text-align: right;
                                                                    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                                    color: #fff;
                                                                    padding: 20px;
                                                                    border-radius: 12px;
                                                                    min-width: 180px;
                                                                }
                                                                .salary-label {
                                                                    display: block;
                                                                    font-size: 14px;
                                                                    opacity: 0.9;
                                                                    margin-bottom: 5px;
                                                                }
                                                                .salary-amount {
                                                                    display: block;
                                                                    font-size: 19px;
                                                                    font-weight: 700;
                                                                }
                                                                /* Job Sections */
                                                                .job-section {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    padding: 30px;
                                                                    margin-bottom: 30px;
                                                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                    border: 1px solid #f0f0f0;
                                                                }
                                                                .section-title {
                                                                    font-size: 20px;
                                                                    font-weight: 600;
                                                                    color: #333;
                                                                    margin-bottom: 20px;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 10px;
                                                                }
                                                                .section-title i {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .job-description,
                                                                .job-requirements,
                                                                .job-responsibilities,
                                                                .job-benefits {
                                                                    color: #666;
                                                                    line-height: 1.8;
                                                                }
                                                                .job-description ul,
                                                                .job-requirements ul,
                                                                .job-responsibilities ul,
                                                                .job-benefits ul {
                                                                    padding-left: 20px;
                                                                }
                                                                .job-description li,
                                                                .job-requirements li,
                                                                .job-responsibilities li,
                                                                .job-benefits li {
                                                                    margin-bottom: 8px;
                                                                }
                                                                /* Qualification Tags */
                                                                .qualification-tags-container {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    gap: 12px;
                                                                }
                                                                .qualification-tag {
                                                                    background: #0B71B9;
                                                                    color: #fff;
                                                                    padding: 8px 16px;
                                                                    border-radius: 20px;
                                                                    font-size: 13px;
                                                                    font-weight: 500;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .qualification-tag:hover {
                                                                    transform: translateY(-2px);
                                                                    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                                }
                                                                /* Sidebar */
                                                                .career-sidebar {
                                                                    position: sticky;
                                                                    top: 20px;
                                                                }
                                                                .apply-card,
                                                                .job-summary-card,
                                                                .share-job-card {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    padding: 25px;
                                                                    margin-bottom: 25px;
                                                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                    border: 1px solid #f0f0f0;
                                                                }
                                                                .apply-header h4 {
                                                                    color: #333;
                                                                    font-weight: 600;
                                                                    margin-bottom: 8px;
                                                                }
                                                                .apply-header p {
                                                                    color: #666;
                                                                    margin-bottom: 20px;
                                                                    font-size: 14px;
                                                                }
                                                                .contact-info {
                                                                    margin-bottom: 20px;
                                                                }
                                                                .contact-item {
                                                                    display: flex;
                                                                    align-items: flex-start;
                                                                    gap: 12px;
                                                                    padding: 15px;
                                                                    background: #f8f9fa;
                                                                    border-radius: 10px;
                                                                }
                                                                .contact-item i {
                                                                    color: var(--theme-color, #007bff);
                                                                    font-size: 18px;
                                                                    margin-top: 2px;
                                                                }
                                                                .contact-label {
                                                                    display: block;
                                                                    font-size: 12px;
                                                                    color: #666;
                                                                    margin-bottom: 4px;
                                                                }
                                                                .contact-value {
                                                                    color: #333;
                                                                    font-weight: 500;
                                                                    text-decoration: none;
                                                                }
                                                                .contact-value:hover {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .resume-note {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    background: #fff3cd;
                                                                    color: #856404;
                                                                    padding: 10px 15px;
                                                                    border-radius: 8px;
                                                                    margin-bottom: 20px;
                                                                    font-size: 13px;
                                                                }
                                                                .apply-actions {
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    gap: 10px;
                                                                }
                                                                .apply-btn {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    gap: 8px;
                                                                    padding: 12px 20px;
                                                                    border-radius: 8px;
                                                                    text-decoration: none;
                                                                    font-weight: 500;
                                                                    transition: all 0.3s ease;
                                                                    border: none;
                                                                    cursor: pointer;
                                                                }
                                                                .apply-btn.primary {
                                                                    background: var(--theme-color, #007bff);
                                                                    color: #fff;
                                                                }
                                                                ly-btn.primary:hover {
                                                                    background: #0056b3;
                                                                    transform: translateY(-2px);
                                                                    color: #fff;
                                                                    text-decoration: none;
                                                                }
                                                                .apply-btn.secondary {
                                                                    background: #f8f9fa;
                                                                    color: #333;
                                                                    border: 2px solid #e9ecef;
                                                                }
                                                                .apply-btn.secondary:hover {
                                                                    background: #e9ecef;
                                                                    border-color: #dee2e6;
                                                                }
                                                                /* Job Summary */
                                                                .job-summary-card h4,
                                                                .share-job-card h4 {
                                                                    color: #333;
                                                                    font-weight: 600;
                                                                    margin-bottom: 20px;
                                                                }
                                                                .summary-items {
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    gap: 15px;
                                                                }
                                                                .summary-item {
                                                                    display: flex;
                                                                    justify-content: space-between;
                                                                    align-items: center;
                                                                    padding-bottom: 15px;
                                                                    border-bottom: 1px solid #f0f0f0;
                                                                }
                                                                .summary-item:last-child {
                                                                    border-bottom: none;
                                                                    padding-bottom: 0;
                                                                }
                                                                .summary-label {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    color: #666;
                                                                    font-size: 14px;
                                                                }
                                                                .summary-label i {
                                                                    color: var(--theme-color, #007bff);
                                                                    .summary-value {
                                                                        color: #333;
                                                                        font-weight: 500;
                                                                        font-size: 14px;
                                                                    }
                                                                    /* Share Buttons */
                                                                    .share-buttons {
                                                                        display: flex;
                                                                        gap: 10px;
                                                                    }
                                                                    .share-btn {
                                                                        width: 45px;
                                                                        height: 45px;
                                                                        border-radius: 50%;
                                                                        display: flex;
                                                                        align-items: center;
                                                                        justify-content: center;
                                                                        text-decoration: none;
                                                                        transition: all 0.3s ease;
                                                                        border: none;
                                                                        cursor: pointer;
                                                                    }
                                                                    .share-btn.linkedin {
                                                                        background: #0077b5;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn.twitter {
                                                                        background: #1da1f2;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn.facebook {
                                                                        background: #4267b2;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn.copy {
                                                                        background: #6c757d;
                                                                        color: #fff;
                                                                    }
                                                                    .share-btn:hover {
                                                                        transform: translateY(-3px);
                                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                                    }
                                                                    /* Back Button */
                                                                    .back-to-careers {
                                                                        text-align: center;
                                                                    }
                                                                    .back-btn {
                                                                        display: inline-flex;
                                                                        align-items: center;
                                                                        gap: 8px;
                                                                        color: var(--theme-color, #007bff);
                                                                        text-decoration: none;
                                                                        font-weight: 500;
                                                                        padding: 10px 20px;
                                                                        border: 2px solid var(--theme-color, #007bff);
                                                                        border-radius: 25px;
                                                                        transition: all 0.3s ease;
                                                                    }
                                                                    .back-btn:hover {
                                                                        background: var(--theme-color, #007bff);
                                                                        color: #fff;
                                                                        text-decoration: none;
                                                                    }
                                                                    .back-btn i {
                                                                        margin-right: 8px;
                                                                    }
                                                                    /* Modal Styles */
                                                                    .modal-content {
                                                                        border-radius: 15px;
                                                                        border: none;
                                                                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                                    }
                                                                    .modal-header {
                                                                        border-bottom: 1px solid #f0f0f0;
                                                                        padding: 20px 25px;
                                                                    }
                                                                    .modal-body {
                                                                        padding: 25px;
                                                                    }
                                                                    .modal-footer {
                                                                        border-top: 1px solid #f0f0f0;
                                                                        padding: 20px 25px;
                                                                    }
                                                                    /* Responsive Design */
                                                                    @media (max-width: 992px) {
                                                                        .job-header-content {
                                                                            flex-direction: column;
                                                                        }
                                                                        .salary-info {
                                                                            text-align: left;
                                                                            min-width: auto;
                                                                            width: 100%;
                                                                        }
                                                                        .career-sidebar {
                                                                            position: static;
                                                                            margin-top: 30px;
                                                                        }
                                                                    }
                                                                    @media (max-width: 768px) {
                                                                        .job-title {
                                                                            font-size: 24px;
                                                                        }
                                                                        .job-meta {
                                                                            flex-direction: column;
                                                                            gap: 10px;
                                                                        }
                                                                        .job-header-card,
                                                                        .job-section,
                                                                        .apply-card,
                                                                        .job-summary-card,
                                                                        .share-job-card {
                                                                            padding: 20px;
                                                                        }
                                                                        .qualification-tags-container {
                                                                            justify-content: center;
                                                                        }
                                                                    }
                                                                    /* Hero Banner Slider */
                                                                    .hero-banner-slider {
                                                                        position: relative;
                                                                    }
                                                                    .hero-banner-slider .swiper-button-next,
                                                                    .hero-banner-slider .swiper-button-prev {
                                                                        width: 50px;
                                                                        height: 50px;
                                                                        background-color: rgba(255, 255, 255, 0.9);
                                                                        border-radius: 50%;
                                                                        color: var(--theme);
                                                                    }
                                                                    .hero-banner-slider .swiper-button-next:after,
                                                                    .hero-banner-slider .swiper-button-prev:after {
                                                                        font-size: 20px;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination {
                                                                        bottom: 20px;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                                        width: 12px;
                                                                        height: 12px;
                                                                        background-color: rgba(255, 255, 255, 0.9);
                                                                        opacity: 0.5;
                                                                    }
                                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                                        opacity: 1;
                                                                        background-color: var(--theme);
                                                                    }
                                                                    .hero-section {
                                                                        text-shadow: none !important;
                                                                    }
                                                                    .hero-1 {
                                                                        position: relative;
                                                                        z-index: 1;
                                                                    }
                                                                    .hero-1::before {
                                                                        content: "";
                                                                        position: absolute;
                                                                        top: 0;
                                                                        left: 0;
                                                                        width: 100%;
                                                                        height: 100%;
                                                                        background-color: rgba(0, 0, 0, 0.1);
                                                                        z-index: 0;
                                                                    }
                                                                    .hero-content {
                                                                        position: relative;
                                                                        z-index: 2;
                                                                    }
                                                                    width: 36px;
                                                                    height: 36px;
                                                                    line-height: 36px;
                                                                    text-align: center;
                                                                    border: 1px solid var(--header);
                                                                    background-color: transparent;
                                                                    color: var(--theme);
                                                                    border-radius: 50%;
                                                                }
                                                                .team-details-wrapper .team-details-items .details-content .social-icon a:hover {
                                                                    background-color: var(--white);
                                                                    color: var(--theme);
                                                                    border-color: transparent;
                                                                }
                                                                .team-details-wrapper p {
                                                                    max-width: 550px;
                                                                    color: var(--header);
                                                                    font-weight: 500;
                                                                }
                                                                .team-details-wrapper .details-counter-area {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 40px;
                                                                }
                                                                @media (max-width: 575px) {
                                                                    .team-details-wrapper .details-counter-area {
                                                                        gap: 15px;
                                                                    }
                                                                }
                                                                .team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
                                                                    padding-right: 20px;
                                                                    border-right: 1px solid var(--text);
                                                                }
                                                                .team-details-wrapper .details-counter-area .counter-items h2 {
                                                                    font-size: 24px;
                                                                    color: var(--header);
                                                                    font-weight: 700;
                                                                }
                                                                .team-details-wrapper .details-counter-area .counter-items p {
                                                                    font-size: 24px;
                                                                    font-weight: 700;
                                                                    color: var(--header);
                                                                    max-width: initial;
                                                                }
                                                                .testimonial-card-items {
                                                                    margin-top: 30px;
                                                                    background-color: var(--white);
                                                                    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
                                                                    padding: 40px 40px;
                                                                    margin-bottom: 40px;
                                                                }
                                                                .testimonial-card-items .client-info {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 20px;
                                                                }
                                                                .testimonial-card-items .client-info .client-img {
                                                                    width: 70px;
                                                                    height: 70px;
                                                                    position: relative;
                                                                    border-radius: 50%;
                                                                    -webkit-border-radius: 50%;
                                                                    -moz-border-radius: 50%;
                                                                    -ms-border-radius: 50%;
                                                                    -o-border-radius: 50%;
                                                                }
                                                                .testimonial-card-items .client-info .client-img .icon {
                                                                    position: absolute;
                                                                    left: -25px;
                                                                    bottom: -35px;
                                                                }
                                                                .testimonial-card-items .client-info .client-img .icon .shape {
                                                                    transition: all 0.1s;
                                                                    -webkit-transition: all 0.1s;
                                                                    -moz-transition: all 0.1s;
                                                                    -ms-transition: all 0.1s;
                                                                    -o-transition: all 0.1s;
                                                                }
                                                                .testimonial-card-items .client-info .content h3 {
                                                                    color: #121315;
                                                                    font-family: "Inter", sans-serif;
                                                                    font-size: 20px;
                                                                    font-style: normal;
                                                                    font-weight: 600;
                                                                    line-height: 28px;
                                                                    letter-spacing: -0.4px;
                                                                }
                                                                .testimonial-card-items p {
                                                                    font-weight: 500;
                                                                    margin-bottom: 30px;
                                                                }
                                                                .testimonial-card-items .star {
                                                                    color: var(--theme);
                                                                }
                                                                .testimonial-section {
                                                                    margin-bottom: -40px;
                                                                }
                                                                @media (min-width: 1400px) {
                                                                    .testimonial-slider {
                                                                        margin-right: -170px;
                                                                    }
                                                                }
                                                                .testimonial-slider .swiper-slide {
                                                                    transition: all 3s;
                                                                    -webkit-transition: all 3s;
                                                                    -moz-transition: all 3s;
                                                                    -ms-transition: all 3s;
                                                                    -o-transition: all 3s;
                                                                }
                                                                .testimonial-slider .swiper-slide-active .testimonial-card-items {
                                                                    border-top: 3px solid var(--theme);
                                                                    background-color: var(--white);
                                                                    box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                                                                    transition: all 1s;
                                                                    -webkit-transition: all 1s;
                                                                    -moz-transition: all 1s;
                                                                    -ms-transition: all 1s;
                                                                    -o-transition: all 1s;
                                                                }
                                                                .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                                                                    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                                                                }
                                                                /*# sourceMappingURL=main.css.map */
                                                                .owl-carousel .owl-nav button.owl-next,
                                                                .owl-carousel .owl-nav button.owl-prev {
                                                                    display: inline-block;
                                                                    padding: 6px 0 !important;
                                                                    color: #fff;
                                                                }
                                                                .owl-carousel .owl-nav button.owl-next {
                                                                    padding-right: 14px !important;
                                                                    padding-left: 7px !important;
                                                                    border-radius: 0 40px 40px 0;
                                                                }
                                                                .owl-carousel .owl-nav button.owl-prev {
                                                                    padding-right: 7px !important;
                                                                    padding-left: 14px !important;
                                                                    border-radius: 40px 0 0 40px;
                                                                }
                                                                .page-section {
                                                                    position: relative;
                                                                    /* padding-top: 80px; */
                                                                    padding-bottom: 80px;
                                                                    overflow: hidden;
                                                                }
                                                                .page-hero {
                                                                    position: relative;
                                                                    height: 550px;
                                                                    z-index: 10;
                                                                }
                                                                .page-banner {
                                                                    position: relative;
                                                                    height: 300px;
                                                                    z-index: 10;
                                                                }
                                                                .page-hero.overlay-dark::before,
                                                                .page-banner.overlay-dark::before {
                                                                    content: "";
                                                                    position: absolute;
                                                                    top: 0;
                                                                    left: 0;
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    background: rgba(52, 53, 49, 0.7);
                                                                    z-index: 1;
                                                                }
                                                                .page-banner .breadcrumb-item,
                                                                .page-banner .breadcrumb-item a {
                                                                    font-size: 14px;
                                                                }
                                                                .hero-section,
                                                                .banner-section {
                                                                    position: relative;
                                                                    display: -ms-flexbox;
                                                                    display: flex;
                                                                    -ms-flex-align: center;
                                                                    align-items: center;
                                                                    -ms-flex-pack: center;
                                                                    justify-content: center;
                                                                    height: 100%;
                                                                    color: #ffffff;
                                                                    z-index: 10;
                                                                }
                                                                .hero-section .subhead {
                                                                    text-transform: uppercase;
                                                                    letter-spacing: 4px;
                                                                    color: #db7f7f;
                                                                    /* Changed from #000000 to white for better visibility */
                                                                    font-weight: 500;
                                                                }
                                                                .hero-section h1 {
                                                                    margin-bottom: 32px;
                                                                    color: #ffffff;
                                                                    /* Changed from var(--theme) to white */
                                                                    font-weight: 500;
                                                                }
                                                                /* Additional styling for better text visibility */
                                                                .hero-section {
                                                                    text-shadow: none !important;
                                                                }
                                                                .input-navbar {
                                                                    width: auto;
                                                                    max-width: 280px;
                                                                }
                                                                .input-navbar .input-group-text {
                                                                    background-color: #fff;
                                                                }
                                                                .input-navbar .form-control {
                                                                    height: calc(1.5em+1rem+2px);
                                                                }
                                                                .services-section {
                                                                    background: #f8f9fa;
                                                                    padding: 80px 0;
                                                                }
                                                                .service-card-item {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    overflow: hidden;
                                                                    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                                                    transition: all 0.3s ease;
                                                                    height: 100%;
                                                                    border: 2px solid #f0f0f0;
                                                                    position: relative;
                                                                }
                                                                .service-card-item:hover {
                                                                    transform: translateY(-8px);
                                                                    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                                                    border: 2px solid #ff9800;
                                                                }
                                                                .service-image {
                                                                    position: relative;
                                                                    height: 200px;
                                                                    overflow: hidden;
                                                                    margin: 15px;
                                                                    border-radius: 10px;
                                                                }
                                                                .service-image img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    object-fit: cover;
                                                                    transition: transform 0.3s ease;
                                                                    border-radius: 10px;
                                                                }
                                                                .service-card-item:hover .service-image img {
                                                                    transform: scale(1.05);
                                                                }
                                                                .service-content {
                                                                    padding: 0 25px 25px 25px;
                                                                    text-align: center;
                                                                }
                                                                .service-content h3 {
                                                                    font-size: 20px;
                                                                    font-weight: 600;
                                                                    margin-bottom: 20px;
                                                                    color: var(--theme);
                                                                    line-height: 1.4;
                                                                }
                                                                .service-button .contact-btn {
                                                                    background: #fff;
                                                                    color: #666;
                                                                    padding: 10px 25px;
                                                                    border: 2px solid #e0e0e0;
                                                                    border-radius: 25px;
                                                                    text-decoration: none;
                                                                    font-weight: 500;
                                                                    font-size: 14px;
                                                                    transition: all 0.3s ease;
                                                                    display: inline-block;
                                                                }
                                                                .service-button .contact-btn:hover {
                                                                    background: linear-gradient(45deg, #ff9800, #ffc107);
                                                                    color: #fff;
                                                                    border-color: #ff9800;
                                                                    transform: translateY(-2px);
                                                                    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                                                }
                                                                .section-title h2 {
                                                                    font-size: 36px;
                                                                    font-weight: 700;
                                                                    color: #333;
                                                                    margin-bottom: 20px;
                                                                }
                                                                /* Mobile Responsive */
                                                                @media (max-width: 768px) {
                                                                    .services-section {
                                                                        padding: 60px 0;
                                                                    }
                                                                    .service-content {
                                                                        padding: 0 20px 20px 20px;
                                                                    }
                                                                    .service-content h3 {
                                                                        font-size: 18px;
                                                                        margin-bottom: 15px;
                                                                    }
                                                                    .service-image {
                                                                        height: 180px;
                                                                        margin: 12px;
                                                                    }
                                                                    .section-title h2 {
                                                                        font-size: 28px;
                                                                    }
                                                                }
                                                                @media (max-width: 576px) {
                                                                    .service-image {
                                                                        height: 160px;
                                                                        margin: 10px;
                                                                    }
                                                                    .service-content h3 {
                                                                        font-size: 16px;
                                                                    }
                                                                    .service-button .contact-btn {
                                                                        padding: 8px 20px;
                                                                        font-size: 13px;
                                                                    }
                                                                }
                                                                /* Career Card Hover Effects */
                                                                .career-card {
                                                                    background: #fff;
                                                                    transition: all 0.4s ease-in-out;
                                                                    overflow: hidden;
                                                                    position: relative;
                                                                    cursor: pointer;
                                                                }
                                                                /* Content overlay */
                                                                .career-card>div {
                                                                    position: relative;
                                                                    z-index: 2;
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Description hover effect */
                                                                .career-description {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Salary badge hover effect */
                                                                .salary-badge {
                                                                    transition: all 0.4s ease-in-out;
                                                                    position: relative;
                                                                    z-index: 3;
                                                                }
                                                                /* Qualification tags hover effect */
                                                                .qualification-tag {
                                                                    background-color: #0B71B9;
                                                                    color: #fff;
                                                                }
                                                                .career-email {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Resume required hover effect */
                                                                .resume-required {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                /* Button hover effect */
                                                                .career-btn {
                                                                    transition: all 0.4s ease-in-out;
                                                                    position: relative;
                                                                    z-index: 3;
                                                                }
                                                                /* Add subtle animation to the card */
                                                                @keyframes cardFloat {
                                                                    0%,
                                                                    100% {
                                                                        transform: translateY(0px);
                                                                    }
                                                                    50% {
                                                                        transform: translateY(-3px);
                                                                    }
                                                                }
                                                                /* Smooth transitions for all child elements */
                                                                .career-card * {
                                                                    transition: all 0.4s ease-in-out;
                                                                }
                                                                .testimonial-card {
                                                                    background-color: #ffffff;
                                                                    border-radius: 15px;
                                                                    padding: 30px;
                                                                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                                    margin: 20px 10px;
                                                                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                                    border: 1px solid rgba(0, 0, 0, 0.05);
                                                                    height: 100%;
                                                                }
                                                                .testimonial-card:hover {
                                                                    transform: translateY(-5px);
                                                                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                                                }
                                                                .testimonial-header {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    margin-bottom: 20px;
                                                                }
                                                                .client-avatar {
                                                                    width: 70px;
                                                                    height: 70px;
                                                                    flex-shrink: 0;
                                                                    margin-right: 20px;
                                                                    border-radius: 50%;
                                                                    border: 3px solid #E74D96;
                                                                    padding: 3px;
                                                                    background-color: white;
                                                                    overflow: hidden;
                                                                }
                                                                .avatar-img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    border-radius: 50%;
                                                                    object-fit: cover;
                                                                }
                                                                .client-details h3 {
                                                                    font-size: 18px;
                                                                    font-weight: 700;
                                                                    margin-bottom: 5px;
                                                                    color: #2c3e50;
                                                                }
                                                                .client-service {
                                                                    font-size: 14px;
                                                                    color: #7f8c8d;
                                                                    display: block;
                                                                    margin-bottom: 8px;
                                                                }
                                                                .rating {
                                                                    color: #ffa502;
                                                                    font-size: 14px;
                                                                }
                                                                .testimonial-body {
                                                                    position: relative;
                                                                    margin-bottom: 25px;
                                                                }
                                                                .quote-icon {
                                                                    color: rgba(255, 71, 87, 0.1);
                                                                    font-size: 40px;
                                                                    position: absolute;
                                                                    top: -15px;
                                                                    left: -10px;
                                                                }
                                                                .testimonial-text {
                                                                    position: relative;
                                                                    font-size: 16px;
                                                                    line-height: 1.7;
                                                                    color: #5a6c7d;
                                                                    font-style: italic;
                                                                    padding-left: 10px;
                                                                }
                                                                .testimonial-results {
                                                                    background-color: #f8f9fa;
                                                                    border-radius: 12px;
                                                                    padding: 20px;
                                                                    margin-top: 20px;
                                                                }
                                                                .results-title {
                                                                    font-size: 16px;
                                                                    font-weight: 600;
                                                                    color: #34495e;
                                                                    margin-bottom: 15px;
                                                                    text-align: center;
                                                                }
                                                                .results-gallery {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    gap: 15px;
                                                                }
                                                                .single-result {
                                                                    justify-content: center;
                                                                }
                                                                .result-image {
                                                                    position: relative;
                                                                    width: 140px;
                                                                    height: 140px;
                                                                    border-radius: 10px;
                                                                    overflow: hidden;
                                                                    border: 3px solid white;
                                                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                                }
                                                                .result-divider {
                                                                    color: #E74D96;
                                                                    font-size: 20px;
                                                                }
                                                                .image-label {
                                                                    position: absolute;
                                                                    top: 10px;
                                                                    left: 10px;
                                                                    background-color: #E74D96;
                                                                    color: white;
                                                                    font-size: 12px;
                                                                    font-weight: 600;
                                                                    padding: 4px 10px;
                                                                    border-radius: 20px;
                                                                    z-index: 1;
                                                                }
                                                                .result-img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    object-fit: cover;
                                                                    transition: transform 0.5s ease;
                                                                }
                                                                .result-image:hover .result-img {
                                                                    transform: scale(1.1);
                                                                }
                                                                /* Responsive styles */
                                                                @media (max-width: 767px) {
                                                                    .testimonial-header {
                                                                        flex-direction: column;
                                                                        text-align: center;
                                                                    }
                                                                    .client-avatar {
                                                                        margin-right: 0;
                                                                        margin-bottom: 15px;
                                                                    }
                                                                    .results-gallery {
                                                                        flex-direction: column;
                                                                    }
                                                                    .result-divider {
                                                                        transform: rotate(90deg);
                                                                        margin: 10px 0;
                                                                    }
                                                                }
                                                                .blog-detail-card {
                                                                    border: 1px solid #e9ecef;
                                                                }
                                                                .blog-title {
                                                                    line-height: 1.4;
                                                                }
                                                                .meta-item {
                                                                    font-size: 0.9rem;
                                                                    color: #6c757d;
                                                                }
                                                                .meta-divider {
                                                                    color: #dee2e6;
                                                                    font-weight: bold;
                                                                }
                                                                .content-text img {
                                                                    max-width: 100%;
                                                                    height: auto;
                                                                    border-radius: 8px;
                                                                    margin: 15px 0;
                                                                }
                                                                .content-text p {
                                                                    margin-bottom: 1rem;
                                                                }
                                                                .tag-item {
                                                                    font-size: 0.85rem;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .tag-item:hover {
                                                                    background-color: #007bff !important;
                                                                    color: white !important;
                                                                }
                                                                .share-buttons .btn {
                                                                    border-radius: 50%;
                                                                    width: 35px;
                                                                    height: 35px;
                                                                    display: inline-flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .share-buttons .btn:hover {
                                                                    transform: translateY(-2px);
                                                                }
                                                                .placeholder-image {
                                                                    border: 2px dashed #dee2e6;
                                                                }
                                                                @media (max-width: 768px) {
                                                                    .d-flex.justify-content-between {
                                                                        flex-direction: column;
                                                                        gap: 1rem;
                                                                    }
                                                                    .share-buttons {
                                                                        align-self: center;
                                                                    }
                                                                }
                                                                .service-content * {
                                                                    text-align: left !important;
                                                                }
                                                                .service-content p,
                                                                .service-content div,
                                                                .service-content li {
                                                                    text-align: left !important;
                                                                }
                                                                .service-points li {
                                                                    text-align: left !important;
                                                                }
                                                                .career-details-section {
                                                                    background: #f8f9fa;
                                                                    min-height: 80vh;
                                                                }
                                                                /* Job Header Card */
                                                                .job-header-card {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    padding: 30px;
                                                                    margin-bottom: 30px;
                                                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                    border: 1px solid #f0f0f0;
                                                                }
                                                                .job-header-content {
                                                                    display: flex;
                                                                    justify-content: space-between;
                                                                    align-items: flex-start;
                                                                    gap: 20px;
                                                                }
                                                                .job-title {
                                                                    font-size: 32px;
                                                                    font-weight: 700;
                                                                    color: #333;
                                                                    margin-bottom: 15px;
                                                                    line-height: 1.2;
                                                                }
                                                                .job-meta {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    gap: 20px;
                                                                }
                                                                .job-meta span {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    color: #666;
                                                                    font-size: 14px;
                                                                }
                                                                .job-meta i {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .salary-info {
                                                                    text-align: right;
                                                                    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                                    color: #fff;
                                                                    padding: 20px;
                                                                    border-radius: 12px;
                                                                    min-width: 180px;
                                                                }
                                                                .salary-label {
                                                                    display: block;
                                                                    font-size: 14px;
                                                                    opacity: 0.9;
                                                                    margin-bottom: 5px;
                                                                }
                                                                .salary-amount {
                                                                    display: block;
                                                                    font-size: 19px;
                                                                    font-weight: 700;
                                                                }
                                                                /* Job Sections */
                                                                .job-section {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    padding: 30px;
                                                                    margin-bottom: 30px;
                                                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                    border: 1px solid #f0f0f0;
                                                                }
                                                                .section-title {
                                                                    font-size: 20px;
                                                                    font-weight: 600;
                                                                    color: #333;
                                                                    margin-bottom: 20px;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 10px;
                                                                }
                                                                .section-title i {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .job-description,
                                                                .job-requirements,
                                                                .job-responsibilities,
                                                                .job-benefits {
                                                                    color: #666;
                                                                    line-height: 1.8;
                                                                }
                                                                .job-description ul,
                                                                .job-requirements ul,
                                                                .job-responsibilities ul,
                                                                .job-benefits ul {
                                                                    padding-left: 20px;
                                                                }
                                                                .job-description li,
                                                                .job-requirements li,
                                                                .job-responsibilities li,
                                                                .job-benefits li {
                                                                    margin-bottom: 8px;
                                                                }
                                                                /* Qualification Tags */
                                                                .qualification-tags-container {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    gap: 12px;
                                                                }
                                                                .qualification-tag {
                                                                    background: #0B71B9;
                                                                    color: #fff;
                                                                    padding: 8px 16px;
                                                                    border-radius: 20px;
                                                                    font-size: 13px;
                                                                    font-weight: 500;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .qualification-tag:hover {
                                                                    transform: translateY(-2px);
                                                                    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                                }
                                                                /* Sidebar */
                                                                .career-sidebar {
                                                                    position: sticky;
                                                                    top: 20px;
                                                                }
                                                                .apply-card,
                                                                .job-summary-card,
                                                                .share-job-card {
                                                                    background: #fff;
                                                                    border-radius: 15px;
                                                                    padding: 25px;
                                                                    margin-bottom: 25px;
                                                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                    border: 1px solid #f0f0f0;
                                                                }
                                                                .apply-header h4 {
                                                                    color: #333;
                                                                    font-weight: 600;
                                                                    margin-bottom: 8px;
                                                                }
                                                                .apply-header p {
                                                                    color: #666;
                                                                    margin-bottom: 20px;
                                                                    font-size: 14px;
                                                                }
                                                                .contact-info {
                                                                    margin-bottom: 20px;
                                                                }
                                                                .contact-item {
                                                                    display: flex;
                                                                    align-items: flex-start;
                                                                    gap: 12px;
                                                                    padding: 15px;
                                                                    background: #f8f9fa;
                                                                    border-radius: 10px;
                                                                }
                                                                .contact-item i {
                                                                    color: var(--theme-color, #007bff);
                                                                    font-size: 18px;
                                                                    margin-top: 2px;
                                                                }
                                                                .contact-label {
                                                                    display: block;
                                                                    font-size: 12px;
                                                                    color: #666;
                                                                    margin-bottom: 4px;
                                                                }
                                                                .contact-value {
                                                                    color: #333;
                                                                    font-weight: 500;
                                                                    text-decoration: none;
                                                                }
                                                                .contact-value:hover {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .resume-note {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    background: #fff3cd;
                                                                    color: #856404;
                                                                    padding: 10px 15px;
                                                                    border-radius: 8px;
                                                                    margin-bottom: 20px;
                                                                    font-size: 13px;
                                                                }
                                                                .apply-actions {
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    gap: 10px;
                                                                }
                                                                .apply-btn {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    gap: 8px;
                                                                    padding: 12px 20px;
                                                                    border-radius: 8px;
                                                                    text-decoration: none;
                                                                    font-weight: 500;
                                                                    transition: all 0.3s ease;
                                                                    border: none;
                                                                    cursor: pointer;
                                                                }
                                                                .apply-btn.primary {
                                                                    background: var(--theme-color, #007bff);
                                                                    color: #fff;
                                                                }
                                                                .apply-btn.primary:hover {
                                                                    background: #0056b3;
                                                                    transform: translateY(-2px);
                                                                    color: #fff;
                                                                    text-decoration: none;
                                                                }
                                                                .apply-btn.secondary {
                                                                    background: #f8f9fa;
                                                                    color: #333;
                                                                    border: 2px solid #e9ecef;
                                                                }
                                                                .apply-btn.secondary:hover {
                                                                    background: #e9ecef;
                                                                    border-color: #dee2e6;
                                                                }
                                                                /* Job Summary */
                                                                .job-summary-card h4,
                                                                .share-job-card h4 {
                                                                    color: #333;
                                                                    font-weight: 600;
                                                                    margin-bottom: 20px;
                                                                }
                                                                .summary-items {
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    gap: 15px;
                                                                }
                                                                .summary-item {
                                                                    display: flex;
                                                                    justify-content: space-between;
                                                                    align-items: center;
                                                                    padding-bottom: 15px;
                                                                    border-bottom: 1px solid #f0f0f0;
                                                                }
                                                                .summary-item:last-child {
                                                                    border-bottom: none;
                                                                    padding-bottom: 0;
                                                                }
                                                                .summary-label {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    color: #666;
                                                                    font-size: 14px;
                                                                }
                                                                .summary-label i {
                                                                    color: var(--theme-color, #007bff);
                                                                }
                                                                .summary-value {
                                                                    color: #333;
                                                                    font-weight: 500;
                                                                    font-size: 14px;
                                                                }
                                                                /* Share Buttons */
                                                                .share-buttons {
                                                                    display: flex;
                                                                    gap: 10px;
                                                                }
                                                                .share-btn {
                                                                    width: 45px;
                                                                    height: 45px;
                                                                    border-radius: 50%;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    text-decoration: none;
                                                                    transition: all 0.3s ease;
                                                                    border: none;
                                                                    cursor: pointer;
                                                                }
                                                                .share-btn.linkedin {
                                                                    background: #0077b5;
                                                                    color: #fff;
                                                                }
                                                                .share-btn.twitter {
                                                                    background: #1da1f2;
                                                                    color: #fff;
                                                                }
                                                                .share-btn.facebook {
                                                                    background: #4267b2;
                                                                    color: #fff;
                                                                }
                                                                .share-btn.copy {
                                                                    background: #6c757d;
                                                                    color: #fff;
                                                                }
                                                                .share-btn:hover {
                                                                    transform: translateY(-3px);
                                                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                                }
                                                                /* Back Button */
                                                                .back-to-careers {
                                                                    text-align: center;
                                                                }
                                                                .back-btn {
                                                                    display: inline-flex;
                                                                    align-items: center;
                                                                    gap: 8px;
                                                                    color: var(--theme-color, #007bff);
                                                                    text-decoration: none;
                                                                    font-weight: 500;
                                                                    padding: 10px 20px;
                                                                    border: 2px solid var(--theme-color, #007bff);
                                                                    border-radius: 25px;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                .back-btn:hover {
                                                                    background: var(--theme-color, #007bff);
                                                                    color: #fff;
                                                                    text-decoration: none;
                                                                }
                                                                .back-btn i {
                                                                    margin-right: 8px;
                                                                }
                                                                /* Modal Styles */
                                                                .modal-content {
                                                                    border-radius: 15px;
                                                                    border: none;
                                                                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                                }
                                                                .modal-header {
                                                                    border-bottom: 1px solid #f0f0f0;
                                                                    padding: 20px 25px;
                                                                }
                                                                .modal-body {
                                                                    padding: 25px;
                                                                }
                                                                .modal-footer {
                                                                    border-top: 1px solid #f0f0f0;
                                                                    padding: 20px 25px;
                                                                }
                                                                /* Responsive Design */
                                                                @media (max-width: 992px) {
                                                                    .job-header-content {
                                                                        flex-direction: column;
                                                                    }
                                                                    .salary-info {
                                                                        text-align: left;
                                                                        min-width: auto;
                                                                        width: 100%;
                                                                    }
                                                                    .career-sidebar {
                                                                        position: static;
                                                                        margin-top: 30px;
                                                                    }
                                                                }
                                                                @media (max-width: 768px) {
                                                                    .job-title {
                                                                        font-size: 24px;
                                                                    }
                                                                    .job-meta {
                                                                        flex-direction: column;
                                                                        gap: 10px;
                                                                    }
                                                                    .job-header-card,
                                                                    .job-section,
                                                                    .apply-card,
                                                                    .job-summary-card,
                                                                    .share-job-card {
                                                                        padding: 20px;
                                                                    }
                                                                    .qualification-tags-container {
                                                                        justify-content: center;
                                                                    }
                                                                }
                                                                /* Hero Banner Slider */
                                                                .hero-banner-slider {
                                                                    position: relative;
                                                                }
                                                                .hero-banner-slider .swiper-button-next,
                                                                .hero-banner-slider .swiper-button-prev {
                                                                    width: 50px;
                                                                    height: 50px;
                                                                    background-color: rgba(255, 255, 255, 0.9);
                                                                    border-radius: 50%;
                                                                    color: var(--theme);
                                                                }
                                                                .hero-banner-slider .swiper-button-next:after,
                                                                .hero-banner-slider .swiper-button-prev:after {
                                                                    font-size: 20px;
                                                                }
                                                                .hero-banner-slider .swiper-pagination {
                                                                    bottom: 20px;
                                                                }
                                                                .hero-banner-slider .swiper-pagination-bullet {
                                                                    width: 12px;
                                                                    height: 12px;
                                                                    background-color: rgba(255, 255, 255, 0.9);
                                                                    opacity: 0.5;
                                                                }
                                                                .hero-banner-slider .swiper-pagination-bullet-active {
                                                                    opacity: 1;
                                                                    background-color: var(--theme);
                                                                }
                                                                .hero-section {
                                                                    text-shadow: none !important;
                                                                }
                                                                .hero-1 {
                                                                    position: relative;
                                                                    z-index: 1;
                                                                }
                                                                .hero-1::before {
                                                                    content: "";
                                                                    position: absolute;
                                                                    top: 0;
                                                                    left: 0;
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    background-color: rgba(0, 0, 0, 0.1);
                                                                    z-index: 0;
                                                                }
                                                                .hero-content {
                                                                    position: relative;
                                                                    z-index: 2;
                                                                }
                                                                justify-content: center;
                                                                height: 100%;
                                                                color: #ffffff;
                                                                z-index: 10;
                                                            }
                                                            .hero-section .subhead {
                                                                text-transform: uppercase;
                                                                letter-spacing: 4px;
                                                                color: #db7f7f;
                                                                /* Changed from #000000 to white for better visibility */
                                                                font-weight: 500;
                                                            }
                                                            .hero-section h1 {
                                                                margin-bottom: 32px;
                                                                color: #ffffff;
                                                                /* Changed from var(--theme) to white */
                                                                font-weight: 500;
                                                            }
                                                            /* Additional styling for better text visibility */
                                                            .hero-section {
                                                                text-shadow: none !important;
                                                            }
                                                            .input-navbar {
                                                                width: auto;
                                                                max-width: 280px;
                                                            }
                                                            .input-navbar .input-group-text {
                                                                background-color: #fff;
                                                            }
                                                            .input-navbar .form-control {
                                                                height: calc(1.5em+1rem+2px);
                                                            }
                                                            .services-section {
                                                                background: #f8f9fa;
                                                                padding: 80px 0;
                                                            }
                                                            .service-card-item {
                                                                background: #fff;
                                                                border-radius: 15px;
                                                                overflow: hidden;
                                                                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                                                transition: all 0.3s ease;
                                                                height: 100%;
                                                                border: 2px solid #f0f0f0;
                                                                position: relative;
                                                            }
                                                            .service-card-item:hover {
                                                                transform: translateY(-8px);
                                                                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                                                border: 2px solid #ff9800;
                                                            }
                                                            .service-image {
                                                                position: relative;
                                                                height: 200px;
                                                                overflow: hidden;
                                                                margin: 15px;
                                                                border-radius: 10px;
                                                            }
                                                            .service-image img {
                                                                width: 100%;
                                                                height: 100%;
                                                                object-fit: cover;
                                                                transition: transform 0.3s ease;
                                                                border-radius: 10px;
                                                            }
                                                            .service-card-item:hover .service-image img {
                                                                transform: scale(1.05);
                                                            }
                                                            .service-content {
                                                                padding: 0 25px 25px 25px;
                                                                text-align: center;
                                                            }
                                                            .service-content h3 {
                                                                font-size: 20px;
                                                                font-weight: 600;
                                                                margin-bottom: 20px;
                                                                color: var(--theme);
                                                                line-height: 1.4;
                                                            }
                                                            .service-button .contact-btn {
                                                                background: #fff;
                                                                color: #666;
                                                                padding: 10px 25px;
                                                                border: 2px solid #e0e0e0;
                                                                border-radius: 25px;
                                                                text-decoration: none;
                                                                font-weight: 500;
                                                                font-size: 14px;
                                                                transition: all 0.3s ease;
                                                                display: inline-block;
                                                            }
                                                            .service-button .contact-btn:hover {
                                                                background: linear-gradient(45deg, #ff9800, #ffc107);
                                                                color: #fff;
                                                                border-color: #ff9800;
                                                                transform: translateY(-2px);
                                                                box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                                            }
                                                            .section-title h2 {
                                                                font-size: 36px;
                                                                font-weight: 700;
                                                                color: #333;
                                                                margin-bottom: 20px;
                                                            }
                                                            /* Mobile Responsive */
                                                            @media (max-width: 768px) {
                                                                .services-section {
                                                                    padding: 60px 0;
                                                                }
                                                                .service-content {
                                                                    padding: 0 20px 20px 20px;
                                                                }
                                                                .service-content h3 {
                                                                    font-size: 18px;
                                                                    margin-bottom: 15px;
                                                                }
                                                                .service-image {
                                                                    height: 180px;
                                                                    margin: 12px;
                                                                }
                                                                .section-title h2 {
                                                                    font-size: 28px;
                                                                }
                                                            }
                                                            @media (max-width: 576px) {
                                                                .service-image {
                                                                    height: 160px;
                                                                    margin: 10px;
                                                                }
                                                                .service-content h3 {
                                                                    font-size: 16px;
                                                                }
                                                                .service-button .contact-btn {
                                                                    padding: 8px 20px;
                                                                    font-size: 13px;
                                                                }
                                                            }
                                                            /* Career Card Hover Effects */
                                                            .career-card {
                                                                background: #fff;
                                                                transition: all 0.4s ease-in-out;
                                                                overflow: hidden;
                                                                position: relative;
                                                                cursor: pointer;
                                                            }
                                                            /* Content overlay */
                                                            .career-card>div {
                                                                position: relative;
                                                                z-index: 2;
                                                                transition: all 0.4s ease-in-out;
                                                            }
                                                            /* Description hover effect */
                                                            .career-description {
                                                                transition: all 0.4s ease-in-out;
                                                            }
                                                            /* Salary badge hover effect */
                                                            .salary-badge {
                                                                transition: all 0.4s ease-in-out;
                                                                position: relative;
                                                                z-index: 3;
                                                            }
                                                            /* Qualification tags hover effect */
                                                            .qualification-tag {
                                                                background-color: #0B71B9;
                                                                color: #fff;
                                                            }
                                                            .career-email {
                                                                transition: all 0.4s ease-in-out;
                                                            }
                                                            /* Resume required hover effect */
                                                            .resume-required {
                                                                transition: all 0.4s ease-in-out;
                                                            }
                                                            /* Button hover effect */
                                                            .career-btn {
                                                                transition: all 0.4s ease-in-out;
                                                                position: relative;
                                                                z-index: 3;
                                                            }
                                                            /* Add subtle animation to the card */
                                                            @keyframes cardFloat {
                                                                0%,
                                                                100% {
                                                                    transform: translateY(0px);
                                                                }
                                                                50% {
                                                                    transform: translateY(-3px);
                                                                }
                                                            }
                                                            /* Smooth transitions for all child elements */
                                                            .career-card * {
                                                                transition: all 0.4s ease-in-out;
                                                            }
                                                            .testimonial-card {
                                                                background-color: #ffffff;
                                                                border-radius: 15px;
                                                                padding: 30px;
                                                                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                                margin: 20px 10px;
                                                                transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                                border: 1px solid rgba(0, 0, 0, 0.05);
                                                                height: 100%;
                                                            }
                                                            .testimonial-card:hover {
                                                                transform: translateY(-5px);
                                                                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                                            }
                                                            .testimonial-header {
                                                                display: flex;
                                                                align-items: center;
                                                                margin-bottom: 20px;
                                                            }
                                                            .client-avatar {
                                                                width: 70px;
                                                                height: 70px;
                                                                flex-shrink: 0;
                                                                margin-right: 20px;
                                                                border-radius: 50%;
                                                                border: 3px solid #E74D96;
                                                                padding: 3px;
                                                                background-color: white;
                                                                overflow: hidden;
                                                            }
                                                            .avatar-img {
                                                                width: 100%;
                                                                height: 100%;
                                                                border-radius: 50%;
                                                                object-fit: cover;
                                                            }
                                                            .client-details h3 {
                                                                font-size: 18px;
                                                                font-weight: 700;
                                                                margin-bottom: 5px;
                                                                color: #2c3e50;
                                                            }
                                                            .client-service {
                                                                font-size: 14px;
                                                                color: #7f8c8d;
                                                                display: block;
                                                                margin-bottom: 8px;
                                                            }
                                                            .rating {
                                                                color: #ffa502;
                                                                font-size: 14px;
                                                            }
                                                            .testimonial-body {
                                                                position: relative;
                                                                margin-bottom: 25px;
                                                            }
                                                            .quote-icon {
                                                                color: rgba(255, 71, 87, 0.1);
                                                                font-size: 40px;
                                                                position: absolute;
                                                                top: -15px;
                                                                left: -10px;
                                                            }
                                                            .testimonial-text {
                                                                position: relative;
                                                                font-size: 16px;
                                                                line-height: 1.7;
                                                                color: #5a6c7d;
                                                                font-style: italic;
                                                                padding-left: 10px;
                                                            }
                                                            .testimonial-results {
                                                                background-color: #f8f9fa;
                                                                border-radius: 12px;
                                                                padding: 20px;
                                                                margin-top: 20px;
                                                            }
                                                            .results-title {
                                                                font-size: 16px;
                                                                font-weight: 600;
                                                                color: #34495e;
                                                                margin-bottom: 15px;
                                                                text-align: center;
                                                            }
                                                            .results-gallery {
                                                                display: flex;
                                                                align-items: center;
                                                                justify-content: center;
                                                                gap: 15px;
                                                            }
                                                            .single-result {
                                                                justify-content: center;
                                                            }
                                                            .result-image {
                                                                position: relative;
                                                                width: 140px;
                                                                height: 140px;
                                                                border-radius: 10px;
                                                                overflow: hidden;
                                                                border: 3px solid white;
                                                                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                            }
                                                            .result-divider {
                                                                color: #E74D96;
                                                                font-size: 20px;
                                                            }
                                                            .image-label {
                                                                position: absolute;
                                                                top: 10px;
                                                                left: 10px;
                                                                background-color: #E74D96;
                                                                color: white;
                                                                font-size: 12px;
                                                                font-weight: 600;
                                                                padding: 4px 10px;
                                                                border-radius: 20px;
                                                                z-index: 1;
                                                            }
                                                            .result-img {
                                                                width: 100%;
                                                                height: 100%;
                                                                object-fit: cover;
                                                                transition: transform 0.5s ease;
                                                            }
                                                            .result-image:hover .result-img {
                                                                transform: scale(1.1);
                                                            }
                                                            /* Responsive styles */
                                                            @media (max-width: 767px) {
                                                                .testimonial-header {
                                                                    flex-direction: column;
                                                                    text-align: center;
                                                                }
                                                                .client-avatar {
                                                                    margin-right: 0;
                                                                    margin-bottom: 15px;
                                                                }
                                                                .results-gallery {
                                                                    flex-direction: column;
                                                                }
                                                                .result-divider {
                                                                    transform: rotate(90deg);
                                                                    margin: 10px 0;
                                                                }
                                                            }
                                                            .blog-detail-card {
                                                                border: 1px solid #e9ecef;
                                                            }
                                                            .blog-title {
                                                                line-height: 1.4;
                                                            }
                                                            .meta-item {
                                                                font-size: 0.9rem;
                                                                color: #6c757d;
                                                            }
                                                            .meta-divider {
                                                                color: #dee2e6;
                                                                font-weight: bold;
                                                            }
                                                            .content-text img {
                                                                max-width: 100%;
                                                                height: auto;
                                                                border-radius: 8px;
                                                                margin: 15px 0;
                                                            }
                                                            .content-text p {
                                                                margin-bottom: 1rem;
                                                            }
                                                            .tag-item {
                                                                font-size: 0.85rem;
                                                                transition: all 0.3s ease;
                                                            }
                                                            .tag-item:hover {
                                                                background-color: #007bff !important;
                                                                color: white !important;
                                                            }
                                                            .share-buttons .btn {
                                                                border-radius: 50%;
                                                                width: 35px;
                                                                height: 35px;
                                                                display: inline-flex;
                                                                align-items: center;
                                                                justify-content: center;
                                                                transition: all 0.3s ease;
                                                            }
                                                            .share-buttons .btn:hover {
                                                                transform: translateY(-2px);
                                                            }
                                                            .placeholder-image {
                                                                border: 2px dashed #dee2e6;
                                                            }
                                                            @media (max-width: 768px) {
                                                                .d-flex.justify-content-between {
                                                                    flex-direction: column;
                                                                    gap: 1rem;
                                                                }
                                                                .share-buttons {
                                                                    align-self: center;
                                                                }
                                                            }
                                                            .service-content * {
                                                                text-align: left !important;
                                                            }
                                                            .service-content p,
                                                            .service-content div,
                                                            .service-content li {
                                                                text-align: left !important;
                                                            }
                                                            .service-points li {
                                                                text-align: left !important;
                                                            }
                                                            .career-details-section {
                                                                background: #f8f9fa;
                                                                min-height: 80vh;
                                                            }
                                                            /* Job Header Card */
                                                            .job-header-card {
                                                                background: #fff;
                                                                border-radius: 15px;
                                                                padding: 30px;
                                                                margin-bottom: 30px;
                                                                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                border: 1px solid #f0f0f0;
                                                            }
                                                            .job-header-content {
                                                                display: flex;
                                                                justify-content: space-between;
                                                                align-items: flex-start;
                                                                gap: 20px;
                                                            }
                                                            .job-title {
                                                                font-size: 32px;
                                                                font-weight: 700;
                                                                color: #333;
                                                                margin-bottom: 15px;
                                                                line-height: 1.2;
                                                            }
                                                            .job-meta {
                                                                display: flex;
                                                                flex-wrap: wrap;
                                                                gap: 20px;
                                                            }
                                                            .job-meta span {
                                                                display: flex;
                                                                align-items: center;
                                                                gap: 8px;
                                                                color: #666;
                                                                font-size: 14px;
                                                            }
                                                            .job-meta i {
                                                                color: var(--theme-color, #007bff);
                                                            }
                                                            .salary-info {
                                                                text-align: right;
                                                                background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                                color: #fff;
                                                                padding: 20px;
                                                                border-radius: 12px;
                                                                min-width: 180px;
                                                            }
                                                            .salary-label {
                                                                display: block;
                                                                font-size: 14px;
                                                                opacity: 0.9;
                                                                margin-bottom: 5px;
                                                            }
                                                            .salary-amount {
                                                                display: block;
                                                                font-size: 19px;
                                                                font-weight: 700;
                                                            }
                                                            /* Job Sections */
                                                            .job-section {
                                                                background: #fff;
                                                                border-radius: 15px;
                                                                padding: 30px;
                                                                margin-bottom: 30px;
                                                                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                border: 1px solid #f0f0f0;
                                                            }
                                                            .section-title {
                                                                font-size: 20px;
                                                                font-weight: 600;
                                                                color: #333;
                                                                margin-bottom: 20px;
                                                                display: flex;
                                                                align-items: center;
                                                                gap: 10px;
                                                            }
                                                            .section-title i {
                                                                color: var(--theme-color, #007bff);
                                                            }
                                                            .job-description,
                                                            .job-requirements,
                                                            .job-responsibilities,
                                                            .job-benefits {
                                                                color: #666;
                                                                line-height: 1.8;
                                                            }
                                                            .job-description ul,
                                                            .job-requirements ul,
                                                            .job-responsibilities ul,
                                                            .job-benefits ul {
                                                                padding-left: 20px;
                                                            }
                                                            .job-description li,
                                                            .job-requirements li,
                                                            .job-responsibilities li,
                                                            .job-benefits li {
                                                                margin-bottom: 8px;
                                                            }
                                                            /* Qualification Tags */
                                                            .qualification-tags-container {
                                                                display: flex;
                                                                flex-wrap: wrap;
                                                                gap: 12px;
                                                            }
                                                            .qualification-tag {
                                                                background: #0B71B9;
                                                                color: #fff;
                                                                padding: 8px 16px;
                                                                border-radius: 20px;
                                                                font-size: 13px;
                                                                font-weight: 500;
                                                                transition: all 0.3s ease;
                                                            }
                                                            .qualification-tag:hover {
                                                                transform: translateY(-2px);
                                                                box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                            }
                                                            /* Sidebar */
                                                            .career-sidebar {
                                                                position: sticky;
                                                                top: 20px;
                                                            }
                                                            .apply-card,
                                                            .job-summary-card,
                                                            .share-job-card {
                                                                background: #fff;
                                                                border-radius: 15px;
                                                                padding: 25px;
                                                                margin-bottom: 25px;
                                                                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                border: 1px solid #f0f0f0;
                                                            }
                                                            .apply-header h4 {
                                                                color: #333;
                                                                font-weight: 600;
                                                                margin-bottom: 8px;
                                                            }
                                                            .apply-header p {
                                                                color: #666;
                                                                margin-bottom: 20px;
                                                                font-size: 14px;
                                                            }
                                                            .contact-info {
                                                                margin-bottom: 20px;
                                                            }
                                                            .contact-item {
                                                                display: flex;
                                                                align-items: flex-start;
                                                                gap: 12px;
                                                                padding: 15px;
                                                                background: #f8f9fa;
                                                                border-radius: 10px;
                                                            }
                                                            .contact-item i {
                                                                color: var(--theme-color, #007bff);
                                                                font-size: 18px;
                                                                margin-top: 2px;
                                                            }
                                                            .contact-label {
                                                                display: block;
                                                                font-size: 12px;
                                                                color: #666;
                                                                margin-bottom: 4px;
                                                            }
                                                            .contact-value {
                                                                color: #333;
                                                                font-weight: 500;
                                                                text-decoration: none;
                                                            }
                                                            .contact-value:hover {
                                                                color: var(--theme-color, #007bff);
                                                            }
                                                            .resume-note {
                                                                display: flex;
                                                                align-items: center;
                                                                gap: 8px;
                                                                background: #fff3cd;
                                                                color: #856404;
                                                                padding: 10px 15px;
                                                                border-radius: 8px;
                                                                margin-bottom: 20px;
                                                                font-size: 13px;
                                                            }
                                                            .apply-actions {
                                                                display: flex;
                                                                flex-direction: column;
                                                                gap: 10px;
                                                            }
                                                            .apply-btn {
                                                                display: flex;
                                                                align-items: center;
                                                                justify-content: center;
                                                                gap: 8px;
                                                                padding: 12px 20px;
                                                                border-radius: 8px;
                                                                text-decoration: none;
                                                                font-weight: 500;
                                                                transition: all 0.3s ease;
                                                                border: none;
                                                                cursor: pointer;
                                                            }
                                                            .apply-btn.primary {
                                                                background: var(--theme-color, #007bff);
                                                                color: #fff;
                                                            }
                                                            .apply-btn.primary:hover {
                                                                background: #0056b3;
                                                                transform: translateY(-2px);
                                                                color: #fff;
                                                                text-decoration: none;
                                                            }
                                                            .apply-btn.secondary {
                                                                background: #f8f9fa;
                                                                color: #333;
                                                                border: 2px solid #e9ecef;
                                                            }
                                                            .apply-btn.secondary:hover {
                                                                background: #e9ecef;
                                                                border-color: #dee2e6;
                                                            }
                                                            /* Job Summary */
                                                            .job-summary-card h4,
                                                            .share-job-card h4 {
                                                                color: #333;
                                                                font-weight: 600;
                                                                margin-bottom: 20px;
                                                            }
                                                            .summary-items {
                                                                display: flex;
                                                                flex-direction: column;
                                                                gap: 15px;
                                                            }
                                                            .summary-item {
                                                                display: flex;
                                                                justify-content: space-between;
                                                                align-items: center;
                                                                padding-bottom: 15px;
                                                                border-bottom: 1px solid #f0f0f0;
                                                            }
                                                            .summary-item:last-child {
                                                                border-bottom: none;
                                                                padding-bottom: 0;
                                                            }
                                                            .summary-label {
                                                                display: flex;
                                                                align-items: center;
                                                                gap: 8px;
                                                                color: #666;
                                                                font-size: 14px;
                                                            }
                                                            .summary-label i {
                                                                color: var(--theme-color, #007bff);
                                                            }
                                                            .summary-value {
                                                                color: #333;
                                                                font-weight: 500;
                                                                font-size: 14px;
                                                            }
                                                            /* Share Buttons */
                                                            .share-buttons {
                                                                display: flex;
                                                                gap: 10px;
                                                            }
                                                            .share-btn {
                                                                width: 45px;
                                                                height: 45px;
                                                                border-radius: 50%;
                                                                display: flex;
                                                                align-items: center;
                                                                justify-content: center;
                                                                text-decoration: none;
                                                                transition: all 0.3s ease;
                                                                border: none;
                                                                cursor: pointer;
                                                            }
                                                            .share-btn.linkedin {
                                                                background: #0077b5;
                                                                color: #fff;
                                                            }
                                                            .share-btn.twitter {
                                                                background: #1da1f2;
                                                                color: #fff;
                                                            }
                                                            .share-btn.facebook {
                                                                background: #4267b2;
                                                                color: #fff;
                                                            }
                                                            .share-btn.copy {
                                                                background: #6c757d;
                                                                color: #fff;
                                                            }
                                                            .share-btn:hover {
                                                                transform: translateY(-3px);
                                                                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                            }
                                                            /* Back Button */
                                                            .back-to-careers {
                                                                text-align: center;
                                                            }
                                                            .back-btn {
                                                                display: inline-flex;
                                                                align-items: center;
                                                                gap: 8px;
                                                                color: var(--theme-color, #007bff);
                                                                text-decoration: none;
                                                                font-weight: 500;
                                                                padding: 10px 20px;
                                                                border: 2px solid var(--theme-color, #007bff);
                                                                border-radius: 25px;
                                                                transition: all 0.3s ease;
                                                            }
                                                            .back-btn:hover {
                                                                background: var(--theme-color, #007bff);
                                                                color: #fff;
                                                                text-decoration: none;
                                                            }
                                                            .back-btn i {
                                                                margin-right: 8px;
                                                            }
                                                            /* Modal Styles */
                                                            .modal-content {
                                                                border-radius: 15px;
                                                                border: none;
                                                                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                            }
                                                            .modal-header {
                                                                border-bottom: 1px solid #f0f0f0;
                                                                padding: 20px 25px;
                                                            }
                                                            .modal-body {
                                                                padding: 25px;
                                                            }
                                                            .modal-footer {
                                                                border-top: 1px solid #f0f0f0;
                                                                padding: 20px 25px;
                                                            }
                                                            /* Responsive Design */
                                                            @media (max-width: 992px) {
                                                                .job-header-content {
                                                                    flex-direction: column;
                                                                }
                                                                .salary-info {
                                                                    text-align: left;
                                                                    min-width: auto;
                                                                    width: 100%;
                                                                }
                                                                .career-sidebar {
                                                                    position: static;
                                                                    margin-top: 30px;
                                                                }
                                                            }
                                                            @media (max-width: 768px) {
                                                                .job-title {
                                                                    font-size: 24px;
                                                                }
                                                                .job-meta {
                                                                    flex-direction: column;
                                                                    gap: 10px;
                                                                }
                                                                .job-header-card,
                                                                .job-section,
                                                                .apply-card,
                                                                .job-summary-card,
                                                                .share-job-card {
                                                                    padding: 20px;
                                                                }
                                                                .qualification-tags-container {
                                                                    justify-content: center;
                                                                }
                                                            }
                                                            /* Hero Banner Slider */
                                                            .hero-banner-slider {
                                                                position: relative;
                                                            }
                                                            .hero-banner-slider .swiper-button-next,
                                                            .hero-banner-slider .swiper-button-prev {
                                                                width: 50px;
                                                                height: 50px;
                                                                background-color: rgba(255, 255, 255, 0.9);
                                                                border-radius: 50%;
                                                                color: var(--theme);
                                                            }
                                                            .hero-banner-slider .swiper-button-next:after,
                                                            .hero-banner-slider .swiper-button-prev:after {
                                                                font-size: 20px;
                                                            }
                                                            .hero-banner-slider .swiper-pagination {
                                                                bottom: 20px;
                                                            }
                                                            .hero-banner-slider .swiper-pagination-bullet {
                                                                width: 12px;
                                                                height: 12px;
                                                                background-color: rgba(255, 255, 255, 0.9);
                                                                opacity: 0.5;
                                                            }
                                                            .hero-banner-slider .swiper-pagination-bullet-active {
                                                                opacity: 1;
                                                                background-color: var(--theme);
                                                            }
                                                            .hero-section {
                                                                text-shadow: none !important;
                                                            }
                                                            .hero-1 {
                                                                position: relative;
                                                                z-index: 1;
                                                            }
                                                            .hero-1::before {
                                                                content: "";
                                                                position: absolute;
                                                                top: 0;
                                                                left: 0;
                                                                width: 100%;
                                                                height: 100%;
                                                                background-color: rgba(0, 0, 0, 0.1);
                                                                z-index: 0;
                                                            }
                                                            .hero-content {
                                                                position: relative;
                                                                z-index: 2;
                                                            }
                                                            border-radius: 15px;
                                                            padding: 25px;
                                                            margin-bottom: 25px;
                                                            box-shadow: 0 5px 25px rgba(0,
                                                            0,
                                                            0,
                                                            0.08);
                                                            border: 1px solid #f0f0f0;
                                                        }
                                                        .apply-header h4 {
                                                            color: #333;
                                                            font-weight: 600;
                                                            margin-bottom: 8px;
                                                        }
                                                        .apply-header p {
                                                            color: #666;
                                                            margin-bottom: 20px;
                                                            font-size: 14px;
                                                        }
                                                        .contact-info {
                                                            margin-bottom: 20px;
                                                        }
                                                        .contact-item {
                                                            display: flex;
                                                            align-items: flex-start;
                                                            gap: 12px;
                                                            padding: 15px;
                                                            background: #f8f9fa;
                                                            border-radius: 10px;
                                                        }
                                                        .contact-item i {
                                                            color: var(--theme-color, #007bff);
                                                            font-size: 18px;
                                                            margin-top: 2px;
                                                        }
                                                        .contact-label {
                                                            display: block;
                                                            font-size: 12px;
                                                            color: #666;
                                                            margin-bottom: 4px;
                                                        }
                                                        .contact-value {
                                                            color: #333;
                                                            font-weight: 500;
                                                            text-decoration: none;
                                                        }
                                                        .contact-value:hover {
                                                            color: var(--theme-color, #007bff);
                                                        }
                                                        .resume-note {
                                                            display: flex;
                                                            align-items: center;
                                                            gap: 8px;
                                                            background: #fff3cd;
                                                            color: #856404;
                                                            padding: 10px 15px;
                                                            border-radius: 8px;
                                                            margin-bottom: 20px;
                                                            font-size: 13px;
                                                        }
                                                        .apply-actions {
                                                            display: flex;
                                                            flex-direction: column;
                                                            gap: 10px;
                                                        }
                                                        .apply-btn {
                                                            display: flex;
                                                            align-items: center;
                                                            justify-content: center;
                                                            gap: 8px;
                                                            padding: 12px 20px;
                                                            border-radius: 8px;
                                                            text-decoration: none;
                                                            font-weight: 500;
                                                            transition: all 0.3s ease;
                                                            border: none;
                                                            cursor: pointer;
                                                        }
                                                        .apply-btn.primary {
                                                            background: var(--theme-color, #007bff);
                                                            color: #fff;
                                                        }
                                                        .apply-btn.primary:hover {
                                                            background: #0056b3;
                                                            transform: translateY(-2px);
                                                            color: #fff;
                                                            text-decoration: none;
                                                        }
                                                        .apply-btn.secondary {
                                                            background: #f8f9fa;
                                                            color: #333;
                                                            border: 2px solid #e9ecef;
                                                        }
                                                        .apply-btn.secondary:hover {
                                                            background: #e9ecef;
                                                            border-color: #dee2e6;
                                                        }
                                                        /* Job Summary */
                                                        .job-summary-card h4,
                                                        .share-job-card h4 {
                                                            color: #333;
                                                            font-weight: 600;
                                                            margin-bottom: 20px;
                                                        }
                                                        .summary-items {
                                                            display: flex;
                                                            flex-direction: column;
                                                            gap: 15px;
                                                        }
                                                        .summary-item {
                                                            display: flex;
                                                            justify-content: space-between;
                                                            align-items: center;
                                                            padding-bottom: 15px;
                                                            border-bottom: 1px solid #f0f0f0;
                                                        }
                                                        .summary-item:last-child {
                                                            border-bottom: none;
                                                            padding-bottom: 0;
                                                        }
                                                        .summary-label {
                                                            display: flex;
                                                            align-items: center;
                                                            gap: 8px;
                                                            color: #666;
                                                            font-size: 14px;
                                                        }
                                                        .summary-label i {
                                                            color: var(--theme-color, #007bff);
                                                        }
                                                        .summary-value {
                                                            color: #333;
                                                            font-weight: 500;
                                                            font-size: 14px;
                                                        }
                                                        /* Share Buttons */
                                                        .share-buttons {
                                                            display: flex;
                                                            gap: 10px;
                                                        }
                                                        .share-btn {
                                                            width: 45px;
                                                            height: 45px;
                                                            border-radius: 50%;
                                                            display: flex;
                                                            align-items: center;
                                                            justify-content: center;
                                                            text-decoration: none;
                                                            transition: all 0.3s ease;
                                                            border: none;
                                                            cursor: pointer;
                                                        }
                                                        .share-btn.linkedin {
                                                            background: #0077b5;
                                                            color: #fff;
                                                        }
                                                        .share-btn.twitter {
                                                            background: #1da1f2;
                                                            color: #fff;
                                                        }
                                                        .share-btn.facebook {
                                                            background: #4267b2;
                                                            color: #fff;
                                                        }
                                                        .share-btn.copy {
                                                            background: #6c757d;
                                                            color: #fff;
                                                        }
                                                        .share-btn:hover {
                                                            transform: translateY(-3px);
                                                            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                        }
                                                        /* Back Button */
                                                        .back-to-careers {
                                                            text-align: center;
                                                        }
                                                        .back-btn {
                                                            display: inline-flex;
                                                            align-items: center;
                                                            gap: 8px;
                                                            color: var(--theme-color, #007bff);
                                                            text-decoration: none;
                                                            font-weight: 500;
                                                            padding: 10px 20px;
                                                            border: 2px solid var(--theme-color, #007bff);
                                                            border-radius: 25px;
                                                            transition: all 0.3s ease;
                                                        }
                                                        .back-btn:hover {
                                                            background: var(--theme-color, #007bff);
                                                            color: #fff;
                                                            text-decoration: none;
                                                        }
                                                        .back-btn i {
                                                            margin-right: 8px;
                                                        }
                                                        /* Modal Styles */
                                                        .modal-content {
                                                            border-radius: 15px;
                                                            border: none;
                                                            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                        }
                                                        .modal-header {
                                                            border-bottom: 1px solid #f0f0f0;
                                                            padding: 20px 25px;
                                                        }
                                                        .modal-body {
                                                            padding: 25px;
                                                        }
                                                        .modal-footer {
                                                            border-top: 1px solid #f0f0f0;
                                                            padding: 20px 25px;
                                                        }
                                                        /* Responsive Design */
                                                        @media (max-width: 992px) {
                                                            .job-header-content {
                                                                flex-direction: column;
                                                            }
                                                            .salary-info {
                                                                text-align: left;
                                                                min-width: auto;
                                                                width: 100%;
                                                            }
                                                            .career-sidebar {
                                                                position: static;
                                                                margin-top: 30px;
                                                            }
                                                        }
                                                        @media (max-width: 768px) {
                                                            .job-title {
                                                                font-size: 24px;
                                                            }
                                                            .job-meta {
                                                                flex-direction: column;
                                                                gap: 10px;
                                                            }
                                                            .job-header-card,
                                                            .job-section,
                                                            .apply-card,
                                                            .job-summary-card,
                                                            .share-job-card {
                                                                padding: 20px;
                                                            }
                                                            .qualification-tags-container {
                                                                justify-content: center;
                                                            }
                                                        }
                                                        /* Hero Banner Slider */
                                                        .hero-banner-slider {
                                                            position: relative;
                                                        }
                                                        .hero-banner-slider .swiper-button-next,
                                                        .hero-banner-slider .swiper-button-prev {
                                                            width: 50px;
                                                            height: 50px;
                                                            background-color: rgba(255, 255, 255, 0.9);
                                                            border-radius: 50%;
                                                            color: var(--theme);
                                                        }
                                                        .hero-banner-slider .swiper-button-next:after,
                                                        .hero-banner-slider .swiper-button-prev:after {
                                                            font-size: 20px;
                                                        }
                                                        .hero-banner-slider .swiper-pagination {
                                                            bottom: 20px;
                                                        }
                                                        .hero-banner-slider .swiper-pagination-bullet {
                                                            width: 12px;
                                                            height: 12px;
                                                            background-color: rgba(255, 255, 255, 0.9);
                                                            opacity: 0.5;
                                                        }
                                                        .hero-banner-slider .swiper-pagination-bullet-active {
                                                            opacity: 1;
                                                            background-color: var(--theme);
                                                        }
                                                        .hero-section {
                                                            text-shadow: none !important;
                                                        }
                                                        .hero-1 {
                                                            position: relative;
                                                            z-index: 1;
                                                        }
                                                        .hero-1::before {
                                                            content: "";
                                                            position: absolute;
                                                            top: 0;
                                                            left: 0;
                                                            width: 100%;
                                                            height: 100%;
                                                            background-color: rgba(0, 0, 0, 0.1);
                                                            z-index: 0;
                                                        }
                                                        .hero-content {
                                                            position: relative;
                                                            z-index: 2;
                                                        }
                                                        color: #333;
                                                        font-weight: 500;
                                                        font-size: 14px;
                                                    }
                                                    /* Share Buttons */
                                                    .share-buttons {
                                                        display: flex;
                                                        gap: 10px;
                                                    }
                                                    .share-btn {
                                                        width: 45px;
                                                        height: 45px;
                                                        border-radius: 50%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        text-decoration: none;
                                                        transition: all 0.3s ease;
                                                        border: none;
                                                        cursor: pointer;
                                                    }
                                                    .share-btn.linkedin {
                                                        background: #0077b5;
                                                        color: #fff;
                                                    }
                                                    .share-btn.twitter {
                                                        background: #1da1f2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.facebook {
                                                        background: #4267b2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.copy {
                                                        background: #6c757d;
                                                        color: #fff;
                                                    }
                                                    .share-btn:hover {
                                                        transform: translateY(-3px);
                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                    }
                                                    /* Back Button */
                                                    .back-to-careers {
                                                        text-align: center;
                                                    }
                                                    .back-btn {
                                                        display: inline-flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: var(--theme-color, #007bff);
                                                        text-decoration: none;
                                                        font-weight: 500;
                                                        padding: 10px 20px;
                                                        border: 2px solid var(--theme-color, #007bff);
                                                        border-radius: 25px;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .back-btn:hover {
                                                        background: var(--theme-color, #007bff);
                                                        color: #fff;
                                                        text-decoration: none;
                                                    }
                                                    .back-btn i {
                                                        margin-right: 8px;
                                                    }
                                                    /* Modal Styles */
                                                    .modal-content {
                                                        border-radius: 15px;
                                                        border: none;
                                                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                    }
                                                    .modal-header {
                                                        border-bottom: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    .modal-body {
                                                        padding: 25px;
                                                    }
                                                    .modal-footer {
                                                        border-top: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    /* Responsive Design */
                                                    @media (max-width: 992px) {
                                                        .job-header-content {
                                                            flex-direction: column;
                                                        }
                                                        .salary-info {
                                                            text-align: left;
                                                            min-width: auto;
                                                            width: 100%;
                                                        }
                                                        .career-sidebar {
                                                            position: static;
                                                            margin-top: 30px;
                                                        }
                                                    }
                                                    @media (max-width: 768px) {
                                                        .job-title {
                                                            font-size: 24px;
                                                        }
                                                        .job-meta {
                                                            flex-direction: column;
                                                            gap: 10px;
                                                        }
                                                        .job-header-card,
                                                        .job-section,
                                                        .apply-card,
                                                        .job-summary-card,
                                                        .share-job-card {
                                                            padding: 20px;
                                                        }
                                                        .qualification-tags-container {
                                                            justify-content: center;
                                                        }
                                                    }
                                                    /* Hero Banner Slider */
                                                    .hero-banner-slider {
                                                        position: relative;
                                                    }
                                                    .hero-banner-slider .swiper-button-next,
                                                    .hero-banner-slider .swiper-button-prev {
                                                        width: 50px;
                                                        height: 50px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        border-radius: 50%;
                                                        color: var(--theme);
                                                    }
                                                    .hero-banner-slider .swiper-button-next:after,
                                                    .hero-banner-slider .swiper-button-prev:after {
                                                        font-size: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination {
                                                        bottom: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                        width: 12px;
                                                        height: 12px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        opacity: 0.5;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                        opacity: 1;
                                                        background-color: var(--theme);
                                                    }
                                                    .hero-section {
                                                        text-shadow: none !important;
                                                    }
                                                    .hero-1 {
                                                        position: relative;
                                                        z-index: 1;
                                                    }
                                                    .hero-1::before {
                                                        content: "";
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        background-color: rgba(0, 0, 0, 0.1);
                                                        z-index: 0;
                                                    }
                                                    .hero-content {
                                                        position: relative;
                                                        z-index: 2;
                                                    }
                                                    color: #fff;
                                                }
                                                .share-btn.copy {
                                                    background: #6c757d;
                                                    color: #fff;
                                                }
                                                .share-btn:hover {
                                                    transform: translateY(-3px);
                                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                }
                                                /* Back Button */
                                                .back-to-careers {
                                                    text-align: center;
                                                }
                                                .back-btn {
                                                    display: inline-flex;
                                                    align-items: center;
                                                    gap: 8px;
                                                    color: var(--theme-color, #007bff);
                                                    text-decoration: none;
                                                    font-weight: 500;
                                                    padding: 10px 20px;
                                                    border: 2px solid var(--theme-color, #007bff);
                                                    border-radius: 25px;
                                                    transition: all 0.3s ease;
                                                }
                                                .back-btn:hover {
                                                    background: var(--theme-color, #007bff);
                                                    color: #fff;
                                                    text-decoration: none;
                                                }
                                                .back-btn i {
                                                    margin-right: 8px;
                                                }
                                                /* Modal Styles */
                                                .modal-content {
                                                    border-radius: 15px;
                                                    border: none;
                                                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                }
                                                .modal-header {
                                                    border-bottom: 1px solid #f0f0f0;
                                                    padding: 20px 25px;
                                                    .modal-body {
                                                        padding: 25px;
                                                    }
                                                    .modal-footer {
                                                        border-top: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    /* Responsive Design */
                                                    @media (max-width: 992px) {
                                                        .job-header-content {
                                                            flex-direction: column;
                                                        }
                                                        .salary-info {
                                                            text-align: left;
                                                            min-width: auto;
                                                            width: 100%;
                                                        }
                                                        .career-sidebar {
                                                            position: static;
                                                            margin-top: 30px;
                                                        }
                                                    }
                                                    @media (max-width: 768px) {
                                                        .job-title {
                                                            font-size: 24px;
                                                        }
                                                        .job-meta {
                                                            flex-direction: column;
                                                            gap: 10px;
                                                        }
                                                        .job-header-card,
                                                        .job-section,
                                                        .apply-card,
                                                        .job-summary-card,
                                                        .share-job-card {
                                                            padding: 20px;
                                                        }
                                                        .qualification-tags-container {
                                                            justify-content: center;
                                                        }
                                                    }
                                                    /* Hero Banner Slider */
                                                    .hero-banner-slider {
                                                        position: relative;
                                                    }
                                                    .hero-banner-slider .swiper-button-next,
                                                    .hero-banner-slider .swiper-button-prev {
                                                        width: 50px;
                                                        height: 50px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        border-radius: 50%;
                                                        color: var(--theme);
                                                    }
                                                    .hero-banner-slider .swiper-button-next:after,
                                                    .hero-banner-slider .swiper-button-prev:after {
                                                        font-size: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination {
                                                        bottom: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                        width: 12px;
                                                        height: 12px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        opacity: 0.5;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                        opacity: 1;
                                                        background-color: var(--theme);
                                                    }
                                                    .hero-section {
                                                        text-shadow: none !important;
                                                    }
                                                    .hero-1 {
                                                        position: relative;
                                                        z-index: 1;
                                                    }
                                                    .hero-1::before {
                                                        content: "";
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        background-color: rgba(0, 0, 0, 0.1);
                                                        z-index: 0;
                                                    }
                                                    .hero-content {
                                                        position: relative;
                                                        z-index: 2;
                                                    }
                                                    transition: all 0.3s ease;
                                                    border: none;
                                                    cursor: pointer;
                                                }
                                                .apply-btn.primary {
                                                    background: var(--theme-color, #007bff);
                                                    color: #fff;
                                                }
                                                ly-btn.primary:hover {
                                                    background: #0056b3;
                                                    transform: translateY(-2px);
                                                    color: #fff;
                                                    text-decoration: none;
                                                }
                                                .apply-btn.secondary {
                                                    background: #f8f9fa;
                                                    color: #333;
                                                    border: 2px solid #e9ecef;
                                                }
                                                .apply-btn.secondary:hover {
                                                    background: #e9ecef;
                                                    border-color: #dee2e6;
                                                }
                                                /* Job Summary */
                                                .job-summary-card h4,
                                                .share-job-card h4 {
                                                    color: #333;
                                                    font-weight: 600;
                                                    margin-bottom: 20px;
                                                }
                                                .summary-items {
                                                    display: flex;
                                                    flex-direction: column;
                                                    gap: 15px;
                                                }
                                                .summary-item {
                                                    display: flex;
                                                    justify-content: space-between;
                                                    align-items: center;
                                                    padding-bottom: 15px;
                                                    border-bottom: 1px solid #f0f0f0;
                                                }
                                                .summary-item:last-child {
                                                    border-bottom: none;
                                                    padding-bottom: 0;
                                                }
                                                .summary-label {
                                                    display: flex;
                                                    align-items: center;
                                                    gap: 8px;
                                                    color: #666;
                                                    font-size: 14px;
                                                }
                                                .summary-label i {
                                                    color: var(--theme-color, #007bff);
                                                    .summary-value {
                                                        color: #333;
                                                        font-weight: 500;
                                                        font-size: 14px;
                                                    }
                                                    /* Share Buttons */
                                                    .share-buttons {
                                                        display: flex;
                                                        gap: 10px;
                                                    }
                                                    .share-btn {
                                                        width: 45px;
                                                        height: 45px;
                                                        border-radius: 50%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        text-decoration: none;
                                                        transition: all 0.3s ease;
                                                        border: none;
                                                        cursor: pointer;
                                                    }
                                                    .share-btn.linkedin {
                                                        background: #0077b5;
                                                        color: #fff;
                                                    }
                                                    .share-btn.twitter {
                                                        background: #1da1f2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.facebook {
                                                        background: #4267b2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.copy {
                                                        background: #6c757d;
                                                        color: #fff;
                                                    }
                                                    .share-btn:hover {
                                                        transform: translateY(-3px);
                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                    }
                                                    /* Back Button */
                                                    .back-to-careers {
                                                        text-align: center;
                                                    }
                                                    .back-btn {
                                                        display: inline-flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: var(--theme-color, #007bff);
                                                        text-decoration: none;
                                                        font-weight: 500;
                                                        padding: 10px 20px;
                                                        border: 2px solid var(--theme-color, #007bff);
                                                        border-radius: 25px;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .back-btn:hover {
                                                        background: var(--theme-color, #007bff);
                                                        color: #fff;
                                                        text-decoration: none;
                                                    }
                                                    .back-btn i {
                                                        margin-right: 8px;
                                                    }
                                                    /* Modal Styles */
                                                    .modal-content {
                                                        border-radius: 15px;
                                                        border: none;
                                                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                    }
                                                    .modal-header {
                                                        border-bottom: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                        .modal-body {
                                                            padding: 25px;
                                                        }
                                                        .modal-footer {
                                                            border-top: 1px solid #f0f0f0;
                                                            padding: 20px 25px;
                                                        }
                                                        /* Responsive Design */
                                                        @media (max-width: 992px) {
                                                            .job-header-content {
                                                                flex-direction: column;
                                                            }
                                                            .salary-info {
                                                                text-align: left;
                                                                min-width: auto;
                                                                width: 100%;
                                                            }
                                                            .career-sidebar {
                                                                position: static;
                                                                margin-top: 30px;
                                                            }
                                                        }
                                                        @media (max-width: 768px) {
                                                            .job-title {
                                                                font-size: 24px;
                                                            }
                                                            .job-meta {
                                                                flex-direction: column;
                                                                gap: 10px;
                                                            }
                                                            .job-header-card,
                                                            .job-section,
                                                            .apply-card,
                                                            .job-summary-card,
                                                            .share-job-card {
                                                                padding: 20px;
                                                            }
                                                            .qualification-tags-container {
                                                                justify-content: center;
                                                            }
                                                        }
                                                        /* Hero Banner Slider */
                                                        .hero-banner-slider {
                                                            position: relative;
                                                        }
                                                        .hero-banner-slider .swiper-button-next,
                                                        .hero-banner-slider .swiper-button-prev {
                                                            width: 50px;
                                                            height: 50px;
                                                            background-color: rgba(255, 255, 255, 0.9);
                                                            border-radius: 50%;
                                                            color: var(--theme);
                                                        }
                                                        .hero-banner-slider .swiper-button-next:after,
                                                        .hero-banner-slider .swiper-button-prev:after {
                                                            font-size: 20px;
                                                        }
                                                        .hero-banner-slider .swiper-pagination {
                                                            bottom: 20px;
                                                        }
                                                        .hero-banner-slider .swiper-pagination-bullet {
                                                            width: 12px;
                                                            height: 12px;
                                                            background-color: rgba(255, 255, 255, 0.9);
                                                            opacity: 0.5;
                                                        }
                                                        .hero-banner-slider .swiper-pagination-bullet-active {
                                                            opacity: 1;
                                                            background-color: var(--theme);
                                                        }
                                                        .hero-section {
                                                            text-shadow: none !important;
                                                        }
                                                        .hero-1 {
                                                            position: relative;
                                                            z-index: 1;
                                                        }
                                                        .hero-1::before {
                                                            content: "";
                                                            position: absolute;
                                                            top: 0;
                                                            left: 0;
                                                            width: 100%;
                                                            height: 100%;
                                                            background-color: rgba(0, 0, 0, 0.1);
                                                            z-index: 0;
                                                        }
                                                        .hero-content {
                                                            position: relative;
                                                            z-index: 2;
                                                        }
                                                        width: 36px;
                                                        height: 36px;
                                                        line-height: 36px;
                                                        text-align: center;
                                                        border: 1px solid var(--header);
                                                        background-color: transparent;
                                                        color: var(--theme);
                                                        border-radius: 50%;
                                                    }
                                                    .team-details-wrapper .team-details-items .details-content .social-icon a:hover {
                                                        background-color: var(--white);
                                                        color: var(--theme);
                                                        border-color: transparent;
                                                    }
                                                    .team-details-wrapper p {
                                                        max-width: 550px;
                                                        color: var(--header);
                                                        font-weight: 500;
                                                    }
                                                    .team-details-wrapper .details-counter-area {
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 40px;
                                                    }
                                                    @media (max-width: 575px) {
                                                        .team-details-wrapper .details-counter-area {
                                                            gap: 15px;
                                                        }
                                                    }
                                                    .team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
                                                        padding-right: 20px;
                                                        border-right: 1px solid var(--text);
                                                    }
                                                    .team-details-wrapper .details-counter-area .counter-items h2 {
                                                        font-size: 24px;
                                                        color: var(--header);
                                                        font-weight: 700;
                                                    }
                                                    .team-details-wrapper .details-counter-area .counter-items p {
                                                        font-size: 24px;
                                                        font-weight: 700;
                                                        color: var(--header);
                                                        max-width: initial;
                                                    }
                                                    .testimonial-card-items {
                                                        margin-top: 30px;
                                                        background-color: var(--white);
                                                        box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
                                                        padding: 40px 40px;
                                                        margin-bottom: 40px;
                                                    }
                                                    .testimonial-card-items .client-info {
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 20px;
                                                    }
                                                    .testimonial-card-items .client-info .client-img {
                                                        width: 70px;
                                                        height: 70px;
                                                        position: relative;
                                                        border-radius: 50%;
                                                        -webkit-border-radius: 50%;
                                                        -moz-border-radius: 50%;
                                                        -ms-border-radius: 50%;
                                                        -o-border-radius: 50%;
                                                    }
                                                    .testimonial-card-items .client-info .client-img .icon {
                                                        position: absolute;
                                                        left: -25px;
                                                        bottom: -35px;
                                                    }
                                                    .testimonial-card-items .client-info .client-img .icon .shape {
                                                        transition: all 0.1s;
                                                        -webkit-transition: all 0.1s;
                                                        -moz-transition: all 0.1s;
                                                        -ms-transition: all 0.1s;
                                                        -o-transition: all 0.1s;
                                                    }
                                                    .testimonial-card-items .client-info .content h3 {
                                                        color: #121315;
                                                        font-family: "Inter", sans-serif;
                                                        font-size: 20px;
                                                        font-style: normal;
                                                        font-weight: 600;
                                                        line-height: 28px;
                                                        letter-spacing: -0.4px;
                                                    }
                                                    .testimonial-card-items p {
                                                        font-weight: 500;
                                                        margin-bottom: 30px;
                                                    }
                                                    .testimonial-card-items .star {
                                                        color: var(--theme);
                                                    }
                                                    .testimonial-section {
                                                        margin-bottom: -40px;
                                                    }
                                                    @media (min-width: 1400px) {
                                                        .testimonial-slider {
                                                            margin-right: -170px;
                                                        }
                                                    }
                                                    .testimonial-slider .swiper-slide {
                                                        transition: all 3s;
                                                        -webkit-transition: all 3s;
                                                        -moz-transition: all 3s;
                                                        -ms-transition: all 3s;
                                                        -o-transition: all 3s;
                                                    }
                                                    .testimonial-slider .swiper-slide-active .testimonial-card-items {
                                                        border-top: 3px solid var(--theme);
                                                        background-color: var(--white);
                                                        box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                                                        transition: all 1s;
                                                        -webkit-transition: all 1s;
                                                        -moz-transition: all 1s;
                                                        -ms-transition: all 1s;
                                                        -o-transition: all 1s;
                                                    }
                                                    .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                                                        filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                                                    }
                                                    /*# sourceMappingURL=main.css.map */
                                                    .owl-carousel .owl-nav button.owl-next,
                                                    .owl-carousel .owl-nav button.owl-prev {
                                                        display: inline-block;
                                                        padding: 6px 0 !important;
                                                        color: #fff;
                                                    }
                                                    .owl-carousel .owl-nav button.owl-next {
                                                        padding-right: 14px !important;
                                                        padding-left: 7px !important;
                                                        border-radius: 0 40px 40px 0;
                                                    }
                                                    .owl-carousel .owl-nav button.owl-prev {
                                                        padding-right: 7px !important;
                                                        padding-left: 14px !important;
                                                        border-radius: 40px 0 0 40px;
                                                    }
                                                    .page-section {
                                                        position: relative;
                                                        /* padding-top: 80px; */
                                                        padding-bottom: 80px;
                                                        overflow: hidden;
                                                    }
                                                    .page-hero {
                                                        position: relative;
                                                        height: 550px;
                                                        z-index: 10;
                                                    }
                                                    .page-banner {
                                                        position: relative;
                                                        height: 300px;
                                                        z-index: 10;
                                                    }
                                                    .page-hero.overlay-dark::before,
                                                    .page-banner.overlay-dark::before {
                                                        content: "";
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        background: rgba(52, 53, 49, 0.7);
                                                        z-index: 1;
                                                    }
                                                    .page-banner .breadcrumb-item,
                                                    .page-banner .breadcrumb-item a {
                                                        font-size: 14px;
                                                    }
                                                    .hero-section,
                                                    .banner-section {
                                                        position: relative;
                                                        display: -ms-flexbox;
                                                        display: flex;
                                                        -ms-flex-align: center;
                                                        align-items: center;
                                                        -ms-flex-pack: center;
                                                        justify-content: center;
                                                        height: 100%;
                                                        color: #ffffff;
                                                        z-index: 10;
                                                    }
                                                    .hero-section .subhead {
                                                        text-transform: uppercase;
                                                        letter-spacing: 4px;
                                                        color: #db7f7f;
                                                        /* Changed from #000000 to white for better visibility */
                                                        font-weight: 500;
                                                    }
                                                    .hero-section h1 {
                                                        margin-bottom: 32px;
                                                        color: #ffffff;
                                                        /* Changed from var(--theme) to white */
                                                        font-weight: 500;
                                                    }
                                                    /* Additional styling for better text visibility */
                                                    .hero-section {
                                                        text-shadow: none !important;
                                                    }
                                                    .input-navbar {
                                                        width: auto;
                                                        max-width: 280px;
                                                    }
                                                    .input-navbar .input-group-text {
                                                        background-color: #fff;
                                                    }
                                                    .input-navbar .form-control {
                                                        height: calc(1.5em+1rem+2px);
                                                    }
                                                    .services-section {
                                                        background: #f8f9fa;
                                                        padding: 80px 0;
                                                    }
                                                    .service-card-item {
                                                        background: #fff;
                                                        border-radius: 15px;
                                                        overflow: hidden;
                                                        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                                        transition: all 0.3s ease;
                                                        height: 100%;
                                                        border: 2px solid #f0f0f0;
                                                        position: relative;
                                                    }
                                                    .service-card-item:hover {
                                                        transform: translateY(-8px);
                                                        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                                        border: 2px solid #ff9800;
                                                    }
                                                    .service-image {
                                                        position: relative;
                                                        height: 200px;
                                                        overflow: hidden;
                                                        margin: 15px;
                                                        border-radius: 10px;
                                                    }
                                                    .service-image img {
                                                        width: 100%;
                                                        height: 100%;
                                                        object-fit: cover;
                                                        transition: transform 0.3s ease;
                                                        border-radius: 10px;
                                                    }
                                                    .service-card-item:hover .service-image img {
                                                        transform: scale(1.05);
                                                    }
                                                    .service-content {
                                                        padding: 0 25px 25px 25px;
                                                        text-align: center;
                                                    }
                                                    .service-content h3 {
                                                        font-size: 20px;
                                                        font-weight: 600;
                                                        margin-bottom: 20px;
                                                        color: var(--theme);
                                                        line-height: 1.4;
                                                    }
                                                    .service-button .contact-btn {
                                                        background: #fff;
                                                        color: #666;
                                                        padding: 10px 25px;
                                                        border: 2px solid #e0e0e0;
                                                        border-radius: 25px;
                                                        text-decoration: none;
                                                        font-weight: 500;
                                                        font-size: 14px;
                                                        transition: all 0.3s ease;
                                                        display: inline-block;
                                                    }
                                                    .service-button .contact-btn:hover {
                                                        background: linear-gradient(45deg, #ff9800, #ffc107);
                                                        color: #fff;
                                                        border-color: #ff9800;
                                                        transform: translateY(-2px);
                                                        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                                    }
                                                    .section-title h2 {
                                                        font-size: 36px;
                                                        font-weight: 700;
                                                        color: #333;
                                                        margin-bottom: 20px;
                                                    }
                                                    /* Mobile Responsive */
                                                    @media (max-width: 768px) {
                                                        .services-section {
                                                            padding: 60px 0;
                                                        }
                                                        .service-content {
                                                            padding: 0 20px 20px 20px;
                                                        }
                                                        .service-content h3 {
                                                            font-size: 18px;
                                                            margin-bottom: 15px;
                                                        }
                                                        .service-image {
                                                            height: 180px;
                                                            margin: 12px;
                                                        }
                                                        .section-title h2 {
                                                            font-size: 28px;
                                                        }
                                                    }
                                                    @media (max-width: 576px) {
                                                        .service-image {
                                                            height: 160px;
                                                            margin: 10px;
                                                        }
                                                        .service-content h3 {
                                                            font-size: 16px;
                                                        }
                                                        .service-button .contact-btn {
                                                            padding: 8px 20px;
                                                            font-size: 13px;
                                                        }
                                                    }
                                                    /* Career Card Hover Effects */
                                                    .career-card {
                                                        background: #fff;
                                                        transition: all 0.4s ease-in-out;
                                                        overflow: hidden;
                                                        position: relative;
                                                        cursor: pointer;
                                                    }
                                                    /* Content overlay */
                                                    .career-card>div {
                                                        position: relative;
                                                        z-index: 2;
                                                        transition: all 0.4s ease-in-out;
                                                    }
                                                    /* Description hover effect */
                                                    .career-description {
                                                        transition: all 0.4s ease-in-out;
                                                    }
                                                    /* Salary badge hover effect */
                                                    .salary-badge {
                                                        transition: all 0.4s ease-in-out;
                                                        position: relative;
                                                        z-index: 3;
                                                    }
                                                    /* Qualification tags hover effect */
                                                    .qualification-tag {
                                                        background-color: #0B71B9;
                                                        color: #fff;
                                                    }
                                                    .career-email {
                                                        transition: all 0.4s ease-in-out;
                                                    }
                                                    /* Resume required hover effect */
                                                    .resume-required {
                                                        transition: all 0.4s ease-in-out;
                                                    }
                                                    /* Button hover effect */
                                                    .career-btn {
                                                        transition: all 0.4s ease-in-out;
                                                        position: relative;
                                                        z-index: 3;
                                                    }
                                                    /* Add subtle animation to the card */
                                                    @keyframes cardFloat {
                                                        0%,
                                                        100% {
                                                            transform: translateY(0px);
                                                        }
                                                        50% {
                                                            transform: translateY(-3px);
                                                        }
                                                    }
                                                    /* Smooth transitions for all child elements */
                                                    .career-card * {
                                                        transition: all 0.4s ease-in-out;
                                                    }
                                                    .testimonial-card {
                                                        background-color: #ffffff;
                                                        border-radius: 15px;
                                                        padding: 30px;
                                                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                        margin: 20px 10px;
                                                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                        border: 1px solid rgba(0, 0, 0, 0.05);
                                                        height: 100%;
                                                    }
                                                    .testimonial-card:hover {
                                                        transform: translateY(-5px);
                                                        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                                    }
                                                    .testimonial-header {
                                                        display: flex;
                                                        align-items: center;
                                                        margin-bottom: 20px;
                                                    }
                                                    .client-avatar {
                                                        width: 70px;
                                                        height: 70px;
                                                        flex-shrink: 0;
                                                        margin-right: 20px;
                                                        border-radius: 50%;
                                                        border: 3px solid #E74D96;
                                                        padding: 3px;
                                                        background-color: white;
                                                        overflow: hidden;
                                                    }
                                                    .avatar-img {
                                                        width: 100%;
                                                        height: 100%;
                                                        border-radius: 50%;
                                                        object-fit: cover;
                                                    }
                                                    .client-details h3 {
                                                        font-size: 18px;
                                                        font-weight: 700;
                                                        margin-bottom: 5px;
                                                        color: #2c3e50;
                                                    }
                                                    .client-service {
                                                        font-size: 14px;
                                                        color: #7f8c8d;
                                                        display: block;
                                                        margin-bottom: 8px;
                                                    }
                                                    .rating {
                                                        color: #ffa502;
                                                        font-size: 14px;
                                                    }
                                                    .testimonial-body {
                                                        position: relative;
                                                        margin-bottom: 25px;
                                                    }
                                                    .quote-icon {
                                                        color: rgba(255, 71, 87, 0.1);
                                                        font-size: 40px;
                                                        position: absolute;
                                                        top: -15px;
                                                        left: -10px;
                                                    }
                                                    .testimonial-text {
                                                        position: relative;
                                                        font-size: 16px;
                                                        line-height: 1.7;
                                                        color: #5a6c7d;
                                                        font-style: italic;
                                                        padding-left: 10px;
                                                    }
                                                    .testimonial-results {
                                                        background-color: #f8f9fa;
                                                        border-radius: 12px;
                                                        padding: 20px;
                                                        margin-top: 20px;
                                                    }
                                                    .results-title {
                                                        font-size: 16px;
                                                        font-weight: 600;
                                                        color: #34495e;
                                                        margin-bottom: 15px;
                                                        text-align: center;
                                                    }
                                                    .results-gallery {
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        gap: 15px;
                                                    }
                                                    .single-result {
                                                        justify-content: center;
                                                    }
                                                    .result-image {
                                                        position: relative;
                                                        width: 140px;
                                                        height: 140px;
                                                        border-radius: 10px;
                                                        overflow: hidden;
                                                        border: 3px solid white;
                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                    }
                                                    .result-divider {
                                                        color: #E74D96;
                                                        font-size: 20px;
                                                    }
                                                    .image-label {
                                                        position: absolute;
                                                        top: 10px;
                                                        left: 10px;
                                                        background-color: #E74D96;
                                                        color: white;
                                                        font-size: 12px;
                                                        font-weight: 600;
                                                        padding: 4px 10px;
                                                        border-radius: 20px;
                                                        z-index: 1;
                                                    }
                                                    .result-img {
                                                        width: 100%;
                                                        height: 100%;
                                                        object-fit: cover;
                                                        transition: transform 0.5s ease;
                                                    }
                                                    .result-image:hover .result-img {
                                                        transform: scale(1.1);
                                                    }
                                                    /* Responsive styles */
                                                    @media (max-width: 767px) {
                                                        .testimonial-header {
                                                            flex-direction: column;
                                                            text-align: center;
                                                        }
                                                        .client-avatar {
                                                            margin-right: 0;
                                                            margin-bottom: 15px;
                                                        }
                                                        .results-gallery {
                                                            flex-direction: column;
                                                        }
                                                        .result-divider {
                                                            transform: rotate(90deg);
                                                            margin: 10px 0;
                                                        }
                                                    }
                                                    .blog-detail-card {
                                                        border: 1px solid #e9ecef;
                                                    }
                                                    .blog-title {
                                                        line-height: 1.4;
                                                    }
                                                    .meta-item {
                                                        font-size: 0.9rem;
                                                        color: #6c757d;
                                                    }
                                                    .meta-divider {
                                                        color: #dee2e6;
                                                        font-weight: bold;
                                                    }
                                                    .content-text img {
                                                        max-width: 100%;
                                                        height: auto;
                                                        border-radius: 8px;
                                                        margin: 15px 0;
                                                    }
                                                    .content-text p {
                                                        margin-bottom: 1rem;
                                                    }
                                                    .tag-item {
                                                        font-size: 0.85rem;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .tag-item:hover {
                                                        background-color: #007bff !important;
                                                        color: white !important;
                                                    }
                                                    .share-buttons .btn {
                                                        border-radius: 50%;
                                                        width: 35px;
                                                        height: 35px;
                                                        display: inline-flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .share-buttons .btn:hover {
                                                        transform: translateY(-2px);
                                                    }
                                                    .placeholder-image {
                                                        border: 2px dashed #dee2e6;
                                                    }
                                                    @media (max-width: 768px) {
                                                        .d-flex.justify-content-between {
                                                            flex-direction: column;
                                                            gap: 1rem;
                                                        }
                                                        .share-buttons {
                                                            align-self: center;
                                                        }
                                                    }
                                                    .service-content * {
                                                        text-align: left !important;
                                                    }
                                                    .service-content p,
                                                    .service-content div,
                                                    .service-content li {
                                                        text-align: left !important;
                                                    }
                                                    .service-points li {
                                                        text-align: left !important;
                                                    }
                                                    .career-details-section {
                                                        background: #f8f9fa;
                                                        min-height: 80vh;
                                                    }
                                                    /* Job Header Card */
                                                    .job-header-card {
                                                        background: #fff;
                                                        border-radius: 15px;
                                                        padding: 30px;
                                                        margin-bottom: 30px;
                                                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                        border: 1px solid #f0f0f0;
                                                    }
                                                    .job-header-content {
                                                        display: flex;
                                                        justify-content: space-between;
                                                        align-items: flex-start;
                                                        gap: 20px;
                                                    }
                                                    .job-title {
                                                        font-size: 32px;
                                                        font-weight: 700;
                                                        color: #333;
                                                        margin-bottom: 15px;
                                                        line-height: 1.2;
                                                    }
                                                    .job-meta {
                                                        display: flex;
                                                        flex-wrap: wrap;
                                                        gap: 20px;
                                                    }
                                                    .job-meta span {
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: #666;
                                                        font-size: 14px;
                                                    }
                                                    .job-meta i {
                                                        color: var(--theme-color, #007bff);
                                                    }
                                                    .salary-info {
                                                        text-align: right;
                                                        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                        color: #fff;
                                                        padding: 20px;
                                                        border-radius: 12px;
                                                        min-width: 180px;
                                                    }
                                                    .salary-label {
                                                        display: block;
                                                        font-size: 14px;
                                                        opacity: 0.9;
                                                        margin-bottom: 5px;
                                                    }
                                                    .salary-amount {
                                                        display: block;
                                                        font-size: 19px;
                                                        font-weight: 700;
                                                    }
                                                    /* Job Sections */
                                                    .job-section {
                                                        background: #fff;
                                                        border-radius: 15px;
                                                        padding: 30px;
                                                        margin-bottom: 30px;
                                                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                        border: 1px solid #f0f0f0;
                                                    }
                                                    .section-title {
                                                        font-size: 20px;
                                                        font-weight: 600;
                                                        color: #333;
                                                        margin-bottom: 20px;
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 10px;
                                                    }
                                                    .section-title i {
                                                        color: var(--theme-color, #007bff);
                                                    }
                                                    .job-description,
                                                    .job-requirements,
                                                    .job-responsibilities,
                                                    .job-benefits {
                                                        color: #666;
                                                        line-height: 1.8;
                                                    }
                                                    .job-description ul,
                                                    .job-requirements ul,
                                                    .job-responsibilities ul,
                                                    .job-benefits ul {
                                                        padding-left: 20px;
                                                    }
                                                    .job-description li,
                                                    .job-requirements li,
                                                    .job-responsibilities li,
                                                    .job-benefits li {
                                                        margin-bottom: 8px;
                                                    }
                                                    /* Qualification Tags */
                                                    .qualification-tags-container {
                                                        display: flex;
                                                        flex-wrap: wrap;
                                                        gap: 12px;
                                                    }
                                                    .qualification-tag {
                                                        background: #0B71B9;
                                                        color: #fff;
                                                        padding: 8px 16px;
                                                        border-radius: 20px;
                                                        font-size: 13px;
                                                        font-weight: 500;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .qualification-tag:hover {
                                                        transform: translateY(-2px);
                                                        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                    }
                                                    /* Sidebar */
                                                    .career-sidebar {
                                                        position: sticky;
                                                        top: 20px;
                                                    }
                                                    .apply-card,
                                                    .job-summary-card,
                                                    .share-job-card {
                                                        background: #fff;
                                                        border-radius: 15px;
                                                        padding: 25px;
                                                        margin-bottom: 25px;
                                                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                        border: 1px solid #f0f0f0;
                                                    }
                                                    .apply-header h4 {
                                                        color: #333;
                                                        font-weight: 600;
                                                        margin-bottom: 8px;
                                                    }
                                                    .apply-header p {
                                                        color: #666;
                                                        margin-bottom: 20px;
                                                        font-size: 14px;
                                                    }
                                                    .contact-info {
                                                        margin-bottom: 20px;
                                                    }
                                                    .contact-item {
                                                        display: flex;
                                                        align-items: flex-start;
                                                        gap: 12px;
                                                        padding: 15px;
                                                        background: #f8f9fa;
                                                        border-radius: 10px;
                                                    }
                                                    .contact-item i {
                                                        color: var(--theme-color, #007bff);
                                                        font-size: 18px;
                                                        margin-top: 2px;
                                                    }
                                                    .contact-label {
                                                        display: block;
                                                        font-size: 12px;
                                                        color: #666;
                                                        margin-bottom: 4px;
                                                    }
                                                    .contact-value {
                                                        color: #333;
                                                        font-weight: 500;
                                                        text-decoration: none;
                                                    }
                                                    .contact-value:hover {
                                                        color: var(--theme-color, #007bff);
                                                    }
                                                    .resume-note {
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        background: #fff3cd;
                                                        color: #856404;
                                                        padding: 10px 15px;
                                                        border-radius: 8px;
                                                        margin-bottom: 20px;
                                                        font-size: 13px;
                                                    }
                                                    .apply-actions {
                                                        display: flex;
                                                        flex-direction: column;
                                                        gap: 10px;
                                                    }
                                                    .apply-btn {
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        gap: 8px;
                                                        padding: 12px 20px;
                                                        border-radius: 8px;
                                                        text-decoration: none;
                                                        font-weight: 500;
                                                        transition: all 0.3s ease;
                                                        border: none;
                                                        cursor: pointer;
                                                    }
                                                    .apply-btn.primary {
                                                        background: var(--theme-color, #007bff);
                                                        color: #fff;
                                                    }
                                                    .apply-btn.primary:hover {
                                                        background: #0056b3;
                                                        transform: translateY(-2px);
                                                        color: #fff;
                                                        text-decoration: none;
                                                    }
                                                    .apply-btn.secondary {
                                                        background: #f8f9fa;
                                                        color: #333;
                                                        border: 2px solid #e9ecef;
                                                    }
                                                    .apply-btn.secondary:hover {
                                                        background: #e9ecef;
                                                        border-color: #dee2e6;
                                                    }
                                                    /* Job Summary */
                                                    .job-summary-card h4,
                                                    .share-job-card h4 {
                                                        color: #333;
                                                        font-weight: 600;
                                                        margin-bottom: 20px;
                                                    }
                                                    .summary-items {
                                                        display: flex;
                                                        flex-direction: column;
                                                        gap: 15px;
                                                    }
                                                    .summary-item {
                                                        display: flex;
                                                        justify-content: space-between;
                                                        align-items: center;
                                                        padding-bottom: 15px;
                                                        border-bottom: 1px solid #f0f0f0;
                                                    }
                                                    .summary-item:last-child {
                                                        border-bottom: none;
                                                        padding-bottom: 0;
                                                    }
                                                    .summary-label {
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: #666;
                                                        font-size: 14px;
                                                    }
                                                    .summary-label i {
                                                        color: var(--theme-color, #007bff);
                                                    }
                                                    .summary-value {
                                                        color: #333;
                                                        font-weight: 500;
                                                        font-size: 14px;
                                                    }
                                                    /* Share Buttons */
                                                    .share-buttons {
                                                        display: flex;
                                                        gap: 10px;
                                                    }
                                                    .share-btn {
                                                        width: 45px;
                                                        height: 45px;
                                                        border-radius: 50%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        text-decoration: none;
                                                        transition: all 0.3s ease;
                                                        border: none;
                                                        cursor: pointer;
                                                    }
                                                    .share-btn.linkedin {
                                                        background: #0077b5;
                                                        color: #fff;
                                                    }
                                                    .share-btn.twitter {
                                                        background: #1da1f2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.facebook {
                                                        background: #4267b2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.copy {
                                                        background: #6c757d;
                                                        color: #fff;
                                                    }
                                                    .share-btn:hover {
                                                        transform: translateY(-3px);
                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                    }
                                                    /* Back Button */
                                                    .back-to-careers {
                                                        text-align: center;
                                                    }
                                                    .back-btn {
                                                        display: inline-flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: var(--theme-color, #007bff);
                                                        text-decoration: none;
                                                        font-weight: 500;
                                                        padding: 10px 20px;
                                                        border: 2px solid var(--theme-color, #007bff);
                                                        border-radius: 25px;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .back-btn:hover {
                                                        background: var(--theme-color, #007bff);
                                                        color: #fff;
                                                        text-decoration: none;
                                                    }
                                                    .back-btn i {
                                                        margin-right: 8px;
                                                    }
                                                    /* Modal Styles */
                                                    .modal-content {
                                                        border-radius: 15px;
                                                        border: none;
                                                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                    }
                                                    .modal-header {
                                                        border-bottom: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    .modal-body {
                                                        padding: 25px;
                                                    }
                                                    .modal-footer {
                                                        border-top: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    /* Responsive Design */
                                                    @media (max-width: 992px) {
                                                        .job-header-content {
                                                            flex-direction: column;
                                                        }
                                                        .salary-info {
                                                            text-align: left;
                                                            min-width: auto;
                                                            width: 100%;
                                                        }
                                                        .career-sidebar {
                                                            position: static;
                                                            margin-top: 30px;
                                                        }
                                                    }
                                                    @media (max-width: 768px) {
                                                        .job-title {
                                                            font-size: 24px;
                                                        }
                                                        .job-meta {
                                                            flex-direction: column;
                                                            gap: 10px;
                                                        }
                                                        .job-header-card,
                                                        .job-section,
                                                        .apply-card,
                                                        .job-summary-card,
                                                        .share-job-card {
                                                            padding: 20px;
                                                        }
                                                        .qualification-tags-container {
                                                            justify-content: center;
                                                        }
                                                    }
                                                    /* Hero Banner Slider */
                                                    .hero-banner-slider {
                                                        position: relative;
                                                    }
                                                    .hero-banner-slider .swiper-button-next,
                                                    .hero-banner-slider .swiper-button-prev {
                                                        width: 50px;
                                                        height: 50px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        border-radius: 50%;
                                                        color: var(--theme);
                                                    }
                                                    .hero-banner-slider .swiper-button-next:after,
                                                    .hero-banner-slider .swiper-button-prev:after {
                                                        font-size: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination {
                                                        bottom: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                        width: 12px;
                                                        height: 12px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        opacity: 0.5;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                        opacity: 1;
                                                        background-color: var(--theme);
                                                    }
                                                    .hero-section {
                                                        text-shadow: none !important;
                                                    }
                                                    .hero-1 {
                                                        position: relative;
                                                        z-index: 1;
                                                    }
                                                    .hero-1::before {
                                                        content: "";
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        background-color: rgba(0, 0, 0, 0.1);
                                                        z-index: 0;
                                                    }
                                                    .hero-content {
                                                        position: relative;
                                                        z-index: 2;
                                                    }
                                                    transition: all 0.3s ease;
                                                    border: none;
                                                    cursor: pointer;
                                                }
                                                .apply-btn.primary {
                                                    background: var(--theme-color, #007bff);
                                                    color: #fff;
                                                }
                                                ly-btn.primary:hover {
                                                    background: #0056b3;
                                                    transform: translateY(-2px);
                                                    color: #fff;
                                                    text-decoration: none;
                                                }
                                                .apply-btn.secondary {
                                                    background: #f8f9fa;
                                                    color: #333;
                                                    border: 2px solid #e9ecef;
                                                }
                                                .apply-btn.secondary:hover {
                                                    background: #e9ecef;
                                                    border-color: #dee2e6;
                                                }
                                                /* Job Summary */
                                                .job-summary-card h4,
                                                .share-job-card h4 {
                                                    color: #333;
                                                    font-weight: 600;
                                                    margin-bottom: 20px;
                                                }
                                                .summary-items {
                                                    display: flex;
                                                    flex-direction: column;
                                                    gap: 15px;
                                                }
                                                .summary-item {
                                                    display: flex;
                                                    justify-content: space-between;
                                                    align-items: center;
                                                    padding-bottom: 15px;
                                                    border-bottom: 1px solid #f0f0f0;
                                                }
                                                .summary-item:last-child {
                                                    border-bottom: none;
                                                    padding-bottom: 0;
                                                }
                                                .summary-label {
                                                    display: flex;
                                                    align-items: center;
                                                    gap: 8px;
                                                    color: #666;
                                                    font-size: 14px;
                                                }
                                                .summary-label i {
                                                    color: var(--theme-color, #007bff);
                                                    .summary-value {
                                                        color: #333;
                                                        font-weight: 500;
                                                        font-size: 14px;
                                                    }
                                                    /* Share Buttons */
                                                    .share-buttons {
                                                        display: flex;
                                                        gap: 10px;
                                                    }
                                                    .share-btn {
                                                        width: 45px;
                                                        height: 45px;
                                                        border-radius: 50%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        text-decoration: none;
                                                        transition: all 0.3s ease;
                                                        border: none;
                                                        cursor: pointer;
                                                    }
                                                    .share-btn.linkedin {
                                                        background: #0077b5;
                                                        color: #fff;
                                                    }
                                                    .share-btn.twitter {
                                                        background: #1da1f2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.facebook {
                                                        background: #4267b2;
                                                        color: #fff;
                                                    }
                                                    .share-btn.copy {
                                                        background: #6c757d;
                                                        color: #fff;
                                                    }
                                                    .share-btn:hover {
                                                        transform: translateY(-3px);
                                                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                    }
                                                    /* Back Button */
                                                    .back-to-careers {
                                                        text-align: center;
                                                    }
                                                    .back-btn {
                                                        display: inline-flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: var(--theme-color, #007bff);
                                                        text-decoration: none;
                                                        font-weight: 500;
                                                        padding: 10px 20px;
                                                        border: 2px solid var(--theme-color, #007bff);
                                                        border-radius: 25px;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .back-btn:hover {
                                                        background: var(--theme-color, #007bff);
                                                        color: #fff;
                                                        text-decoration: none;
                                                    }
                                                    .back-btn i {
                                                        margin-right: 8px;
                                                    }
                                                    /* Modal Styles */
                                                    .modal-content {
                                                        border-radius: 15px;
                                                        border: none;
                                                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                    }
                                                    .modal-header {
                                                        border-bottom: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    .modal-body {
                                                        padding: 25px;
                                                    }
                                                    .modal-footer {
                                                        border-top: 1px solid #f0f0f0;
                                                        padding: 20px 25px;
                                                    }
                                                    /* Responsive Design */
                                                    @media (max-width: 992px) {
                                                        .job-header-content {
                                                            flex-direction: column;
                                                        }
                                                        .salary-info {
                                                            text-align: left;
                                                            min-width: auto;
                                                            width: 100%;
                                                        }
                                                        .career-sidebar {
                                                            position: static;
                                                            margin-top: 30px;
                                                        }
                                                    }
                                                    @media (max-width: 768px) {
                                                        .job-title {
                                                            font-size: 24px;
                                                        }
                                                        .job-meta {
                                                            flex-direction: column;
                                                            gap: 10px;
                                                        }
                                                        .job-header-card,
                                                        .job-section,
                                                        .apply-card,
                                                        .job-summary-card,
                                                        .share-job-card {
                                                            padding: 20px;
                                                        }
                                                        .qualification-tags-container {
                                                            justify-content: center;
                                                        }
                                                    }
                                                    /* Hero Banner Slider */
                                                    .hero-banner-slider {
                                                        position: relative;
                                                    }
                                                    .hero-banner-slider .swiper-button-next,
                                                    .hero-banner-slider .swiper-button-prev {
                                                        width: 50px;
                                                        height: 50px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        border-radius: 50%;
                                                        color: var(--theme);
                                                    }
                                                    .hero-banner-slider .swiper-button-next:after,
                                                    .hero-banner-slider .swiper-button-prev:after {
                                                        font-size: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination {
                                                        bottom: 20px;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet {
                                                        width: 12px;
                                                        height: 12px;
                                                        background-color: rgba(255, 255, 255, 0.9);
                                                        opacity: 0.5;
                                                    }
                                                    .hero-banner-slider .swiper-pagination-bullet-active {
                                                        opacity: 1;
                                                        background-color: var(--theme);
                                                    }
                                                    .hero-section {
                                                        text-shadow: none !important;
                                                    }
                                                    .hero-1 {
                                                        position: relative;
                                                        z-index: 1;
                                                    }
                                                    .hero-1::before {
                                                        content: "";
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        background-color: rgba(0, 0, 0, 0.1);
                                                        z-index: 0;
                                                    }
                                                    .hero-content {
                                                        position: relative;
                                                        z-index: 2;
                                                    }
                                                    width: 36px;
                                                    height: 36px;
                                                    line-height: 36px;
                                                    text-align: center;
                                                    border: 1px solid var(--header);
                                                    background-color: transparent;
                                                    color: var(--theme);
                                                    border-radius: 50%;
                                                }
                                                .team-details-wrapper .team-details-items .details-content .social-icon a:hover {
                                                    background-color: var(--white);
                                                    color: var(--theme);
                                                    border-color: transparent;
                                                }
                                                .team-details-wrapper p {
                                                    max-width: 550px;
                                                    color: var(--header);
                                                    font-weight: 500;
                                                }
                                                .team-details-wrapper .details-counter-area {
                                                    display: flex;
                                                    align-items: center;
                                                    gap: 40px;
                                                }
                                                @media (max-width: 575px) {
                                                    .team-details-wrapper .details-counter-area {
                                                        gap: 15px;
                                                    }
                                                }
                                                .team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
                                                    padding-right: 20px;
                                                    border-right: 1px solid var(--text);
                                                }
                                                .team-details-wrapper .details-counter-area .counter-items h2 {
                                                    font-size: 24px;
                                                    color: var(--header);
                                                    font-weight: 700;
                                                }
                                                .team-details-wrapper .details-counter-area .counter-items p {
                                                    font-size: 24px;
                                                    font-weight: 700;
                                                    color: var(--header);
                                                    max-width: initial;
                                                }
                                                .testimonial-card-items {
                                                    margin-top: 30px;
                                                    background-color: var(--white);
                                                    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
                                                    padding: 40px 40px;
                                                    margin-bottom: 40px;
                                                }
                                                .testimonial-card-items .client-info {
                                                    display: flex;
                                                    align-items: center;
                                                    gap: 20px;
                                                }
                                                .testimonial-card-items .client-info .client-img {
                                                    width: 70px;
                                                    height: 70px;
                                                    position: relative;
                                                    border-radius: 50%;
                                                    -webkit-border-radius: 50%;
                                                    -moz-border-radius: 50%;
                                                    -ms-border-radius: 50%;
                                                    -o-border-radius: 50%;
                                                }
                                                .testimonial-card-items .client-info .client-img .icon {
                                                    position: absolute;
                                                    left: -25px;
                                                    bottom: -35px;
                                                }
                                                .testimonial-card-items .client-info .client-img .icon .shape {
                                                    transition: all 0.1s;
                                                    -webkit-transition: all 0.1s;
                                                    -moz-transition: all 0.1s;
                                                    -ms-transition: all 0.1s;
                                                    -o-transition: all 0.1s;
                                                }
                                                .testimonial-card-items .client-info .content h3 {
                                                    color: #121315;
                                                    font-family: "Inter", sans-serif;
                                                    font-size: 20px;
                                                    font-style: normal;
                                                    font-weight: 600;
                                                    line-height: 28px;
                                                    letter-spacing: -0.4px;
                                                }
                                                .testimonial-card-items p {
                                                    font-weight: 500;
                                                    margin-bottom: 30px;
                                                }
                                                .testimonial-card-items .star {
                                                    color: var(--theme);
                                                }
                                                .testimonial-section {
                                                    margin-bottom: -40px;
                                                }
                                                @media (min-width: 1400px) {
                                                    .testimonial-slider {
                                                        margin-right: -170px;
                                                    }
                                                }
                                                .testimonial-slider .swiper-slide {
                                                    transition: all 3s;
                                                    -webkit-transition: all 3s;
                                                    -moz-transition: all 3s;
                                                    -ms-transition: all 3s;
                                                    -o-transition: all 3s;
                                                }
                                                .testimonial-slider .swiper-slide-active .testimonial-card-items {
                                                    border-top: 3px solid var(--theme);
                                                    background-color: var(--white);
                                                    box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
                                                    transition: all 1s;
                                                    -webkit-transition: all 1s;
                                                    -moz-transition: all 1s;
                                                    -ms-transition: all 1s;
                                                    -o-transition: all 1s;
                                                }
                                                .testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
                                                    filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
                                                }
                                                /*# sourceMappingURL=main.css.map */
                                                .owl-carousel .owl-nav button.owl-next,
                                                .owl-carousel .owl-nav button.owl-prev {
                                                    display: inline-block;
                                                    padding: 6px 0 !important;
                                                    color: #fff;
                                                }
                                                .owl-carousel .owl-nav button.owl-next {
                                                    padding-right: 14px !important;
                                                    padding-left: 7px !important;
                                                    border-radius: 0 40px 40px 0;
                                                }
                                                .owl-carousel .owl-nav button.owl-prev {
                                                    padding-right: 7px !important;
                                                    padding-left: 14px !important;
                                                    border-radius: 40px 0 0 40px;
                                                }
                                                .page-section {
                                                    position: relative;
                                                    /* padding-top: 80px; */
                                                    padding-bottom: 80px;
                                                    overflow: hidden;
                                                }
                                                .page-hero {
                                                    position: relative;
                                                    height: 550px;
                                                    z-index: 10;
                                                }
                                                .page-banner {
                                                    position: relative;
                                                    height: 300px;
                                                    z-index: 10;
                                                }
                                                .page-hero.overlay-dark::before,
                                                .page-banner.overlay-dark::before {
                                                    content: "";
                                                    position: absolute;
                                                    top: 0;
                                                    left: 0;
                                                    width: 100%;
                                                    height: 100%;
                                                    background: rgba(52, 53, 49, 0.7);
                                                    z-index: 1;
                                                }
                                                .page-banner .breadcrumb-item,
                                                .page-banner .breadcrumb-item a {
                                                    font-size: 14px;
                                                }
                                                .hero-section,
                                                .banner-section {
                                                    position: relative;
                                                    display: -ms-flexbox;
                                                    display: flex;
                                                    -ms-flex-align: center;
                                                    align-items: center;
                                                    -ms-flex-pack: center;
                                                    justify-content: center;
                                                    height: 100%;
                                                    color: #ffffff;
                                                    z-index: 10;
                                                }
                                                .hero-section .subhead {
                                                    text-transform: uppercase;
                                                    letter-spacing: 4px;
                                                    color: #db7f7f;
                                                    /* Changed from #000000 to white for better visibility */
                                                    font-weight: 500;
                                                }
                                                .hero-section h1 {
                                                    margin-bottom: 32px;
                                                    color: #ffffff;
                                                    /* Changed from var(--theme) to white */
                                                    font-weight: 500;
                                                }
                                                /* Additional styling for better text visibility */
                                                .hero-section {
                                                    text-shadow: none !important;
                                                }
                                                .input-navbar {
                                                    width: auto;
                                                    max-width: 280px;
                                                }
                                                .input-navbar .input-group-text {
                                                    background-color: #fff;
                                                }
                                                .input-navbar .form-control {
                                                    height: calc(1.5em+1rem+2px);
                                                }
                                                .services-section {
                                                    background: #f8f9fa;
                                                    padding: 80px 0;
                                                }
                                                .service-card-item {
                                                    background: #fff;
                                                    border-radius: 15px;
                                                    overflow: hidden;
                                                    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                                                    transition: all 0.3s ease;
                                                    height: 100%;
                                                    border: 2px solid #f0f0f0;
                                                    position: relative;
                                                }
                                                .service-card-item:hover {
                                                    transform: translateY(-8px);
                                                    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                                                    border: 2px solid #ff9800;
                                                }
                                                .service-image {
                                                    position: relative;
                                                    height: 200px;
                                                    overflow: hidden;
                                                    margin: 15px;
                                                    border-radius: 10px;
                                                }
                                                .service-image img {
                                                    width: 100%;
                                                    height: 100%;
                                                    object-fit: cover;
                                                    transition: transform 0.3s ease;
                                                    border-radius: 10px;
                                                }
                                                .service-card-item:hover .service-image img {
                                                    transform: scale(1.05);
                                                }
                                                .service-content {
                                                    padding: 0 25px 25px 25px;
                                                    text-align: center;
                                                }
                                                .service-content h3 {
                                                    font-size: 20px;
                                                    font-weight: 600;
                                                    margin-bottom: 20px;
                                                    color: var(--theme);
                                                    line-height: 1.4;
                                                }
                                                .service-button .contact-btn {
                                                    background: #fff;
                                                    color: #666;
                                                    padding: 10px 25px;
                                                    border: 2px solid #e0e0e0;
                                                    border-radius: 25px;
                                                    text-decoration: none;
                                                    font-weight: 500;
                                                    font-size: 14px;
                                                    transition: all 0.3s ease;
                                                    display: inline-block;
                                                }
                                                .service-button .contact-btn:hover {
                                                    background: linear-gradient(45deg, #ff9800, #ffc107);
                                                    color: #fff;
                                                    border-color: #ff9800;
                                                    transform: translateY(-2px);
                                                    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
                                                }
                                                .section-title h2 {
                                                    font-size: 36px;
                                                    font-weight: 700;
                                                    color: #333;
                                                    margin-bottom: 20px;
                                                }
                                                obile Responsive */ @media (max-width: 768px) {
                                                    .services-section {
                                                        padding: 60px 0;
                                                    }
                                                    .service-content {
                                                        padding: 0 20px 20px 20px;
                                                    }
                                                    .service-content h3 {
                                                        font-size: 18px;
                                                        margin-bottom: 15px;
                                                    }
                                                    .service-image {
                                                        height: 180px;
                                                        margin: 12px;
                                                    }
                                                    .section-title h2 {
                                                        font-size: 28px;
                                                    }
                                                }
                                                @media (max-width: 576px) {
                                                    .service-image {
                                                        height: 160px;
                                                        margin: 10px;
                                                    }
                                                    .service-content h3 {
                                                        font-size: 16px;
                                                    }
                                                    .service-button .contact-btn {
                                                        padding: 8px 20px;
                                                        font-size: 13px;
                                                    }
                                                }
                                                areer Card Hover Effects */ .career-card {
                                                    background: #fff;
                                                    transition: all 0.4s ease-in-out;
                                                    overflow: hidden;
                                                    position: relative;
                                                    cursor: pointer;
                                                }
                                                /* Content overlay */
                                                .career-card>div {
                                                    position: relative;
                                                    z-index: 2;
                                                    transition: all 0.4s ease-in-out;
                                                }
                                                /* Description hover effect */
                                                .career-description {
                                                    transition: all 0.4s ease-in-out;
                                                }
                                                /* Salary badge hover effect */
                                                .salary-badge {
                                                    transition: all 0.4s ease-in-out;
                                                    position: relative;
                                                    z-index: 3;
                                                }
                                                /* Qualification tags hover effect */
                                                .qualification-tag {
                                                    background-color: #0B71B9;
                                                    color: #fff;
                                                }
                                                .career-email {
                                                    transition: all 0.4s ease-in-out;
                                                }
                                                /* Resume required hover effect */
                                                .resume-required {
                                                    transition: all 0.4s ease-in-out;
                                                }
                                                /* Button hover effect */
                                                .career-btn {
                                                    transition: all 0.4s ease-in-out;
                                                    position: relative;
                                                    z-index: 3;
                                                }
                                                /* Add subtle animation to the card */
                                                @keyframes cardFloat {
                                                    0%,
                                                    100% {
                                                        transform: translateY(0px);
                                                    }
                                                    50% {
                                                        transform: translateY(-3px);
                                                    }
                                                }
                                                /* Smooth transitions for all child elements */
                                                .career-card * {
                                                    transition: all 0.4s ease-in-out;
                                                }
                                                .testimonial-card {
                                                    background-color: #ffffff;
                                                    border-radius: 15px;
                                                    padding: 30px;
                                                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                    margin: 20px 10px;
                                                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                    border: 1px solid rgba(0, 0, 0, 0.05);
                                                    height: 100%;
                                                }
                                                .testimonial-card:hover {
                                                    transform: translateY(-5px);
                                                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                                                }
                                                .testimonial-header {
                                                    display: flex;
                                                    align-items: center;
                                                    margin-bottom: 20px;
                                                }
                                                .client-avatar {
                                                    width: 70px;
                                                    height: 70px;
                                                    flex-shrink: 0;
                                                    margin-right: 20px;
                                                    border-radius: 50%;
                                                    border: 3px solid #E74D96;
                                                    padding: 3px;
                                                    background-color: white;
                                                    overflow: hidden;
                                                }
                                                .avatar-img {
                                                    width: 100%;
                                                    height: 100%;
                                                    border-radius: 50%;
                                                    object-fit: cover;
                                                }
                                                .client-details h3 {
                                                    font-size: 18px;
                                                    font-weight: 700;
                                                    margin-bottom: 5px;
                                                    color: #2c3e50;
                                                }
                                                .client-service {
                                                    font-size: 14px;
                                                    color: #7f8c8d;
                                                    display: block;
                                                    margin-bottom: 8px;
                                                }
                                                .rating {
                                                    color: #ffa502;
                                                    font-size: 14px;
                                                }
                                                .testimonial-body {
                                                    position: relative;
                                                    margin-bottom: 25px;
                                                }
                                                .quote-icon {
                                                    color: rgba(255, 71, 87, 0.1);
                                                    font-size: 40px;
                                                    position: absolute;
                                                    top: -15px;
                                                    left: -10px;
                                                }
                                                .testimonial-text {
                                                    position: relative;
                                                    font-size: 16px;
                                                    line-height: 1.7;
                                                    color: #5a6c7d;
                                                    font-style: italic;
                                                    padding-left: 10px;
                                                }
                                                .testimonial-results {
                                                    background-color: #f8f9fa;
                                                    border-radius: 12px;
                                                    padding: 20px;
                                                    margin-top: 20px;
                                                }
                                                .results-title {
                                                    font-size: 16px;
                                                    font-weight: 600;
                                                    color: #34495e;
                                                    margin-bottom: 15px;
                                                    text-align: center;
                                                }
                                                .results-gallery {
                                                    display: flex;
                                                    align-items: center;
                                                    justify-content: center;
                                                    gap: 15px;
                                                }
                                                .single-result {
                                                    justify-content: center;
                                                }
                                                .result-image {
                                                    position: relative;
                                                    width: 140px;
                                                    height: 140px;
                                                    border-radius: 10px;
                                                    overflow: hidden;
                                                    border: 3px solid white;
                                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                }
                                                .result-divider {
                                                    color: #E74D96;
                                                    font-size: 20px;
                                                }
                                                .image-label {
                                                    position: absolute;
                                                    top: 10px;
                                                    left: 10px;
                                                    background-color: #E74D96;
                                                    color: white;
                                                    font-size: 12px;
                                                    font-weight: 600;
                                                    padding: 4px 10px;
                                                    border-radius: 20px;
                                                    z-index: 1;
                                                }
                                                .result-img {
                                                    width: 100%;
                                                    height: 100%;
                                                    object-fit: cover;
                                                    transition: transform 0.5s ease;
                                                }
                                                .result-image:hover .result-img {
                                                    transform: scale(1.1);
                                                    /* Responsive styles */
                                                    @media (max-width: 767px) {
                                                        .testimonial-header {
                                                            flex-direction: column;
                                                            text-align: center;
                                                        }
                                                        .client-avatar {
                                                            margin-right: 0;
                                                            margin-bottom: 15px;
                                                        }
                                                        .results-gallery {
                                                            flex-direction: column;
                                                        }
                                                        .result-divider {
                                                            transform: rotate(90deg);
                                                            margin: 10px 0;
                                                        }
                                                    }
                                                    g-detail-card {
                                                        border: 1px solid #e9ecef;
                                                    }
                                                    .blog-title {
                                                        line-height: 1.4;
                                                    }
                                                    .meta-item {
                                                        font-size: 0.9rem;
                                                        color: #6c757d;
                                                    }
                                                    .meta-divider {
                                                        color: #dee2e6;
                                                        font-weight: bold;
                                                    }
                                                    .content-text img {
                                                        max-width: 100%;
                                                        height: auto;
                                                        border-radius: 8px;
                                                        margin: 15px 0;
                                                    }
                                                    .content-text p {
                                                        margin-bottom: 1rem;
                                                    }
                                                    .tag-item {
                                                        font-size: 0.85rem;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .tag-item:hover {
                                                        background-color: #007bff !important;
                                                        color: white !important;
                                                    }
                                                    .share-buttons .btn {
                                                        border-radius: 50%;
                                                        width: 35px;
                                                        height: 35px;
                                                        display: inline-flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        transition: all 0.3s ease;
                                                    }
                                                    .share-buttons .btn:hover {
                                                        transform: translateY(-2px);
                                                    }
                                                    .placeholder-image {
                                                        border: 2px dashed #dee2e6;
                                                    }
                                                    ia (max-width: 768px) {
                                                        .d-flex.justify-content-between {
                                                            flex-direction: column;
                                                            gap: 1rem;
                                                        }
                                                        .share-buttons {
                                                            align-self: center;
                                                        }
                                                    }
                                                    vice-content * {
                                                        text-align: left !important;
                                                    }
                                                    .service-content p,
                                                    .service-content div,
                                                    vice-content li {
                                                        text-align: left !important;
                                                    }
                                                    .service-points li {
                                                        text-align: left !important;
                                                    }
                                                    .career-details-section {
                                                        background: #f8f9fa;
                                                        min-height: 80vh;
                                                    }
                                                    /* Job Header Card */
                                                    .job-header-card {
                                                        background: #fff;
                                                        border-radius: 15px;
                                                        padding: 30px;
                                                        margin-bottom: 30px;
                                                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                        border: 1px solid #f0f0f0;
                                                    }
                                                    .job-header-content {
                                                        display: flex;
                                                        justify-content: space-between;
                                                        align-items: flex-start;
                                                        gap: 20px;
                                                    }
                                                    .job-title {
                                                        font-size: 32px;
                                                        font-weight: 700;
                                                        color: #333;
                                                        margin-bottom: 15px;
                                                        line-height: 1.2;
                                                    }
                                                    -meta {
                                                        display: flex;
                                                        flex-wrap: wrap;
                                                        gap: 20px;
                                                    }
                                                    -meta span {
                                                        display: flex;
                                                        align-items: center;
                                                        gap: 8px;
                                                        color: #666;
                                                        font-size: 14px;
                                                    }
                                                    -meta i {
                                                        color: var(--theme-color, #007bff);
                                                    }
                                                    .salary-info {
                                                        text-align: right;
                                                        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                                                        color: #fff;
                                                        padding: 20px;
                                                        border-radius: 12px;
                                                        min-width: 180px;
                                                    }
                                                    .salary-label {
                                                        display: block;
                                                        font-size: 14px;
                                                        opacity: 0.9;
                                                        margin-bottom: 5px;
                                                    }
                                                    .salary-amount {
                                                        display: block;
                                                        font-size: 19px;
                                                        font-weight: 700;
                                                    }
                                                    /* Job Sections */
                                                    .job-section {
                                                        background: #fff;
                                                        border-radius: 15px;
                                                        padding: 30px;
                                                        margin-bottom: 30px;
                                                        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                        er: 1px solid #f0f0f0;
                                                        .section-title {
                                                            font-size: 20px;
                                                            font-weight: 600;
                                                            color: #333;
                                                            margin-bottom: 20px;
                                                            display: flex;
                                                            align-items: center;
                                                            gap: 10px;
                                                        }
                                                        .section-title i {
                                                            color: var(--theme-color, #007bff);
                                                            .job-description,
                                                            .job-requirements,
                                                            .job-responsibilities,
                                                            .job-benefits {
                                                                color: #666;
                                                                line-height: 1.8;
                                                            }
                                                            .job-description ul,
                                                            .job-requirements ul,
                                                            .job-responsibilities ul,
                                                            .job-benefits ul {
                                                                padding-left: 20px;
                                                            }
                                                            .job-description li,
                                                            .job-requirements li,
                                                            .job-responsibilities li,
                                                            .job-benefits li {
                                                                margin-bottom: 8px;
                                                                /* Qualification Tags */
                                                                .qualification-tags-container {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    gap: 12px;
                                                                }
                                                                lification-tag {
                                                                    background: #0B71B9;
                                                                    color: #fff;
                                                                    padding: 8px 16px;
                                                                    border-radius: 20px;
                                                                    font-size: 13px;
                                                                    font-weight: 500;
                                                                    transition: all 0.3s ease;
                                                                    .qualification-tag:hover {
                                                                        transform: translateY(-2px);
                                                                        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
                                                                        /* Sidebar */
                                                                        .career-sidebar {
                                                                            position: sticky;
                                                                            top: 20px;
                                                                        }
                                                                        .apply-card,
                                                                        .job-summary-card,
                                                                        re-job-card {
                                                                            background: #fff;
                                                                            border-radius: 15px;
                                                                            padding: 25px;
                                                                            margin-bottom: 25px;
                                                                            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                                                                            border: 1px solid #f0f0f0;
                                                                        }
                                                                        .apply-header h4 {
                                                                            color: #333;
                                                                            font-weight: 600;
                                                                            margin-bottom: 8px;
                                                                        }
                                                                        .apply-header p {
                                                                            color: #666;
                                                                            margin-bottom: 20px;
                                                                            font-size: 14px;
                                                                        }
                                                                        .contact-info {
                                                                            margin-bottom: 20px;
                                                                            .contact-item {
                                                                                display: flex;
                                                                                align-items: flex-start;
                                                                                gap: 12px;
                                                                                padding: 15px;
                                                                                background: #f8f9fa;
                                                                                border-radius: 10px;
                                                                            }
                                                                            .contact-item i {
                                                                                color: var(--theme-color, #007bff);
                                                                                font-size: 18px;
                                                                                margin-top: 2px;
                                                                            }
                                                                            tact-label {
                                                                                display: block;
                                                                                font-size: 12px;
                                                                                color: #666;
                                                                                margin-bottom: 4px;
                                                                            }
                                                                            .contact-value {
                                                                                color: #333;
                                                                                font-weight: 500;
                                                                                text-decoration: none;
                                                                            }
                                                                            .contact-value:hover {
                                                                                color: var(--theme-color, #007bff);
                                                                            }
                                                                            .resume-note {
                                                                                display: flex;
                                                                                align-items: center;
                                                                                gap: 8px;
                                                                                background: #fff3cd;
                                                                                color: #856404;
                                                                                padding: 10px 15px;
                                                                                border-radius: 8px;
                                                                                margin-bottom: 20px;
                                                                                font-size: 13px;
                                                                            }
                                                                            ly-actions {
                                                                                display: flex;
                                                                                flex-direction: column;
                                                                                gap: 10px;
                                                                            }
                                                                            .apply-btn {
                                                                                display: flex;
                                                                                align-items: center;
                                                                                justify-content: center;
                                                                                gap: 8px;
                                                                                padding: 12px 20px;
                                                                                border-radius: 8px;
                                                                                text-decoration: none;
                                                                                font-weight: 500;
                                                                                transition: all 0.3s ease;
                                                                                border: none;
                                                                                cursor: pointer;
                                                                            }
                                                                            .apply-btn.primary {
                                                                                background: var(--theme-color, #007bff);
                                                                                color: #fff;
                                                                                .apply-btn.primary:hover {
                                                                                    background: #0056b3;
                                                                                    transform: translateY(-2px);
                                                                                    color: #fff;
                                                                                    text-decoration: none;
                                                                                }
                                                                                .apply-btn.secondary {
                                                                                    background: #f8f9fa;
                                                                                    color: #333;
                                                                                    border: 2px solid #e9ecef;
                                                                                }
                                                                                .apply-btn.secondary:hover {
                                                                                    background: #e9ecef;
                                                                                    border-color: #dee2e6;
                                                                                }
                                                                                /* Job Summary */
                                                                                .job-summary-card h4,
                                                                                .share-job-card h4 {
                                                                                    color: #333;
                                                                                    font-weight: 600;
                                                                                    margin-bottom: 20px;
                                                                                }
                                                                                .summary-items {
                                                                                    display: flex;
                                                                                    flex-direction: column;
                                                                                    gap: 15px;
                                                                                    .summary-item {
                                                                                        display: flex;
                                                                                        justify-content: space-between;
                                                                                        align-items: center;
                                                                                        padding-bottom: 15px;
                                                                                        border-bottom: 1px solid #f0f0f0;
                                                                                    }
                                                                                    .summary-item:last-child {
                                                                                        border-bottom: none;
                                                                                        padding-bottom: 0;
                                                                                    }
                                                                                    .summary-label {
                                                                                        display: flex;
                                                                                        align-items: center;
                                                                                        gap: 8px;
                                                                                        color: #666;
                                                                                        font-size: 14px;
                                                                                    }
                                                                                    .summary-label i {
                                                                                        color: var(--theme-color, #007bff);
                                                                                    }
                                                                                    .summary-value {
                                                                                        color: #333;
                                                                                        font-weight: 500;
                                                                                        font-size: 14px;
                                                                                    }
                                                                                    /* Share Buttons */
                                                                                    .share-buttons {
                                                                                        display: flex;
                                                                                        gap: 10px;
                                                                                    }
                                                                                    .share-btn {
                                                                                        width: 45px;
                                                                                        height: 45px;
                                                                                        border-radius: 50%;
                                                                                        display: flex;
                                                                                        align-items: center;
                                                                                        justify-content: center;
                                                                                        text-decoration: none;
                                                                                        transition: all 0.3s ease;
                                                                                        border: none;
                                                                                        cursor: pointer;
                                                                                    }
                                                                                    .share-btn.linkedin {
                                                                                        background: #0077b5;
                                                                                        color: #fff;
                                                                                        .share-btn.twitter {
                                                                                            background: #1da1f2;
                                                                                            color: #fff;
                                                                                        }
                                                                                        re-btn.facebook {
                                                                                            background: #4267b2;
                                                                                            color: #fff;
                                                                                        }
                                                                                        .share-btn.copy {
                                                                                            background: #6c757d;
                                                                                            color: #fff;
                                                                                        }
                                                                                        .share-btn:hover {
                                                                                            transform: translateY(-3px);
                                                                                            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                                                        }
                                                                                        /* Back Button */
                                                                                        .back-to-careers {
                                                                                            text-align: center;
                                                                                        }
                                                                                        .back-btn {
                                                                                            display: inline-flex;
                                                                                            align-items: center;
                                                                                            gap: 8px;
                                                                                            color: var(--theme-color, #007bff);
                                                                                            text-decoration: none;
                                                                                            font-weight: 500;
                                                                                            padding: 10px 20px;
                                                                                            border: 2px solid var(--theme-color, #007bff);
                                                                                            border-radius: 25px;
                                                                                            transition: all 0.3s ease;
                                                                                        }
                                                                                        .back-btn:hover {
                                                                                            background: var(--theme-color, #007bff);
                                                                                            color: #fff;
                                                                                            text-decoration: none;
                                                                                        }
                                                                                        .back-btn i {
                                                                                            margin-right: 8px;
                                                                                        }
                                                                                        odal Styles */ .modal-content {
                                                                                            border-radius: 15px;
                                                                                            border: none;
                                                                                            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                                                                                            .modal-header {
                                                                                                border-bottom: 1px solid #f0f0f0;
                                                                                                padding: 20px 25px;
                                                                                            }
                                                                                            .modal-body {
                                                                                                padding: 25px;
                                                                                            }
                                                                                            .modal-footer {
                                                                                                border-top: 1px solid #f0f0f0;
                                                                                                padding: 20px 25px;
                                                                                            }
                                                                                            /* Responsive Design */
                                                                                            @media (max-width: 992px) {
                                                                                                .job-header-content {
                                                                                                    flex-direction: column;
                                                                                                }
                                                                                                .salary-info {
                                                                                                    text-align: left;
                                                                                                    min-width: auto;
                                                                                                    width: 100%;
                                                                                                }
                                                                                                .career-sidebar {
                                                                                                    position: static;
                                                                                                    margin-top: 30px;
                                                                                                }
                                                                                            }
                                                                                            @media (max-width: 768px) {
                                                                                                .job-title {
                                                                                                    font-size: 24px;
                                                                                                }
                                                                                                .job-meta {
                                                                                                    flex-direction: column;
                                                                                                    gap: 10px;
                                                                                                }
                                                                                                .job-header-card,
                                                                                                .job-section,
                                                                                                .apply-card,
                                                                                                .job-summary-card,
                                                                                                .share-job-card {
                                                                                                    padding: 20px;
                                                                                                }
                                                                                                .qualification-tags-container {
                                                                                                    justify-content: center;
                                                                                                }
                                                                                            }
                                                                                            /* Hero Banner Slider */
                                                                                            .hero-banner-slider {
                                                                                                position: relative;
                                                                                            }
                                                                                            o-banner-slider .swiper-button-next,
                                                                                            .hero-banner-slider .swiper-button-prev {
                                                                                                width: 50px;
                                                                                                height: 50px;
                                                                                                background-color: rgba(255, 255, 255, 0.9);
                                                                                                border-radius: 50%;
                                                                                                color: var(--theme);
                                                                                            }
                                                                                            .hero-banner-slider .swiper-button-next:after,
                                                                                            o-banner-slider .swiper-button-prev:after {
                                                                                                font-size: 20px;
                                                                                            }
                                                                                            .hero-banner-slider .swiper-pagination {
                                                                                                bottom: 20px;
                                                                                            }
                                                                                            .hero-banner-slider .swiper-pagination-bullet {
                                                                                                width: 12px;
                                                                                                height: 12px;
                                                                                                background-color: rgba(255, 255, 255, 0.9);
                                                                                                opacity: 0.5;
                                                                                            }
                                                                                            .hero-banner-slider .swiper-pagination-bullet-active {
                                                                                                opacity: 1;
                                                                                                background-color: v ar(--theme);
                                                                                                .hero-section {
                                                                                                    text-shadow: none !important;
                                                                                                }
                                                                                                .hero-1 {
                                                                                                    position: relative;
                                                                                                    z-index: 1;
                                                                                                    .hero-1::before {
                                                                                                        content: "";
                                                                                                        position: absolute;
                                                                                                        top: 0;
                                                                                                        left: 0;
                                                                                                        width: 100%;
                                                                                                        height: 100%;
                                                                                                        background-color: rgba(0, 0, 0, 0.1);
                                                                                                        z-index: 0;
                                                                                                    }
                                                                                                    .hero-content {
                                                                                                        position: relative;
                                                                                                        z-index: 2;