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

.v008 .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;
}

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

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

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

/* Tabs container */
.v008 .tabs {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the tabs horizontally */
    overflow-x: scroll; /* Prevents unwanted overflow issues */
    /* hide scrollbar */
    -ms-overflow-style: none;  
    scrollbar-width: none;
}

/* Individual tab style */
.v008 .tab {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    padding: 11px 0;
    border-radius: 0;
    background: transparent;
    width: 70px; /* Default width for the icon */

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

/* Active tab styling */
.v008 .tab.active .tab-icon {
    background-color: var(--Primary, #2563EB); /* Blue background for active tab icon */
}

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

/* Tab icon container */
.v008 .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) {
	.v008 .tab-icon{
		padding: 16px;
	}
}

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

/* Tab label container */
.v008 .tab-label {
    display: flex;
    overflow: hidden;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    z-index: 1;
    interpolate-size: allow-keywords;
    width: auto; /* Allow it to expand naturally */
    max-width: 0; /* Start fully collapsed */
    transition: max-width 0.3s ease;

}

/* Apply expand animation when tab is hovered with a mouse */
@media (hover: hover) {
    .v008 .tab:hover .tab-label {
      padding: 16px 24px 16px 70px;
      margin-left: -50px;
      border: 2px solid #EAF2FA;
      max-width: 3000px; /* Approximate expanded width */
    }
}


/* Label text style */
.v008 .tab-label h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
	line-height: 14px;
}

/* Content container styles */
.v008 .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;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 1024px) {
    .v008 .tab-contents .content {
        flex-direction: column; /* Stack content vertically on mobile */
    }
}

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

/* Left content area */
.v008 .content .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

/* Right content area */
.v008 .content .right {
    flex: 1;
}

/* Responsive handling for right content */
@media screen and (max-width: 1024px) {
    .v008 .content .right {
        width: 100%;
    }
}

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

/* Large icon in content area */
.v008 .icon_heading img {
    object-fit: contain;
    border-radius: 1665px;
    border: 2px solid var(--Secondary, #EAF2FA);
    background: #FFF;
    box-shadow: 10px 6px 11px 0px rgba(0, 0, 0, 0.04);
    padding: 18px;
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
@media screen and (max-width: 767px){
	.v008 .icon_heading img {
		padding: 12px;
		width: 48px;
		height: 48px;
	}
}

/* Main heading in content */
.v008 .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 */
.v008 .subHeading_body {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

/* Subheading style */
.v008 .subHeading_body h5 {
    margin: 0;
    color: #123454;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    letter-spacing: -0.2px;
}

/* Body text style */
.v008 .subHeading_body p {
    margin: 0;
    color: #123454;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* Feature image style */
.v008 .right img {
    width: 100%;
    height: auto;
/*     box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    aspect-ratio: 4/3; /* Maintains consistent image proportions */
}

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

/* Pagination dots container */
.v008 .pagination {
    display: none;
    justify-content: center;
    gap: 8px;
    margin: 0px;
}

@media screen and (max-width: 1024px) {
	.v008 .pagination {
		display: flex;
	}
}

/* Individual pagination dot */
.v008 .pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #D1D5DB; 
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active pagination dot */
.v008 .pagination .dot.active {
    background: #2563EB;
    width: 24px; }