:root {
    --primary: #031e3b;
    --secondary: #0058bc;
    --white: #ffffff;
    --text: #1d1d1d;
    --border: rgba(255, 255, 255, 0.15);
    --shadow: 0 10px 30px rgba(1, 36, 79, 0.18);
    --transition: all 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #f5f5f5;
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Parkinsans', sans-serif;
}

a {
    text-decoration: none;
}

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

/* ==================================================
           HEADER
        ================================================== */

.header-inner {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    height: 30px;
    display: flex;
    align-items: center;
}

.top-bar .top-content {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0px;
    width: 100%;
    padding: 0 18px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5%;
}

.top-item a i {
    color: var(--secondary);
    font-size: 14px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 0px;
}

.social-icons a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary);
}

.main-navbar {
    background: #fff;
    height: 77px;
    display: flex;
    align-items: center;
    padding: 0;
}

/* Logo Card */
.logo-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    height: 107px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 0px 4px 0px #00000040;
    border-top-right-radius: 57.5px;
    border-bottom-right-radius: 57.5px;
    z-index: 5;
}

.logo-card img {
    max-width: 340px;
    width: 100%;
    height: auto;
	width: 310px;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: capitalize;
    color: #222;
    padding: 8px 10px !important;
    transition: var(--transition);
}

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

/* ==================================================
           HERO SECTION
        ================================================== */
.hero-section {
    position: relative;
    min-height: 625px;
    background: url('images/hero-img.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: visible;
	flex-wrap: wrap;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #031e3b 2.85%, rgba(1, 36, 79, 0.9) 23.17%, rgb(1 36 79 / 90%) 40.83%, rgb(1 36 79 / 86%) 56.59%, rgba(255, 255, 255, 0) 71.94%);

}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 25px;
    max-width: 620px;
    color: #fff;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 2%;
    color: #ffffff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle i {
    color: var(--secondary);
    font-size: 26px;
}

.hero-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 5%;
    color: #EBEBEB;
    max-width: 610px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2%;
    padding: 12px 28px;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #0058bc 0%, #031e3b 100%);
    color: #fff;
    box-shadow: 0px 0px 10px 0px #00000040;
    box-shadow: 0px 4px 4px 0px #0000001A;
    border: 0;
}

.btn-primary-custom:hover {
    background: #0058bc;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    background: transparent;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary);
}


.feature-strip {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: calc(100% - 190px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(1, 36, 79, 0.25);
    z-index: 10;
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 30px;
    position: relative;
    height: 100%;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    width: 1px;
    height: 56%;
    border-right: 2px dashed rgba(255, 255, 255, 0.18);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.feature-icon i {
    font-size: 44px;
    color: var(--secondary);
}

.feature-text h4 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    color: #fff;
    margin: 0;
}


@media (max-width: 1399px) {
    .hero-title {
        font-size: 56px;
    }

    .feature-strip {
        width: calc(100% - 100px);
    }
}

@media (max-width: 1199px) {

    .logo-card {
        width: 280px;
    }

    .logo-card img {
        max-width: 220px;
    }

    .hero-title {
        font-size: 48px;
    }

    .feature-strip {
        width: calc(100% - 40px);
    }

    .feature-item {
        padding: 22px 20px;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: relative;
        top: 0;
    }
	
	.hero-overlay {
    	background: linear-gradient(90deg, #031e3b 2.85%, rgba(1, 36, 79, 0.9) 23.17%, rgb(1 36 79 / 90%) 40.83%, rgb(1 36 79 / 97%) 56.59%, #01244fc9 71.94%);
	}

    .header-inner {
        box-shadow: none;
    }

    .logo-card {
        /* position: relative; */
        /* width: 100%; */
        height: 60px;
        border-radius: 0;
        padding: 16px 20px;
        justify-content: flex-start;
        box-shadow: none;
/* 		top: 66px; */
		background: transparent;
    }

    .logo-card img {
        max-width: 210px;
    }

    .top-bar,
    .main-navbar {
        margin-left: 0;
        height: auto;
    }

    .top-bar {
        padding: 10px 0;
		display: none;
    }

    .top-bar .top-content {
        flex-direction: column;
        gap: 8px;
    }

    .top-left,
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .main-navbar {
        padding: 12px 15px;
    }

    .navbar-nav {
        padding-top: 15px;
    }

    .hero-section {
        min-height: auto;
        padding: 90px 0 0px;
    }

    .hero-content {
        padding-top: 20px;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .feature-strip {
        position: relative;
        left: 0;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-top: 50px;
        border-radius: 16px;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .feature-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .feature-item:last-child {
        border-bottom: none;
    }
	
	.testimonial-author {
    	gap: 0px;
    	flex-wrap: wrap;
	}
	
	.testimonial-card{
		height: auto !important;
	}
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 70px 0 40px;
    }

    .hero-subtitle {
        font-size: 28px;
    }
	
	.service-detail-image img{
		height: auto !important;
	}

    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 16px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 13px 20px;
    }

    .feature-text h4 {
        font-size: 16px;
    }

    .feature-icon img,
    .feature-icon i {
        width: 42px;
        height: 42px;
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {

    .top-item a{
        font-size: 13px;
    }

    .social-icons {
        gap: 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .feature-item {
        padding: 20px 16px;
        gap: 14px;
    }

    .feature-strip {
        border-radius: 14px;
    }
}


.top-left .top-item a,
.top-right .top-item {
    position: relative;
    padding-right: 26px;
    margin-right: 6px;
}

.top-left .top-item a::after,
.top-right .top-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    border-right: 1.5px dashed rgba(255, 255, 255, 0.35);
}

.top-left .top-item a:last-child::after,
.top-right .top-item:last-child::after {
    display: none;
}


.social-icons {
    position: relative;
    padding-left: 20px;
    margin-left: 6px;
}

.feature-strip .row>[class*="col-"] {
    position: relative;
    overflow: visible;
}

.feature-strip .row>[class*="col-"]:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    /* moves line exactly to the center between two columns */
    height: 58%;
    border-right: 2px dashed rgba(255, 255, 255, 0.18);
    z-index: 10;
    pointer-events: none;
}

.feature-item::after {
    display: none !important;
}

@media (max-width: 991.98px) {
    .feature-strip .row>[class*="col-"]::after {
        display: none;
    }
}



/* ṣervices */

.py-120 {
    padding: 100px 0;
}

.section-title {
    font-family: 'Parkinsans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    margin: 0;
    max-width: 900px;
}

.services-subtitle {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.services-subtitle i {
    color: var(--secondary);
    font-size: 24px;
    margin-right: 8px;
}

.services-subtitle i::before,
.hero-subtitle i::before {
    content: "\2726";
    font-family: inherit;
}

.services-section {
    background: #f5f6f8;
}

.service-card {
    background: #E5F0F9;
    border: 1px solid rgba(1, 36, 79, 0.35);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 36, 79, 0.12);
    background: var(--primary);
    border-color: var(--primary);
}

.service-image {
    position: relative;
    height: 170px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.service-icon {
    position: absolute;
    right: 16px;
    bottom: -28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0058bc 0%, #031e3b 100%);
    border: 5px solid #E5F0F9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-content {
    padding: 24px 18px 20px;
}

.service-content h3 {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 5%;
    color: #404040;
    margin: 0;
}

.service-card:hover .service-content h3,
.service-card:hover .service-content p {
    color: #ffffff;
}

.service-card:hover .service-icon {
    border: 5px solid var(--primary);
}

@media (max-width: 1199.98px) {
    .section-title {
        font-size: 46px;
    }
}

@media (max-width: 991.98px) {
    .py-120 {
        padding: 90px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .services-subtitle {
        font-size: 34px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .py-120 {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .services-subtitle {
        font-size: 28px;
    }

    .services-btn {
        width: 100%;
        justify-content: center;
    }

    .service-image {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 26px;
    }

    .services-subtitle {
        font-size: 24px;
    }

    .service-content {
        padding: 24px 16px 18px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 15px;
    }
}

.bg-img {
    background: url('https://salenbuy.in/devhub/allcleannyc/wp-content/uploads/2026/05/52557d3d665f238a95e339625ef551b10cd9ce7f-1.png')center/ cover no-repeat;
}

/* about */

.about-section {
    background: url('https://salenbuy.in/devhub/allcleannyc/wp-content/uploads/2026/05/52557d3d665f238a95e339625ef551b10cd9ce7f-1.png')center/ cover no-repeat;
    position: relative;
    overflow: hidden;
}

.about-subtitle i {
    color: var(--secondary);
    font-size: 24px;
    margin-right: 8px;
}

.about-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 5%;
    color: #404040;
    margin-bottom: 34px;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.about-call {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-call-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    flex-shrink: 0;
}

.about-call-content span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 5%;
    margin-bottom: 3px;
}

.about-call-content a {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    color: #404040;
    line-height: 1.1;
}

.about-main-image,
.about-team-image {
    border-radius: 24px;
    overflow: hidden;
}

.about-main-image img,
.about-team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-main-image {
    height: 550px;
}

.about-team-image {
    height: 100%;
    min-height: 250px;
}

.about-info-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(1, 36, 79, 0.08);
}

.about-box {
    padding: 34px 34px;
    height: 100%;
}

.mission-box {
    border-right: 1px solid rgba(1, 36, 79, 0.12);
}

.about-box-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.about-box-title i {
    font-size: 42px;
    color: var(--secondary);
}

.about-box-title h3 {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
    margin: 0;
}

.about-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 5%;
    color: #404040;
    margin: 0;
}

.values-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 5%;
    color: #404040;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.values-list li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 1199.98px) {
    .about-call-content a {
        font-size: 24px;
    }

    .about-box {
        padding: 28px;
    }

    .about-box-title h3 {
        font-size: 26px;
    }
}

@media (max-width: 991.98px) {
    .about-main-image {
        height: auto;
    }

    .about-cta {
        gap: 20px;
    }

    .about-info-card .row>div {
        border: none !important;
    }

    .mission-box {
        border-right: none;
        border-top: 1px solid rgba(1, 36, 79, 0.08);
    }

    .values-box {
        border-top: 1px solid rgba(1, 36, 79, 0.08);
    }
}

@media (max-width: 767.98px) {
    .about-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .about-call-content a {
        font-size: 20px;
    }

    .about-call-icon {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .about-box {
        padding: 17px;
    }

    .about-box-title h3 {
        font-size: 22px;
    }

    .about-box-title i {
        font-size: 25px;
    }
	
	.about-box-title {
    	margin-bottom: 0px;
	}
}

@media (max-width: 575.98px) {
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-call-content a {
        font-size: 18px;
    }

    .about-main-image,
    .about-team-image,
    .about-info-card {
        border-radius: 20px;
    }
}


/* ===================================== about =========================================== */

.inner-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(1, 36, 79, 0.88), rgba(1, 36, 79, 0.88)),
        url('images/hero-img.png') center/cover no-repeat;
    color: #fff;
}

.inner-banner .section-title {
    color: #fff;
    max-width: 900px;
}

.inner-banner-text {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================== */

.experience-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: var(--primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(1, 36, 79, 0.2);
}

.experience-badge h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 42px;
    margin: 0;
}

.experience-badge span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.feature-check i,
.foundation-icon,
.why-item i {
    color: var(--secondary);
}

.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.stats-wrapper {
    background: var(--primary);
    border-radius: 24px;
    padding: 45px 30px;
    box-shadow: 0 20px 40px rgba(1, 36, 79, 0.15);
}

.stat-item h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.foundation-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(1, 36, 79, 0.08);
    transition: all 0.35s ease;
}

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

.foundation-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.foundation-card h3,
.about-cta-box h2,
.why-item h4 {
    font-family: 'Parkinsans', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

.foundation-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.foundation-card p,
.why-item p,
.about-cta-box p {
    color: #4f5b68;
    line-height: 1.9;
    margin: 0;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.why-item i {
    font-size: 34px;
    margin-top: 4px;
}

.why-item h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.about-cta-section {
    padding: 0 0 120px;
    background: #eef3f7;
}

.about-cta-box {
    background: linear-gradient(135deg, var(--primary), #03366f);
    border-radius: 30px;
    padding: 80px 40px;
}

.about-cta-box h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.about-cta-box p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
}

@media (max-width: 991.98px) {
    .inner-banner {
        padding: 160px 0 90px;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 30px;
    }

    .about-cta-box h2 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
/*     .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    } */
	
	.experience-badge h3 {
    	font-size: 30px;
	}
	
	.experience-badge span {
		font-size: 10px;
	}

    .stat-item h3 {
        font-size: 34px;
    }

    .foundation-card,
    .about-cta-box {
        padding: 35px 24px;
    }

    .about-cta-box h2 {
        font-size: 28px;
    }
}


/* ============================================== service ===================================== */

.services-showcase-section {
    background: #eef3f7;
}

.services-showcase-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-showcase-item {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.08);
    border: 1px solid rgba(1, 36, 79, 0.06);
    transition: all 0.4s ease;
}

.service-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(1, 36, 79, 0.12);
}

.service-showcase-image {
    height: 100%;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-showcase-item:hover .service-showcase-image img {
    transform: scale(1.06);
}

.service-showcase-content {
    padding: 55px 50px;
}

.service-showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.service-number {
    font-family: 'Dancing Script', cursive;
    font-size: 72px;
    line-height: 1;
    color: rgba(1, 36, 79, 0.10);
    font-weight: 700;
}

.service-showcase-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 15px 30px rgba(10, 124, 221, 0.22);
}

.service-showcase-content h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 18px;
}

.service-showcase-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #4f5b68;
    margin-bottom: 24px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 12px;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4f5b68;
    font-weight: 600;
}

.service-feature-list li i {
    color: var(--secondary);
    font-size: 16px;
}

/* Featured first card */
.service-showcase-item.active {
    border: 2px solid rgba(10, 124, 221, 0.12);
}

@media (max-width: 1199.98px) {
    .service-showcase-content {
        padding: 45px 40px;
    }

    .service-showcase-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 991.98px) {
    .service-showcase-image {
        min-height: 320px;
    }

    .service-showcase-content {
        padding: 38px 32px;
    }

    .service-number {
        font-size: 56px;
    }
}

@media (max-width: 767.98px) {
    .service-showcase-item {
        border-radius: 24px;
    }

    .service-showcase-image {
        min-height: 260px;
    }

    .service-showcase-content {
        padding: 30px 24px;
    }

    .service-showcase-content h3 {
        font-size: 26px;
    }

    .service-showcase-top {
        margin-bottom: 20px;
    }

    .service-number {
        font-size: 44px;
    }

    .service-showcase-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
        border-radius: 18px;
    }
}




/* ========================================= service-detail ================================= */

.service-detail-section {
    background: #eef3f7;
}

.service-detail-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.08);
    margin-bottom: 40px;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.service-detail-body {
    background: #ffffff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.06);
}

.service-highlight-box {
    position: relative;
    margin: 35px 0;
    padding: 35px 35px 35px 85px;
    background: linear-gradient(135deg, rgba(1, 36, 79, 0.04), rgba(10, 124, 221, 0.05));
    border-radius: 24px;
    border-left: 5px solid var(--secondary);
}

.service-highlight-box i {
    position: absolute;
    left: 30px;
    top: 32px;
    font-size: 34px;
    color: var(--secondary);
}

.service-highlight-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    font-style: italic;
    color: #4f5b68;
}

.service-sidebar {
    position: sticky;
    top: 10px;
}

.service-sidebar-card,
.service-sidebar-cta {
    background: #ffffff;
    border-radius: 28px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.06);
    margin-bottom: 30px;
}

.sidebar-title,
.service-sidebar-cta h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.related-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services-list li {
    margin-bottom: 12px;
}

.related-services-list li:last-child {
    margin-bottom: 0;
}

.related-services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #f8fafc;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-services-list a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateX(5px);
}

.service-sidebar-cta {
    background: linear-gradient(135deg, var(--primary), #03366f);
    text-align: center;
    color: #ffffff;
}

.service-sidebar-cta-icon {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 25px;
}

.service-sidebar-cta h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.service-sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 25px;
}

@media (max-width: 991.98px) {
    .service-sidebar {
        position: static;
        margin-top: 10px;
    }

    .service-detail-body {
        padding: 40px 32px;
    }
}

@media (max-width: 767.98px) {

    .service-detail-image,
    .service-detail-body,
    .service-sidebar-card,
    .service-sidebar-cta {
        border-radius: 24px;
    }

    .service-detail-body {
        padding: 30px 24px;
    }

    .sidebar-title,
    .service-sidebar-cta h3 {
        font-size: 24px;
    }

    .service-highlight-box {
        padding: 28px 24px;
    }

    .service-highlight-box i {
        position: static;
        display: block;
        margin-bottom: 12px;
    }
}


/* ========================================= industry ===================================== */

.industries-tabs-wrapper {
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(1, 36, 79, 0.08);
}

.industries-nav {
    background: linear-gradient(180deg, #031e3b, #03366f);
    padding: 30px;
    height: 100%;
}

.industries-nav .nav-link {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    text-align: left;
    padding: 22px;
    border-radius: 22px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.industries-nav .nav-link:last-child {
    margin-bottom: 0;
}

.industries-nav .nav-link:hover,
.industries-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(6px);
}

.industry-nav-number {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #0058bc;
    min-width: 48px;
}

.industries-nav h4 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 20px;
    margin-bottom: 6px;
    color: inherit;
}

.industries-nav p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.industries-content {
    padding: 35px;
}

.industry-preview-image {
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 30px;
}

.industry-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-preview-content {
    position: relative;
}

.industry-preview-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, #031e3b, #0058bc);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(10, 124, 221, 0.25);
}

.industry-preview-content h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.industry-preview-content p {
    color: #4f5b68;
    line-height: 1.9;
    margin-bottom: 28px;
}

@media (max-width: 991.98px) {
    .industries-nav {
        padding: 20px;
    }

    .industries-content {
        padding: 25px;
    }

    .industry-preview-image {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .industries-tabs-wrapper {
        border-radius: 24px;
    }

    .industries-nav,
    .industries-content {
        padding: 20px;
    }

    .industry-preview-image {
        height: 240px;
        border-radius: 20px;
    }

    .industry-preview-content h3 {
        font-size: 28px;
    }
}


/* quote popup */

.quote-modal .modal-dialog {
    max-width: 1100px;
}

.quote-modal .modal-content {
    border: none;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(1, 36, 79, 0.18);
    position: relative;
}

.quote-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #031e3b, #0058bc);
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(1, 36, 79, 0.25);
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
}

.quote-modal-left {
    position: relative;
    height: 100%;
    background:
        linear-gradient(rgba(1, 36, 79, 0.88), rgba(1, 36, 79, 0.92)),
        url('images/mission.png') center center / cover no-repeat;
    padding: 60px 45px;
    display: flex;
    align-items: center;
}

.quote-modal-content-left {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.quote-modal-content-left h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 22px 0 18px;
    color: #ffffff;
}

.quote-modal-content-left p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 28px;
}

.quote-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: 600;
}

.quote-benefits li i {
    color: #0058bc;
}

.quote-modal-form {
    padding: 60px 50px;
    background: #ffffff;
}

.quote-modal-form h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0 12px;
}

.quote-modal-form p {
    color: #4f5b68;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote-modal-form .form-control {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(1, 36, 79, 0.08);
    border-radius: 16px;
    background: #f8fafc;
    padding: 0 20px;
    box-shadow: none;
}

.quote-modal-form textarea.form-control {
    height: auto;
    padding: 18px 20px;
    resize: none;
}

.quote-modal-form .form-control:focus {
    border-color: var(--secondary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 124, 221, 0.08);
}

.quote-modal .modal-backdrop.show {
    opacity: 0.7;
}


@media (max-width: 991.98px) {
    .quote-modal-form {
        padding: 40px 30px;
    }

    .quote-modal-close {
        top: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}

@media (max-width: 767.98px) {
    .quote-modal .modal-content {
        border-radius: 24px;
    }

    .quote-modal-form {
        padding: 30px 22px;
    }

    .quote-modal-form h3 {
        font-size: 28px;
    }
}


/* ============================= contact ========================================== */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.06);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(1, 36, 79, 0.10);
}

.contact-info-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #031e3b, #0058bc);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(10, 124, 221, 0.22);
}

.contact-info-content span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contact-info-content h4 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.contact-info-content h4 a {
    color: inherit;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(1, 36, 79, 0.08);
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(10, 124, 221, 0.08);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form-header h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-form-header p {
    color: #4f5b68;
    line-height: 1.8;
    margin-bottom: 0;
}

.form-group p label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form .form-control {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(1, 36, 79, 0.08);
    border-radius: 16px;
    background: #f8fafc;
    padding: 0 20px;
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: auto;
    padding: 18px 20px;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 124, 221, 0.08);
}

.contact-map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 40px 30px;
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-card {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 18px;
    }

    .contact-info-content h4 {
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .contact-form-header h3 {
        font-size: 28px;
    }

    .contact-map-section iframe {
        height: 350px;
    }
}


/* ========================= gallery ====================================== */

.gallery-section {
    background: linear-gradient(180deg, #eef3f7 0%, #ffffff 100%);
}

.gallery-card {
    position: relative;
    display: block;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.08);
    transition: all 0.5s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(1, 36, 79, 0.14);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-large {
    height: 520px;
}

.gallery-card-tall {
    height: 520px;
}

.gallery-card-medium {
    height: 320px;
}

.gallery-card-wide {
    height: 360px;
}

.gallery-card-banner {
    height: 420px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(1, 36, 79, 0.08) 0%,
            rgba(1, 36, 79, 0.88) 100%);
    display: flex;
    align-items: flex-end;
    padding: 35px;
}

.gallery-content span {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.gallery-content h3 {
    font-family: 'Parkinsans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 22px;
    max-width: 650px;
}

.gallery-plus {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(10, 124, 221, 0.25);
}

@media (max-width: 991.98px) {

    .gallery-card-large,
    .gallery-card-tall,
    .gallery-card-medium,
    .gallery-card-wide,
    .gallery-card-banner {
        height: 360px;
    }

    .gallery-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .gallery-card {
        border-radius: 24px;
    }

    .gallery-overlay {
        padding: 24px;
    }

    .gallery-card-large,
    .gallery-card-tall,
    .gallery-card-medium,
    .gallery-card-wide,
    .gallery-card-banner {
        height: 280px;
    }

    .gallery-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .gallery-plus {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 18px;
    }
}

.gclose {
    width: 56px !important;
    height: 56px !important;
    top: 30px !important;
    right: 30px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    line-height: 56px !important;
    text-align: center !important;
    opacity: 1 !important;
    box-shadow: 0 15px 35px rgba(1, 36, 79, 0.25) !important;
    transition: all 0.3s ease !important;
    z-index: 999999 !important;
}

.gclose:hover {
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 20px 45px rgba(1, 36, 79, 0.35) !important;
}

.gclose svg {
    display: none !important;
}

.gclose::before {
    content: "×";
    display: block;
    width: 100%;
    height: 100%;
    line-height: 56px;
    font-family: Arial, sans-serif;
}

@media (max-width: 767.98px) {
    .gclose {
        width: 48px !important;
        height: 48px !important;
        top: 20px !important;
        right: 20px !important;
        border-radius: 14px !important;
        font-size: 28px !important;
        line-height: 48px !important;
    }

    .gclose::before {
        line-height: 48px;
    }
}

.glightbox-container .gclose {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: fixed !important;
    top: 25px !important;
    right: 25px !important;

    width: 60px !important;
    height: 60px !important;

    background: linear-gradient(135deg, #031e3b, #0058bc) !important;
    border-radius: 18px !important;
    border: none !important;

    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 300 !important;
    line-height: 1 !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    cursor: pointer !important;
    z-index: 999999 !important;

    box-shadow: 0 20px 45px rgba(1, 36, 79, 0.35) !important;
    transition: all 0.3s ease !important;
}


.glightbox-container .gclose svg,
.glightbox-container .gclose i {
    display: none !important;
}


.glightbox-container .gclose::before {
    content: "\00D7";
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    align-items: center;
    align-content: center;
}


.glightbox-container .gclose:hover {
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 25px 55px rgba(1, 36, 79, 0.45) !important;
}


@media (max-width: 767.98px) {
    .glightbox-container .gclose {
        top: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 14px !important;
    }

    .glightbox-container .gclose::before {
        font-size: 30px;
    }
}


/* why choose us */

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    color: var(--primary);
}

.why-list-item i {
    color: var(--primary);
    font-size: 16px;
}

.why-list-item span {
    font-weight: 500;
    font-size: 20px;
/*     line-height: 50px; */
    letter-spacing: 5%;
    color: #404040;
}

.why-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.08);
}

.why-image img {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
}

.why-stats-box {
    background: linear-gradient(135deg, #031e3b, #022f66);
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

.why-stat-item {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-stat {
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 32px 27px;
}

.why-stat:nth-child(2n) {
    border-right: none;
}

.why-stat:nth-last-child(-n+2) {
    border-bottom: none;
}

.why-stat-item i {
    font-size: 28px;
    color: #0058bc;
}

.why-stat-item h3 {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #0058bc;
    margin-bottom: 4px;
}

.why-stat p {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2%;
    color: #ffffff;
}

/* testimonial */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(1, 36, 79, 0.06);
    position: relative;
    height: 430px;
}

.testimonial-text {
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 2%;
    color: #000;
    margin-bottom: 35px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2f2f2f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.testimonial-author h4 {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 20px;
/*     line-height: 50px; */
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 4px;
    color: var(--primary);
}

.testimonial-author span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    color: #000000;
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0058bc, #031e3b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(10, 124, 221, 0.25);
}

.testimonial-rating{
    display:flex;
    gap:4px;
    margin-bottom:20px;
}

.testimonial-rating i{
    color:#fbbc05;
    font-size:18px;
}

.testimonial-slider {
    padding-bottom: 60px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 30px;
    background: #0058bc;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    width: 34px;
    opacity: 1;
    background: #031e3b;
}

.testimonial-avatar{
    width:65px;
    height:65px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.testimonial-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.testimonial-google{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    border:1px solid #edf2f7;
}

.testimonial-google img{
    width:45px;
    height:45px;
    object-fit:contain;
}

@media (max-width: 991.98px) {
    .why-list-item span {
        font-size: 18px;
    }

    .why-stat-item h3 {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .why-stats-box {
        grid-template-columns: 1fr;
    }

    .why-stat-item {
        border-right: none !important;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2) !important;
    }

    .why-stat-item:last-child {
        border-bottom: none !important;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 20px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.9;
    }

    .testimonial-author h4 {
        font-size: 20px;
    }

    .testimonial-author span {
        font-size: 14px;
    }

    .testimonial-quote {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .why-list-item span {
        font-size: 16px;
    }
}



/* footer */


.site-footer {
    position: relative;
    margin-top: 0;
}

.footer-cta-wrapper {
    margin-bottom: 0;
    background: #031e3b;
}

.footer-cta {
    padding: 42px 0px;
    box-shadow: 0 10px 30px rgba(1, 36, 79, 0.08);
}

.footer-cta-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #ffffff;
    margin: 0;
}

.footer-cta-title span {
    color: #0058bc;
}

.footer-cta-actions {
    display: flex;
/*     justify-content: flex-end; */
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
	
	margin-top: 20px;
}

.footer-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 20px;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 0px 10px 0px #00000040;
}

.footer-phone-icon {
    color: #0058bc;
    align-items: center;
    justify-content: center;
}

.footer-phone-content strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5%;
}

.footer-phone-content span {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 5%;
    margin-top: 5px;
    color: #0058bc;
    text-align: center;
}

.footer-main {
    background: #ffffff;
    padding: 70px 0 50px;
}

.footer-logo img {
    max-width: 170px;
	object-fit: contain;
    margin-bottom: 15px;
}

.footer-about p,
.footer-newsletter-text {
    color: #404040;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 5%;
    max-width: 260px;
}

.footer-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 50px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #404040;
    transition: all 0.3s ease;
}

.footer-links li i::before {
    content: "\2726";
    font-family: inherit;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-links a i,
.footer-contact-list i {
    color: #0058bc;
    font-size: 14px;
}

.footer-contact-list li,
.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #404040;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5%;
    margin-bottom: 15px;
}

.footer-contact-list li a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #404040;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5%;
}

.footer-newsletter-form {
    position: relative;
    margin: 25px 0 25px;
}

.footer-newsletter-form .form-control {
    height: 40px;
    border: none;
    border-radius: 6px;
    background: #eef5fb;
    padding: 0 70px 0 18px;
    box-shadow: none;
}

.footer-newsletter-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0 6px 6px 0;
    background: #0058bc;
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: #031e3b;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #0058bc;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #031e3b;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: capitalize;
}

@media (min-width: 992px) and (max-width: 1253px){
	.logo-card {
        width: 240px;
    }
	
	.why-stat-item h3 {
    	font-size: 33px !important;
	}
	
	.why-stat {
    	padding: 32px 14px;
	}
	
	.navbar-nav {
    	gap: 0px;
	}
	
	.logo-card img {
    	width: auto;
	}
	
	.navbar-nav .nav-link {
    	font-size: 15px;
    	letter-spacing: 4%;
    	padding: 8px 7px !important;
	}
	
	.top-left, .top-right {
    	gap: 0;
	}
	
	.top-left .top-item a, .top-right .top-item {
    	padding-right: 8px;
	}
	
	.top-item a{
    	font-size: 14px;
		color: white;
	}
	
	.contact-info-content h4 {
    	font-size: 16px;
	}

}

@media (max-width: 991.98px) {
    .footer-cta {
        padding: 35px 30px;
    }

    .footer-cta-title {
        font-size: 38px;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .footer-cta {
        padding: 30px 22px;
    }

    .footer-cta-title {
        font-size: 30px;
        line-height: 1.35;
    }

    .footer-phone-btn,
    .footer-cta-actions .btn-primary-custom {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
	
	.top-left .top-item a::after, .top-right .top-item::after{
		display: none;
	}
	
	.top-left, .top-right{
		        justify-content: unset;
	}
	
	.top-bar .top-content{
		    align-items: unset;
	}
	
	html{
		overflow-x: hidden;
	}
}

.service-detail-body ul{
	margin-bottom: 1rem;
	padding-left: 2rem;
	list-style: disc;
}


/*=========================
  BEFORE AFTER
=========================*/
.before-after-card {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid #edf2f7;
}

.before-after-title {
    font-family: 'Parkinsans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #01244F;
    margin-bottom: 25px;
}

.before-after-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.before-box,
.after-box {
    width: 50%;
    position: relative;
}

.before-box img,
.after-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.before-tag,
.after-tag {
    position: absolute;
    top: 20px;
    padding: 10px 22px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.before-tag {
    left: 20px;
    background: #01244F;
}

.after-tag {
    right: 20px;
    background: #0A7CDD;
}

.before-after-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #01244F;
    border: 5px solid #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 22px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.before-after-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 1;
}

/* Responsive */
@media (max-width: 767px) {

    .before-box img,
    .after-box img {
        height: 220px;
    }

    .before-after-title {
        font-size: 30px;
    }

    .before-after-divider {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .before-tag,
    .after-tag {
        font-size: 14px;
        padding: 8px 15px;
    }
}



/*=========================
 TRUSTED BRANDS
=========================*/

.trusted-brands-section{
    position: relative;
    z-index: 10;
}

.trusted-brands-box{
    padding: 24px 0px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.trusted-text{
    min-width: 220px;
}

.trusted-text h4{
    margin: 0;
    font-family: 'Parkinsans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #01244F;
}

.trusted-logo{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-logo img{
    max-height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: .3s;
}

.trusted-logo img:hover{
    transform: scale(1.05);
}

@media(max-width:991px){

    .trusted-brands-box{
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
        text-align: center;
    }

    .trusted-text{
        width: 100%;
        min-width: auto;
    }

    .trusted-text h4{
        font-size: 24px;
    }

    .trusted-logo{
        width: calc(33.33% - 20px);
        flex: unset;
    }
}

@media(max-width:767px){

    .trusted-brands-section{
        margin-top: 30px;
    }

    .trusted-brands-box{
        padding: 20px;
        gap: 20px;
    }

    .trusted-text h4{
        font-size: 20px;
    }

    .trusted-logo{
        width: calc(50% - 10px);
    }

    .trusted-logo img{
        max-height: 42px;
    }
}


.trusted-brands-box{
    flex-wrap: wrap;
}

.trusted-item{
    font-family: 'Parkinsans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #01244F;
    line-height: 1.5;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(10,124,221,0.06);
    border: 1px solid rgba(10,124,221,0.12);
    width: 350px;
    text-align: center;
    transition: all .3s ease;
}

.trusted-item:hover{
    background: #0058bc;
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:991px){

    .trusted-brands-box{
        justify-content: center;
    }

    .trusted-item{
        font-size: 15px;
        text-align: center;
    }
}


.footer-cta-wrapper{
    position: relative;
    background: url('https://salenbuy.in/devhub/allcleannyc/wp-content/uploads/2026/06/banner-bottom-1.png') center center/cover no-repeat;
    overflow: hidden;
}

/* .footer-cta-wrapper::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, #031e3b 2.85%, rgb(1 36 79) 23.17%, rgb(1 36 79) 40.83%, rgba(1, 36, 79, 0.4) 56.59%, rgb(255 255 255 / 0%) 71.94%);
    z-index:1;
} */

.footer-cta-wrapper .container{
    position:relative;
    z-index:2;
}


@media (max-width: 767px) {
    .inner-banner {
        padding: 50px 0;
    }
}