/* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* servicePage Css */

.ser-hero-banner {
    background: url('img1.png') center center/cover no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ser-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ser-hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ser-hero-banner .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.ser-hero-banner .breadcrumb {
    justify-content: center;
    background: transparent;
}

.ser-hero-banner .breadcrumb-item+.ser-hero-banner .breadcrumb-item::before {
    content: ">";
    color: #fff;
}

.ser-hero-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.ser-hero-banner .breadcrumb .active {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ser-hero-banner .hero-content h1 {
        font-size: 2rem;
    }
}

.serv-top-section {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-topSec h2 {
    font-size: var(--font-56pt-doublepage);
    font-weight: 500;
    font-family: "Roboto Serif", serif;
}

.service-topSec img {
    height: 255px;
    width: 100%;
    object-fit: cover;
}

.service-topSec .highlight {
    color: var(--secondary);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '✔';
    color: #007bff;
    font-weight: bold;
}

.service-topSec .service-card {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.service-topSec .service-card span {
    font-size: 1.3rem;
    margin-top: 0.3rem;
    font-weight: 400;
    color: var(--blueGrey);
    ;
}

.service-topSec .service-card .service-number01 span {}

.service-topSec .service-card .service-number01 span {
    background: var(--secondary);
    border-radius: 50px;
    width: 3rem;
    height: 3rem;
    display: flex;
    color: var(--black);
    justify-content: center;
    align-items: center;
}

.service-number {
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    margin-right: 10px;
}

.service-topSec .sub-label {
    font-size: 1.3rem;
    margin-top: 1.2rem;
    font-weight: 500;
    color: var(--dark);
}

@media (max-width: 768px) {
    .serv-top-section {
        font-size: 1.75rem;
    }
}


/* ser we provide */

.service-topSec {
    padding: 5rem 0;
}

.services-we-provide {
    background-color: #fffbf3;
    padding: 80px 0;
}

.services-we-provide .section-subtitle {
    color: var(--secondary);
    font-weight: 400;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
}

.services-we-provide .section-title {
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
    width: 100%;
    justify-content: center;
    font-size: var(--font-52pt-doublepage);
    text-transform: capitalize;
}

.services-we-provide .service-card {
    background: #fff;
    padding: 20px 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    text-align: start;
}

.services-we-provide .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.services-we-provide .cardTop-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.services-we-provide .service-icon {
    font-size: 32px;
    color: #fba504;
}

.services-we-provide .service-number {
    font-size: var(--font-21pt-doublepage);
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.services-we-provide .service-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.services-we-provide .service-text {
    font-size: 14px;
    color: #555;
}

@media (max-width: 767px) {
    .services-we-provide .section-title {
        font-size: 1.8rem;
    }
}