
.home-hero-section {
    background: linear-gradient(302.56deg, #fff 9.29%, rgba(255, 253, 253, 0) 38.3%), linear-gradient(59deg, #d2f6e3 2.98%, rgba(209, 246, 227, 0) 33.52%), linear-gradient(120.35deg, #f1e0fa 23.52%, rgba(241, 226, 248, 0) 39.05%), linear-gradient(237.1deg, #c7e2f6 17.78%, rgba(255, 255, 255, 0) 92.11%);
    padding-bottom: 55px;
}
.carousel {
    padding: 0;
    text-align: center;
    margin: 0 auto;
}
.quote {
    padding-top: 70px;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 69px;
    text-align: center;
    background: linear-gradient(90.28deg, #191f21 33.43%, #001744 60.1%, #004391 89.88%);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: #00418d;
    mix-blend-mode: normal;
    background-repeat: repeat;
    position: relative;
    margin-top: 0;
}
.carousel-inner>.item {
    position: relative;
    display: none;
    animation: .5s ease-in-out;
}
.item {
    max-width: 760px;
    margin: auto;
}
.home-p1 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #191f21;
}
.card-skelliton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 4px; /* Adjust as needed */
    position: relative;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 2px 2px rgb(0 0 0 / 2%), 0 10px 40px rgb(22 48 72 / 10%);
    transition: ease-in-out .6s;
}
@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* News section  */
.news-grid {
    justify-content: center;
}

/* Card Base */
.news-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.news-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Image */
.news-item-image img {
    width: 100%;
    height: 180px;
    object-fit: fill;
    display: block;
}

/* Content */
.news-item-content {
    padding: 1.2rem 1.4rem;
    background: #f6fbff;
    position: relative;
    height: -webkit-fill-available;
}

.news-item-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-item-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    height: 100px;
    overflow-y: auto;
}

.news-item-link:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .news-item {
        width: 100%;
    }

    .news-item-image img {
        height: 160px;
    }
}

.card-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards per row by default */
    max-width: 1200px;
    padding: 40px 0;
}
@media screen and (min-width: 991px) and (max-width:1199px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
        /* 2 cards per row on medium screens */
    }
}
@media screen and (min-width: 768px) and (max-width:991px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards per row on medium screens */
    }
}

@media screen and (max-width: 767px) {
    .card-container {
        grid-template-columns: 1fr;
        /* 1 card per row on small screens */
    }
}

.news-link-2,
.awards-link-2 {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    color: #074fa4;
    text-decoration: none;
    width: fit-content;
    transition: 0.4s ease all;
}
.news-link-2-arrow,
.awards-link-2-arrow {
    border: solid #074fa4;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.learn-more-link:hover,
.awards-link-2:hover,
.news-link-2:hover {
    margin-left: 5px;
    color: #074fa4;
    font-weight: 400;
    transition: 0.4s ease all;
}

.home-fourth-section {
    padding: 50px 0;
}
.home-main {
    position: relative;
    box-sizing: border-box;
    margin-left: 76px;
}
@media screen and (max-width: 991px) {
    .home-main {
        margin-left: 0;
    }
}