.advanced-post-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* First Post Styles */
.advanced-post-wrapper .post-col.first-post .post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.advanced-post-wrapper .first-post .image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 8px;
}

.advanced-post-wrapper .first-post .img {
    width: 100%;
    height: 100%;
}

.advanced-post-wrapper .first-post .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advanced-post-wrapper .first-post .post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.advanced-post-wrapper .post-col.first-post .post-title a {
    font-size: 24px;
    font-weight: 500;
}

/* Remaining Posts Column */
.advanced-post-wrapper .post-col.remaining-post {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.advanced-post-wrapper .post-col.remaining-post .post-card {
    display: flex;
    gap: 24px;
    align-items: center;
}

.advanced-post-wrapper .post-col.remaining-post .image-wrapper {
    position: relative;
    flex: 0 0 200px;
    width: 200px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}

.advanced-post-wrapper .post-col.remaining-post .img {
    width: 100%;
    height: 100%;
}

.advanced-post-wrapper .post-col.remaining-post .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advanced-post-wrapper .post-col.remaining-post .post-content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    flex: 1;
    border-right: 1px solid #EFEFEF;
    transition: ease all 0.4s;
    padding-right: 12px;
    gap: 16px;
}

.advanced-post-wrapper .post-col.remaining-post .post-title a {
    font-size: 18px;
    font-weight: 400;
    color: #141414;
}

/* Category Styles */
.advanced-post-wrapper .first-post .post-categories {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.advanced-post-wrapper .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.advanced-post-wrapper .category-list .category {
    border-radius: 50px;
    padding: 6px 16px;
    background-color: var(--axiom-secondary-color);
    display: inline-block;
    transition: ease all 0.4s;
}

.advanced-post-wrapper .category-list .category:hover { 
    background-color: var(--axiom-primary-color) !important;
}

.advanced-post-wrapper .category-list .category a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Common Content Styles */
.advanced-post-wrapper .first-post .post-content {
    padding: 16px 0;
}

.advanced-post-wrapper .first-post .post-title {
    margin: 0;
    margin-bottom: 16px;
}

.advanced-post-wrapper .post-title a {
    text-decoration: none;
    color: #2A5794;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.advanced-post-wrapper .post-title a:hover {
    color: #71BA46;
}

/* Meta Styles */
.advanced-post-wrapper .post-meta-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.advanced-post-wrapper .author-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.advanced-post-wrapper .author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.advanced-post-wrapper .post-author p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #686868;
}

.advanced-post-wrapper .date {
    color: #686868;
    font-size: 16px;
}

/* Button Styles */
.advanced-post-wrapper .post-col.remaining-post .post-button {
    width: 54px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}
.advanced-post-wrapper .post-col.remaining-post .post-button:hover {
    border-color: #E89800;
}
.advanced-post-wrapper .post-col.remaining-post .post-button svg{
    width: 14px;
    height: 14px;
}

.advanced-post-wrapper .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advanced-post-wrapper .post-card:hover .post-title a{
    color: var(--axiom-secondary-color) !important;
}
.advanced-post-wrapper .post-card:hover .post-content{
    border-color: var(--axiom-secondary-color) !important;
}
.advanced-post-wrapper .post-card:hover .post-button{
    background-color: var(--axiom-secondary-color) !important;
    border-color: var(--axiom-secondary-color) !important;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .advanced-post-wrapper {
        gap: 32px;
    }
    
    .advanced-post-wrapper .post-col.first-post .post-title a {
        font-size: 28px;
    }
    
    .advanced-post-wrapper .post-col.remaining-post .post-card {
        gap: 16px;
    }
    
    .advanced-post-wrapper .post-col.remaining-post .image-wrapper {
        flex: 0 0 160px;
        width: 160px;
        /* height: 160px; */
    }
}

@media screen and (max-width: 992px) {
    .advanced-post-wrapper {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {
    /* .advanced-post-wrapper {
        grid-template-columns: 1fr;
    } */
    
    .advanced-post-wrapper .first-post .image-wrapper {
        height: 300px;
    }
    
    .advanced-post-wrapper .post-col.first-post .post-title a {
        font-size: 24px;
    }
    
    /* .advanced-post-wrapper .post-col.remaining-post .post-card {
        flex-direction: column;
    } */
    
    .advanced-post-wrapper .post-col.remaining-post .image-wrapper {
        flex: none;
        /* width: 100%; */
        /* height: 200px; */
    }
}

/* indystry widget css */
/* .industry-scrollbox{
    max-width: 530px;
    height: 520px;
    overflow-y: auto;
}
.industry-main-wrap{
    position: relative;
    max-width: 530px;
    height: 520px;
}
.industry-main-wrap::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0px;
    mask-image: url('data:image/svg+xml,<svg width="28" height="15" viewBox="0 0 28 15" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.47"><path d="M22.6505 11.7239L23.843 10.5303L14.7904 4.02894C14.6862 3.92414 14.5624 3.84097 14.426 3.78421C14.2896 3.72746 14.1433 3.69824 13.9956 3.69824C13.8478 3.69824 13.7015 3.72746 13.5651 3.78421C13.4287 3.84097 13.3049 3.92414 13.2007 4.02894L5.01074 10.5303L6.20324 11.7228L13.9939 5.62081L22.6505 11.7239Z" fill="%23888888"/></g></svg>'); 
    mask-size: 32px;
    background-color: #888888;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 14px;
    height: 27px;
    display: block;
}
.industry-main-wrap::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;
    mask-image: url('data:image/svg+xml,<svg width="28" height="15" viewBox="0 0 28 15" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.47"><path d="M22.6505 11.7239L23.843 10.5303L14.7904 4.02894C14.6862 3.92414 14.5624 3.84097 14.426 3.78421C14.2896 3.72746 14.1433 3.69824 13.9956 3.69824C13.8478 3.69824 13.7015 3.72746 13.5651 3.78421C13.4287 3.84097 13.3049 3.92414 13.2007 4.02894L5.01074 10.5303L6.20324 11.7228L13.9939 5.62081L22.6505 11.7239Z" fill="%23888888"/></g></svg>'); 
    mask-size: 32px;
    background-color: #888888;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 14px;
    height: 27px;
    display: block;
    rotate: 180deg;
}
.industry-wrapper{
    display: flex;
    gap: 32px;
    padding:0;
    border-bottom: 1px solid #8888884D;
}
.industry-wrapper:first-child{
    border-top: 1px solid #8888884D;
    border-bottom: 1px solid #8888884D;
}
.industry-wrapper:hover{
    border-color: #71BA46;
}
.industry-wrapper .img{
    min-width: 154px;
    height: 96px;
}
.industry-wrapper .img img{
    width: 100%;
    height: 100%;
    border-radius: 43px;
    object-fit: cover;
}
.industry-title{
    color: #2B2B2B;
    font-size: 24px ;
    font-weight: 500;
    margin: 0;
}
.industry-description{
    color: #888888;
    margin: 8px 0 16px 0;
}
.industry-content .industry-btn{
    border: 1px solid #888888;
    border-radius: 16px;
    padding: 2px 12px;
    transition: ease all 0.4s;
}
.industry-wrapper:hover .industry-content .industry-btn{
    background-color: #71BA46;
    border-color: #EFF7FE;
}
.industry-wrapper:hover .industry-content .industry-btn svg path{
    fill: #fff;
} */


@media screen and (max-width: 768px) {
    .advanced-post-wrapper{
        flex-direction: column;
    }
    .advanced-post-wrapper .post, .advanced-post-wrapper .post .img{
        max-width: unset;
    }
}

@media screen and (max-width: 500px) {
.advanced-post-wrapper .post-col.remaining-post .post-card {
        flex-direction: column;
    }
    
    .advanced-post-wrapper .post-col.remaining-post .image-wrapper {
        flex: none;
        width: 100%; 
        height: 300px;
    }
    .advanced-post-wrapper .post-col.remaining-post .post-card{
        align-items: start;
    }
    .advanced-post-wrapper .post-col.remaining-post .post-card .post-content{ 
        border: none;
    }
}


/* Testimonial Widgets */
.testimonial-widget {
    background-color: transparent;
    border-radius: 10px;
}

.quote-icon {
    font-size: 0px;
    position: absolute;
    top: -14px;
    left: -60px;
    mask-image: url('data:image/svg+xml,<svg width="76" height="77" viewBox="0 0 76 77" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.12"><path d="M33.5465 38.7162V62.7689H9.67188V56.533C9.67188 46.7931 10.3845 39.5476 11.8099 34.7964C13.354 29.9265 17.3331 23.0373 23.7472 14.1289L33.9028 19.8303C28.5577 28.9763 25.4695 35.2716 24.638 38.7162H33.5465ZM65.9731 38.7162V62.7689H42.0985V56.533C42.0985 46.7931 42.8112 39.5476 44.2366 34.7964C45.7807 29.9265 49.7598 23.0373 56.1739 14.1289L66.3295 19.8303C60.9844 28.9763 57.8961 35.2716 57.0647 38.7162H65.9731Z" fill="%23A3A3A3"/></g></svg>');
    mask-size: 76px;
    background-color: #A3A3A3;
    width: 76px;
    height: 76px;
}

.testimonial-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.testimonial-content-wrap {
    display: flex;
}

.author-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* Swiper Navigation */
.testimonial-widget .swiper-pagination {
    text-align: left;
    left: calc(312px + 105px);
}

.testimonial-widget .swiper-wrapper {
    padding-bottom: 0;
}

.testimonial-widget .swiper-button-prev,
.testimonial-widget .swiper-button-next {
    top: 40% !important;
    bottom: unset !important;
}

.testimonial-widget .swiper-button-prev {
    right: unset !important;
    left: 0 !important;
}

.testimonial-widget .swiper-button-next {
    right: 0;
    left: unset !important;
}

.testimonial-widget .swiper-button-prev::after {
    content: '';
    mask-image: url('data:image/svg+xml,<svg width="44" height="43" viewBox="0 0 44 43" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36.964 21.5749C36.964 29.5858 30.4075 36.0627 22.2982 36.0627C14.1888 36.0627 7.63232 29.5858 7.63232 21.5749C7.63232 13.5639 14.1888 7.08704 22.2982 7.08704C30.4075 7.08704 36.964 13.5639 36.964 21.5749ZM9.35772 21.5749C9.35772 28.6483 15.1378 34.3582 22.2982 34.3582C29.4586 34.3582 35.2386 28.6483 35.2386 21.5749C35.2386 14.5014 29.4586 8.79149 22.2982 8.79149C15.1378 8.79149 9.35772 14.5014 9.35772 21.5749Z" fill="%23CBCBCB"/><path d="M23.7647 14.5014L16.6043 21.5749L23.7647 28.6483L22.5569 29.8414L14.1887 21.5749L22.5569 13.3083L23.7647 14.5014Z" fill="%23CBCBCB"/><path d="M15.3965 22.4274V20.7229H30.0623V22.4274H15.3965Z" fill="%23CBCBCB"/></svg>');
    mask-size: 32px;
    background-color: #000000;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 40px;
    height: 40px;
    transform: none !important;
}

.testimonial-widget .swiper-button-next::after {
    content: '';
    mask-size: 32px;
    mask-image: url('data:image/svg+xml,<svg width="44" height="43" viewBox="0 0 44 43" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36.964 21.5749C36.964 29.5858 30.4075 36.0627 22.2982 36.0627C14.1888 36.0627 7.63232 29.5858 7.63232 21.5749C7.63232 13.5639 14.1888 7.08704 22.2982 7.08704C30.4075 7.08704 36.964 13.5639 36.964 21.5749ZM9.35772 21.5749C9.35772 28.6483 15.1378 34.3582 22.2982 34.3582C29.4586 34.3582 35.2386 28.6483 35.2386 21.5749C35.2386 14.5014 29.4586 8.79149 22.2982 8.79149C15.1378 8.79149 9.35772 14.5014 9.35772 21.5749Z" fill="%23CBCBCB"/><path d="M23.7647 14.5014L16.6043 21.5749L23.7647 28.6483L22.5569 29.8414L14.1887 21.5749L22.5569 13.3083L23.7647 14.5014Z" fill="%23CBCBCB"/><path d="M15.3965 22.4274V20.7229H30.0623V22.4274H15.3965Z" fill="%23CBCBCB"/></svg>');
    background-color: #000000;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 40px;
    height: 40px;
    rotate: 180deg;
}

.dns-testimonial-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    grid-row-gap: 80px;
}
.dns-testimonial-item{
    position: relative;
}

/*service*/
.service-card{
    display: flex;
    height: -webkit-fill-available;
    padding: 32px;
    border-radius: 16px;
    flex-direction: column;
    background: #fff;
    transition: 0.4s ease all;
}
.service-card:hover{
    /* background: linear-gradient(109.86deg, #FFF9F9 14.87%, #EBF6FF 97.1%); */
    transform: translateY(-10px);
}
.service-icon{
    width: 80px;
    height: 80px;
}
.dns-service-slider{
    padding: 10px;
}

.service-content{
    display: flex;
    flex-direction: column;
    color: #888888;
    border-top: 1px solid #DEDEDE;
    padding-top: 32px;
}


.service-content h3{
    line-height: 38px !important;
}
.service-title{
    font-size: 32px;
    line-height: 38px !important;
    color: #2B2B2B;
    font-weight: 500;
    transition: 0.4s ease all;
}

.service-title:hover{
    color: var(--axiom-secondary-color) !important;
}
.dns-service-slider .swiper-wrapper{
    padding-bottom: 50px;
}

.swiper-pagination-bullets{
    top: unset !important;
    bottom: 0 !important;
}
.swiper-pagination-bullet{
    background-color: #C6C6C6 !important;
    height: 12px !important;
    width: 12px !important;
    border-radius: 142px !important;
    border: none !important;
}
.swiper-pagination-bullet-active{
    background-color: var(--axiom-secondary-color) !important;
    width: 47px !important;
}
.service-card:hover{
    border-color: var(--axiom-secondary-color);
}

.service-card:hover .service-content{
    border-color: var(--axiom-secondary-color);
}
.service-card:hover  .learn-more-btn{
    background-color: var(--axiom-secondary-color);
    border-color: var(--axiom-secondary-color);
}

@media screen and (max-width: 1024px) {
    .col-main-post {
        width: 100%;
    }

    .col-post-list {
        width: 100%;
        align-items: start;
    }
    .post-details .meta-wrapper{
        justify-content: start;
    }
    
}


@media screen and (max-width: 900px) {
    .testimonial-content-wrap {
        flex-direction: column;
        gap: 50px;
    }

    .testimonial-content-wrap .quote-icon {
        left: 0;
        top: -70px;
    }

    .testimonial-content-wrap .author-avatar img {
        width: auto !important;
    }

    .testimonial-widget .swiper-pagination {
        left: 0;
    }

    .testimonial-widget .swiper-wrapper {
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
	
	.dns-testimonial-wrapper{
    	grid-template-columns: repeat(1, 1fr);
    	grid-row-gap: 50px;
	}
}


@media screen and (max-width: 500px) {
    .post-list-item .post-thumbnail{
        min-width: 130px;
        width: 130px;
        height: 90px;
    }
    .col-main-post .post-content{
        padding: 22px 20px;
    }
    .col-main-post .post-content h2.post-heading{
        line-height: 30px !important;
    }
    .col-post-list .post-list-item .post-details .post-title a{
        font-size: 16px !important;
    }
}

/* Static Grid Layout (Variation Two) */
.dns-testimonial-wrapper {
    display: grid;
    /* grid-template-columns controlled by Elementor */
    /* gap controlled by Elementor */
}

.dns-testimonial-item {
    position: relative;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
}

.dns-testimonial-item .quote-icon {
    position: absolute;
    top: -14px;
    left: 40px;
}

.dns-testimonial-item .testimonial-text {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.dns-testimonial-item .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dns-testimonial-item .author-avatar {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.dns-testimonial-item .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dns-testimonial-item .author-rating-wrapper {
    flex: 1;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .dns-testimonial-wrapper {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media screen and (max-width: 500px) {
    .dns-testimonial-item {
        padding: 30px 20px;
    }

    .dns-testimonial-item .quote-icon {
        left: 20px;
    }

    .dns-testimonial-item .author-avatar {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }
}

/* Service Slider Styles */
.dns-service-slider {
    position: relative;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.service-icon img {
    object-fit: contain;
}

.service-content {
    width: 100%;
}

.service-title {
    display: block;
    margin: 0;
}

.service-description {
    display: block;
    margin-top: 8px;
}

/* Pagination Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #C6C6C6;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 47px;
    border-radius: 100px;
    background: #71BA46;
}

/* Industry Widget Styles */

.industry-main-wrap {
    position: relative;
    max-width: 530px;
    height: 720px;
}

.dns-industry-slider {
    height: 100%;
    padding: 30px 0;
}

.swiper-button-prev::before,
.swiper-button-next::before {
    content: '';
    width: 14px;
    height: 27px;
    left: 50% !important;
    mask-image: url('data:image/svg+xml,<svg width="28" height="15" viewBox="0 0 28 15" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.47"><path d="M22.6505 11.7239L23.843 10.5303L14.7904 4.02894C14.6862 3.92414 14.5624 3.84097 14.426 3.78421C14.2896 3.72746 14.1433 3.69824 13.9956 3.69824C13.8478 3.69824 13.7015 3.72746 13.5651 3.78421C13.4287 3.84097 13.3049 3.92414 13.2007 4.02894L5.01074 10.5303L6.20324 11.7228L13.9939 5.62081L22.6505 11.7239Z" fill="%23888888"/></g></svg>'); 
    mask-size: 32px;
    background-color: #888888;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 14px;
    height: 27px;
    display: block;
}

.swiper-button-prev {
    top: 20px;
}

.swiper-button-next {
    top: auto;
    bottom: 0;
    rotate: 180deg;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.industry-wrapper {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    transition: border-color 0.3s ease;
}

.industry-main-wrap .swiper-slide{
    border-bottom: 1px solid rgba(136, 136, 136, 0.3);
    height: fit-content !important;
}

.industry-main-wrap .swiper-slide:first-child {
    border-top: 1px solid rgba(136, 136, 136, 0.3);
}

.industry-main-wrap .swiper-slide:hover {
    border-color: #71BA46;
}

.industry-wrapper .img img {
    width: 100%;
    height: 100%;
    border-radius: 43px;
    object-fit: cover;
}

.industry-content .industry-btn {
    border: 1px solid #888888;
    border-radius: 16px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.industry-wrapper:hover .industry-btn {
    background-color: #71BA46;
    border-color: #EFF7FE;
}

.industry-wrapper:hover .industry-btn svg path {
    fill: #fff;
}

/* Scrollbar Styles */
.industry-scrollbox::-webkit-scrollbar {
    width: 6px;
}

.industry-scrollbox::-webkit-scrollbar-track {
    background: #F1F1F1;
    border-radius: 10px;
}

.industry-scrollbox::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
}


.dns-service-grid {
    display: grid;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .dns-service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .dns-service-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.dns-events-widget {
    display: flex;
    gap: 60px;
}

.dns-events-widget-left-col {
    width: 45%; /* Adjust as needed */
}

.dns-events-tab-list {
    list-style: none;
    padding: 0;
}

.dns-events-content {
    width: 55%; /* Adjust as needed */
}

.dns-events-posts {
    display: none; /* Hide all posts by default */
    transition: display 0.3s ease;
}
.dns-events-posts.active {
    display: block;
}

.dns-event-card {
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height for consistent look */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px #0C851A80;
    margin-top: 10px;
}

.dns-event-image {
    position: relative;
    width: 100%;
    height: 350px;
}

.dns-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dns-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.dns-event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.dns-event-title {
    margin: 0 0 15px 0;
    line-height: 24px;
}

.dns-event-title a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    line-height: 24px;
}
.dns-event-author .author-name{
    font-size: 10px ;
    color: #fff;
}
.dns-event-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.dns-event-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dns-event-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.dns-event-time {
    color: #FFFFFF;
    font-size: 10px;
}

/* Swiper specific styles */
.swiper-slide {
    height: auto;
}


/* Hover effect */
/* .dns-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
} */

/* Swiper Styles */
.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dns-events-tab-list li {
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(89.99deg, #888888 0.01%, #FFFFFF 56.73%);
    border-image-slice: 1;
    padding: 24px 0;
    font-size: 18px;
    color: #888888;

}

.dns-events-tab-list li.active {
    color: #71BA46;
    border-image: linear-gradient(89.99deg, #71BA46 0.01%, #FFFFFF 56.73%);
    border-image-slice: 1;
    font-size: 24px;
}

.dns-events-header {
    margin-bottom: 24px;
}

.dns-events-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dns-events-sub-heading {
    font-size: 24px;
    color: #71BA46;
    margin: 0;
}

@media screen and (max-width: 900px) {
    .dns-events-widget{
        flex-direction: column;
    }
    .dns-events-widget-left-col , .dns-events-content{
        width: 100%;
    }
}

/* Team Widget Styles */
.team-grid-container {
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member-inner {
    position: relative;
    overflow: hidden;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    height: 400px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-social-icons {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #F9A825;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-icons a svg {
    width: 20px;
    height: 20px;
}

.team-social-icons a svg path {
    fill: #F9A825;
}

.team-social-icons a:hover {
    background-color: #F9A825;
    color: #ffffff;
}

.team-social-icons a:hover svg path {
    fill: #ffffff;
}

.team-member-info {
    padding: 10px 15px;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #222222;
}

.team-member-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member-name a:hover {
    color: #F9A825;
}

.team-member-designation {
    font-size: 14px;
    color: #666666;
    display: block;
}

.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.view-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F9A825;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more-button:hover {
    background-color: var(--axiom-primary-color);
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    .team-member {
        max-width: 360px;
        margin: 0 auto;
    }
}

.social-toggle-btn {
    position: absolute;
    border-radius: 24px 24px 0 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    bottom: 0;
}

.social-toggle-btn i,
.social-toggle-btn svg {
    fill: #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-toggle-btn:hover {
    background-color: #E89800;
}

.team-social-icons.active {
    display: flex !important;
}

/* Styles for Axiom Nepal Service Grid */
.axiom-nepal-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 991px) {
    .axiom-nepal-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .axiom-nepal-service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .service-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* Service Grid Styles - Matching the image design */
.axiom-nepal-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 32px;
    border-radius: 16px;
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #DEDEDE;
}

.service-card:hover {
    transform: translateY(-10px);
    /* background: linear-gradient(109.86deg, #FFF9F9 14.87%, #EBF6FF 97.1%); */
}

.service-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.service-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-title {
    color: #2B2B2B;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.service-description {
    color: #888888;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 20px;
    background-color: #FFF;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 72px;
    font-size: 12px;
    font-weight: 400;
    margin-top: 48px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .learn-more-btn:hover {
    background-color: #71BA46;
    border-color: #71BA46;
    color: #FFF;
} */

.learn-more-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* .learn-more-btn:hover svg path {
    fill: #FFF;
}

.learn-more-btn:hover svg {
    transform: translateX(3px);
} */

.view-more-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--axiom-secondary-color);
    color: #000000;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.3s ease;
}
.view-more-services:hover {
    background-color: var(--axiom-primary-color);
    color: #fff;
}


/* Responsive styles */
@media (max-width: 1024px) {
    .axiom-nepal-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .axiom-nepal-service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Banner Slider Styles */
.axiom-nepal-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slide-content {
    position: relative;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 600px;
    /* padding: 40px 0; */
    width: 100%;
}


/* .banner-slide-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */

.banner-content-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #2A5794;
    line-height: 1.2;
    margin-bottom: 24px;
}

.banner-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 64px;
}

.banner-cta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #F9A825;
    color: #000000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.banner-button:hover {
    background-color: #125FA5 !important;
    color: #fff;
}

.banner-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666;
}
.banner-contact .contact-information {
    display: flex;
    flex-direction: column;
}
.banner-contact .contact-information a, .banner-contact .contact-information span{
    color: #000000;
}

.banner-contact-icon {
    width: 50px;
    height: 50px;
    background-color: #F9A825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-contact-icon svg{
    width: 20px;
    height: 20px;
}

.banner-right-content {
    flex: 0 0 50%;
    max-width: 40%;
    position: relative;
    min-height: 400px;
}

.banner-image-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.banner-stats {
    position: absolute;
    top: 50px;
    left: -100px;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 24px;
    box-shadow: 0 0px 28px #00000026;
    z-index: 2;
}

.stats-number {
    font-size: 32px;
    font-weight: 700;
    color: #D00A81;
    margin: 0;
}

.stats-text {
    font-size: 12px;
    color: #686868;
    font-weight: 600;
    margin: 0;
}

.banner-programs {
    position: absolute;
    bottom: 10px;
    right: 0px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 24px;
    box-shadow: 0 0px 28px #00000026;
    text-align: start;
    z-index: 2;
}

.programs-number {
    font-size: 32px;
    font-weight: 700;
    color: #D00A81;
    margin: 0;
}

.programs-text {
    font-size: 14px;
    color: #125FA5;
    font-weight: 600;
    margin: 0;
}

.banner-team-images {
    display: flex;
}

.team-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #fff;
    overflow: hidden;
    margin-right: -15px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Navigation Styles */
.axiom-nepal-banner-slider .swiper-button-next,
.axiom-nepal-banner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: #F8AE111A;
    border-radius: 50%;
    color: #2A5794;
    transition: all 0.3s ease;
    top: 50%;
}
.axiom-nepal-banner-slider .swiper-button-next:hover,
.axiom-nepal-banner-slider .swiper-button-prev:hover {
    background-color: var(--axiom-secondary-color);
}
.axiom-nepal-banner-slider .swiper-button-next{
    rotate: 90deg;
}
.axiom-nepal-banner-slider .swiper-button-prev{
    rotate: -90deg;
}

.axiom-nepal-banner-slider .swiper-button-next::before,
.axiom-nepal-banner-slider .swiper-button-prev::before {
    font-size: 20px;
    background-color: #125FA5;
}

.axiom-nepal-banner-slider .swiper-pagination {
    bottom: 20px;
}

.axiom-nepal-banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #C6C6C6;
    opacity: 1;
}

.axiom-nepal-banner-slider .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background: #2A5794;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-slide-content {
        min-height: 500px;
    }

    .banner-content-wrap,
    .banner-right-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .banner-slide-content-wrap {
        flex-direction: column;
    }

    .banner-content-wrap {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .banner-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-slide-content {
        min-height: 400px;
        background-position: center;
        background-size: cover;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-stats,
    .banner-programs {
        padding: 10px 15px;
    }

    .stats-number,
    .programs-number {
        font-size: 24px;
    }

    .team-image {
        width: 50px;
        height: 50px;
    }
}



.axiom-nepal-banner-slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.axiom-nepal-banner-slide {
    position: relative;
    height: 500px;
}

.banner-slide-content {
    position: relative;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}
.stats-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}
.banner-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.banner-slide-image{
    position: relative;
}
.banner-slide-image:before{
    content: '';
    background-image: url(../../../assets/images/ornament.png);
    position: absolute;
    width: 60px ;
    height: 130px;
    bottom: 10px;
    background-size: contain;
    left: 30px;
    z-index: -1;
}
.banner-slide-image:after{
    content: '';
    background-image: url(../../../assets/images/ornament.png);
    position: absolute;
    width: 60px ;
    height: 130px;
    top: 10px;
    background-size: contain;
    right: 30px;
    z-index: -1;
    rotate: 90deg;
}
.banner-slide-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.axiom-nepal-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.axiom-nepal-banner-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.axiom-nepal-banner-description {
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slick Slider Custom Styles */
.axiom-nepal-banner-slider .slick-prev,
.axiom-nepal-banner-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.axiom-nepal-banner-slider .slick-prev {
    left: 20px;
}

.axiom-nepal-banner-slider .slick-next {
    right: 20px;
}

.axiom-nepal-banner-slider .slick-prev:before,
.axiom-nepal-banner-slider .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    color: #ffffff;
}

.axiom-nepal-banner-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.axiom-nepal-banner-slider .slick-dots li {
    margin: 0 5px;
}

.axiom-nepal-banner-slider .slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
}

.axiom-nepal-banner-slider .slick-dots li.slick-active button {
    background: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .axiom-nepal-banner-slide {
        height: 400px;
    }

    .axiom-nepal-banner-title {
        font-size: 36px;
    }

    .axiom-nepal-banner-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .axiom-nepal-banner-slide {
        height: 300px;
    }

    .axiom-nepal-banner-title {
        font-size: 28px;
    }

    .axiom-nepal-banner-description {
        font-size: 14px;
    }

    .axiom-nepal-banner-content {
        width: 90%;
    }
} 

@media (max-width: 672px) {
    .banner-stats, .banner-programs{
        width: 100%;
        left: unset;
        right: unset;
    }
    .banner-right-content{
        padding-bottom: 100px;
    }
    .banner-stats{
        bottom: 110px;
        top: unset;
    }
    .banner-description{
        margin-bottom: 32px;
    }
}