.width-20 {
    width: 20% !important;
}

/* Tablet view: 2 per row */
@media (max-width: 992px) {
    .width-20 {
        width: 45% !important;
    }
}

/* Mobile view: 1 per row */
@media (max-width: 576px) {
    .width-20 {
        width: 50% !important;
    }
}

@media (max-width: 420px) {
    .width-20 {
        width: 100% !important;
    }
}

/* for zig zag style background color */
.section-alt {
    background: #f8fbfd;
}

/* Add space below the package slider dots */
.package-slider .owl-dots {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-slider .owl-dot {
    margin: 0 6px !important;
}

/* Add space below the package slider dots */

/* service card after slider area  */

.cta-card {
    min-height: 106px;
    background: #fff;
    border: 0;
    border-radius: .5rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 6px 14px rgba(11, 34, 68, .12);
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
    margin-bottom: 20px;
}

/* optional thin accent on the left (like the screenshot’s layered look) */
.cta-card::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 10px;
    bottom: 10px;
    width: 10px;
    border-radius: .5rem 0 0 .5rem;
}

.cta-title {
    margin: 0;
    letter-spacing: .03em;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    white-space: normal;
    word-break: normal;
    line-height: 1.3;
    flex: 1;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
}

.icon-circle i {
    font-size: 20px;
}

.cta-card:hover {
    transform: translateY(-4px);
    transition: transform .15s ease, box-shadow .15s ease;
}

/* service card after slider area  */

/* why choose service card */

.spec-card {
    border: 1px solid #e8eef6;
    border-radius: 18px;
    background: #F7FAFF;
    height: 160px;
    padding: 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.spec-card:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 22px #32b87d; */
    border-color: #d7e3f4;
    background: #32b87d;
}

.spec-card:hover .spec-icon i {
    color: #fff !important;
}

.spec-card:hover .spec-title {
    color: #fff !important;
}

.spec-icon i {
    font-size: 40px;
    line-height: 1;
    display: block;
}

.spec-title {
    color: #32b87d;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    line-height: 1.35;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

/* why choose service card */

/* Health Check Packages */

/* CARD */
.pkg-card {
    position: relative;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
    /* aspect-ratio: 4/3; */
    height: 250px;
    background: #e9edf3;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pkg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
}

/* image */
.pkg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95);
    transition: transform .4s ease;
}

.pkg-card:hover .pkg-img {
    transform: scale(1.06);
}

/* bottom gradient overlay */
.pkg-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(9, 36, 70, 0) 35%,
            rgba(9, 36, 70, .6) 70%,
            rgba(9, 36, 70, .88) 100%);
    pointer-events: none;
}

/* content */
.pkg-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
}

.pkg-title {
    font-size: 1.075rem;
    font-weight: 800;
    margin: 0 0 .15rem 0;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    color: #fff;
}

.pkg-sub {
    font-size: .95rem;
    font-weight: 700;
    opacity: .85;
    margin-bottom: .35rem;
}

.pkg-link {
    font-weight: 700;
    text-decoration: none;
}

.pkg-link:hover {
    text-decoration: underline;
}

/* spacing between cards */
.packages .col {
    display: flex;
}

.packages .pkg-card {
    width: 100%;
}

/* Health Check Packages */

/* Service Highlight Section */

.service-highlight-section {
    /* background: #f8fbfd; */
    border-radius: 18px;
    /* margin-bottom: 40px; */
    padding: 40px 0 30px 0;
}

.service-highlight-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    gap: 30px;
}

.service-highlight-img {
    width: 100%;
    max-width: 470px;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(50, 184, 125, 0.08);
}

.service-highlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: 220px;
}

@media (max-width: 991px) {
    .service-highlight-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-highlight-content {
        align-items: center;
        text-align: center;
    }
}

/* Service Highlight Section */

/* client slider area */
.clients-slider .single-clients img {
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
}

.clients-slider .single-clients img:hover {
    filter: none;
    transform: scale(1.08);
}

/*
!* new footer area *!
footer.site-footer {
	position: relative;
	color: rgb(255, 255, 255);
	background:
		radial-gradient(900px 900px at 55% 5%, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 60%),
		linear-gradient(135deg, #32b87d 0%, #32b87d 100%);
	overflow: hidden;
}

!* Big soft circle (bottom-right-ish) *!
footer.site-footer::after {
	content: "";
	position: absolute;
	inset: auto -15% -40% auto;
	width: 1200px;
	height: 1200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .02) 55%, rgba(255, 255, 255, 0) 70%);
	opacity: 1;
	pointer-events: none;
	transform: translateX(-30%);
}

.footer-top {
	padding: 64px 0 28px;
	position: relative;
	z-index: 1;
}

.footer-bottom {
	padding: 20px 0 36px;
	position: relative;
	z-index: 1;
}

.footer-logo {
	max-width: 240px;
	height: auto;
	display: block;
}

.footer-tagline {
	color: rgb(255, 255, 255);
	margin-top: .2rem;
}

.footer-heading {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-link,
.footer-link:visited {
	color: rgb(255, 255, 255);
	text-decoration: none;
}

.footer-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

.contact-line {
	display: flex;
	align-items: center;
	gap: .6rem;
	margin: .25rem 0;
	color: #e9f2ff;
}

.contact-line i {
	font-size: 1.05rem;
	opacity: 1;
}

.social a {
	color: #e9f2ff;
	opacity: 1;
	font-size: 1.3rem;
	margin-right: .75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.social a:hover {
	color: #ffffff;
	opacity: 1;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	justify-content: center;
	text-align: center;
}

.footer-nav a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
}

.footer-nav a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.copyright {
	color: #ffffff;
	margin-top: .6rem;
	font-size: .95rem;
}

@media (max-width: 991.98px) {
	.text-lg-end {
		text-align: left !important;
	}

	.footer-top {
		padding-top: 44px;
	}
}

.footer-logo-circle {
    width: 320px;
    height: 320px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(50,184,125,0.08);
}
.footer-logo-circle .footer-logo {
    width: auto;
    height: auto;
    display: block;
}*/


/* Base Footer Styles */
footer.site-footer {
    position: relative;
    color: #ffffff;
    background:
        radial-gradient(800px 600px at 55% 3%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #32b87d 0%, #2ca46e 100%);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Decorative partial curve at bottom */
footer.site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 80%);
    border-top-left-radius: 100% 80%;
    border-top-right-radius: 100% 80%;
    z-index: 0;
    pointer-events: none;
}

/* Top & Bottom */
.footer-top {
    padding: 64px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding: 20px 0 80px;
    /* extended bottom for arc visibility */
    position: relative;
    z-index: 1;
}

/* Logo Circle */
.footer-logo-circle {
    width: 280px;
    height: 280px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(50, 184, 125, 0.08);
    margin: 0 auto;
}

.footer-logo-circle .footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Headings & Text */
.footer-heading {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-link,
.footer-link:visited {
    color: #e6f7f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.25rem 0;
    color: #e9f2ff;
    font-size: 0.95rem;
}

.contact-line i {
    font-size: 1.1rem;
    opacity: 1;
}

.social a {
    color: #e9f2ff;
    opacity: 1;
    font-size: 1.3rem;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social a:hover {
    color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Nav (if any) */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.copyright {
    color: #d9e7dd;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-top {
        padding-top: 44px;
        padding-bottom: 20px;
    }

    .footer-logo-circle {
        width: 220px;
        height: 220px;
    }

    .footer-heading {
        font-size: 1.15rem;
    }

    .text-lg-end {
        text-align: left !important;
        margin-top: 32px;
    }

    .copyright {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-logo-circle {
        width: 180px;
        height: 180px;
    }

    .footer-heading {
        font-size: 1.05rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .contact-line {
        font-size: 0.9rem;
    }

    .social a {
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }
}