/* Main container styles */
.v008d .bodyButton {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
	align-items: flex-start;
	height: 100%;
}

.v008d .swiper-wrapper {
    height: 100% !important;
}
.v008d .swiper-slide{
    height: auto;
}
.v008d .tabsContainer {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    justify-self: center;
	align-self: center;
}

@media screen and (max-width: 1366px) {
    .v008d .tabsContainer{
        padding: 0 50px 0 50px;
    }
}

@media screen and (max-width: 1024px) {
    .v008d .tabsContainer{
        padding: 0 0 0 40px;
    }
}

@media screen and (max-width: 767px) {
    .v008d .tabsContainer{
        padding: 0 0 0 20px;
	gap:0px
    }
}

.v008d .bodyButton a{
	display: flex;
    align-items: center;
    column-gap: 8px;
    border: none;
    padding: 12px 0;
	color: var(--e-global-color-primary, #000000);
	
	/* Button Text */
	font-family: "DM Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 19.2px */
	
	align-self: flex-end;
}

.v008d .bodyButton button:hover, .v008d .bodyButton button:focus{
	background-color: transparent
}

.v008d.parent-container {
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

@media screen and (max-width: 767px) {
	.v008d .tab-contents, .v008d .pagination{
/* 		padding-right: 20px; */
/* 		padding-left: 20px; */
	}
	

	
}
	

/* Tabs container */
.v008d .tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    overflow-x: scroll;
    /* hide scrollbar */
    -ms-overflow-style: none;  
    scrollbar-width: none;
    justify-content: flex-start;
}
/* Individual tab style */
.v008d .tab {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    padding: 16px 24px;
    border-radius: 0;
    background: transparent;
    background-color: var(--e-global-color-primar, #FFFFFF);
    border: 1px solid var(--e-global-color-secondary, #FFFFFF);
    border-radius: 999px;

    transition: width 0.3s ease-in-out; /* Smoothly animate width */
}

/* Active tab styling */
.v008d .tab.active{
	background-color: var(--e-global-color-primary, #2563EB);
}
.v008d .tab:hover, .v008d .tab:focus{
	background-color: var(--e-global-color-accent, #2563EB);
}
.v008d .tab.active .tab-label h3, .v008d .tab:hover .tab-label h3, .v008d .tab:focus .tab-label h3{
	color: var(--e-global-color-primar, #FFFFFF);
}
.v008d .tab.active .tab-icon {
    background-color: var(--e-global-color-primary, #2563EB); /* Blue background for active tab icon */
}

/* Invert icon color on active tab */
.v008d .tab.active .tab-icon img {
    filter: brightness(0) invert(1); /* Makes icon white */
}

/* Tab icon container */
.v008d .tab-icon {
    position: relative;
    padding: 26px;
    border-radius: 999px;
    border: 2px solid var(--Secondary, #EAF2FA);
    box-shadow: 10px 6px 11px 0px rgba(0, 0, 0, 0.04);
    background-color: white;
    z-index: 2;
    display: flex;
	flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
	.v008d .tab-icon{
		padding: 16px;
	}
}

/* Tab icon image */
.v008d .tab-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Tab label container */
.v008d .tab-label {
    display: flex;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: auto; /* Allow it to expand naturally */
}

/* Label text style */
.v008d .tab-label h3 {
    font-size: var(--theme-font-size-button-text);
    font-style: var(--theme-font-style-button-text);
    font-weight: var(--theme-font-weight-button-text);
	line-height: var(--theme-line-height-button-text);
}
/* @media screen and (max-width: 1366px) {
    .v008d .tab-contents {
        padding-left: 50px;
    }
}
@media screen and (max-width: 1024px) {
    .v008d .tab-contents {
        padding-left: 40px;
    }
}
@media screen and (max-width: 767px) {
    .v008d .tab-contents {
        padding-left: 20px;
    }
} */

/* Content container styles */
.v008d .tab-contents .content {
    display: none; /* Hide by default */
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease;
    row-gap: 24px;
    column-gap: 64px;
}

/* Active content display */
.v008d .tab-contents .content.active {
    display: block;
    opacity: 1;
}

/* Card container */
.v008d .content .card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
/* 	max-width: 200px; */
}

/* Left content area */
.v008d .content .card .top {
/*     flex: 1; */
    display: flex;
    flex-direction: column;
    row-gap: 24px;
	justify-content: flex-start;
	width: 100%;

}

/* Right content area */
.v008d .content .card .bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    column-gap: 24px;
    width: 100%;
/*     padding: 0 24px; */
	flex: 1;
}

/* Feature image style */
.v008d .bottom img {
	width: 28px;
    height: 28px;
    object-fit: contain;
    object-position: center;
}

/* Icon and heading container */
.v008d .icon_heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    row-gap: 16px;
}

/* Large icon in content area */
.v008d .icon_heading img {
/* 	object-fit: contain; */
    display: flex;
    justify-content: center;
    align-items: center;
/*     aspect-ratio: 4 / 3; */
    width: 100%;
}


/* Main heading in content */
.v008d .icon_heading h2 {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
	color: var(--e-global-color-primary);
}

/* Container for subheading and body text */
.v008d .subHeading_body {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
	height: 100%;
/* 	justify-content: space-between; */
}

/* Subheading style */
.v008d .subHeading_body h5 {
    color: var(--e-global-color-text);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-h5);
    font-weight: var(--theme-font-weight-h5);
    line-height: var(--theme-line-height-h5);
	text-align: center;
}

/* Body text style */
.v008d .subHeading_body h4 {
    color: var(--e-global-color-primary);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-h4);
    font-weight: var(--theme-font-weight-h4);
    line-height: var(--theme-line-height-h4);
    letter-spacing: var(--theme-letter-spacing-h4);
	text-align: center;
}



/* Content container */
.v008d .content-container {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

/* Swiper - pagination */
.v008d .swiper-pagination {
	position: relative;
    display: none;
    justify-content: center;
    margin-top: 20px;
    position: relative !important;
    top: 0 !important;
    margin-top: 24px !important;
}
@media only screen and (max-width:1024px) {
	.v008d .swiper-pagination {
		display: flex;
	}
}
.v008d .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--e-global-color-primary, #2C7BC8);
    border: none;
    transition: all 0.3s ease;
}

.v008d .swiper-pagination .swiper-pagination-bullet-active {
    background-color:var(--e-global-color-primary, #2C7BC8);
	width: 24px;
}
.v008d .navigation{
    display: none;
    position: relative;
}
.v008d .navigation.active{
    display: flex;
}
/* Navigation buttons */
.v008d .swiper-button-next::after,
.v008d .swiper-button-prev::after {
    content: none;
    /* This removes the default arrow */
}

/* Generic styles for Swiper navigation buttons */
.v008d .swiper-button-next,
.v008d .swiper-button-prev {
	width: 48px;
    height: 48px;
    background-color: var(--e-global-color-primary, #003A4B) !important;
    border-radius: 50%;
    padding: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
}

/* Previous button */
.v008d .swiper-button-prev {
    background-image: url('/wp-content/uploads/2025/03/Vector-31-1.svg');
    transform: translate(calc((50% + 16px) * -1), calc(25% - 0px));
    /* Move the button to the left by the width of the button and column gap btw buttons */
}

/* Next button */
.v008d .swiper-button-next {
    background-image: url('/wp-content/uploads/2025/03/Vector-31.svg');
    transform: translate(0, calc(25% - 0px));
}

/* Hide buttons on smaller screens */
@media only screen and (max-width:1024px) {

    .v008d .swiper-button-next,
    .v008d .swiper-button-prev {
        display: none !important;
    }
}
