/********** Template CSS **********/
:root {
    --primary: #038ed5;
    --light: #F0FBFC;
    --dark: #091e3e;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 110px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 400;
    color: #038ed5;
    text-decoration: none;
    border-radius: 100px;
}

.btn-primary:hover{
transform: translateY(-6px);
}
.btn-outline-primary:hover{
    color: #fff;
}

.btn.btn-primary {
    color: #FFFFFF;
}
.btn-primary{

    border-radius: 999px;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    background: linear-gradient(135deg,#038ed5, #086fb1);
    color: #fff;
    box-shadow: 0 10px 22px rgba(3, 142, 213, 0.24);
    margin-top: auto;
    border: none;
}
.btn-primary:hover{
    background: linear-gradient(135deg, #086fb1, #091e3e);
    box-shadow: 0 14px 28px rgba(9, 30, 62, 0.22);
}

.btn-outline-primary{
   border-radius: 999px;
}


.btn-secondary {
  background-color: rgb(240, 251, 252);
color:var(--primary);

}

.btn-secondary:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary) ;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 140px;
    border-radius: 100px !important;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/

/* Header Start */
.navbar-brand img,
.custom-logo {
    max-height: 64px;
    width: auto;
}

.header-right {
    margin-left: auto;
}

/* Country Dropdown */
.country-dropdown {
    position: relative;
}

.country-btn {
    border: 1px solid #d8dce2;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #202124;
    min-height: 44px;
    box-shadow: none;
    transition: all 0.25s ease;
}

.country-btn:hover,
.country-btn:focus {
    background: #f8fafc;
    border-color: #cfd5dd;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.country-btn::after {
    margin-left: 8px;
}

.country-flag {
    display: flex;
    object-fit: cover;
    border-radius: 2px;
    width: 20px;
}

.country-menu {
    min-width: 150px;
    border: 0;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
    bottom: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    top: calc(100% + 10px) !important;
}

.country-menu .dropdown-item {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
}

.country-menu .dropdown-item:hover,
.country-menu .dropdown-item:focus {
    background: #038ed5;
    color: #000;
}
.country-menu .dropdown-item:hover {
    background: #038fd538;
    color: #000;
}

/* Desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .header-right {
        margin-left: 18px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .navbar {
        padding: 8px 0 !important;
    }

    .navbar-brand img,
    .custom-logo {
        max-height: 58px;
    }

    .country-btn {
        padding: 7px 13px;
        font-size: 14px;
        min-height: 40px;
    }

    .country-flag {
        width: 22px;
        height: 15px;
    }

    .country-menu {
        right: 0 !important;
        left: auto !important;
    }

    .navbar-collapse {
        width: 100%;
        order: 4;
    }
}

@media (max-width: 400px) {
    .country-menu span {
       font-size: 14px;
    }
}


/* Header End */


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .menu-item.active .nav-link {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/new2-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}


/* .section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 41%;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.section-title::before {
    left: -28px;
}
.section-title::after {
    right: -30px;
} */

/*** Service ***/
.service-item {
    background: var(--bs-white);
    transition: .5s;
    height: 100%;
    border: 1px solid #e2edf5;
    box-shadow: 0 8px 24px rgba(9, 30, 62, 0.08) !important;
     border-radius: 24px  !important;

}
.testimonial-item{
    height: 100%;
    border: 1px solid #e2edf5;
    box-shadow: 0 8px 24px rgba(9, 30, 62, 0.08) !important;
     border-radius: 24px  !important;
     padding: 20px;
}
.testimonial-text{
    border-radius: 20px;
}
.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;

}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.form_custom-wrapper {
    position: relative;
}

.form_custom-wrapper .wpcf7-spinner {

    position: absolute !important;
    right: 40px;
    top: 15px;
}


/* menu css*/
@media (max-width: 768px) {

    /* Center the entire mobile menu */
    .navbar-nav {
        display: flex;
        flex-direction: column;
        /* stack items vertically */
        justify-content: center;
        /* center vertically if needed */
        align-items: center;
        /* center horizontally */
        text-align: center;
        padding: 0;
        margin: 0 auto;
    }

    /* Center individual menu items */
    .navbar-nav li {
        list-style: none;
        margin: 8px 0;
    }

    /* Add horizontal divider line between menu items */
    .navbar-nav li:not(:last-child)::after {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background-color: #ccc;
        margin: 8px auto;
        /* center the divider */
    }

    /* Make sure the menu links are centered */
    .navbar-nav li a {
        display: inline-block;
        text-align: center;
    }
}

/*CSS for whatapp  Floating Button */

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 84px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}
.course-item{
    border-radius: 20px;
}

.course-item img {
    max-height: 310px;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.team-item img {
    margin: 0 auto;
    display: table;
}

.team-item .overflow-hidden {
    background: #fff;
    border: 10px solid #F0FBFC;
}


ul#menu-menu-2 {
    list-style: none;
    padding-left: 0;
}

.course-item .fa-arrow-right:before {
    content: "\f30b";
}

.caregiver-list li,
.work-list li,
.s-list li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.caregiver-list i,
.work-list i,
.s-list i {
    margin-top: 4px;
}

.care-package-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.care-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.care-package-card img {
    transition: transform 0.5s ease;
}

.care-package-card:hover img {
    transform: scale(1.05);
}

.care-package-card h4 i {
    transition: transform 0.3s ease;
}

.care-package-card:hover h4 i {
    transform: scale(1.2);
}

.package-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.care-package-card img {
    transition: transform 0.5s ease;
    max-height: 450px;
    object-fit: contain;
    width: 100%;
    background: #f0fbfc;
}

/* .whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
} */

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #fff;
}


.footer-info {
    display: flex;
    align-items: baseline;
    overflow-wrap: anywhere;
    white-space: normal;
    color: white;

    a {
        color: white
    }
}


.footer-logo-img {
    max-width: 80px;
    height: auto;
}

.footer-brand-text {
    color: #d7dbe2;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.footer-country-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-country-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f4f8fc;
    color: #091e3e;
    padding: 6px 8px;
    border-radius: 999px;
    /* font-size: 12px; */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 100%;
}

.footer-country-pill:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #038ed5;
}


@media (max-width: 575px) {
    .footer-country-wrap {
        gap: 10px;
    }

    .footer-country-pill {
        padding: 9px 15px;
        font-size: 14px;
    }

    .footer-logo-img {
        max-width: 145px;
    }
}

/* dept-list-card start */
.dept-list-card {

    border: 1px solid #e2edf5;
    border-radius: 18px;
    padding: 30px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    margin-bottom: 24px;
    min-height: 140px;
    border: 1px solid rgb(226, 237, 245);
    box-shadow: rgba(9, 30, 62, 0.08) 0px 8px 24px;
    margin: 0;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: start;


}

.dept-list-card:hover {
    transform: translateY(-5px);
    border-color: rgba(3, 142, 213, 0.24);
    box-shadow: 0 18px 46px rgba(9, 30, 62, 0.14);
}

.dept-list-card h5 {
    font-size: 1.25rem;
    color: #18213a;
    font-weight: 600;
    margin-bottom: 10px;
}

.dept-list-card p {
    color: #444;
    margin-bottom: 0;
    font-size: 1.02rem;
}

.dept-list-card .btn {
    margin-top: 14px;
}

@media (max-width: 767.98px) {
    .dept-list-card {
        padding: 20px 14px 16px 14px;
    }

    .dept-list-card h5 {
        font-size: 1.08rem;
    }

    .dept-list-card p {
        font-size: .97rem;
    }
}

/* dept-list-card end */



/* Team nember start  */
.section-subtitle {
    color: #038ed5;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    color: #091e3e;
    font-weight: 800;
}

.section-desc {
    max-width: 600px;
    margin: auto;
    color: #6c757d;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid rgb(226, 237, 245);

}

.team-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-content {
    padding: 20px;
    border-top: 1px solid rgb(226, 237, 245);
}

.team-content h5 {
    margin-bottom: 5px;
    font-weight: 700;
    color: #091e3e;
}

.team-content p {
    color: #038ed5;
    margin: 0;
}



/* Team nember end */


/* ===== STATS start ===== */
.stats-section {
    background: #091e3e;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 16px;
}

.stat-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
}

.stat-icon svg * {
    stroke: #57c8ff;
}

.stat-icon svg circle[fill],
.stat-icon svg path[fill] {
    fill: #57c8ff;
}

.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
}

/* ===== STATS end ===== */


.map-iframe {
    height: 400px;
}

.wpcf7-textarea {
    height: 130px !important;
}



/* faqs Start  */
.faq-section {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #F0FBFC ;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-header h5 {
    margin: 0;
    font-weight: 600;
    margin: 0;
    flex: 1;
    width: calc(100% - 48px);
    word-break: break-word;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-body {
    max-height: 200px;
    padding: 15px 20px 20px;
}

.faq-item.active .faq-icon {
    content: "-";
}
/* faqs end  */


.career-form-wrapper{
    background: var(--bs-white);
    height: 100%;
    border: 1px solid #e2edf5;
    border-radius: 24px !important;
    padding: 50px;
}

.resume-file::after{
        background-color: var(--primary) !important;
}

/* team member dots  */

.team-slider .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.team-slider .owl-dot span, .owl-dot  {
    background-color: silver;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 100px;
}

.team-slider .owl-dot.active span {
    background-color: #038ED5;
}


.support-info {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #52565b;
}

.support-item i {
  color: var(--primary); /* tera brand color */
}


.wpcf7-submit {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px){
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .career-form-wrapper{
        padding: 30px;
    }

}
@media (max-width: 600px){
 .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;

    
}
  .owl-nav{
    display: none !important;
  }
  .career-form-wrapper{
    padding: 10px;
  }
}


.care-packages-section {
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 36px;
  color: #091e3e;
  margin: 0 0 10px;
}

.section-heading p {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  background:var(--dark) ;
  color: #fff;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(9, 30, 62, 0.18);
  transition: 0.3s ease;
      display: flex;
    flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card h3 {
  font-size: 22px;
  margin: 0 0 6px;
  color: #FFFFFF;
}

.package-type {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.price {
  background: var(--primary);
  margin: 0 -22px;
  padding: 18px 10px;
  font-size: 30px;
  font-weight: 700;
}

.duration {
  font-size: 13px;
  color: #dbeafe;
  margin: 14px 0 22px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.package-card ul li {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 13px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.package-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #038ed5;
  font-weight: bold;
}

.package-btn {
  display: inline-block;
  padding: 11px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: auto;
}

.package-btn:hover {
  background: #fff;
  color: #091e3e;
}

.featured {
  border: 2px solid #038ed5;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #038ed5;
  color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 30px;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .care-packages-section {
    padding: 55px 0;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .package-card {
    padding: 26px 20px;
  }

  .price {
    margin: 0 -20px;
    font-size: 28px;
  }
}

.resume-file::after {
  
    padding: 19px 8px !important;
    background-color: var(--primary);
    font-size: 13px !important;
}