/* Reset and Base Styles */
:root{
    --heading-bg: linear-gradient(90deg, #0022ea, #ff2400);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
    top: 0 !important;
}

html {
    scroll-behavior: smooth;
}

.ccpl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ccpl-pt-20 {
    padding-top: 5rem;
}



/* Gradients */
.ccpl-slide-overlay.ccpl-gradient-1 { background: linear-gradient(to right, rgb(69 130 225 / 74%), rgb(6 142 149 / 40%)); }
.ccpl-slide-overlay.ccpl-gradient-2 { background: linear-gradient(to right, rgb(0 52 139 / 74%), rgb(13 187 171 / 78%));}
.ccpl-slide-overlay.ccpl-gradient-3 { background: linear-gradient(to right, rgb(0 0 0 / 56%), rgb(45 84 34 / 74%));}

.ccpl-gradient-1 { background: linear-gradient(to right, #f97316, #ec4899); }
.ccpl-gradient-2 { background: linear-gradient(to right, #ec4899, #9333ea); }
.ccpl-gradient-3 { background: linear-gradient(to right, #9333ea, #f97316); }
.ccpl-gradient-red { background: linear-gradient(to right, #ef4444, #ec4899); }
.ccpl-gradient-blue { background: linear-gradient(to right, #3b82f6, #06b6d4); }
.ccpl-gradient-orange { background: linear-gradient(to right, #f97316, #fbbf24); }
.ccpl-gradient-purple { background: linear-gradient(to right, #9333ea, #ec4899); }
.ccpl-gradient-gray { background: linear-gradient(to right, #4b5563, #1f2937); }
.ccpl-gradient-green { background: linear-gradient(to right, #10b981, #34d399); }
.ccpl-gradient-red-orange { background: linear-gradient(to right, #ef4444, #f97316); }

.ccpl-gradient-text {
    background: linear-gradient(to right, #ea580c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccpl-gradient-header {
    /* background: linear-gradient(to right, #ea580c, #ec4899, #9333ea); */
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    padding: 5rem 0;
}

.ccpl-contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ccpl-contact-details li {
    display: flex;
    align-items: center;
}

.ccpl-contact-details li strong {width: 130px;}

.ccpl-contact-details li span {
    display: block;
    width: calc(100% - 130px);
}

/******************************************************************
    Hero Slider
******************************************************************/
.ccpl-hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border: none !important;
}

.ccpl-hero-slider .owl-nav .owl-prev {left: 32px;}
.ccpl-hero-slider .owl-nav .owl-next {right: 32px;}

.ccpl-hero-slider .owl-nav button i {
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.ccpl-hero-slider .owl-nav button i:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.owl-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 99;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    gap: 12px;
    -webkit-gap: 12px;
    -moz-gap: 12px;
}

.owl-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    transition: all 0.3s;
}

.owl-dot.active {
    width: 2rem;
    background: white !important;
}

.ccpl-slide {
    width: 100%;
    height: 100%;
    height: 80vh;
    overflow: hidden;
}

.ccpl-slide.active {
    opacity: 1;
}

.ccpl-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ccpl-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.ccpl-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
    max-width: 1000px;
    padding: 60px 20px;
}

.ccpl-slide-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.ccpl-slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ccpl-slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ccpl-slide-buttons .ccpl-btn, .ccpl-job-footer .ccpl-btn {padding: 0.55rem 1.5rem;}
.ccpl-slide-buttons .ccpl-btn-primary:hover {color: #ea580c;}

/* Buttons */
.ccpl-btn {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.ccpl-btn-primary {
    background: white;
    color: #ea580c;
}

.ccpl-btn-primary:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.ccpl-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.ccpl-btn-outline:hover {
    background: white;
    color: #ea580c;
    transform: scale(1.05);
}

.ccpl-btn-gradient {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ccpl-btn-gradient:hover {
    background: linear-gradient(to right, #ea580c, #db2777);
    transform: scale(1.05);
}

.ccpl-btn-gradient-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ccpl-btn-white {
    background: white;
    color: #ea580c;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ccpl-btn-white:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.ccpl-btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.ccpl-btn-full {
    width: max-content;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(to right, #22c55e, #0d9488);
    margin: 0 auto;
}
.ccpl-btn-full:hover {background: linear-gradient(to left, #22c55e, #0d9488);}

/* Job Alert Marquee */
.ccpl-job-alert-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, #55c6c7, #2de2ff);
    padding: 1rem 2rem;
    overflow: hidden;
}

.ccpl-job-ticker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    color: #1f2937;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    padding: .5rem 1rem;
}

.ccpl-job-ticker i {
    font-size: 20px;
    color: #ea580c;
    transition: all 0.3s ease;
}

.ccpl-job-ticker:hover i {
    transform: scale(1.05);
    color: #c24501;
}

.ccpl-job-alert-item {
    text-decoration: none;
    font-weight: 600;
    color: #ea580c;
    white-space: nowrap;
}

.ccpl-job-alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    padding: .5rem 1rem;
}

.ccpl-job-alert-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}
.ccpl-job-alert-item h4 i {
    font-size: 18px;
    color: #ea580c;
}

.ccpl-job-alert-item p {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
}

/* Outer swiper container */
.swiper-wrapper.ccpl-marquee-swiper {
  transition-timing-function: linear;
  align-items: center;
}

/* Individual slides */
.swiper-slide.ccpl-marquee-swiper {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sections */
.ccpl-section {
    padding: 5rem 0;
}

.ccpl-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ccpl-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.ccpl-section-title.ccpl-gradient-text {
    background: linear-gradient(to right, #ea580c, #db2777, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccpl-section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 48rem;
    margin: 0 auto;
}

.ccpl-jobs-page-header {padding-bottom: 7rem;}

.ccpl-page-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.ccpl-page-subtitle {
    font-size: 1.15rem !important;
    color: #fff;
    max-width: 48rem;
    /* margin: 0 auto; */
}

/* Grid Layouts */
.ccpl-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.ccpl-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ccpl-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Welcome Section */
.ccpl-welcome-section {
    background: linear-gradient(to bottom right, #fdf2f8, #fff7ed);
    padding: 5rem 0;
}

.ccpl-welcome-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.ccpl-welcome-text p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.ccpl-welcome-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.ccpl-welcome-block {
    display: flex;
    gap: 30px;
    margin-bottom: 5rem;
}

.ccpl-single-welcome-block {
    width: calc(33.33% - 20px);
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    padding: 2rem;
    transition: all .5s ease;
}

.ccpl-single-welcome-block:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
}

.ccpl-welcome-icon {
    font-size: 34px;
    color: #fff;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    margin-bottom: 1.5rem;
    transition: all .3s ease;
}
.ccpl-single-welcome-block:hover .ccpl-welcome-icon {transform: scale(1.1);}

.ccpl-single-welcome-block:nth-child(1) .ccpl-welcome-icon {background-image: linear-gradient(to right, #f97316, #ec4899);}
.ccpl-single-welcome-block:nth-child(2) .ccpl-welcome-icon {background-image: linear-gradient(to right, #ec4899, #a855f7);}
.ccpl-single-welcome-block:nth-child(3) .ccpl-welcome-icon {background-image: linear-gradient(to right, #a855f7, #f97316);}

.ccpl-single-welcome-block h4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    color: rgb(31 41 55);
    margin-bottom: 1rem;
}

.ccpl-single-welcome-block p {
    line-height: 1.625;
    color: rgb(75 85 99);
    margin-bottom: 0;
}

.ccpl-service-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
    background-image: linear-gradient(to right, #4f46e5, #9333ea);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 5rem;
}

.ccpl-service-counter-icon {
    font-size: 48px;
    color: #fff;
}

.ccpl-single-service-counter h3 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.ccpl-single-service-counter p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 0;
}

.ccpl-choose-services {
    background-color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    padding: 3rem;
}

.ccpl-choose-services h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.25rem;
    text-align: center;
    color: transparent;
    background-image: linear-gradient(to right, #ea580c, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 2rem;
}

.ccpl-choose-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
}

.ccpl-choose-services-list li {
    font-weight: 500;
    color: rgb(55 65 81);
    width: calc(33.33% - 20px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ccpl-choose-services-list li svg {
    color: rgb(34 197 94);
    width: 1.4rem;
    height: 1.4rem;
    transition: all 0.4s ease;
}
.ccpl-choose-services-list li:hover svg {transform: scale(1.08);}

.ccpl-text-content {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.ccpl-image-container {
    background: linear-gradient(to bottom right, #fef3c7, #fce7f3);
    border-radius: 1.5rem;
    padding: 2rem;
}

.ccpl-rounded-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Job Cards */
.ccpl-jobs-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.ccpl-latest-job-card {width: calc(50% - 15px);}

.ccpl-job-card-block {
    background-image: linear-gradient(to bottom right, #fff, #fff7ed);
    border: 2px solid rgb(243 244 246);
    border-radius: 1rem;
    padding: 2rem;
    transition: all .5s ease;
}

.ccpl-job-card-block:hover {
    border-color: rgb(254 215 170);
    transform: translateY(-.5rem);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
}

.ccpl-job-header-block {
    display: flex;
    gap: 30px;
}

.ccpl-job-header-info {
    width: calc(100% - 86px);
    margin-bottom: 1.5rem;
}

.ccpl-job-title-block {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2rem;
    color: rgb(31 41 55);
    margin-bottom: 0;
    transition: all .3s ease;
}
.ccpl-job-card-block:hover .ccpl-job-title-block {color: rgb(234 88 12);}

.ccpl-job-card-block .ccpl-company-name {
    font-size: 16px;
    margin-bottom: 0.65rem;
}

.ccpl-job-time-location {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;    
}

.ccpl-time-location {
    font-size: .875rem;
    line-height: 1.25rem;
    color: rgb(75 85 99);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ccpl-job-header-icon {
    width: 9rem;
    min-height: 4rem;
    max-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    /* width: 56px;
    height: 56px; */
    border-radius: .5rem;
    background-image: linear-gradient(to bottom right, #f97316, #ec4899);
    transition: all .3s ease;
    overflow: hidden;
}
.ccpl-job-card-block:hover .ccpl-job-header-icon {transform: scale(1.1);}

.ccpl-job-header-icon a {
    display: flex;
    width: 100%;
    height: 100%;
}

.ccpl-job-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ccpl-job-description-block {
    line-height: 1.625;
    color: rgb(55 65 81);
    margin-bottom: 1.5rem;
}

.ccpl-job-requirements-hd {
    font-size: 15px;
    font-weight: 600;
    color: rgb(31 41 55);
    margin-bottom: .75rem;
}

.ccpl-job-requirements {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ccpl-job-requirements .ccpl-requirement-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .875rem;
    line-height: 1.25rem;
    color: rgb(75 85 99);
}

.ccpl-job-requirements .ccpl-requirement-item i {
    font-size: 14px;
    color: rgb(249 115 22);
}

.ccpl-job-apply-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    border: none;
    color: rgb(255 255 255);
    border-radius: .5rem;
    background-image: linear-gradient(to right, #4f46e5, #9333ea);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: all .3s ease;
}

.ccpl-job-apply-btn:hover {
    background-image: linear-gradient(to right, #423bbd, #7427bd);
    transform: scale(1.05);
}
#applicationBtn:hover {color: #fff;}

.ccpl-job-openings {
    padding: 5rem 0;
}

.ccpl-job-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.ccpl-job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ccpl-job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.ccpl-job-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.ccpl-job-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.ccpl-job-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.ccpl-job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ccpl-meta-item {
    font-size: 0.875rem;
    color: #6b7280;
}

.ccpl-text-center {
    text-align: center;
}

.ccpl-mt-8 {
    margin-top: 2rem;
}

.ccpl-mt-12 {
    margin-top: 3rem;
}

.ccpl-mb-8 {
    margin-bottom: 2rem;
}

.ccpl-mb-12 {
    margin-bottom: 3rem;
}

/* Jobs Featured Banner */
.ccpl-jobs-banner {
    background: linear-gradient(to bottom right, #ecf8ff, #ffffff);
    padding: 5rem 0;
    border-top: 1px solid #d0eeff;
}

.ccpl-jobs-banner .ccpl-section-title {
    background: linear-gradient(to right, #46a4e5, #277edb, #ea3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: text;
}

.ccpl-job-feature-banner {
    background: #fff;
    padding: 5px;
    border-radius: 5px 5px 10px 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    margin: 20px 15px;
}

.ccpl-job-feature-banner form {
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
}

.ccpl-jobs-banner .ccpl-job-apply-btn {
    text-decoration: none;
    display: inline-block;
    width: max-content;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #204de2;
    color: #204de2;
    background: transparent;
    background-image: none;
    box-shadow: none;
    padding: 8px 30px;
    cursor: pointer;
    transition: all .3s ease;
}

.ccpl-job-feature-banner > a {
    display: block;
    height: 245px;
    overflow: hidden;
}

.ccpl-job-feature-banner > a img {
    min-height: 245px;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}
.ccpl-job-feature-banner > a img:hover {transform: translateY(calc(-100% + 245px));}

/* Testimonials */
.ccpl-testimonials-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.ccpl-testimonials-block.owl-carousel .owl-stage {padding: 30px 0;}
.ccpl-testimonials-block.owl-carousel .ccpl-testimonial-card-block {width: 100%;}

.ccpl-testimonial-card-block {
    width: calc(50% - 15px);
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all .5s ease;
}

.ccpl-testimonial-card-block:hover {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    transform: translateY(-.5rem);
}

.ccpl-testimonial-header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 1.5rem;
}

.ccpl-testimonial-header-block i {
    font-size: 45px;
    color: rgb(249 115 22);
}

.ccpl-testimonial-rating {
    display: flex;
    gap: 4px;
}

.ccpl-testimonial-rating i {
    font-size: 18px;
    color: rgb(250 204 21);
}

.ccpl-testimonial-text-block {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.625;
    color: rgb(55 65 81);
    margin-bottom: 2rem;
}

.ccpl-testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ccpl-testimonial-author-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    color: #fff;
    background-image: linear-gradient(to bottom right, #f97316, #ec4899);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
.ccpl-testimonial-author-info {width: calc(100% - 71px);}

.ccpl-testimonial-author-info h4 {
    font-weight: 700;
    color: rgb(31 41 55);
}

.ccpl-testimonial-author-info h6 {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: rgb(75 85 99);
    margin-bottom: 0;
}

.ccpl-testimonial-author-info p {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    color: rgb(234 88 12);
    margin-bottom: 0;
}



.ccpl-testimonials {
    background: linear-gradient(to bottom right, #fff7ed, #faf5ff);
    padding: 5rem 0;
}

.ccpl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ccpl-testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ccpl-testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ccpl-testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.ccpl-testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Clients Section */
.ccpl-clients-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.ccpl-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.ccpl-demand-letters {grid-template-columns: repeat(3, 1fr);}

.ccpl-demand-letters .ccpl-client-card img {
    max-width: 100%;
    height: auto;
}

.ccpl-clients-grid .ccpl-client-logo {max-height: 70px;}
.ccpl-clients-grid .ccpl-client-logo img {max-height: 70px;}

.ccpl-clients-grid .ccpl-client-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ccpl-clients-grid .ccpl-client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.ccpl-client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.ccpl-client-card:hover .ccpl-client-name {color: #667eea;}

.ccpl-clients-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgb(75 85 99);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 40px;
}

.ccpl-clients-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}
.ccpl-clients-carousel .owl-carousel .owl-stage-outer {padding: 1rem 0;}

.ccpl-clients-carousel h5 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: rgb(75 85 99);
}

.ccpl-clients-carousel h5 span {
    font-weight: 700;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #ea580c, #db2777);
}

.ccpl-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.ccpl-client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ccpl-clients-grid .ccpl-client-logo {
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto 0.5rem;
    padding: 0;
}

.ccpl-clients-grid .ccpl-client-logo:hover {
    transform: translateY(0);
    box-shadow: none;
}

.ccpl-client-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Feature Cards */
.ccpl-feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.ccpl-card-orange { border: 2px solid #fed7aa; }
.ccpl-card-pink { border: 2px solid #fbcfe8; }
.ccpl-card-purple { border: 2px solid #e9d5ff; }

.ccpl-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ccpl-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.ccpl-feature-icon i {color: #fff;}

.ccpl-feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.ccpl-feature-text {
    color: #6b7280;
    line-height: 1.8;
}

/* Why Choose Us Section */
.ccpl-why-choose-section {
    background: linear-gradient(to bottom right, #f9fafb, #fef3c7, #fce7f3, #ede9fe);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 5rem;
}
.ccpl-choose-section {margin-top: 5rem;}

.ccpl-choose-section .ccpl-choose-services {
    background-image: linear-gradient(to bottom right, #f9fafb, #fff7ed);
    box-shadow: none;
}

.ccpl-choose-section .ccpl-choose-services h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}
.ccpl-choose-section .ccpl-choose-services-list li {width: calc(50% - 15px);}

.ccpl-grid-2-checkmarks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ccpl-check-item {
    color: #4b5563;
    font-weight: 500;
}

/* Stats Section */
.ccpl-stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.ccpl-about-stats-section {
    display: flex;
    gap: 30px;
    background-color: #fff;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 5rem;
}

.ccpl-about-stats-section .ccpl-stat-card {
    width: calc(33.33% - 20px);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: none;
}

.ccpl-about-stats-section .ccpl-stat-card:hover {
    transform: translateY(0);
    box-shadow: none;
}

.ccpl-stat-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.ccpl-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ccpl-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ccpl-about-stats-section .ccpl-stat-card:nth-child(1) .ccpl-stat-icon {color: rgb(249 115 22);}
.ccpl-about-stats-section .ccpl-stat-card:nth-child(2) .ccpl-stat-icon {color: rgb(236 72 153);}
.ccpl-about-stats-section .ccpl-stat-card:nth-child(3) .ccpl-stat-icon {color: rgb(168 85 247);}

.ccpl-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.ccpl-about-stats-section .ccpl-stat-number {
    font-size: 2rem;
    line-height: 100%;
}

.ccpl-stat-label {
    color: #6b7280;
}

/* Service Block */
.ccpl-service-block {
    display: flex;
    gap: 2rem;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    background: linear-gradient(to bottom right, #fff, #fff7ed);
}

.ccpl-service-content, .ccpl-service-features {width: calc(50% - 1rem);}

.ccpl-bg-light-orange {
    background: linear-gradient(to bottom right, #fff, #fef3c7);
}

.ccpl-bg-light-pink {
    background: linear-gradient(to bottom right, #fff, #fce7f3);
}

.ccpl-service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.ccpl-service-block:nth-child(1) .ccpl-service-icon,
.ccpl-service-block:nth-child(1) .ccpl-btn-gradient {background: linear-gradient(to right, #f97316, #ec4899);}
.ccpl-service-block:nth-child(2) .ccpl-service-icon,
.ccpl-service-block:nth-child(2) .ccpl-btn-gradient {background: linear-gradient(to right, #ec4899, #a855f7);}
.ccpl-service-block:nth-child(3) .ccpl-service-icon,
.ccpl-service-block:nth-child(3) .ccpl-btn-gradient {background: linear-gradient(to right, #a855f7, #f97316);}
.ccpl-service-block:nth-child(4) .ccpl-service-icon,
.ccpl-service-block:nth-child(4) .ccpl-btn-gradient {background: linear-gradient(to right, #f97316, #ec4899);}
.ccpl-service-block:nth-child(5) .ccpl-service-icon,
.ccpl-service-block:nth-child(5) .ccpl-btn-gradient {background: linear-gradient(to right, #ec4899, #a855f7);}

.ccpl-service-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.ccpl-service-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ccpl-features-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.ccpl-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 12px
}

.ccpl-features-list li {
    font-size: 16px;
    font-weight: 500;
    color: rgb(55 65 81);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ccpl-features-list li i {
    color: rgb(34 197 94);
    font-size: 24px;
    transition: all 0.4s ease;
}
.ccpl-service-content .ccpl-btn {padding: 0.9rem 2rem;}

/* CTA Section */
.ccpl-cta-section {
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-top: 5rem;
}

.ccpl-cta-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ccpl-service-cta-section .ccpl-cta-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ccpl-cta-text {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.ccpl-cta-section .ccpl-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
}

.ccpl-service-cta-section .ccpl-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Industries Page */
.ccpl-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.ccpl-industry-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.5s;
}

.ccpl-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.ccpl-industry-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s;
}

.ccpl-industry-card:nth-child(1) .ccpl-industry-icon, .ccpl-industry-card:nth-child(1) .ccpl-btn {background-image: linear-gradient(to right, #ef4444, #ec4899);}
.ccpl-industry-card:nth-child(2) .ccpl-industry-icon, .ccpl-industry-card:nth-child(2) .ccpl-btn {background-image: linear-gradient(to right, #3b82f6, #06b6d4);}
.ccpl-industry-card:nth-child(3) .ccpl-industry-icon, .ccpl-industry-card:nth-child(3) .ccpl-btn {background-image: linear-gradient(to right, #f97316, #eab308);}
.ccpl-industry-card:nth-child(4) .ccpl-industry-icon, .ccpl-industry-card:nth-child(4) .ccpl-btn {background-image: linear-gradient(to right, #a855f7, #ec4899);}
.ccpl-industry-card:nth-child(5) .ccpl-industry-icon, .ccpl-industry-card:nth-child(5) .ccpl-btn {background-image: linear-gradient(to right, #374151, #111827,);}
.ccpl-industry-card:nth-child(6) .ccpl-industry-icon, .ccpl-industry-card:nth-child(6) .ccpl-btn {background-image: linear-gradient(to right, #22c55e, #10b981);}
.ccpl-industry-card:nth-child(7) .ccpl-industry-icon, .ccpl-industry-card:nth-child(7) .ccpl-btn {background-image: linear-gradient(to right, #6366f1, #a855f7);}
.ccpl-industry-card:nth-child(8) .ccpl-industry-icon, .ccpl-industry-card:nth-child(8) .ccpl-btn {background-image: linear-gradient(to right, #ef4444, #f97316);}
.ccpl-industry-card:nth-child(9) .ccpl-industry-icon, .ccpl-industry-card:nth-child(9) .ccpl-btn {background-image: linear-gradient(to right, #4b5563, #1f2937);}
.ccpl-industry-card:nth-child(10) .ccpl-industry-icon, .ccpl-industry-card:nth-child(10) .ccpl-btn {background-image: linear-gradient(to right, #16a34a, #84cc16);}
.ccpl-industry-card:nth-child(11) .ccpl-industry-icon, .ccpl-industry-card:nth-child(11) .ccpl-btn {background-image: linear-gradient(to right, #10b981, #14b8a6);}
.ccpl-industry-card:nth-child(12) .ccpl-industry-icon, .ccpl-industry-card:nth-child(12) .ccpl-btn {background-image: linear-gradient(to right, #2563eb, #6366f1);}
.ccpl-industry-card:nth-child(13) .ccpl-industry-icon, .ccpl-industry-card:nth-child(13) .ccpl-btn {background-image: linear-gradient(to right, #ea580c, #ef4444);}

.ccpl-industry-card:hover .ccpl-industry-icon {
    transform: scale(1.1);
}

.ccpl-industry-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.ccpl-industry-card:hover .ccpl-industry-title {
    background: linear-gradient(to right, #ea580c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccpl-industry-description {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ccpl-industry-card .ccpl-btn {
    opacity: 0;
    transition: opacity 0.3s;
}

.ccpl-industry-card:hover .ccpl-btn {
    opacity: 1;
}

/* Expertise Section */
.ccpl-expertise-section {
    background: linear-gradient(to bottom right, #fef3c7, #fce7f3, #ede9fe);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 5rem;
}

.ccpl-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ccpl-expertise-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.ccpl-expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Jobs Page */
.ccpl-search-box {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    margin-top: -5rem;
    /* position: relative;
    z-index: 10; */
}
.ccpl-job-search-box {transform: translateY(-40%);}

.ccpl-search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}
.ccpl-search-form-group {position: relative;}

.ccpl-search-input, .ccpl-search-select {
    width: 100%;
    padding: 1rem;
    padding-left: 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.ccpl-search-form-group i {
    font-size: 20px;
    color: rgb(156 163 175);
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translate(-50%, -50%);
}

.ccpl-search-input:focus, .ccpl-search-select:focus {
    outline: none;
    border-color: #ea580c;
}
.ccpl-search-results {margin-bottom: 2rem;}

.ccpl-results-count {
    color: #6b7280;
    font-size: 1.125rem;
}

.ccpl-results-count strong {
    color: #ea580c;
}

.ccpl-jobs-list, .ccpl-jobs-list > strong {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ccpl-job-detail-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border: 2px solid #f3f4f6;
    transition: all 0.5s;
}

.ccpl-job-detail-card .ccpl-error {
    font-size: 27px;
    font-weight: 600;
    color: #ea580c;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.ccpl-job-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    border-color: #fed7aa;
}
.ccpl-latest-vacancies .ccpl-job-detail-card {border-color: #fed7aa;}

.ccpl-latest-vacancies .ccpl-job-detail-card .ccpl-job-detail-title {
    font-size: 1.75rem;
    color: #ea580c;
    margin-bottom: 0.75rem;
}

.ccpl-latest-vacancies .ccpl-company-name {
    font-size: 19px;
    font-weight: 700;
}

.ccpl-latest-vacancies .ccpl-job-detail-card:hover {
    transform: translateY(0);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}

.ccpl-latest-vacancies {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.ccpl-job-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.ccpl-job-detail-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0;
    transition: color 0.3s;
}

.ccpl-job-detail-card:hover .ccpl-job-detail-title {
    color: #ea580c;
}

.ccpl-company-name {
    font-size: 17px;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 1rem;
}

.ccpl-job-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.ccpl-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(75 85 99);
}

.ccpl-latest-vacancies .ccpl-badge {font-size: 1rem;}
.ccpl-job-badges .ccpl-badge:nth-child(1) {background-color: rgb(255 247 237);}
.ccpl-job-badges .ccpl-badge:nth-child(1) i {color: rgb(249 115 22);}

.ccpl-job-badges .ccpl-badge:nth-child(2) {background-color: rgb(253 242 248);}
.ccpl-job-badges .ccpl-badge:nth-child(2) i {color: rgb(236 72 153);}

.ccpl-job-badges .ccpl-badge:nth-child(3) {
    background-color: rgb(250 245 255);
    color: rgb(147 51 234);
}

.ccpl-badge-orange { background: #fed7aa; color: #9a3412; }
.ccpl-badge-pink { background: #fbcfe8; color: #9f1239; }
.ccpl-badge-purple { background: #e9d5ff; color: #6b21a8; }

.ccpl-job-icon {
    width: 10rem;
    min-height: 4rem;
    max-height: 6rem;
    height: 100%;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    color: white;
    background-image: linear-gradient(to bottom right, #f97316, #ec4899);
    overflow: hidden;
}

.ccpl-latest-vacancies .ccpl-job-icon {
    width: 15rem;
    min-height: 6rem;
    max-height: 8rem;
}
.ccpl-latest-vacancies .owl-carousel .owl-stage {padding: 20px 0;}

.ccpl-job-icon a {
    display: flex;
    width: 100%;
    height: 100%;
}

.ccpl-job-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ccpl-job-detail-description {
    font-size: 15px;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 18px;
}

.ccpl-job-detail-description h1,
.ccpl-job-detail-description h2,
.ccpl-job-detail-description h3,
.ccpl-job-detail-description h4,
.ccpl-job-detail-description h5,
.ccpl-job-detail-description h6 {
    font-weight: bold;
    color: #000;
}

.ccpl-job-detail-description h1 {font-size: 22px;}
.ccpl-job-detail-description h2 {font-size: 21px;}
.ccpl-job-detail-description h3 {font-size: 20px;}
.ccpl-job-detail-description h4 {font-size: 18px;}
.ccpl-job-detail-description h5 {font-size: 16px;}
.ccpl-job-detail-description h6 {font-size: 15px;}

.ccpl-job-detail-description p {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.ccpl-latest-vacancies .ccpl-job-detail-description p {
    font-size: 15px;
    margin-bottom: 1rem;
}
.ccpl-job-detail-description ul, .ccpl-job-detail-description ol {padding-left: 30px;}

.ccpl-job-requirements {margin-bottom: 1.5rem;}
.ccpl-latest-vacancies .ccpl-job-requirements {margin-bottom: 1rem;}

.ccpl-requirements-title {
    font-weight: bold;
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.ccpl-latest-vacancies .ccpl-requirements-title {font-size: 1.075rem;}

.ccpl-requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    list-style: none;
}

.ccpl-requirements-list li {
    font-size: 15px;
    color: #4c5363;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}
.ccpl-job-requirements .ccpl-requirements-list li {line-height: 100%;}

.ccpl-job-requirements .ccpl-requirements-list li i {
    font-size: 15px;
    color: rgb(249 115 22);
}

.ccpl-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 1rem;
}
.ccpl-latest-vacancies .ccpl-job-footer {padding-top: 1rem;}

.ccpl-job-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.ccpl-latest-vacancies .ccpl-job-date {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.ccpl-moreBtn_desc {
    font-weight: 500;
    color: #0022ea;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
.ccpl-moreBtn_desc:hover {color: #ea1b00;}

.ccpl-overlay-desc {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: transparent;
    visibility: hidden;
    transition: all 0.4s ease;
}
.ccpl-full_desc_block.active .ccpl-overlay-desc {
    background-color: rgba(54, 60, 72, 0.5);
    visibility: visible;
}

.ccpl-full-description-block {
    position: fixed;
    top: 53%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 75vh;
    background: #fff;
    border-radius: 14px;
    padding: 25px 0;
    box-shadow: 0 0 30px rgba(54, 60, 72, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ccpl-full_desc_block.active .ccpl-full-description-block {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.ccpl-close_btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 9;
    width: 32px;
    height: 32px;
}

.ccpl-close_btn i {
    font-size: 18px;
    color: #838383;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #838383;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccpl-close_btn i:hover {
    color: #ea1b00;
    border-color: #ea1b00;
}

.ccpl-full-description-content {
    font-size: 1rem;
    font-weight: 400;
    color: #4b5563;
    height: 100%;
    overflow-y: auto;
    padding: 0 25px;
}

.ccpl-full-description-content p {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.ccpl-full-description-content ul, .ccpl-full-description-content ol {
    margin-bottom: 1rem;
    padding-left: 30px;
}

.ccpl-full-description-content::-webkit-scrollbar {
    background-color: transparent;
    width: 4px;
}

.ccpl-full-description-content::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 10px;
}
.ccpl-full-description-content::-webkit-scrollbar-thumb:hover {background: #ccc;}

/* Pagination Begin */
#paginations, #paginations ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

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

#paginations a, #paginations ul li a, #paginations ul li .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  text-decoration: none;
  color: #3498db;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  background-color: white;
  cursor: pointer;
  user-select: none;
}
#paginations ul li .prev, #paginations ul li .next {display: none;}

#paginations a:hover, #paginations ul li a:hover, #paginations ul li .current:hover {
  /* background-color: #f0f8ff; */
  border-color: #3498db;
  transform: translateY(-2px);
}

#paginations a.active, #paginations ul li.active a, #paginations ul li .current {
  background-color: #3498db;
  color: white;
  border-color: #3498db;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Careers Page */
.ccpl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ccpl-benefit-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.ccpl-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ccpl-benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s;
}

.ccpl-benefit-card:hover .ccpl-benefit-icon {
    transform: scale(1.1);
}

.ccpl-benefit-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.ccpl-benefit-text {
    color: #6b7280;
    line-height: 1.8;
}

.ccpl-culture-section {
    margin-top: 5rem;
    background: linear-gradient(to bottom right, #fef3c7, #fce7f3, #ede9fe);
    border-radius: 1.5rem;
    padding: 3rem;
}

.ccpl-culture-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.ccpl-culture-list {
    list-style: none;
}

.ccpl-culture-list li {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.ccpl-openings-section {
    margin-top: 5rem;
}

.ccpl-openings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ccpl-opening-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ccpl-opening-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #fed7aa;
}

.ccpl-opening-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.ccpl-opening-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ccpl-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.ccpl-tag-orange { background: #fed7aa; }
.ccpl-tag-pink { background: #fbcfe8; }
.ccpl-tag-purple { background: #e9d5ff; }

/* Apply Page */
.ccpl-form-container {
    max-width: 60rem;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    /* margin-top: -5rem; */
    position: relative;
    /* z-index: 10; */
    margin-bottom: 3rem;
}

.ccpl-application-form {
    display: flex;
    flex-direction: column;
    column-gap: 1.5rem;
    row-gap: 1.75rem;
}

.ccpl-sort-job-info {
    background: #eff6ff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.ccpl-sort-job-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.75rem;
    color: #111827;
}

.ccpl-sort-job-info h5 {
    font-size: 18px;
    font-weight: 400;
    color: #2563eb;
    margin: 0;
}

.ccpl-sort-job-info p {
    color: #4b5563;
    margin: 0;
}

.ccpl-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.75rem;
}

.ccpl-form-group {
    display: flex;
    flex-direction: column;
}

.ccpl-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #81858d;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.4rem;
}

.ccpl-label-icon {
    font-size: 1rem;
    line-height: 16px;
}
.ccpl-form-label span:last-child {font-size: 0.85rem;}

.ccpl-form-input, .ccpl-form-select, .ccpl-form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.35rem;
    font-size: 0.85rem;
    transition: border-color 0.3s;
}

.ccpl-form-input:focus, .ccpl-form-select:focus, .ccpl-form-textarea:focus {
    outline: none;
    /* border-color: #ea580c; */
    border-color: #60a5fa;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ccpl-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.ccpl-file-upload:hover {
    /* border-color: #ea580c; */
    border-color: #60a5fa;
}

.ccpl-file-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: 0.35rem;
    background: #dbeafe;
    color: #2563eb;
}

.ccpl-file-upload-text {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.ccpl-file-upload-text span {
    font-weight: 500;
    color: #2563eb;
}

.ccpl-file-upload-hint {
    font-size: 0.875rem;
    color: #9ca3af;
}

.ccpl-file-input {
    display: none;
}

.ccpl-checkbox-wrapper {
    /* background: linear-gradient(to right, #fed7aa, #fbcfe8); */
    background: #f9f9f9;
    border-radius: 0.5rem;
    padding: 1rem;
}

.ccpl-checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.ccpl-checkbox-input {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.ccpl-checkbox-label span {
    font-size: 14px;
    color: #374151;
}

/* Success Message */
.ccpl-success-message {
    text-align: center;
    padding: 3rem;
}

.ccpl-success-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(to right, #10b981, #34d399);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.ccpl-success-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.ccpl-success-text {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Info Cards */
.ccpl-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ccpl-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ccpl-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.ccpl-info-title {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.ccpl-info-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Team Members Section */
.ccpl-team-section {
    color: #374151;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 4rem 0;
}

.ccpl-team-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ccpl-team-section-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--heading-bg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.ccpl-section-description {
    font-size: 1.25rem;
    color: #363c48;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.ccpl-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.ccpl-team-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.ccpl-team-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}

.ccpl-team-image-container {
    position: relative;
    overflow: hidden;
    /* height: 18rem; */
}

.ccpl-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ccpl-team-card:hover .ccpl-team-image {
    transform: scale(1.1);
}

.ccpl-team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ccpl-team-card:hover .ccpl-team-image-overlay {opacity: 1;}
.ccpl-team-content {padding: 1.5rem;}
.ccpl-team-info {margin-bottom: 1rem;}

.ccpl-team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.ccpl-team-role {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ccpl-team-message {
    color: #363c48;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Company Values Section */
.ccpl-values-section {
    padding: 4rem 0;
    background: white;
}

.ccpl-team-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ccpl-team-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.ccpl-quality-card {background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);}
.ccpl-quality-card:hover {background: linear-gradient(135deg, #bfdbfe 0%, #bae6fd 100%);}
.ccpl-innovation-card {background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);}
.ccpl-innovation-card:hover {background: linear-gradient(135deg, #bbf7d0 0%, #a7f3d0 100%);}
.ccpl-reliability-card {background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);}
.ccpl-reliability-card:hover {background: linear-gradient(135deg, #f9a8d4 0%, #ddd6fe 100%);}

.ccpl-team-value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ccpl-quality-card .ccpl-team-value-icon {background-color: #2563eb;}
.ccpl-innovation-card .ccpl-team-value-icon {background-color: #16a34a;}
.ccpl-reliability-card .ccpl-team-value-icon {background-color: #9333ea;}

.ccpl-value-letter {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.ccpl-team-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.ccpl-team-value-description {
    color: #363c48;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
    color: white;
    padding: 4rem 0 2rem;
}

.ccpl-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.ccpl-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ccpl-footer-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: white;
    padding: 0.25rem;
}

.ccpl-footer-brand-text h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.ccpl-footer-brand-text p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.ccpl-footer-description {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ccpl-social-links {
    display: flex;
    gap: 1rem;
}

.ccpl-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
    color: white;
}

.ccpl-social-link:hover {
    transform: scale(1.1);
}

.ccpl-footer-section h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.ccpl-footer-col-1 {
    background: linear-gradient(to right, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ccpl-footer-col-2 {
    background: linear-gradient(to right, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ccpl-footer-col-3 {
    background: linear-gradient(to right, #9333ea, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.ccpl-footer-links {
    list-style: none;
}

.ccpl-footer-links li {
    margin-bottom: 0.75rem;
}

.ccpl-footer-links a, .ccpl-footer-links button {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.ccpl-footer-links a:hover, .ccpl-footer-links button:hover {
    color: #f97316;
}

.ccpl-footer-contact {
    list-style: none;
}

.ccpl-footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ccpl-footer-contact li:nth-child(1) span:first-child {color: #f97316;}
.ccpl-footer-contact li:nth-child(2) span:first-child {color: #ec4899;}
.ccpl-footer-contact li:nth-child(3) span:first-child {color: #9333ea;}

.ccpl-footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ccpl-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ccpl-footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.ccpl-footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ccpl-footer-legal button {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.ccpl-footer-legal button:hover {
    color: #f97316;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**********************************************************************
    Quality Assurance Section Begin
**********************************************************************/
.ccpl-qa-header {
    text-align: center;
    margin-bottom: 50px;
}

.ccpl-qa-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ccpl-qa-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

.ccpl-qa-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.ccpl-qa-commitment {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ccpl-qa-commitment-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.ccpl-qa-commitment-text {
    color: #555;
    line-height: 1.7;
}

.ccpl-qa-process {
    margin-bottom: 50px;
}

.ccpl-qa-process-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.ccpl-qa-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.ccpl-qa-process-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ccpl-qa-process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ccpl-qa-process-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

.ccpl-qa-process-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ccpl-qa-process-item-content {
    color: #555;
}

.ccpl-qa-process-item-list {
    list-style-type: none;
    padding-left: 1rem;
    margin-top: 10px;
}

.ccpl-qa-process-item-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.ccpl-qa-process-item-list li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.ccpl-qa-improvement {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ccpl-qa-improvement-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.ccpl-qa-improvement-text {
    color: #555;
    line-height: 1.7;
}

.ccpl-qa-values {
    margin-bottom: 40px;
}

.ccpl-qa-values-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.ccpl-qa-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ccpl-qa-value-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.ccpl-qa-value-item:hover {
    transform: translateY(-5px);
}

.ccpl-qa-value-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.ccpl-qa-value-text {
    color: #555;
    font-weight: 500;
    margin-bottom: 0;
}

/**********************************************************************
    Recruitment Process Section Begin
**********************************************************************/
.ccpl-rtp-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ccpl-rtp-brief {
    background-color: #fdfdfd;
    border: 1px solid #f3efef;
    border-radius: 1rem;
    padding: 30px;
    margin-bottom: 30px;
}

.ccpl-rtp-brief p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 0;
}

.ccpl-rtp-header-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.ccpl-rtp-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.ccpl-rtp-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
}

/* Stages Grid */
.ccpl-rtp-stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ccpl-rtp-stage-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.ccpl-rtp-stage-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Card Header with gradient */
.ccpl-rtp-card-header {
    height: 8px;
    width: 100%;
}

.ccpl-rtp-stage-card[data-color="lime"] .ccpl-rtp-card-header {
    background: linear-gradient(90deg, #84cc16 0%, #a3e635 100%);
}

.ccpl-rtp-stage-card[data-color="yellow"] .ccpl-rtp-card-header {
    background: linear-gradient(90deg, #facc15 0%, #fbbf24 100%);
}

.ccpl-rtp-stage-card[data-color="orange"] .ccpl-rtp-card-header {
    background: linear-gradient(90deg, #fb923c 0%, #f97316 100%);
}

.ccpl-rtp-stage-card[data-color="pink"] .ccpl-rtp-card-header {
    background: linear-gradient(90deg, #f472b6 0%, #ec4899 100%);
}

.ccpl-rtp-stage-card[data-color="cyan"] .ccpl-rtp-card-header {
    background: linear-gradient(90deg, #22d3ee 0%, #06b6d4 100%);
}

.ccpl-rtp-stage-card[data-color="blue"] .ccpl-rtp-card-header {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
}

/* Card Icon */
.ccpl-rtp-card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 0 1.5rem;
    font-size: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
}

.ccpl-rtp-stage-card[data-color="lime"] .ccpl-rtp-card-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #d4f5d4 100%);
}

.ccpl-rtp-stage-card[data-color="yellow"] .ccpl-rtp-card-icon {
    background: linear-gradient(135deg, #fef9e7 0%, #fef8dc 100%);
}

.ccpl-rtp-stage-card[data-color="orange"] .ccpl-rtp-card-icon {
    background: linear-gradient(135deg, #fed7aa 0%, #feddad 100%);
}

.ccpl-rtp-stage-card[data-color="pink"] .ccpl-rtp-card-icon {
    background: linear-gradient(135deg, #fbcfe8 0%, #fbc2eb 100%);
}

.ccpl-rtp-stage-card[data-color="cyan"] .ccpl-rtp-card-icon {
    background: linear-gradient(135deg, #cffafe 0%, #d1faff 100%);
}

.ccpl-rtp-stage-card[data-color="blue"] .ccpl-rtp-card-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #dcf0ff 100%);
}

.ccpl-rtp-stage-card:hover .ccpl-rtp-card-icon {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

/* Stage Title */
.ccpl-rtp-stage-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 1.75rem 1.5rem 0.5rem;
    line-height: 1.4;
}

.ccpl-rtp-stage-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}
.ccpl-rtp-stage-card p:last-of-type {margin-bottom: 1.5rem;}

/* Stage Steps */
.ccpl-rtp-stage-steps {
    list-style: none;
    padding: 0.5rem 1.5rem;
}

.ccpl-rtp-stage-steps li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.ccpl-rtp-stage-steps li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.ccpl-rtp-stage-card[data-color="lime"] .ccpl-rtp-stage-steps li:before {
    background: #84cc16;
}

.ccpl-rtp-stage-card[data-color="yellow"] .ccpl-rtp-stage-steps li:before {
    background: #facc15;
}

.ccpl-rtp-stage-card[data-color="orange"] .ccpl-rtp-stage-steps li:before {
    background: #fb923c;
}

.ccpl-rtp-stage-card[data-color="pink"] .ccpl-rtp-stage-steps li:before {
    background: #f472b6;
}

.ccpl-rtp-stage-card[data-color="cyan"] .ccpl-rtp-stage-steps li:before {
    background: #22d3ee;
}

.ccpl-rtp-stage-card[data-color="blue"] .ccpl-rtp-stage-steps li:before {
    background: #60a5fa;
}

.ccpl-rtp-stage-steps li:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.ccpl-rtp-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 50%, #ec4899 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ccpl-rtp-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ccpl-rtp-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Stats Grid */
.ccpl-rtp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ccpl-rtp-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ccpl-rtp-stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.ccpl-rtp-stat-label {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.ccpl-rtp-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ccpl-rtp-stage-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.ccpl-rtp-stage-card:nth-child(1) { animation-delay: 0.1s; }
.ccpl-rtp-stage-card:nth-child(2) { animation-delay: 0.2s; }
.ccpl-rtp-stage-card:nth-child(3) { animation-delay: 0.3s; }
.ccpl-rtp-stage-card:nth-child(4) { animation-delay: 0.4s; }
.ccpl-rtp-stage-card:nth-child(5) { animation-delay: 0.5s; }
.ccpl-rtp-stage-card:nth-child(6) { animation-delay: 0.6s; }

/**********************************************************************
    Why Choose Us Section Begin
**********************************************************************/
.ccpl-wcu-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.ccpl-wcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.ccpl-wcu-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.ccpl-wcu-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.ccpl-wcu-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.ccpl-wcu-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ccpl-wcu-feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ccpl-wcu-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.ccpl-wcu-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ccpl-wcu-feature-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.ccpl-wcu-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ccpl-wcu-feature-content {
    color: #5a6c7d;
    line-height: 1.6;
}

.ccpl-wcu-feature-list {
    list-style-type: none;
    margin-top: 10px;
    padding-left: 1rem;
}

.ccpl-wcu-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.ccpl-wcu-feature-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.ccpl-wcu-promise-section {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    margin-top: 30px;
}

.ccpl-wcu-promise-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ccpl-wcu-promise-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/**********************************************************************
    Global Recruitment Services Section Begin
**********************************************************************/
.ccpl-grs-section {
    border-radius: 10px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.ccpl-grs-header {
    margin-bottom: 60px;
    position: relative;
}

.ccpl-grs-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a2a6c;
    position: relative;
    display: inline-block;
}

.ccpl-grs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    border-radius: 2px;
}

.ccpl-grs-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.ccpl-grs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ccpl-grs-card {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1a2a6c;
    position: relative;
    overflow: hidden;
}

.ccpl-grs-card:nth-child(2) {
    border-top-color: #b21f1f;
}

.ccpl-grs-card:nth-child(3) {
    border-top-color: #fdbb2d;
}

.ccpl-grs-card:nth-child(4) {
    border-top-color: #1a2a6c;
}

.ccpl-grs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.ccpl-grs-card-icon {
    display: flex;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2a6c;
}

.ccpl-grs-card:nth-child(2) .ccpl-grs-card-icon {
    color: #b21f1f;
}

.ccpl-grs-card:nth-child(3) .ccpl-grs-card-icon {
    color: #fdbb2d;
}

.ccpl-grs-card:nth-child(4) .ccpl-grs-card-icon {
    color: #1a2a6c;
}

.ccpl-grs-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.ccpl-grs-card-content {
    line-height: 1.6;
    color: #555;
}

.ccpl-grs-card-list {
    list-style-type: none;
    margin-top: 15px;
    padding-left: 1rem;
}

.ccpl-grs-card-item {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.ccpl-grs-card-item::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: #1a2a6c;
    font-weight: bold;
}

.ccpl-grs-card:nth-child(2) .ccpl-grs-card-item::before {
    color: #b21f1f;
}

.ccpl-grs-card:nth-child(3) .ccpl-grs-card-item::before {
    color: #fdbb2d;
}

.ccpl-grs-card:nth-child(4) .ccpl-grs-card-item::before {
    color: #1a2a6c;
}

.ccpl-grs-process-section {
    margin: 60px 0;
}

.ccpl-grs-section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a2a6c;
    position: relative;
}

.ccpl-grs-section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
    border-radius: 2px;
}

.ccpl-grs-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.ccpl-grs-process-step {
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.ccpl-grs-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ccpl-grs-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #1a2a6c;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.ccpl-grs-step-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

.ccpl-grs-why-section {
    margin: 60px 0;
}

.ccpl-grs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.ccpl-grs-why-item {
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a2a6c;
}

.ccpl-grs-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ccpl-grs-why-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a2a6c;
}

.ccpl-grs-why-text {
    line-height: 1.5;
    color: #555;
}

.ccpl-grs-goal-box {
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #fdbb2d;
}

.ccpl-grs-goal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2a6c;
}

.ccpl-grs-goal-text {
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}


/**********************************************************************
    Document Attestation Services Section Begin
**********************************************************************/
.ccpl-das-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    padding: 50px 0;
}
.ccpl-das-hero {color: #1f2937;}

.ccpl-das-hero-content {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Content Sections */
.ccpl-das-section {
    margin-bottom: 60px;
    position: relative;
}

.ccpl-das-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.ccpl-das-section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.ccpl-das-subtitle {
    font-size: 1.65rem;
    color: #2c3e50;
    font-weight: 700;
}

.ccpl-das-content {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 20px;
}

/* Why Section */
.ccpl-das-why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.ccpl-das-why-list {
    list-style-type: none;
}

.ccpl-das-why-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.ccpl-das-why-item:hover {
    transform: translateX(10px);
}

.ccpl-das-why-icon {
    color: #3498db;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Documents Section */
.ccpl-das-documents-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ccpl-das-document-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ccpl-das-document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
}

.ccpl-das-document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ccpl-das-card-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.ccpl-das-list {
    list-style-type: none;
    padding-left: 1rem;
}

.ccpl-das-list-item {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.ccpl-das-list-item::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

/* Process Section */
.ccpl-das-process-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.ccpl-das-process-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
    border-radius: 3px;
}

.ccpl-das-process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.ccpl-das-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    z-index: 1;
}

.ccpl-das-process-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.ccpl-das-process-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Countries Section */
.ccpl-das-countries-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.ccpl-das-country-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    transition: transform 0.3s ease;
}

.ccpl-das-country-tag:hover {
    transform: scale(1.05);
}

/* Documents Required Section */
.ccpl-das-docs-required {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
}

.ccpl-das-docs-title {
    font-size: 1.4rem;
    color: #856404;
    margin-bottom: 20px;
    font-weight: 700;
}

.ccpl-das-docs-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.ccpl-das-docs-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Note Section */
.ccpl-das-note {
    background: linear-gradient(135deg, #e8f4fc 0%, #d1e8f9 100%);
    border-left: 5px solid #3498db;
    padding: 25px;
    border-radius: 0 15px 15px 0;
    margin-top: 30px;
}

.ccpl-das-note-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

/**********************************************************************
    Visa & Immigration Services Section Begin
**********************************************************************/
.ccpl-vis-container {margin: 50px 0;}

.ccpl-vis-hero {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 50px;
}

.ccpl-vis-hero-content {
    flex: 1;
}

.ccpl-vis-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.ccpl-vis-highlight {
    background: linear-gradient(90deg, rgba(74, 111, 165, 0.1) 0%, rgba(108, 155, 207, 0.1) 100%);
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
    border-left: 5px solid #4a6fa5;
    position: relative;
}

.ccpl-vis-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(74, 111, 165, 0.2);
    font-family: Georgia, serif;
}

.ccpl-vis-highlight-text {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.7;
}

.ccpl-vis-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ccpl-vis-globe {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #4a6fa5, #2c3e50);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 50px rgba(74, 111, 165, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ccpl-vis-globe::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.ccpl-vis-globe-inner {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 40% 40%, #6c9bcf, #4a6fa5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.ccpl-vis-services {
    margin-bottom: 80px;
}

.ccpl-vis-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
    position: relative;
}

.ccpl-vis-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a6fa5, #6c9bcf);
    border-radius: 2px;
}

.ccpl-vis-services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ccpl-vis-service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ccpl-vis-service-item:nth-child(odd) {
    background: linear-gradient(90deg, rgba(74, 111, 165, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.ccpl-vis-service-item:nth-child(even) {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(108, 155, 207, 0.05) 100%);
    flex-direction: row-reverse;
    text-align: right;
}

.ccpl-vis-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ccpl-vis-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a6fa5, #6c9bcf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
}

.ccpl-vis-service-icon i {
    font-size: 2rem;
    color: white;
}

.ccpl-vis-service-content {
    flex: 1;
}

.ccpl-vis-service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ccpl-vis-service-title::before {
    content: '';
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #4a6fa5, #6c9bcf);
    border-radius: 2px;
}

.ccpl-vis-service-item:nth-child(even) .ccpl-vis-service-title {
    justify-content: flex-end;
}

.ccpl-vis-service-item:nth-child(even) .ccpl-vis-service-title::before {
    order: 1;
}

.ccpl-vis-service-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.ccpl-vis-service-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(74, 111, 165, 0.1);
    position: absolute;
    top: -20px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.ccpl-vis-service-item:nth-child(even) .ccpl-vis-service-number {
    left: 20px;
    right: auto;
}

/**********************************************************************
    Skill Training Section Begin
**********************************************************************/
.ccpl-stc-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
}

.ccpl-stc-header {
    padding-bottom: 60px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.ccpl-stc-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #2d3748;
    position: relative;
    display: inline-block;
}

.ccpl-stc-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.ccpl-stc-subtitle {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #4a5568;
}

.ccpl-stc-tagline {
    font-style: italic;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #667eea;
    position: relative;
}

.ccpl-stc-tagline::before, .ccpl-stc-tagline::after {
    content: '"';
    font-size: 3rem;
    color: rgba(102, 126, 234, 0.3);
    position: absolute;
    line-height: 1;
}

.ccpl-stc-tagline::before {
    top: 0;
    left: -10px;
}

.ccpl-stc-tagline::after {
    bottom: -20px;
    right: -10px;
}

/* Content layout */
.ccpl-stc-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.ccpl-stc-section {position: relative;}

.ccpl-stc-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2d3748;
    position: relative;
    padding-bottom: 15px;
}

.ccpl-stc-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Programs with connected timeline */
.ccpl-stc-programs-container {
    position: relative;
    padding-left: 30px;
}

.ccpl-stc-programs-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f093fb, #00f2fe);
    border-radius: 1px;
}

.ccpl-stc-program-category {
    margin-bottom: 50px;
    position: relative;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ccpl-stc-program-category:hover {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ccpl-stc-program-category::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -40px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 3px solid #667eea;
    z-index: 1;
}

.ccpl-stc-program-category:nth-child(1)::before {
    border-color: #f093fb;
}

.ccpl-stc-program-category:nth-child(2)::before {
    border-color: #4facfe;
}

.ccpl-stc-program-category:nth-child(3)::before {
    border-color: #43e97b;
}

.ccpl-stc-program-category:nth-child(4)::before {
    border-color: #fa709a;
}

.ccpl-stc-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ccpl-stc-category-title i {
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.ccpl-stc-program-category:nth-child(1) .ccpl-stc-category-title i {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.ccpl-stc-program-category:nth-child(2) .ccpl-stc-category-title i {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.ccpl-stc-program-category:nth-child(3) .ccpl-stc-category-title i {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.ccpl-stc-program-category:nth-child(4) .ccpl-stc-category-title i {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.ccpl-stc-program-list {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.ccpl-stc-program-list li {
    margin-bottom: 10px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ccpl-stc-program-list li:hover {
    transform: translateX(5px);
    border-bottom-color: #667eea;
}

.ccpl-stc-program-list li::before {
    content: 'â€º';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ccpl-stc-program-list li:hover::before {
    transform: translateX(5px);
}

/* Testing section */
.ccpl-stc-testing-section {
    position: sticky;
    top: 20px;
}

.ccpl-stc-evaluation-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.ccpl-stc-evaluation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.ccpl-stc-evaluation-list {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.ccpl-stc-evaluation-list li {
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ccpl-stc-evaluation-list li:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.ccpl-stc-evaluation-list li i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ccpl-stc-certification {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
    position: relative;
}

.ccpl-stc-certification-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
}

.ccpl-stc-certification-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ccpl-stc-program-category, .ccpl-stc-evaluation-container {
    animation: fadeIn 0.6s ease forwards;
}

.ccpl-stc-program-category:nth-child(1) { animation-delay: 0.1s; }
.ccpl-stc-program-category:nth-child(2) { animation-delay: 0.2s; }
.ccpl-stc-program-category:nth-child(3) { animation-delay: 0.3s; }
.ccpl-stc-program-category:nth-child(4) { animation-delay: 0.4s; }

/*********************************************************
    News Section Start
*********************************************************/
.ccpl-news-block {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 90px 0;
    background: linear-gradient(135deg, #c4b5fd 0%, #a5f3fc 50%, #fcd34d 100%);
}

.ccpl-news-header {
    text-align: center;
    margin-bottom: 48px;
    /* position: relative;
    z-index: 10; */
}

.ccpl-news-main-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.ccpl-news-subtitle {
    font-size: 1.15rem;
    color: #1d4ed8;
    font-weight: 400;
}

.ccpl-news-container {
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* position: relative;
    z-index: 10; */
}

.ccpl-news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ccpl-news-card:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ccpl-news-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ccpl-news-headline {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.4;
    margin-bottom: 0;
    transition: color 0.2s ease;
}
.ccpl-news-card:hover .ccpl-news-headline {color: #1e40af;}

.ccpl-news-date-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6a6a6a;
    font-size: 0.875rem;
    font-weight: 400;
    flex-shrink: 0;
}

.ccpl-calendar-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.ccpl-file-download {
    text-decoration: none;
    display: inline-block;
    width: max-content;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #204de2;
    color: #204de2;
    background: transparent;
    background-image: none;
    box-shadow: none;
    border-radius: .5rem;
    padding: 7px 25px;
    cursor: pointer;
    transition: all .3s ease;
}

.ccpl-file-download:hover {
    border-color: #e26520;
    color: #e26520;
    transform: scale(1.05);
}

/*********************************************************
    Contact Us Section Start
*********************************************************/
.ccpl-languages-section {
    background: linear-gradient(90deg,#fff7ed, #eff6ff);
    padding: 70px 0px;
}

.ccpl-languages-section .ccpl-language-box {
    background: #fff;
    padding: 40px;
    transition: all 0.45s;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border-radius: 1rem;
    margin-top: 20px;
}

.ccpl-languages-section .ccpl-language-box h3 {
    color: #1e40af;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.ccpl-languages-section .ccpl-language-box .ccpl-language-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ccpl-languages-section .ccpl-language-box .ccpl-language-list li {
    display: flex;
    gap: 10px;
    align-items: start;
}
.ccpl-languages-section .ccpl-language-box .ccpl-map {margin-top: 30px;}

.ccpl-languages-section .ccpl-language-box .ccpl-map iframe {
    width: 100%;
    height: 300px;
}

/**************************************
    Slider Banner Section
**************************************/
.ccpl-slider-banner {
    position: relative;
    /* background-color: #41595c; */
    background: linear-gradient(to right, rgb(69 130 225 / 85%), rgb(6 142 149 / 70%));
}

.ccpl-single-slider {
    display: flex;
    flex-direction: row-reverse;
}
.ccpl-slider-img {
    width: 60%;
    position: relative;
}

.ccpl-slider-img::before {
    content: "";
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.ccpl-slider-info {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 10px 10px 32px;
}

.ccpl-slider-info h3 {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0ECBAC;
    transform: translateX(-100%);
    opacity: 0;
}
.owl-item.active .ccpl-slider-info h3 {
    transform: translateX(0%);
    opacity: 1;
    transition: all 0.8s;
}

.ccpl-slider-info h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 100%;
    color: #fff;
    margin-bottom: 1.75rem;
    transform: translateX(-100%);
    opacity: 0;
}
.owl-item.active .ccpl-slider-info h2 {
    transform: translateX(0%);
    opacity: 1;
    transition: all 1s;
    transition-delay: 0.3s;
}

.ccpl-slider-info p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
    transform: translateY(40%);
    opacity: 0;
}
.owl-item.active .ccpl-slider-info p {
    transform: translateY(0%);
    opacity: 1;
    transition: all 1.5s;
    transition-delay: 1s;
}

.ccpl-slider-info span {
    display: block;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
}
.owl-item.active .ccpl-slider-info span {
    transform: translateY(0%);
    opacity: 0.4;
    transition: all 1s;
    transition-delay: 1.5s;
}

.ccpl-slider-info .ccpl-appeal-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    outline: 1px solid #000;
    border-radius: 25px;
    color: #000;
    background-color: #ffc20e;
    padding: 10px 30px;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    z-index: 9;
    transform: translateX(-100%);
    opacity: 0;
}
.owl-item.active .ccpl-slider-info .ccpl-appeal-btn {
    transform: translateX(0%);
    opacity: 1;
    transition: all 0.7s;
    transition-delay: 1.5s;
}

.ccpl-slider-info .ccpl-appeal-btn::before {
    content: "";
    background-color: #d4d4d4;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s ease;
}
.ccpl-slider-info .ccpl-appeal-btn:hover::before {width: 100%;}

.ccpl-slider-banner .owl-nav {
    position: absolute;
    top: 40%;
    left: 40%;
    z-index: 99;
    width: 60%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.ccpl-slider-banner .owl-nav i {
    font-size: 28px;
    width: 45px;
    height: 45px;
    line-height: 46px !important;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: rgba(96, 149, 228, 0.75) !important;
    transition: all 0.4s;
}

.ccpl-slider-banner .owl-nav i:hover {
    background: rgba(96, 149, 228, 0.85) !important;
    transform: scale(1.1);
}

.iso-header .container {position: relative;}
.iso-header .left-column {width: 60%;}

.iso-header .image-container {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 38%;
    padding: 0.75rem;
}

.iso-header .image-container .rounded-image {
    max-width: 100%;
    height: auto;
}
