.content-section {
    position: relative;
    padding-top: 60px;
}
.shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.service-summary-div {
    padding: 30px;
    width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #bbbcbf;
    color: #a4a5b1;
    height: 170px;
    overflow: hidden;
    cursor: pointer;
    transition: height 0.5s ease;
}
.service-summary-div:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #f9f9f9;
}

.title-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.title-div div:first-child {
    width: 75%;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #2b32b2, #1488cc); /* blue to cyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
}

.title-div div:last-child {
    background: linear-gradient(90deg, #2b32b2, #1488cc); /* blue to cyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
    transform: rotate(-30deg);
}

/* .rotate-angle-icon{
    transform: rotate(45deg); 
   
} */

/* .description-div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 10px;

    opacity: 0;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-size: 14px;
} */

.description-div {
    display: none;
}

.service-summary-div:hover .title-div {
    display: none;
}

.service-summary-div:hover .description-div {
    display: block;
    font-weight: 500;
    color: black;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.globe-img {
    animation: rotate 10s linear infinite; /* Continuous rotation */
}

.globe {
    height: 300px;
    width: 300px;
}

.choose-section {
    position: relative;
    padding-top: 60px;
}

.shape2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.shape3 {
    position: absolute;
    bottom: -50%;
    right: 0;
    z-index: 0;
    /* height: 100%; */
}
.choose-title {
    font-weight: 600;
    font-size: 30px;
    color: #1a2b3b;
}
.choose-para {
    font-weight: 400;
    color: #687887;
}
.choose-header {
    font-weight: 700;
    font-size: 18px;
    color: #333333;
}
.choose-div {
    width: 80%;
}
.icon img:hover {
    transform: scale(1.3);
    transition: transform 0.5s ease;
}

.service-explanation-section {
    padding-top: 60px;
    position: relative;
}
.service-exp-number {
    color: #c1c6ca;
    font-size: 18px;
    font-weight: 600;
}
.service-exp-header {
    color: #1a2b3b;
    font-size: 30px;
    font-weight: 700;
}
.service-exp-para {
    color: #56697b;
    font-size: 16px;
    font-weight: 400;
}
.service-exp-point {
    /* color: #4b555f; */
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #2b32b2, #1488cc); /* blue to cyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
    border-bottom: 1.5px solid #1f5ebf;
}

.break-span {
    display: block;
}

.slider-section {
    padding-top: 60px;
}
.slider-section .slider {
    height: 150px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.slider-section .slide-track {
    display: flex;
    width: calc(280px * 10);
    animation: scroll 20s linear infinite;
}

.slider-section .slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5));
    }
}
.slider-section .slide {
    height: 150px;
    width: 280px;
    display: flex;
    align-items: center;
    padding: 35px 50px;
    perspective: 100px;
}

.slider-section .slider .slide-track .slide img {
    width: 100%;
    max-height: 100%;
}

.slider-section .slider .slide-track .slide img:last-child {
    width: 100%;
    max-height: 90%;
}

.slider-section .slider .slide-track .slide img:last-child {
    opacity: 0;
}

.slider-section .slider .slide-track .slide:hover img:last-child {
    opacity: 1;
    transition: all 0.5s ease;
}

.slider-section .slider .slide-track .slide:hover img:first-child {
    display: none;
    transition: all 0.5s ease;
}

.event-slider-div {
    padding-top: 60px;
}
.event-slider-container {
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    margin-bottom: 20px;
    /* margin-left: 40px; */
}

.card-list .card-item {
    list-style: none;
}
.card-list .card-item .card-link {
    user-select: none;
    display: block;
    text-decoration: none;
    border: 1px solid #e0e1e7;
}

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-wrapper {
    overflow: hidden;
    max-width: 100%; /* Prevent horizontal overflow */
    display: flex;
    justify-content: center;
    /* margin: 0px 40px; */
}

.swiper-button-prev {
    color: #8995a1 !important;
    top: 90px;
    z-index: 10;
    left: 93%;
}
.swiper-button-next {
    color: #8995a1 !important;
    top: 90px;
    z-index: 10;
}

.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 600;
}

.swiper-button-next:after {
    font-size: 20px !important;
    font-weight: 600;
}

.card-list .card-item .card-link .date {
    color: #57636d;
    font-weight: 600;
    font-size: 14px;
}

.card-list .card-item .card-link .header {
    color: #112233;
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
}

.card-info {
    min-height: 155px;
}

.event-slider-container .title {
    font-weight: 600;
    font-size: 36px;
    color: #1a2b3b;
}

@media only screen and (max-width: 1200px) {
    .swiper-button-prev {
        top: 90px;

        left: 91%;
    }
    .swiper-button-next {
        top: 90px;
    }
}

@media only screen and (max-width: 992px) {
    .slider-section {
        padding-top: 0px;
    }
    .event-slider-div {
        padding-top: 30px;
    }

    .swiper-button-prev {
        top: 55px;

        left: 90%;
    }
    .swiper-button-next {
        top: 55px;
    }

    .shape3 {
        display: none;
    }
}

@media only screen and (max-width: 778px) {
    .choose-div {
        width: 100%;
    }

    .service-exp-header {
        font-size: 28px;
    }

    .swiper-button-prev {
        top: 50px;

        left: 86%;
    }
    .swiper-button-next {
        top: 50px;
    }

    .card-info {
        min-height: 100px;
    }

    .event-slider-container .title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 578px) {
    .globe {
        height: 200px;
        width: 200px;
    }
}
@media only screen and (max-width: 450px) {
    .service-summary-div {
        width: 300px;
        height: fit-content;
    }

    .title-div div:first-child {
        width: 90%;
    }
    .service-exp-header {
        font-size: 24px;
    }

    .swiper-button-prev {
        top: 50px;

        left: 82%;
    }
    .swiper-button-next {
        top: 50px;
    }
}

/* .service-summary-div {
    width: 350px;
    height: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border: 1px solid #bbbcbf;
    color: #a4a5b1;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.service-summary-div:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #f9f9f9;
}

.title-div,
.description-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow-y: auto;
}

.title-div {
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.description-div {
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
} */
